/* ========================================================
   DDS FibraNet — Light Clean Regional
   Paleta: cream + laranja vibrante + âmbar quente
   Tipografia: Fraunces (display serifada) + Manrope (sans)
   ======================================================== */

:root {
  /* Cores */
  --cream-50: #FBF8F2;
  --cream-100: #F5EFE3;
  --cream-200: #EAE1CC;
  --paper: #FFFFFF;

  --ink-900: #1F1410;
  --ink-700: #3A2A1F;
  --ink-500: #5C4A3D;
  --ink-400: #7F6E60;
  --ink-300: #A39487;

  /* Laranja primário (substitui o antigo teal) */
  --teal-900: #7A2D00;
  --teal-700: #E06000;
  --teal-500: #FF8533;
  --teal-100: #FFE2C9;

  --amber-700: #B45309;
  --amber-500: #F59E0B;
  --amber-200: #FDE5B5;

  --whats: #25D366;
  --whats-dark: #128C7E;

  /* Tokens */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 34, 34, 0.04), 0 1px 3px rgba(15, 34, 34, 0.05);
  --shadow-md: 0 4px 10px rgba(15, 34, 34, 0.05), 0 10px 30px rgba(15, 34, 34, 0.06);
  --shadow-lg: 0 10px 30px rgba(15, 34, 34, 0.08), 0 30px 60px rgba(15, 34, 34, 0.1);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --max: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--cream-50);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--teal-700); color: var(--cream-50); }

:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ================ LOADER ================ */
#loader {
  position: fixed; inset: 0;
  background: var(--cream-50);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px;
  z-index: 9999;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark { display: flex; gap: 8px; }
.loader-pulse {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--teal-700);
  animation: pulse 1.2s var(--ease) infinite;
}
.loader-pulse:nth-child(2) { background: var(--teal-500); animation-delay: .15s; }
.loader-pulse:nth-child(3) { background: var(--amber-500); animation-delay: .3s; }
.loader-text {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--teal-900);
  letter-spacing: .02em;
}
@keyframes pulse {
  0%, 100% { transform: scale(.7); opacity: .5; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* ================ NAVBAR ================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251, 248, 242, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--cream-200);
  box-shadow: 0 4px 20px rgba(15, 34, 34, 0.04);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: clamp(10px, 1.4vw, 16px) clamp(16px, 2.4vw, 28px);
  min-height: 64px;
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  color: var(--ink-900);
  flex-shrink: 0;
}
.nav__logo {
  width: auto;
  height: clamp(38px, 4.2vw, 48px);
  max-width: clamp(70px, 8vw, 92px);
  object-fit: contain;
  border-radius: 10px;
  background: var(--paper);
  padding: 4px 6px;
  border: 1px solid var(--cream-200);
}
.nav__brand-text {
  display: flex; flex-direction: column;
  line-height: 1;
  font-size: 18px;
}
.nav__brand-text strong { color: var(--teal-700); font-weight: 700; letter-spacing: .02em; }
.nav__brand-text em {
  font-style: italic;
  color: var(--amber-700);
  font-size: 13px;
  font-weight: 500;
}

.nav__menu { display: none; gap: 32px; }
.nav__menu a {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-700);
  padding: 8px 0;
  transition: color .2s var(--ease);
}
.nav__menu a::after {
  content: '';
  position: absolute; left: 0; bottom: 4px;
  width: 0; height: 2px;
  background: var(--amber-500);
  transition: width .25s var(--ease);
}
.nav__menu a:hover { color: var(--teal-700); }
.nav__menu a:hover::after { width: 100%; }

.nav__cta { display: none; }
.btn.nav__cta {
  padding: clamp(7px, 0.9vw, 10px) clamp(14px, 1.6vw, 20px);
  font-size: clamp(13px, 0.95vw, 14.5px);
  gap: 8px;
  line-height: 1.2;
  align-self: center;
  flex-shrink: 0;
}
.btn.nav__cta svg {
  width: clamp(15px, 1.2vw, 17px);
  height: clamp(15px, 1.2vw, 17px);
}

.nav__burger {
  width: 42px; height: 42px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  border-radius: 10px;
  background: var(--paper);
  border: 1px solid var(--cream-200);
}
.nav__burger span {
  width: 18px; height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================ MENU MOBILE ================ */
.mobile-menu {
  position: fixed;
  inset: 70px 0 0 0;
  background: var(--cream-50);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
  padding: 40px 24px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu__nav {
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
}
.mobile-menu__nav a {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink-900);
  font-weight: 500;
}
.mobile-menu__cta { padding: 14px 32px !important; font-size: 16px !important; }

/* ================ BUTTONS ================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--teal-700);
  color: var(--cream-50);
  box-shadow: 0 6px 20px rgba(224, 96, 0, 0.28);
}
.btn--primary:hover { background: var(--teal-900); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(224, 96, 0, 0.35); }
.btn--outline {
  background: transparent;
  color: var(--teal-900);
  border: 1.5px solid var(--teal-700);
}
.btn--outline:hover { background: var(--teal-700); color: var(--cream-50); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--ink-700);
  border: 1.5px solid var(--cream-200);
}
.btn--ghost:hover { border-color: var(--teal-700); color: var(--teal-900); }
.btn--whats {
  background: var(--paper);
  color: var(--ink-900);
  border: 1.5px solid var(--cream-200);
  box-shadow: var(--shadow-sm);
}
.btn--whats svg { color: var(--whats); transition: color .25s var(--ease); }
.btn--whats:hover {
  background: var(--whats);
  color: #fff;
  border-color: var(--whats);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}
.btn--whats:hover svg { color: #fff; }
.btn--lg { padding: 18px 36px; font-size: 17px; }

/* ================ HERO ================ */
.hero {
  position: relative;
  padding: 130px 0 80px;
  background:
    radial-gradient(ellipse 90% 50% at 80% 0%, var(--teal-100) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 100%, var(--amber-200) 0%, transparent 60%),
    var(--cream-50);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
.hero__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--teal-700);
  border: 1px solid var(--teal-700);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 6px 18px rgba(224, 96, 0, 0.32);
  letter-spacing: .01em;
  margin-bottom: 22px;
}
.hero__chip .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.28);
  animation: chipPulse 2s infinite;
}
@keyframes chipPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.28); }
  50% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.08); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin-bottom: 20px;
}
.hero__title em {
  font-style: italic;
  color: var(--teal-700);
  position: relative;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.hero__title em::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px; bottom: 4%;
  height: 12px;
  background: var(--teal-100);
  box-shadow: 0 6px 18px rgba(224, 96, 0, 0.25);
  z-index: -1;
  border-radius: 6px;
}
.hero__sub {
  font-size: 17px;
  color: var(--ink-500);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 32px;
}
.hero__points {
  display: flex; flex-direction: column; gap: 10px;
  list-style: none;
}
.hero__points li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
}
.hero__points svg { color: var(--teal-700); flex-shrink: 0; }

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 360px;
}
.hero__deco {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: .9;
}
.hero__card {
  position: relative;
  z-index: 2;
  background: var(--paper);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 420px;
  display: flex; flex-direction: column;
  gap: 22px;
}
.hero__card-top {
  display: flex; align-items: center; gap: 18px;
}
.speed-dial { position: relative; width: 110px; height: 110px; flex-shrink: 0; }
.speed-dial__svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.speed-dial__bg { fill: none; stroke: var(--cream-200); stroke-width: 8; }
.speed-dial__fg {
  fill: none;
  stroke: url(#dialGrad, var(--teal-700));
  stroke: var(--teal-700);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 326;
  stroke-dashoffset: 60;
  animation: dialFill 2s var(--ease) .5s both;
}
@keyframes dialFill { from { stroke-dashoffset: 326; } to { stroke-dashoffset: 60; } }
.speed-dial__center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
}
.speed-dial__num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1;
}
.speed-dial__unit {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero__card-info { flex: 1; min-width: 0; }
.hero__card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--amber-700);
}
.hero__card-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink-900);
  margin: 2px 0 6px;
}
.hero__card-price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--teal-900);
  line-height: 1;
}
.hero__card-price span { font-size: 16px; }
.hero__card-price small { font-size: 12px; font-weight: 500; color: var(--ink-400); font-family: var(--font-body); margin-left: 4px; }
.hero__card-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-700);
  background: var(--teal-100);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.hero__card-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 22px;
  border-top: 1px dashed var(--cream-200);
}
.hero__metric { text-align: center; }
.hero__metric-num {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.1;
}
.hero__metric-label {
  display: block;
  font-size: 11px;
  color: var(--ink-400);
  margin-top: 3px;
  line-height: 1.3;
}

.hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  pointer-events: none;
}
.hero__wave svg { width: 100%; height: 60px; display: block; }

/* ================ TRUST ================ */
.trust {
  background: var(--paper);
  padding: 50px 0;
  border-bottom: 1px solid var(--cream-100);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  text-align: center;
}
.trust__item { display: flex; flex-direction: column; gap: 6px; }
.trust__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 2.6rem);
  font-weight: 600;
  color: var(--teal-900);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust__label {
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 500;
}

/* ================ SECTION HEAD ================ */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}
.section-head--left { text-align: left; margin-left: 0; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #fff;
  background: var(--teal-700);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(224, 96, 0, 0.32);
}
.eyebrow--light {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin-bottom: 14px;
}
.section-head h2 em { font-style: italic; color: var(--teal-700); }
.section-head p {
  font-size: 16px;
  color: var(--ink-500);
  line-height: 1.6;
}

/* ================ PLANS ================ */
.plans { padding: 90px 0; }
.plans__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.plan {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  gap: 22px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-500);
}
.plan--highlight {
  border-color: var(--teal-700);
  background: linear-gradient(180deg, #fff 0%, var(--teal-100) 350%);
  box-shadow: var(--shadow-md);
}
.plan__ribbon {
  position: absolute; top: -14px; left: 28px;
  background: var(--teal-700);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 22px rgba(224, 96, 0, 0.45);
}
.plan__head { display: flex; flex-direction: column; gap: 10px; }
.plan__badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
  background: var(--teal-700);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(224, 96, 0, 0.28);
}
.plan__speed {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--ink-900);
  letter-spacing: -0.03em;
  display: flex; align-items: baseline; gap: 6px;
}
.plan__speed small {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-700);
  letter-spacing: .12em;
}
.plan__use {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.5;
}
.plan__price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink-900);
  line-height: 1;
  padding-top: 18px;
  border-top: 1px dashed var(--cream-200);
}
.plan__price strong {
  font-size: 48px;
  font-weight: 600;
  color: var(--teal-700);
  letter-spacing: -0.02em;
}
.plan__price span { font-size: 18px; color: var(--teal-700); }
.plan__price small {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-400);
  margin-left: 4px;
}
.plan__features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plan__features li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--ink-700);
}
.plan__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 16px;
  background: var(--teal-100);
  border-radius: 50%;
}
.plan__features li::after {
  content: '';
  position: absolute;
  left: 5px; top: 11px;
  width: 6px; height: 3px;
  border-left: 2px solid var(--teal-700);
  border-bottom: 2px solid var(--teal-700);
  transform: rotate(-45deg);
}
.plan__cta { width: 100%; margin-top: auto; }
.plans__note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-400);
  margin-top: 30px;
  font-style: italic;
}

/* ================ BENEFITS ================ */
.benefits {
  background: var(--paper);
  padding: 90px 0;
  border-top: 1px solid var(--cream-100);
  border-bottom: 1px solid var(--cream-100);
}
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.benefit {
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.benefit:hover {
  transform: translateY(-4px);
  border-color: var(--teal-500);
  background: var(--paper);
}
.benefit__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-100);
  color: var(--teal-700);
  border-radius: 14px;
  margin-bottom: 18px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.benefit:hover .benefit__icon {
  background: var(--teal-700);
  color: var(--cream-50);
}
.benefit h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.benefit p {
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.6;
}

/* ================ COVERAGE ================ */
.coverage {
  padding: 90px 0;
}
.coverage__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
.coverage__text .eyebrow { margin-bottom: 16px; }
.coverage__text h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin-bottom: 16px;
}
.coverage__text p {
  font-size: 16px;
  color: var(--ink-500);
  line-height: 1.6;
  margin-bottom: 26px;
}
.coverage__list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 12px;
}
.coverage__list li {
  display: flex; align-items: center; gap: 16px;
  background: var(--paper);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.coverage__list li:hover {
  transform: translateX(6px);
  border-color: var(--teal-500);
}
.coverage__pin {
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(15, 34, 34, 0.08),
    inset 0 0 0 1px var(--cream-200);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.coverage__pin svg {
  display: block;
  width: 100%;
  height: 100%;
}
.coverage__list li:hover .coverage__pin {
  transform: scale(1.06) rotate(-2deg);
  box-shadow:
    0 8px 20px rgba(15, 34, 34, 0.12),
    inset 0 0 0 1px var(--teal-500);
}
.coverage__list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink-900);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.coverage__list span {
  display: block;
  font-size: 13px;
  color: var(--teal-700);
  font-weight: 600;
}

/* ================ PROCESS ================ */
.process {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream-50) 100%);
  padding: 90px 0;
}
.process__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  counter-reset: step;
}
.process__step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 32px 28px 28px;
  overflow: hidden;
}
.process__step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--teal-700);
}
.process__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--amber-500);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.process__step h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink-900);
  margin-bottom: 6px;
}
.process__step p {
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.55;
}

/* ================ TESTIMONIALS ================ */
.testimonials { padding: 90px 0; }
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.testimonial {
  background: var(--paper);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial__stars {
  color: var(--amber-500);
  font-size: 18px;
  letter-spacing: 2px;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-700);
}
.testimonial figcaption {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px dashed var(--cream-200);
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream-100);
  border: 2px solid var(--cream-50);
  box-shadow: 0 2px 6px rgba(15, 34, 34, 0.08);
  flex-shrink: 0;
}
.testimonial figcaption strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-900);
}
.testimonial figcaption span {
  display: block;
  font-size: 12px;
  color: var(--ink-400);
}

/* ================ FAQ ================ */
.faq {
  padding: 90px 0;
  background: var(--paper);
  border-top: 1px solid var(--cream-100);
}
.faq__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  background: var(--cream-50);
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq__item[open] {
  border-color: var(--teal-500);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-900);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  transition: color .2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--teal-700); }
.faq__icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-100);
  color: var(--teal-700);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-display);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.faq__item[open] .faq__icon {
  background: var(--teal-700);
  color: var(--cream-50);
  transform: rotate(45deg);
}
.faq__item p {
  padding: 0 22px 22px;
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.65;
}

/* ================ CTA FINAL ================ */
.cta-final {
  padding: 80px 0;
  background: var(--cream-50);
}
.cta-final__card {
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(245, 158, 11, 0.18) 0%, transparent 50%),
    linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
  color: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: 50px 36px;
  display: flex; flex-direction: column;
  gap: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-final__card::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-final__text { position: relative; z-index: 1; }
.cta-final__text h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 14px 0 12px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(122, 45, 0, 0.45), 0 1px 0 rgba(0, 0, 0, 0.15);
}
.cta-final__text h2 em {
  font-style: italic;
  color: #fff;
}
.cta-final__text p {
  font-size: 15.5px;
  opacity: .88;
  line-height: 1.6;
  max-width: 540px;
}
.cta-final__actions {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.cta-final__hint {
  font-size: 13px;
  opacity: .75;
  font-style: italic;
}

/* ================ FOOTER ================ */
.footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: 60px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: clamp(48px, 6vw, 72px);
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin-top: 14px;
  color: var(--ink-300);
}
.footer__logo {
  width: auto;
  height: 64px;
  max-width: 140px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--paper);
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.08);
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--cream-50);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.footer__col ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.footer__col li, .footer__col a {
  font-size: 14px;
  color: var(--ink-300);
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--amber-500); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: clamp(32px, 4vw, 44px) 24px clamp(28px, 3.5vw, 36px);
  display: flex; flex-direction: column;
  gap: 22px;
  align-items: center;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
}
.footer__bottom > p { margin: 0; }
.footer__bottom .credit a {
  color: var(--amber-500);
  font-weight: 600;
}
.footer__legal {
  font-size: clamp(11.5px, 1.05vw, 12.5px);
  color: var(--ink-400);
  line-height: 1.7;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 20px;
}
.footer__legal-item {
  position: relative;
  white-space: nowrap;
}
.footer__legal-item + .footer__legal-item::before {
  content: '·';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
}
@media (max-width: 720px) {
  .footer__legal { gap: 4px; }
  .footer__legal-item {
    white-space: normal;
    text-align: center;
  }
  .footer__legal-item + .footer__legal-item::before { display: none; }
}

/* ================ SUBFOOTER (GLA Solutions) ================ */
.subfooter {
  background: rgba(0, 0, 0, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.subfooter__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 24px;
  flex-wrap: wrap;
  line-height: 1.5;
}
.subfooter__status {
  position: relative;
  display: inline-flex;
  width: 10px; height: 10px;
}
.subfooter__status-dot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: subfooter-pulse 1.8s var(--ease) infinite;
}
.subfooter__status-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  animation: subfooter-blink 1.8s var(--ease) infinite;
}
.subfooter__text {
  margin: 0;
  font-size: 12.5px;
  letter-spacing: 0.01em;
  color: var(--ink-300);
}
.subfooter__text a {
  color: var(--cream-50);
  font-weight: 600;
  transition: color .2s var(--ease);
}
.subfooter__text a:hover { color: var(--amber-500); }
@keyframes subfooter-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.65); }
  70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@keyframes subfooter-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.55; }
}
@media (prefers-reduced-motion: reduce) {
  .subfooter__status-dot,
  .subfooter__status-dot::after { animation: none; }
}

/* ================ WHATS FLOAT ================ */
.whats-float {
  position: fixed;
  bottom: clamp(14px, 3vw, 24px);
  right: clamp(14px, 3vw, 24px);
  width: clamp(48px, 6vw, 58px);
  height: clamp(48px, 6vw, 58px);
  background: var(--paper);
  color: var(--whats);
  border: 1px solid var(--cream-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 90;
  transition: transform .25s var(--ease), background .25s var(--ease),
              color .25s var(--ease), box-shadow .3s var(--ease),
              border-color .25s var(--ease);
}
.whats-float svg {
  width: 56%;
  height: 56%;
}
.whats-float:hover,
.whats-float:focus-visible {
  background: var(--whats);
  color: #fff;
  border-color: var(--whats);
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}
.whats-float__ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whats);
  opacity: 0;
  z-index: -1;
  transition: opacity .3s var(--ease);
}
.whats-float:hover .whats-float__ping {
  animation: ping 1.8s var(--ease) infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: .35; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .whats-float:hover .whats-float__ping { animation: none; }
  .whats-float:hover { transform: none; }
}

/* ================ REVEAL ON SCROLL ================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================ RESPONSIVE ================ */
@media (min-width: 600px) {
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .cta-final__card { padding: 60px; }
}

@media (min-width: 900px) {
  .nav__menu { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }

  .container { padding: 0 32px; }

  .hero { padding: 160px 0 100px; }
  .hero__inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
  }

  .plans__grid { grid-template-columns: repeat(3, 1fr); }
  .plan--highlight { transform: scale(1.04); }
  .plan--highlight:hover { transform: scale(1.04) translateY(-6px); }

  .benefits__grid { grid-template-columns: repeat(3, 1fr); }

  .coverage__inner {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }

  .process__list { grid-template-columns: repeat(2, 1fr); }

  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }

  .faq__inner {
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
  }
  .section-head--left { margin: 0; }

  .cta-final__card {
    flex-direction: row;
    align-items: center;
    padding: 70px 60px;
  }
  .cta-final__text { flex: 1; }
  .cta-final__actions { align-items: flex-end; }
}

@media (min-width: 1100px) {
  .process__list { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
