:root {
  --bg: #0a0e1a;
  --bg-2: #0f1424;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8ecf4;
  --text-muted: #9aa3b8;
  --primary: #4ade80;
  --primary-2: #22c55e;
  --accent: #a78bfa;
  --accent-2: #8b5cf6;
  --danger: #f87171;
  --warning: #fbbf24;
  --info: #60a5fa;
  --shadow-lg: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(74, 222, 128, 0.25);
  --radius: 18px;
  --radius-sm: 12px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a { color: var(--primary); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--accent); }

img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Background Orbs */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
  animation: floatOrb 20s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: var(--primary-2); top: -10%; left: -10%; }
.orb-2 { width: 600px; height: 600px; background: var(--accent-2); top: 40%; right: -15%; animation-delay: -5s; }
.orb-3 { width: 450px; height: 450px; background: #3b82f6; bottom: -10%; left: 30%; animation-delay: -10s; }

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -40px); }
}

/* Navigation */
.glass-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all 0.3s;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}
.logo-icon { font-size: 24px; }
.logo-text em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #0a0e1a;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: #0a0e1a;
}
.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--surface-2);
  color: var(--text);
  transform: translateY(-2px);
}
.glow-btn {
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}

/* Hero */
.hero {
  min-height: 100vh;
  padding: 140px 24px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 800;
  max-width: 900px;
  margin: 0 auto 24px;
  background: linear-gradient(180deg, #fff 0%, #9aa3b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.highlight-card {
  padding: 28px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  transition: transform 0.4s, box-shadow 0.4s;
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(74, 222, 128, 0.3);
}
.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

.floating-card {
  position: absolute;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(20px);
  animation: float 6s ease-in-out infinite;
}
.fc-1 { top: 25%; left: 3%; animation-delay: 0s; }
.fc-2 { top: 55%; right: 3%; animation-delay: -2s; }
.fc-3 { bottom: 15%; left: 8%; animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

/* Sections */
section { padding: 100px 0; position: relative; }

.section-head {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(74, 222, 128, 0.1);
  color: var(--primary);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  background: linear-gradient(180deg, #fff 0%, #9aa3b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head p {
  color: var(--text-muted);
  font-size: 17px;
}

/* Services Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 222, 128, 0.3);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-card .icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: inline-block;
  transition: transform 0.4s;
}
.service-card:hover .icon {
  transform: scale(1.15) rotate(-5deg);
}
.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text);
}
.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 20px;
}
.service-card .features {
  list-style: none;
  margin-bottom: 20px;
}
.service-card .features li {
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 14px;
  position: relative;
  padding-left: 22px;
}
.service-card .features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.card-cta {
  font-weight: 600;
  font-family: var(--font);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Timeline */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  opacity: 0.3;
}
.timeline-item {
  position: relative;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 24px;
  backdrop-filter: blur(20px);
  transition: all 0.4s;
}
.timeline-item:hover {
  transform: translateX(8px);
  border-color: rgba(74, 222, 128, 0.3);
  box-shadow: var(--shadow-lg);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 30px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--primary);
  box-shadow: 0 0 15px var(--primary);
}
.step-num {
  font-family: var(--font);
  font-weight: 800;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.timeline-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.timeline-item p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Article */
.article-section {
  background: linear-gradient(180deg, transparent, rgba(15, 20, 36, 0.6));
}
.article-wrapper {
  max-width: 820px;
  margin: 0 auto;
}
.article-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.article-meta .category {
  padding: 6px 14px;
  background: rgba(167, 139, 250, 0.15);
  color: var(--accent);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.article-meta .read-time {
  color: var(--text-muted);
  font-size: 14px;
  padding: 6px 0;
}
.article-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 32px;
  background: linear-gradient(180deg, #fff 0%, #9aa3b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.article-wrapper h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 48px 0 20px;
  color: var(--text);
  position: relative;
  padding-left: 18px;
}
.article-wrapper h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 2px;
}
.article-wrapper h3 {
  font-size: 1.2rem;
  margin: 32px 0 14px;
  color: var(--text);
}
.article-wrapper p {
  margin-bottom: 20px;
  color: #cbd2e0;
  font-size: 16.5px;
}
.lead-para {
  font-size: 18px !important;
  color: #e8ecf4 !important;
  font-weight: 500;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

.feature-list {
  list-style: none;
  margin: 20px 0;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.feature-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: #cbd2e0;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}

.ordered-list {
  margin: 20px 0;
  padding: 20px 20px 20px 52px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.ordered-list li {
  padding: 10px 0;
  color: #cbd2e0;
  position: relative;
}
.ordered-list li::marker {
  color: var(--primary);
  font-weight: 700;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.mini-card {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}
.mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 222, 128, 0.3);
}
.mini-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary);
}
.mini-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.callout-box, .tip-box, .warning-box {
  padding: 24px;
  border-radius: var(--radius);
  margin: 28px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.callout-box {
  background: rgba(96, 165, 250, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.2);
}
.callout-icon { font-size: 28px; }
.tip-box {
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.2);
}
.tip-icon { font-size: 28px; }
.warning-box {
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.2);
}
.warning-icon { font-size: 28px; }
.callout-box strong, .tip-box strong, .warning-box strong {
  color: var(--text);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-table th, .compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font);
  font-weight: 600;
  color: var(--primary);
}
.compare-table td {
  color: var(--text-muted);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255, 255, 255, 0.02); }

.quote-box {
  padding: 32px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(74, 222, 128, 0.05));
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  margin: 32px 0;
  text-align: center;
  font-style: italic;
}
.quote-box p {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 12px;
}
.quote-box span {
  color: var(--text-muted);
  font-size: 14px;
  font-style: normal;
}

/* FAQ */
.faq { margin-top: 80px; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(74, 222, 128, 0.3); }
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question .plus {
  color: var(--primary);
  font-size: 24px;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.active .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-muted);
}
.faq-item.active .faq-answer {
  max-height: 300px;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 10px;
  font-size: 120px;
  color: var(--primary);
  opacity: 0.08;
  font-family: serif;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 139, 250, 0.3);
  box-shadow: var(--shadow-lg);
}
.initials {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #0a0e1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font);
  margin-bottom: 16px;
  font-size: 18px;
}
.rating {
  color: var(--warning);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review {
  color: var(--text);
  font-size: 15px;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer strong {
  display: block;
  color: var(--text);
  font-family: var(--font);
  margin-bottom: 2px;
}
.reviewer span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
}
.info-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.info-item:last-of-type { border-bottom: none; margin-bottom: 24px; }
.info-icon { font-size: 24px; }
.info-item strong {
  display: block;
  font-family: var(--font);
  margin-bottom: 4px;
  color: var(--text);
}
.info-item a, .info-item span {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.5;
}
.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
}
.contact-form h3 {
  margin-bottom: 20px;
  color: var(--text);
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  margin-bottom: 14px;
  transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.contact-form button {
  width: 100%;
  margin-top: 8px;
}

/* Footer */
.footer {
  background: rgba(5, 8, 15, 0.8);
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text);
}
.footer-col p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}
.footer-col h4 {
  font-size: 15px;
  margin-bottom: 16px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 14px;
}
.footer-col ul li a:hover { color: var(--primary); }
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: lowercase;
  transition: all 0.3s;
}
.socials a:hover {
  background: var(--primary);
  color: #0a0e1a;
  border-color: var(--primary);
  transform: translateY(-3px);
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .floating-card { display: none; }
}

@media (max-width: 700px) {
  section { padding: 60px 0; }
  .hero { padding: 120px 20px 60px; min-height: auto; }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.3s;
  }
  .nav-links.open { transform: translateY(0); }
  .mobile-toggle { display: flex; }
  .nav-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-highlights { grid-template-columns: 1fr; }
  .article-wrapper h2 { padding-left: 14px; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}