/* ═══════════════════════════════════════
   DictaScribe — Main Stylesheet v2
   ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap');

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

:root {
  --navy: #0a0f2c;
  --navy-light: #141b3d;
  --navy-mid: #1c2547;
  --indigo: #4f46e5;
  --indigo-dark: #3730a3;
  --indigo-light: #818cf8;
  --indigo-glow: rgba(79,70,229,.15);
  --cyan: #06b6d4;
  --cyan-light: #67e8f9;
  --emerald: #10b981;
  --amber: #f59e0b;
  --rose: #f43f5e;
  --bg: #fafbff;
  --bg-alt: #f0f4ff;
  --bg-dark: #080c1e;
  --card: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;
  --text-lighter: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(10,15,44,.04);
  --shadow: 0 4px 20px rgba(10,15,44,.06);
  --shadow-lg: 0 12px 40px rgba(10,15,44,.1);
  --shadow-xl: 0 20px 60px rgba(10,15,44,.14);
  --shadow-glow: 0 0 60px rgba(79,70,229,.12);
  --transition: cubic-bezier(.22,.61,.36,1);
  --bounce: cubic-bezier(.34,1.56,.64,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: rgba(79,70,229,.15); color: var(--navy); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
code, .mono { font-family: 'JetBrains Mono', monospace; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 28px; }
.container-lg { max-width: 1320px; margin: 0 auto; padding: 0 28px; }


/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-sm); font-weight: 700;
  font-size: .93rem; border: none; cursor: pointer; font-family: inherit;
  transition: all .35s var(--transition); position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
  opacity: 0; transition: opacity .3s;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--indigo), #6366f1);
  color: #fff; box-shadow: 0 4px 16px rgba(79,70,229,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(79,70,229,.4); }
.btn-outline { background: transparent; border: 2px solid rgba(79,70,229,.3); color: var(--indigo); }
.btn-outline:hover { background: var(--indigo); color: #fff; border-color: var(--indigo); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--indigo); box-shadow: 0 4px 16px rgba(255,255,255,.2); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,255,255,.3); }
.btn-lg { padding: 18px 44px; font-size: 1rem; border-radius: 14px; }
.btn-sm { padding: 10px 22px; font-size: .85rem; }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.25); }
.btn-icon { width: 48px; height: 48px; padding: 0; border-radius: 12px; justify-content: center; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }


/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,251,255,.6);
  backdrop-filter: blur(24px) saturate(1.5); -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid transparent;
  transition: all .4s var(--transition);
}
.nav.scrolled {
  background: rgba(250,251,255,.92);
  border-bottom-color: rgba(10,15,44,.06);
  box-shadow: 0 1px 20px rgba(10,15,44,.05);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.logo { font-size: 1.35rem; font-weight: 900; color: var(--navy); letter-spacing: -.03em; display: flex; align-items: center; gap: 8px; }
.logo-icon { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, var(--indigo), var(--cyan)); display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 18px; height: 18px; fill: #fff; }
.logo span { background: linear-gradient(135deg, var(--indigo), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-left: -7px; }
.logo b { font-weight: 900; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a {
  font-size: .8rem; font-weight: 500; color: var(--text-light);
  transition: color .25s; position: relative; padding: 4px 0; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--indigo), var(--cyan)); border-radius: 1px;
  transform: scaleX(0); transform-origin: right; transition: transform .3s var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-lang { font-size: .82rem; font-weight: 600; color: var(--text-light); cursor: pointer; padding: 6px 12px; border-radius: 6px; transition: all .2s; }
.nav-lang:hover { background: var(--bg-alt); color: var(--navy); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: all .3s; }


/* ── Section Helpers ── */
.section { padding: 100px 0; position: relative; }
.section-sm { padding: 70px 0; }
.section-lg { padding: 120px 0; }
.bg-alt { background: var(--bg-alt); }
.bg-dark { background: var(--navy); color: #fff; }
.bg-darker { background: var(--bg-dark); color: #fff; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--indigo); background: rgba(79,70,229,.06);
  padding: 8px 18px; border-radius: 50px; margin-bottom: 18px;
  border: 1px solid rgba(79,70,229,.1);
}
.bg-dark .section-label { background: rgba(255,255,255,.08); color: var(--indigo-light); border-color: rgba(255,255,255,.1); }
.section-title {
  font-size: 2.8rem; font-weight: 900; line-height: 1.12;
  color: var(--navy); letter-spacing: -.035em; margin-bottom: 18px;
}
.section-title-sm { font-size: 2rem; }
.bg-dark .section-title { color: #fff; }
.section-sub { font-size: 1.05rem; color: var(--text-light); line-height: 1.8; max-width: 560px; }
.bg-dark .section-sub { color: rgba(255,255,255,.55); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-sub { margin: 0 auto; }
.section-header .section-title { max-width: 680px; margin-left: auto; margin-right: auto; }
.gradient-text { background: linear-gradient(135deg, var(--indigo), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Section Decorations */
.section-deco { position: absolute; pointer-events: none; }
.deco-blur { width: 400px; height: 400px; border-radius: 50%; filter: blur(100px); opacity: .5; }
.deco-indigo { background: rgba(79,70,229,.08); }
.deco-cyan { background: rgba(6,182,212,.06); }


/* ── Hero ── */
.hero {
  padding: 150px 0 100px;
  background: radial-gradient(ellipse at 25% 50%, rgba(79,70,229,.07) 0%, transparent 55%),
              radial-gradient(ellipse at 75% 20%, rgba(6,182,212,.05) 0%, transparent 45%),
              radial-gradient(ellipse at 50% 100%, rgba(79,70,229,.03) 0%, transparent 50%),
              var(--bg);
  position: relative; overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(79,70,229,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,70,229,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}
.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(79,70,229,.05); border: 1px solid rgba(79,70,229,.12);
  padding: 8px 18px; border-radius: 50px; font-size: .82rem; font-weight: 600;
  color: var(--indigo); margin-bottom: 24px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(16,185,129,.4); animation: dot-pulse 2s infinite;
}
@keyframes dot-pulse { 0% { box-shadow: 0 0 0 0 rgba(16,185,129,.5); } 70% { box-shadow: 0 0 0 10px rgba(16,185,129,0); } }
.hero h1 { font-size: 3.4rem; font-weight: 900; line-height: 1.08; color: var(--navy); letter-spacing: -.04em; margin-bottom: 22px; }
.hero .subtitle { font-size: 1.1rem; color: var(--text-light); max-width: 500px; line-height: 1.8; margin-bottom: 36px; }
.hero-img { position: relative; perspective: 1000px; }
.hero-img > img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); transition: transform .5s var(--transition); }
.hero-img:hover > img { transform: rotateY(-2deg) rotateX(1deg) scale(1.01); }
.hero-float-card {
  position: absolute; background: #fff; border-radius: 14px;
  padding: 16px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  font-size: .85rem; font-weight: 600; color: var(--navy);
  border: 1px solid rgba(255,255,255,.8);
  backdrop-filter: blur(8px);
}
.hero-float-card.card-1 { bottom: -20px; left: -16px; animation: float-1 5s ease-in-out infinite; }
.hero-float-card.card-2 { top: 20px; right: -20px; animation: float-2 6s ease-in-out infinite; }
.hero-float-card.card-3 { bottom: 60px; right: -30px; animation: float-3 5.5s ease-in-out infinite; }
@keyframes float-1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes float-2 { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-8px) rotate(1deg); } }
@keyframes float-3 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.float-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.float-icon.green { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.float-icon.blue { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.float-icon.purple { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }


/* ── Marquee Trust Bar ── */
.trust-bar { padding: 24px 0; border-bottom: 1px solid var(--border-light); overflow: hidden; }
.trust-label { text-align: center; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text-lighter); margin-bottom: 20px; }
.marquee { overflow: hidden; position: relative; }
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-track {
  display: flex; gap: 0; align-items: center; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-item { padding: 0 28px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.marquee-item img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; opacity: .5; }
.marquee-item span { font-size: .95rem; font-weight: 700; color: var(--navy); opacity: .3; letter-spacing: -.01em; }


/* ── Steps / How It Works ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.steps-line {
  position: absolute; top: 230px; left: 16.66%; right: 16.66%;
  height: 2px; background: linear-gradient(90deg, var(--indigo), var(--cyan), var(--indigo));
  opacity: .15; z-index: 0;
}
.step-card {
  background: var(--card); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border-light);
  transition: all .45s var(--transition); position: relative; z-index: 1;
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl), var(--shadow-glow); }
.step-card-img { height: 200px; overflow: hidden; position: relative; }
.step-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--transition); }
.step-card:hover .step-card-img img { transform: scale(1.08); }
.step-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,15,44,.06), transparent 50%);
}
.step-card-body { padding: 28px; }
.step-num {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--indigo), #7c3aed);
  color: #fff; font-weight: 800; font-size: .9rem;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px; box-shadow: 0 4px 12px rgba(79,70,229,.25);
}
.step-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.step-card p { font-size: .9rem; color: var(--text-light); line-height: 1.7; }


/* ── Feature Rows ── */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row + .feature-row { margin-top: 110px; }
.feature-text h3 { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; letter-spacing: -.02em; line-height: 1.2; }
.feature-text p { font-size: .95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; }
.feature-list { list-style: none; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 16px; font-size: .93rem; line-height: 1.6; color: var(--text);
}
.feature-check {
  width: 24px; height: 24px; border-radius: 8px; flex-shrink: 0; margin-top: 1px;
  background: linear-gradient(135deg, var(--indigo), #7c3aed);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .7rem; font-weight: 900;
  box-shadow: 0 2px 8px rgba(79,70,229,.2);
}
.feature-img { position: relative; }
.feature-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); transition: transform .5s var(--transition), box-shadow .5s; }
.feature-img:hover img { transform: scale(1.02); box-shadow: var(--shadow-xl); }
.feature-img .deco-dot {
  position: absolute; width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(79,70,229,.1), rgba(6,182,212,.1));
  z-index: -1;
}
.feature-img .deco-dot.top-right { top: -30px; right: -30px; }
.feature-img .deco-dot.bottom-left { bottom: -30px; left: -30px; }


/* ── Specs Grid ── */
.specs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.spec-card {
  background: var(--card); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); border: 1px solid var(--border-light);
  transition: all .4s var(--transition); position: relative; overflow: hidden;
}
.spec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(79,70,229,.15); }
.spec-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--cyan));
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--transition);
}
.spec-card:hover::before { transform: scaleX(1); }
.spec-icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(79,70,229,.08), rgba(6,182,212,.08));
}
.spec-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.spec-card p { font-size: .88rem; color: var(--text-light); line-height: 1.7; }


/* ── Stats Bar ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item { padding: 20px 0; }
.stat-number { font-size: 2.2rem; font-weight: 900; color: #ffffff !important; margin-bottom: 6px; line-height: 1; -webkit-text-fill-color: #ffffff; }
.stat-label { font-size: .88rem; color: rgba(255,255,255,.45); font-weight: 500; }
.stat-divider { width: 40px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--indigo-light), var(--cyan)); margin: 12px auto 0; }


/* ── Audience ── */
.audience-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.audience-tag {
  background: var(--card); border: 1px solid var(--border);
  padding: 14px 28px; border-radius: 60px;
  font-weight: 600; font-size: .9rem; color: var(--navy);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 10px;
  transition: all .4s var(--transition);
}
.audience-tag:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-lg); border-color: var(--indigo); color: var(--indigo); }
.audience-tag img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-light); }


/* ── Comparison Table ── */
.compare-wrapper { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); border: 1px solid var(--border-light); }
.compare-table { width: 100%; border-collapse: collapse; background: var(--card); min-width: 640px; }
.compare-table thead { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); }
.compare-table th {
  padding: 20px 24px; font-size: .85rem; font-weight: 700;
  color: rgba(255,255,255,.85); text-align: left; white-space: nowrap;
}
.compare-table th.highlight-col { color: #fff; position: relative; }
.compare-table th.highlight-col::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(79,70,229,.2);
}
.recommend-badge {
  display: block; margin: 0 auto 8px;
  background: linear-gradient(135deg, var(--indigo), #7c3aed); color: #fff;
  font-size: .65rem; font-weight: 700; padding: 4px 14px; border-radius: 20px;
  white-space: nowrap; letter-spacing: .05em; width: fit-content;
}
.compare-table td {
  padding: 16px 24px; font-size: .88rem; border-bottom: 1px solid var(--border-light);
  transition: background .2s;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: rgba(79,70,229,.015); }
.col-highlight { background: rgba(79,70,229,.03); font-weight: 600; color: var(--indigo); position: relative; }
.col-highlight::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--indigo); }
.compare-check { color: var(--emerald); font-weight: 700; }
.compare-cross { color: var(--rose); opacity: .7; }


/* ── Testimonial ── */
.testimonial-card {
  background: var(--card); border-radius: var(--radius-xl); padding: 56px;
  box-shadow: var(--shadow-xl); border: 1px solid var(--border-light);
  max-width: 760px; margin: 0 auto; text-align: center; position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--indigo), var(--cyan), var(--indigo));
}
.testimonial-quote {
  position: absolute; top: 20px; left: 40px;
  font-size: 8rem; line-height: 1; color: rgba(79,70,229,.06); font-family: Georgia, serif;
}
.testimonial-text { font-size: 1.2rem; line-height: 1.85; color: var(--text); font-style: italic; margin-bottom: 28px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 3px solid var(--border-light); }
.testimonial-info { text-align: left; }
.testimonial-name { font-size: .95rem; font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: .82rem; color: var(--text-light); }
.testimonial-stars { color: var(--amber); font-size: .85rem; letter-spacing: 2px; margin-bottom: 20px; }


/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 800px; margin: 0 auto; }
.pricing-card {
  background: var(--card); border-radius: var(--radius-lg); padding: 40px 36px;
  box-shadow: var(--shadow); border: 1px solid var(--border-light);
  transition: all .4s var(--transition); text-align: center;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.pricing-card.featured {
  border-color: var(--indigo); box-shadow: var(--shadow-xl), var(--shadow-glow);
  position: relative; overflow: hidden;
}
.pricing-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--indigo), var(--cyan));
}
.pricing-tag { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--indigo); margin-bottom: 8px; }
.pricing-name { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.pricing-price { font-size: 3rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.pricing-price .currency { font-size: 1.4rem; vertical-align: super; }
.pricing-period { font-size: .85rem; color: var(--text-light); margin-bottom: 28px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-features li { padding: 8px 0; font-size: .9rem; display: flex; align-items: center; gap: 10px; color: var(--text); border-bottom: 1px solid var(--border-light); }
.pricing-features li:last-child { border: none; }
.pricing-features .check { color: var(--emerald); font-weight: 700; }


/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--card); border-radius: var(--radius); margin-bottom: 12px;
  border: 1px solid var(--border-light); overflow: hidden;
  transition: all .3s var(--transition);
}
.faq-item:hover { border-color: rgba(79,70,229,.15); }
.faq-question {
  padding: 22px 28px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-size: .95rem; font-weight: 700; color: var(--navy);
  transition: color .2s;
}
.faq-question:hover { color: var(--indigo); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 8px; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--indigo); flex-shrink: 0;
  transition: all .3s var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--indigo); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--transition), padding .4s; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 28px 22px; font-size: .9rem; color: var(--text-light); line-height: 1.75; }


/* ── Demo Section ── */
.demo-frame {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl); border: 1px solid rgba(10,15,44,.08);
  background: var(--card); position: relative;
}
.demo-toolbar {
  height: 44px; background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 16px; gap: 8px;
}
.demo-dot { width: 12px; height: 12px; border-radius: 50%; }
.demo-dot.red { background: #ff5f57; }
.demo-dot.yellow { background: #febc2e; }
.demo-dot.green { background: #28c840; }
.demo-url {
  flex: 1; text-align: center; font-size: .75rem; color: var(--text-lighter);
  font-family: 'JetBrains Mono', monospace;
}


/* ── CTA Section ── */
.cta-section {
  padding: 120px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #0e1638 40%, #1a1145 100%);
}
.cta-section .deco-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
}
.cta-section .orb-1 { width: 500px; height: 500px; top: -200px; right: -100px; background: rgba(79,70,229,.15); }
.cta-section .orb-2 { width: 350px; height: 350px; bottom: -150px; left: -80px; background: rgba(6,182,212,.1); }
.cta-section .orb-3 { width: 200px; height: 200px; top: 50%; left: 50%; transform: translate(-50%,-50%); background: rgba(79,70,229,.08); }
.cta-inner { text-align: center; color: #fff; position: relative; z-index: 1; }
.cta-inner h2 { font-size: 3rem; font-weight: 900; margin-bottom: 18px; letter-spacing: -.035em; }
.cta-inner p { font-size: 1.1rem; opacity: .55; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.8; }


/* ── Footer ── */
.footer { background: var(--bg-dark); color: rgba(255,255,255,.5); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo { color: #fff; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.footer-col a { display: block; font-size: .88rem; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--indigo-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: .8rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: all .2s;
}
.footer-social a:hover { background: var(--indigo); color: #fff; }


/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.6rem; }
  .section-title { font-size: 2.2rem; }
  .feature-row + .feature-row { margin-top: 72px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-grid, .feature-row, .specs-grid, .pricing-grid { grid-template-columns: 1fr; gap: 36px; }
  .feature-row.reverse { direction: ltr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-line { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-float-card { display: none; }
  .cta-inner h2 { font-size: 2.2rem; }
  .testimonial-card { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-grid-bg { display: none; }
}
@media (max-width: 480px) {
  .btn-group { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .stat-number { font-size: 2.4rem; }
}
