/* =========================================================
   EvolNET — Design System
   ========================================================= */

:root {
  /* Marca */
  --orange-300: #ffb877;
  --orange-400: #ff9a42;
  --orange-500: #f5720f;
  --orange-600: #e05c00;
  --orange-700: #b84800;

  --purple-300: #a99cf2;
  --purple-400: #8474e6;
  --purple-500: #5a4bc4;
  --purple-600: #4b3f9e;
  --purple-700: #362c7a;
  --purple-900: #1c1740;

  --ink-900: #0f1020;
  --ink-800: #16172c;
  --ink-700: #22243f;

  --gray-50: #f8f8fb;
  --gray-100: #f1f1f6;
  --gray-200: #e4e4ee;
  --gray-400: #9797ad;
  --gray-600: #61617a;
  --gray-800: #34344a;

  --white: #ffffff;

  --grad-brand: linear-gradient(120deg, var(--purple-600), var(--purple-500) 45%, var(--orange-500) 100%);
  --grad-orange: linear-gradient(120deg, var(--orange-400), var(--orange-600));
  --grad-dark: linear-gradient(160deg, var(--purple-900) 0%, var(--ink-900) 70%);

  --font-heading: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(20, 15, 60, 0.06);
  --shadow-md: 0 12px 28px rgba(20, 15, 60, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 15, 60, 0.16);
  --shadow-orange: 0 16px 34px rgba(245, 114, 15, 0.28);

  --container-w: 1180px;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--ink-900); line-height: 1.15; margin: 0; }
p { margin: 0; line-height: 1.7; }
button { font-family: inherit; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--purple-700);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 8px 0;
  z-index: 999;
}
.skip-link:focus { left: 0; }

/* =========== Buttons =========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn--sm { padding: 10px 18px; font-size: 0.85rem; }
.btn--primary {
  background: var(--grad-orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px rgba(245, 114, 15, 0.36); }
.btn--ghost {
  background: transparent;
  border-color: var(--gray-200);
  color: var(--ink-900);
}
.btn--ghost:hover { border-color: var(--purple-500); color: var(--purple-600); }
.btn--white { background: #fff; color: var(--purple-700); box-shadow: var(--shadow-md); }
.btn--white:hover { transform: translateY(-2px); }
.btn--outline-white { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn--block { width: 100%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-600);
  background: rgba(245, 114, 15, 0.1);
  padding: 7px 16px;
  border-radius: var(--radius-full);
}

/* =========== Header =========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 15, 60, 0.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
}
.brand__logo { height: 40px; width: auto; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gray-800);
  position: relative;
  padding: 6px 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--grad-orange);
  transition: width 0.25s ease;
  border-radius: 2px;
}
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__link--active { color: var(--orange-600); }

.site-header__actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: #fff;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 20px; margin-inline: auto; background: var(--ink-900); transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========== Hero =========== */
.hero {
  position: relative;
  background: var(--grad-dark);
  color: #fff;
  overflow: hidden;
  padding-block: 88px 120px;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.hero-waves {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__content h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: #fff;
  margin-block: 18px 20px;
}
.hero__content h1 span { color: var(--orange-400); }
.hero__lead { color: rgba(255,255,255,0.78); font-size: 1.08rem; max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero__price {
  margin-top: 34px;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 22px;
  border-radius: var(--radius-md);
}
.hero__price strong { font-family: var(--font-heading); font-size: 1.8rem; color: var(--orange-400); }
.hero__price small { color: rgba(255,255,255,0.7); }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}
.hero__badges svg { color: var(--orange-400); flex-shrink: 0; }

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin-inline: auto;
}
.hero__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.18);
  animation: spin 40s linear infinite;
}
.hero__ring--2 { inset: 40px; animation-duration: 30s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero__core {
  position: absolute;
  inset: 70px;
  border-radius: 50%;
  background: var(--grad-orange);
  box-shadow: 0 0 90px rgba(245, 114, 15, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__core svg { width: 46%; height: 46%; }

.hero__chip {
  position: absolute;
  background: #fff;
  color: var(--ink-900);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  animation: float 6s ease-in-out infinite;
}
.hero__chip--1 { top: 6%; left: -6%; }
.hero__chip--2 { bottom: 10%; right: -8%; animation-delay: 1.5s; }
.hero__chip--3 { bottom: -4%; left: 14%; animation-delay: 3s; }
.hero__chip .dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,0.2); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* =========== Sections generic =========== */
.section { padding-block: 90px; }
.section--tight { padding-block: 60px; }
.section--muted { background: var(--gray-50); }
.section--dark { background: var(--grad-dark); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section__head { max-width: 640px; margin-bottom: 48px; }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-top: 14px; }
.section__head p { margin-top: 14px; color: var(--gray-600); font-size: 1.05rem; }
.section--dark .section__head p { color: rgba(255,255,255,0.72); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========== Plan cards =========== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.plan-card--highlight {
  background: var(--grad-dark);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.plan-card--highlight:hover { transform: scale(1.03) translateY(-6px); }
.plan-card--highlight .plan-card__speed,
.plan-card--highlight .plan-card__name { color: #fff; }
.plan-card--highlight .plan-card__unit,
.plan-card--highlight .plan-card__feat { color: rgba(255,255,255,0.75); }
.plan-card--highlight .plan-card__feat svg { color: var(--orange-400); }

.plan-card__tag {
  position: absolute;
  top: -13px;
  left: 26px;
  background: var(--grad-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-orange);
}
.plan-card__name { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--purple-600); }
.plan-card__speed { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 800; color: var(--ink-900); display: flex; align-items: baseline; gap: 6px; }
.plan-card__speed span { font-size: 1rem; font-weight: 600; color: var(--gray-400); }
.plan-card__price { display: flex; align-items: baseline; gap: 6px; }
.plan-card__price strong { font-family: var(--font-heading); font-size: 1.6rem; color: var(--orange-600); }
.plan-card--highlight .plan-card__price strong { color: var(--orange-400); }
.plan-card__unit { color: var(--gray-600); font-size: 0.85rem; }

.plan-card__feats { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-card__feat { display: flex; align-items: center; gap: 9px; font-size: 0.88rem; color: var(--gray-600); }
.plan-card__feat svg { color: var(--orange-500); flex-shrink: 0; }

/* =========== Feature / benefit cards =========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card p { color: var(--gray-600); font-size: 0.95rem; }

/* =========== Services strip =========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-pill {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.service-pill__icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: rgba(245, 114, 15, 0.1);
  color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
}
.service-pill h3 { font-size: 1rem; }
.service-pill p { font-size: 0.88rem; color: var(--gray-600); }

/* =========== Coverage =========== */
.coverage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.coverage__list { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.coverage__item {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 16px 20px;
}
.coverage__item svg { color: var(--orange-500); flex-shrink: 0; }
.coverage__item strong { font-family: var(--font-heading); }
.coverage__visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.coverage__visual svg { width: 60%; height: 60%; opacity: 0.9; }
.coverage__pulse {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  animation: pulse 2.5s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(0.4); opacity: 1; } 100% { transform: scale(2.4); opacity: 0; } }

/* =========== Stats =========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-card strong { display: block; font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800; background: var(--grad-orange); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-card span { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* =========== CTA strip =========== */
.cta-strip { background: var(--grad-brand); color: #fff; padding-block: 56px; }
.cta-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-strip h2 { color: #fff; font-size: 1.7rem; }
.cta-strip p { color: rgba(255,255,255,0.85); margin-top: 6px; }
.cta-strip__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========== Footer =========== */
.site-footer { background: var(--ink-900); color: rgba(255,255,255,0.75); padding-top: 70px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo { height: 36px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer__col--brand p { max-width: 260px; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer__social a:hover { background: var(--orange-500); transform: translateY(-3px); }
.footer__col h3 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; font-size: 0.9rem; }
.footer__col a:hover { color: var(--orange-400); }
.footer__contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer__contact svg { margin-top: 3px; flex-shrink: 0; color: var(--orange-400); }
.footer__bottom-inner { display: flex; justify-content: space-between; padding-block: 22px; font-size: 0.82rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 10px; }

/* =========== WhatsApp float =========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  z-index: 400;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* =========== Page hero (inner pages) =========== */
.page-hero {
  background: var(--grad-dark);
  color: #fff;
  padding-block: 64px;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-top: 14px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 14px auto 0; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 18px; }
.breadcrumb a:hover { color: var(--orange-400); }

/* =========== Misc components =========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.badge-check { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem; }
.badge-check svg { color: var(--orange-500); flex-shrink: 0; }
.checklist { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }

.image-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

.value-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 34px 24px; border-radius: var(--radius-lg); background: var(--gray-50); }
.value-card__icon { width: 56px; height: 56px; border-radius: 50%; background: var(--grad-orange); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }

.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline__item { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding-block: 22px; border-left: 2px solid var(--gray-200); position: relative; padding-left: 30px; margin-left: 45px; }
.timeline__item::before { content: ''; position: absolute; left: -7px; top: 28px; width: 12px; height: 12px; border-radius: 50%; background: var(--orange-500); box-shadow: 0 0 0 4px rgba(245,114,15,0.18); }
.timeline__year { font-family: var(--font-heading); font-weight: 800; color: var(--purple-600); margin-left: -75px; padding-top: 22px; }

.faq { display: flex; flex-direction: column; gap: 14px; max-width: 780px; margin-inline: auto; }
.faq-item { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 20px 24px; font-family: var(--font-heading); font-weight: 600;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--orange-500); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 22px; color: var(--gray-600); }

/* =========== Coverage widget =========== */
.coverage-widget {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.coverage-widget__head { margin-bottom: 22px; }
.coverage-widget__head h3 { margin-top: 10px; font-size: 1.3rem; }
.coverage-widget__head p { color: var(--gray-600); margin-top: 8px; font-size: 0.92rem; }
.coverage-form a[id] { display: block; position: relative; top: -100px; visibility: hidden; }

/* =========== Contact page =========== */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; }
.contact-info-card {
  background: var(--grad-dark); color: #fff;
  border-radius: var(--radius-lg); padding: 40px 34px;
  display: flex; flex-direction: column; gap: 26px;
}
.contact-info-card h3 { color: #fff; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item svg { color: var(--orange-400); flex-shrink: 0; margin-top: 2px; }
.contact-info-item strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255,255,255,0.6); margin-bottom: 3px; }

.form-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--ink-900); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--gray-50);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--orange-500); background: #fff;
}
.form-msg { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 24px; font-size: 0.92rem; font-weight: 500; }
.form-msg--success { background: rgba(34,197,94,0.1); color: #15803d; border: 1px solid rgba(34,197,94,0.25); }
.form-msg--error { background: rgba(239,68,68,0.08); color: #b91c1c; border: 1px solid rgba(239,68,68,0.2); }

/* =========== Responsive =========== */
@media (max-width: 1020px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { margin-top: 20px; }
  .coverage, .two-col, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .value-cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav, .site-header__actions .btn--ghost { display: none; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px 28px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--gray-200);
  }
  .nav.is-open .nav__list { flex-direction: column; align-items: flex-start; gap: 18px; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .section { padding-block: 60px; }
  .hero { padding-block: 60px 80px; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .cta-strip__inner { flex-direction: column; text-align: center; }
  .plan-card--highlight { transform: none; }
}
