/* ============================================================
   Enol Labs — Main Stylesheet
   Palette: Navy #0F1C2E | Blue #1E6FDB | Teal #0EC4A0 | White #FFFFFF
   Font: Sora (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:     #0F1C2E;
  --navy-mid: #16253A;
  --navy-lt:  #1E2F45;
  --blue:     #1E6FDB;
  --blue-lt:  #3B8AFF;
  --teal:     #0EC4A0;
  --teal-lt:  #28DDB8;
  --white:    #FFFFFF;
  --off-white:#F4F8FF;
  --gray-100: #EDF2FA;
  --gray-200: #D5E0F0;
  --gray-400: #8FA6BF;
  --gray-600: #4A6680;
  --text:     #0F1C2E;
  --text-muted: #4A6680;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(15,28,46,.08);
  --shadow:    0 6px 24px rgba(15,28,46,.12);
  --shadow-lg: 0 16px 48px rgba(15,28,46,.16);
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: 'Sora', sans-serif; line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-muted); line-height: 1.75; }

.text-white    { color: var(--white) !important; }
.text-white p  { color: rgba(255,255,255,.75) !important; }
.text-center   { text-align: center; }
.text-muted    { color: var(--text-muted); }
.highlight     { color: var(--teal); }
.highlight-blue{ color: var(--blue); }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section       { padding: 88px 0; }
.section-sm    { padding: 56px 0; }
.section-lg    { padding: 120px 0; }
.section-dark  { background: var(--navy); }
.section-alt   { background: var(--off-white); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: none; transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #1A5DBF);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(30,111,219,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,111,219,.45);
}
.btn-teal {
  background: linear-gradient(135deg, var(--teal), #0AA88A);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(14,196,160,.35);
}
.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,196,160,.45);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,.55);
  color: var(--white);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: 0.875rem; }

/* ── Header / Nav ─────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: 1.25rem; color: var(--navy);
}
.nav-logo span { color: var(--teal); }
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 20px; height: 20px; fill: none; stroke: white; stroke-width: 2; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.nav-links a {
  padding: 8px 16px; border-radius: 6px;
  font-size: 0.9rem; font-weight: 500; color: var(--gray-600);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--gray-100); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 99; padding: 24px;
  flex-direction: column; gap: 8px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 16px; border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 500; color: var(--navy);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 12px; color: rgba(255,255,255,.55); }
.footer-col h5 {
  font-family: 'Sora', sans-serif; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,.4); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 0.9rem; color: rgba(255,255,255,.65);
  padding: 5px 0; transition: color var(--transition);
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-size: 0.8rem;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, #0B2040 60%, #0A2545 100%);
  padding: 96px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 70% 50%, rgba(30,111,219,.18) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(14,196,160,.12) 0%, transparent 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,196,160,.15); border: 1px solid rgba(14,196,160,.3);
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; color: var(--teal);
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero > .container > .hero-grid > .hero-content > p {
  font-size: 1.15rem; color: rgba(255,255,255,.72); margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.hero-stat-value {
  font-family: 'Sora', sans-serif; font-size: 1.6rem;
  font-weight: 800; color: var(--white);
}
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,.5); }

/* ── App Preview Card ─────────────────────────────────────── */
.app-preview-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.32);
  overflow: hidden;
}
.preview-topbar {
  background: var(--navy-lt);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
}
.preview-dot { width: 10px; height: 10px; border-radius: 50%; }
.preview-dot:nth-child(1) { background: #FF5F57; }
.preview-dot:nth-child(2) { background: #FFBD2E; }
.preview-dot:nth-child(3) { background: #28C840; }
.preview-title-bar {
  flex: 1; text-align: center;
  font-size: 0.75rem; color: rgba(255,255,255,.4);
}
.preview-body { padding: 20px; }
.preview-product-row {
  background: var(--gray-100); border-radius: var(--radius-sm);
  padding: 12px 14px; margin-bottom: 10px;
}
.preview-product-row:last-child { margin-bottom: 0; }
.preview-row-header {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 8px;
}
.preview-product-name { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.score-chip {
  font-size: 0.72rem; font-weight: 700; padding: 2px 8px;
  border-radius: 100px;
}
.score-chip.bad    { background: rgba(239,68,68,.1);  color: #DC2626; }
.score-chip.medium { background: rgba(245,158,11,.1); color: #D97706; }
.score-chip.good   { background: rgba(34,197,94,.1);  color: #16A34A; }
.score-chip.optimized { background: rgba(14,196,160,.12); color: #0AA88A; }
.preview-title-text {
  font-size: 0.8rem; color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.preview-suggest-btn {
  margin-top: 8px;
  background: var(--blue); color: white;
  border: none; border-radius: 5px;
  font-size: 0.72rem; font-weight: 600; padding: 5px 12px;
  cursor: pointer;
}

/* ── Features ─────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 56px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue);
  transform: translateY(-3px);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.4rem;
}
.feature-icon.blue  { background: rgba(30,111,219,.1); color: var(--blue); }
.feature-icon.teal  { background: rgba(14,196,160,.1); color: var(--teal); }
.feature-icon.navy  { background: rgba(15,28,46,.07);  color: var(--navy); }
.feature-card h4 { margin-bottom: 8px; color: var(--navy); }
.feature-card p  { font-size: 0.9rem; }

/* ── How it Works ─────────────────────────────────────────── */
.steps-list { counter-reset: step; }
.step-item {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 24px; align-items: start;
  padding: 28px 0; border-bottom: 1px solid var(--gray-200);
}
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white; font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.step-content h4 { margin-bottom: 6px; color: var(--navy); }
.step-content p  { font-size: 0.92rem; }

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 56px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all var(--transition);
  position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow); }
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(30,111,219,.08), var(--shadow);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white; font-size: 0.75rem; font-weight: 700;
  padding: 4px 16px; border-radius: 100px;
  white-space: nowrap;
}
.plan-name { font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-muted); margin-bottom: 8px; }
.plan-price {
  font-family: 'Sora', sans-serif; font-size: 2.8rem; font-weight: 800;
  color: var(--navy); line-height: 1;
}
.plan-price sup { font-size: 1.4rem; vertical-align: top; margin-top: 4px; }
.plan-price sub { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }
.plan-desc { font-size: 0.88rem; color: var(--text-muted); margin: 12px 0 24px; }
.plan-features { border-top: 1px solid var(--gray-200); padding-top: 24px; margin-bottom: 28px; }
.plan-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.88rem; color: var(--navy); padding: 7px 0;
}
.plan-features li::before {
  content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0;
}
.plan-features li.dim { color: var(--text-muted); }
.plan-features li.dim::before { content: '–'; color: var(--gray-400); }
.plan-annual-note {
  font-size: 0.78rem; color: var(--text-muted); text-align: center;
  margin-top: 12px;
}
.plan-annual-note a { color: var(--blue); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 22px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--navy);
}
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  border-radius: 50%; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 400; transition: transform var(--transition);
}
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 0 20px; font-size: 0.92rem; color: var(--text-muted); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #1558B4 50%, #0D3A80 100%);
  padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(14,196,160,.18) 0%, transparent 70%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p  { color: rgba(255,255,255,.75); margin-bottom: 36px; font-size: 1.05rem; position: relative; z-index: 1; }
.cta-banner .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Section Header ───────────────────────────────────────── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto; }
.section-header .eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 12px;
  display: block;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 1rem; }

/* ── App Detail Page ──────────────────────────────────────── */
.app-hero {
  background: linear-gradient(155deg, var(--navy) 0%, #0B1E35 100%);
  padding: 80px 0;
}
.app-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.app-hero .breadcrumb {
  font-size: 0.82rem; color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.app-hero .breadcrumb a { color: rgba(255,255,255,.55); }
.app-hero .breadcrumb a:hover { color: var(--teal); }

.feature-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; margin-top: 56px;
}
.feature-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
}
.feature-detail-card .feature-icon { margin-bottom: 16px; }
.feature-detail-card h4 { margin-bottom: 10px; }

/* ── Score Visual ─────────────────────────────────────────── */
.score-demo {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: white;
}
.score-bar-wrap { background: rgba(255,255,255,.1); border-radius: 100px; height: 10px; margin: 16px 0; overflow: hidden; }
.score-bar-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--blue), var(--teal)); }

/* ── Pricing Page Extra ───────────────────────────────────── */
.pricing-toggle {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; margin-top: 24px;
}
.toggle-label { font-size: 0.9rem; font-weight: 500; color: var(--gray-600); }
.toggle-label.active { color: var(--navy); }
.toggle-switch {
  position: relative; width: 48px; height: 26px;
  background: var(--gray-200); border-radius: 100px;
  cursor: pointer; transition: background var(--transition);
}
.toggle-switch::after {
  content: ''; position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: white; transition: transform var(--transition);
}
.toggle-switch.annual { background: var(--blue); }
.toggle-switch.annual::after { transform: translateX(22px); }
.annual-savings-badge {
  background: rgba(14,196,160,.1); border: 1px solid rgba(14,196,160,.25);
  color: var(--teal); font-size: 0.75rem; font-weight: 700;
  padding: 2px 10px; border-radius: 100px;
}
.pricing-disclaimer {
  max-width: 640px; margin: 40px auto 0;
  background: var(--off-white); border-radius: var(--radius);
  padding: 20px 24px; font-size: 0.85rem; color: var(--text-muted);
  text-align: center;
}

/* ── Legal Pages ──────────────────────────────────────────── */
.legal-page { padding: 64px 0 96px; }
.legal-hero {
  background: var(--navy);
  padding: 56px 0;
}
.legal-hero h1 { color: white; margin-bottom: 10px; }
.legal-hero p  { color: rgba(255,255,255,.6); }
.legal-content { max-width: 800px; margin: 0 auto; padding: 56px 24px; }
.legal-content h2 { font-size: 1.3rem; margin: 40px 0 12px; color: var(--navy); }
.legal-content h3 { font-size: 1.05rem; margin: 28px 0 8px; color: var(--navy); }
.legal-content p  { margin-bottom: 16px; font-size: 0.93rem; }
.legal-content ul { padding-left: 20px; margin: 12px 0 16px; }
.legal-content ul li { list-style: disc; font-size: 0.93rem; color: var(--text-muted); padding: 4px 0; }
.legal-disclaimer {
  background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.25);
  border-radius: var(--radius); padding: 16px 20px; font-size: 0.85rem;
  color: #92400E; margin: 32px 0;
}

/* ── Support Page ─────────────────────────────────────────── */
.support-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 48px;
}
.support-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 28px;
}
.support-card h4 { margin-bottom: 10px; display: flex; gap: 10px; align-items: center; }
.support-card p  { font-size: 0.9rem; }
.contact-box {
  background: linear-gradient(135deg, var(--navy), #0B2040);
  border-radius: var(--radius-lg); padding: 48px;
  text-align: center; color: white; margin-top: 56px;
}
.contact-box h3 { margin-bottom: 12px; }
.contact-box p  { color: rgba(255,255,255,.65); margin-bottom: 28px; }
.contact-email-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-weight: 600; color: white; font-size: 1rem;
  transition: all var(--transition);
}
.contact-email-link:hover { background: rgba(255,255,255,.18); }

/* ── 404 Page ─────────────────────────────────────────────── */
.not-found-page {
  min-height: 80vh; display: flex;
  align-items: center; justify-content: center;
  text-align: center; padding: 60px 24px;
}
.not-found-page .code {
  font-family: 'Sora', sans-serif; font-size: 7rem; font-weight: 800;
  color: var(--gray-200); line-height: 1; display: block;
}
.not-found-page h2 { margin: 8px 0 16px; }

/* ── Utilities ────────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex  { display: flex; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid, .app-hero-grid, .app-detail-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-detail-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .hero-stats    { gap: 20px; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
  .contact-box   { padding: 32px 20px; }
  .section { padding: 60px 0; }
}
