/* =========================================================
   FRANCHISING PAGE
   Mobile-first, pulito, coerente con Arena UI
========================================================= */

.fr-hero{
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(5,10,18,.52), rgba(5,10,18,.88)),
    radial-gradient(circle at 18% 20%, rgba(34,211,238,.08), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(168,85,247,.08), transparent 28%),
    url('/static/img/franchising-hero.jpg') center/cover no-repeat;
}

.fr-hero-inner{
  min-height: 100svh;
  padding-top: calc(66px + 24px);
  padding-bottom: 56px;
  display: flex;
  align-items: center;
}

.fr-hero-copy{
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.fr-hero-title{
  font-size: clamp(2.4rem, 11vw, 4.2rem);
  line-height: .92;
}

.fr-hero-title span{
  display: block;
  color: #67e8f9;
}

.fr-section{
  padding: 64px 0;
}

.fr-section-alt{
  padding: 64px 0;
  background:
    radial-gradient(circle at top left, rgba(34,211,238,.05), transparent 28%),
    linear-gradient(180deg, rgba(7,12,22,.90), rgba(8,15,28,.98));
}

.fr-section-head{
  max-width: 820px;
}

.fr-overlay-box{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(7,12,22,.56);
  backdrop-filter: blur(12px);
}

.fr-two-col{
  display: grid;
  gap: 32px;
}

.fr-two-col--hero{
  display: grid;
  gap: 32px;
}

.fr-stack{
  display: grid;
  gap: 16px;
}

.fr-step{
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.fr-step-num{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 800;
  color: #fff;
  border: 1px solid rgba(34,211,238,.24);
  background: linear-gradient(135deg, rgba(34,211,238,.18), rgba(14,165,233,.12));
  box-shadow: 0 0 18px rgba(34,211,238,.10);
}

.fr-form-wrap textarea{
  min-height: 150px;
  resize: vertical;
}

.fr-select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.85) 50%),
    linear-gradient(135deg, rgba(255,255,255,.85) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.fr-select option{
  background: #0b1220;
  color: #fff;
}

@media (min-width: 768px){
  .fr-section,
  .fr-section-alt{
    padding: 72px 0;
  }

  .fr-step{
    flex-direction: row;
  }

  .fr-step-num{
    width: 60px;
    height: 60px;
  }
}

@media (min-width: 1024px){
  .fr-hero{
    min-height: 100dvh;
  }

  .fr-hero-inner{
    min-height: 100dvh;
    padding-top: calc(74px + 32px);
    padding-bottom: 72px;
  }

  .fr-hero-title{
    font-size: clamp(3rem, 7vw, 6.4rem);
  }

  .fr-two-col{
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .fr-two-col--hero{
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
  }

  .fr-section,
  .fr-section-alt{
    padding: 80px 0;
  }
}