/* ═══════════════════════════════════════════════════════════
   RESERVACEX — LANDING CSS
   Paleta: Navy #0F1A2E · Verde #4DCC86 · Blanco #fff
   Tipografía: Syne (display) + Plus Jakarta Sans (body)
═══════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --navy:    #0F1A2E;
  --navy-2:  #162236;
  --navy-3:  #1d2f4a;
  --green:   #4DCC86;
  --green-2: #3ab574;
  --green-3: #e8faf1;
  --white:   #ffffff;
  --gray-50: #F8FAFC;
  --gray-100:#F1F5F9;
  --gray-200:#E2E8F0;
  --gray-400:#94A3B8;
  --gray-600:#475569;
  --gray-800:#1E293B;
  --ff-head: 'Outfit', sans-serif;
  --ff-body: 'Plus Jakarta Sans', sans-serif;
  --max-w:   1160px;
  --radius:  10px;
  --radius-lg: 16px;
  --shadow:  0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Container ─────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ── Sections ──────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-light { background: var(--gray-50); }
.section-green { background: var(--green-3); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head);
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-2);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--green);
  display: block;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title-white { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
}
.section-sub-white { color: rgba(255,255,255,.65); }
.section-header { margin-bottom: 52px; }
.section-header-center { text-align: center; }
.section-header-center .section-sub { margin: 0 auto; }
.section-header-center .section-label { justify-content: center; }
.section-header-center .section-label::before { display: none; }

/* ── NAV ───────────────────────────────────────────────── */
.nav-web {
  position: sticky; top: 0; z-index: 900;
  background: rgba(15,26,46,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo img { height: 28px; }
.nav-logo-text {
  font-family: var(--ff-head);
  font-size: 1.2rem; font-weight: 800;
  color: var(--white);
}
.nav-logo-text span { color: var(--green); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.nav-links a:hover { color: var(--white); }
.nav-ctas { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--white); font-size: 1.2rem; }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative;
  padding: 100px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(77,204,134,.08) 0%, transparent 70%);
  pointer-events: none;
}
/* Grid pattern */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(77,204,134,.12);
  border: 1px solid rgba(77,204,134,.25);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: .78rem; font-weight: 600;
  color: var(--green);
  margin-bottom: 20px;
}
.hero-eyebrow::before { content: '●'; font-size: .5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title span { color: var(--green); }
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  display: flex; align-items: center; gap: 10px;
  margin-top: 32px;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.hero-trust::before { content: '✓'; color: var(--green); font-weight: 700; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mockup {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
}
.mockup-bar {
  display: flex; gap: 6px; margin-bottom: 16px;
}
.mockup-bar span {
  width: 10px; height: 10px; border-radius: 50%;
}
.mockup-bar span:nth-child(1){background:#ff5f57}
.mockup-bar span:nth-child(2){background:#febc2e}
.mockup-bar span:nth-child(3){background:#28c840}
.mockup-body {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 16px;
}
.mockup-header-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.mockup-title-fake {
  height: 14px; width: 120px;
  background: rgba(255,255,255,.15);
  border-radius: 4px;
}
.mockup-badge {
  background: rgba(77,204,134,.2); color: var(--green);
  font-size: .65rem; font-weight: 700;
  padding: 3px 8px; border-radius: 999px;
}
.mockup-slots {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 8px;
}
.mockup-slot {
  height: 36px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 600;
  transition: transform .2s;
}
.mockup-slot:hover { transform: scale(1.03); }
.slot-free  { background: rgba(77,204,134,.15); color: var(--green); }
.slot-busy  { background: rgba(239,68,68,.12); color: #f87171; }
.slot-part  { background: rgba(245,158,11,.12); color: #fbbf24; }

/* ── LOGOS STRIP ───────────────────────────────────────── */
.logos-strip {
  padding: 28px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.logos-strip-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 32px;
}
.logos-strip-label {
  font-size: .75rem; font-weight: 600;
  color: var(--gray-400); text-transform: uppercase; letter-spacing: .08em;
  white-space: nowrap;
}
.sector-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: .8rem; font-weight: 500;
  color: var(--gray-600);
  white-space: nowrap;
}

/* ── FEATURES GRID ─────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--green-3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--green-2);
}
.feature-card h3 {
  font-family: var(--ff-head);
  font-size: 1rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── Grid 2 columnas responsive ─────────────────────────────────────── */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;

  align-items: start;
}
.grid-3col {
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:20px;
	margin-top:12px;
}

.grid-4col {
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:16px;
}

@media (max-width: 992px) {
  .grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .grid-3col {
    grid-template-columns: 1fr;
  }
  .grid-4col {
    grid-template-columns: 1fr;
  }
}


/* ── HOW IT WORKS ──────────────────────────────────────── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 30px; left: calc(100%/6);
  width: calc(100% - 100%/3);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-2));
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; padding: 0 20px; }
.step-num {
  width: 60px; height: 60px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  font-size: 1.2rem; font-weight: 800;
  margin: 0 auto 20px;
  border: 3px solid var(--green);
}
.step-item h3 {
  font-family: var(--ff-head);
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.step-item p { font-size: .9rem; color: var(--gray-600); }

/* ── ACCORDION ─────────────────────────────────────────── */
.accordion-web { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); }
.accordion-item { border-bottom: 1px solid var(--gray-200); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  background: var(--white);
  border: none; cursor: pointer;
  font-family: var(--ff-body); font-size: .95rem; font-weight: 600;
  color: var(--navy); text-align: left;
  transition: background .15s;
}
.accordion-trigger:hover { background: var(--gray-50); }
.accordion-trigger.open { background: var(--green-3); color: var(--green-2); }
.accordion-icon {
  width: 24px; height: 24px;
  background: var(--gray-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; flex-shrink: 0; margin-left: 16px;
  transition: transform .2s, background .15s;
}
.accordion-trigger.open .accordion-icon { transform: rotate(45deg); background: var(--green); color: var(--white); }
.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
  background: var(--white);
}
.accordion-body.open { max-height: 600px; }
.accordion-body-inner {
  padding: 4px 24px 20px;
  font-size: .9rem; color: var(--gray-600); line-height: 1.7;
}
.accordion-body-inner ul { padding-left: 20px; }
.accordion-body-inner li { margin-bottom: 6px; }

/* ── PRICING ───────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(77,204,134,.1);
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--navy);
  font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 999px; white-space: nowrap;
}
.pricing-plan {
  font-family: var(--ff-head); font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--gray-400); margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--ff-head); font-size: 2.8rem; font-weight: 800;
  color: var(--navy); line-height: 1;
  margin-bottom: 4px;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--gray-400); margin-left: 4px; }
.pricing-price sub { font-size: 1.2rem; font-weight: 600; vertical-align: top; margin-top: 8px; }
.pricing-desc { font-size: .85rem; color: var(--gray-400); margin-bottom: 24px; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--gray-600);
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-100);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-features li.no { color: #CCC; }
.pricing-features li.no::before { content: '✕'; color: var(--gray-200); font-weight: 400; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.faq-q {
  font-family: var(--ff-head); font-size: .95rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.faq-a { font-size: .88rem; color: var(--gray-600); line-height: 1.65; }

/* ── SECTORS ───────────────────────────────────────────── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.sector-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: all .2s;
  cursor: pointer;
}
.sector-card:hover {
  border-color: var(--green);
  background: var(--green-3);
  transform: translateY(-2px);
}
.sector-card a { color: inherit; }
.sector-emoji { font-size: 1.4rem; margin-bottom: 8px; display: block; color: var(--green-2); }
.sector-name { font-size: .82rem; font-weight: 600; color: var(--navy); }

/* ── CTA BAND ──────────────────────────────────────────── */
.cta-band {
  background: var(--green);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.cta-band p { color: rgba(15,26,46,.65); margin-bottom: 28px; }
.cta-band-dark {
  background: var(--navy-2);
}
.cta-band-dark h2 { color: var(--white); }
.cta-band-dark p { color: rgba(255,255,255,.5); }

/* ── CONTACT ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 52px; align-items: start; }
.contact-info h2 {
  font-family: var(--ff-head); font-size: 1.6rem; font-weight: 800;
  color: var(--navy); margin-bottom: 16px;
}
.contact-info p { color: var(--gray-600); margin-bottom: 28px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 16px;
}
.contact-icon {
  width: 40px; height: 40px;
  background: var(--green-3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; color: var(--green-2);
}
.contact-label { font-size: .78rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .06em; }
.contact-value { font-size: .9rem; color: var(--navy); font-weight: 500; }

/* ── FORM ──────────────────────────────────────────────── */
.form-web { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--gray-600); margin-bottom: 5px; }
.form-control-web {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: .9rem; font-family: var(--ff-body);
  color: var(--navy);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}
.form-control-web:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(77,204,134,.15);
}
textarea.form-control-web { resize: vertical; min-height: 100px; }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn-web {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: .9rem; font-weight: 700;
  font-family: var(--ff-body);
  cursor: pointer; border: none;
  text-decoration: none;
  transition: all .15s;
}
.btn-web-primary { background: var(--green); color: var(--navy); }
.btn-web-primary:hover { background: var(--green-2); transform: translateY(-1px); }
.btn-web-white { background: var(--white); color: var(--navy); }
.btn-web-white:hover { background: var(--gray-100); }
.btn-web-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3); }
.btn-web-outline:hover { border-color: var(--white); background: rgba(255,255,255,.05); }
.btn-web-navy { background: var(--navy); color: var(--white); }
.btn-web-navy:hover { background: var(--navy-3); }
.btn-web-lg { padding: 14px 30px; font-size: 1rem; }
.btn-web-sm { padding: 8px 16px; font-size: .8rem; }

/* ── FOOTER ────────────────────────────────────────────── */
.footer-web {
  background: var(--navy);
  padding: 60px 0 0;
  color: rgba(255,255,255,.55);
  font-size: .88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { margin-top: 12px; font-size: .85rem; max-width: 260px; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--ff-head); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--white); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.5); transition: color .15s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .78rem;
}

/* ── STATS ─────────────────────────────────────────────── */
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: var(--ff-head);
  font-size: 2.4rem; font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: .83rem; color: rgba(255,255,255,.5); }

/* ── TESTIMONIAL ───────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.testimonial-stars { color: var(--green); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text {
  font-size: .9rem; color: var(--gray-600);
  line-height: 1.65; margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 700; color: var(--green);
  font-size: .9rem; flex-shrink: 0;
}
.author-name { font-size: .85rem; font-weight: 700; color: var(--navy); }
.author-role { font-size: .75rem; color: var(--gray-400); }

/* ── VIDEO EMBED ───────────────────────────────────────── */
.video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
}
.video-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── NOTICE/ALERT ──────────────────────────────────────── */
.notice {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(77,204,134,.12);
  border: 1px solid rgba(77,204,134,.25);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: .85rem; color: var(--green-2);
}
.notice-full { display: flex; width: 100%; }

/* ── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeUp .6s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .steps-row { grid-template-columns: 1fr; }
  .steps-row::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--navy); padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .sectors-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}