/* ================================================================
   Akmous — landing.css
   Style: Apple clarity · Nike boldness · Zendesk/HubSpot conversion
   ================================================================ */

:root {
  --blue:       #2563eb;
  --blue-dk:    #1d4ed8;
  --blue-lt:    #eff6ff;
  --blue-mid:   #3b82f6;
  --purple:     #7c3aed;
  --green:      #16a34a;
  --orange:     #f97316;
  --text:       #0f172a;
  --text-soft:  #334155;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --surface:    #f8fafc;
  --white:      #ffffff;
  --nav-h:      64px;
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ── Typography ── */
.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Utilities ── */
.d-none-sm { display: inline; }

/* ═══════════════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 24px rgba(0,0,0,.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  flex: 1;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--surface);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-ghost-nav {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}

.btn-ghost-nav:hover {
  background: var(--surface);
  color: var(--text);
}

.btn-primary-nav {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: var(--blue);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: background 0.15s, transform 0.1s;
}

.btn-primary-nav:hover {
  background: var(--blue-dk);
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 24px 20px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.nav-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

.nav-mobile a:hover { background: var(--surface); }

.nav-mobile .btn-primary-nav {
  margin-top: 8px;
  text-align: center;
  display: block;
  padding: 12px;
}

.nav-mobile.open { display: flex; }

/* ═══════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════ */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 0;
  overflow: hidden;
  background: var(--white);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-lt);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid #bfdbfe;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

.btn-hero-primary:hover {
  background: var(--blue-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
}

.btn-hero-ghost:hover {
  border-color: #94a3b8;
  background: var(--surface);
  transform: translateY(-1px);
}

.hero-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 48px;
}

/* Trusted by */
.hero-trusted {
  margin-bottom: 0;
}

.trusted-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.logo-pill {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  background: #f1f5f9;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* Hero screen */
.hero-screen-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-screen-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 300px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-screen-frame {
  background: #1e293b;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.05);
}

.screen-bar {
  background: #0f172a;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red    { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green  { background: #22c55e; }

.screen-url {
  flex: 1;
  font-size: 11px;
  color: #475569;
  font-family: 'SF Mono', 'Fira Code', monospace;
  text-align: center;
  background: #1e293b;
  padding: 4px 16px;
  border-radius: 6px;
  max-width: 300px;
  margin: 0 auto;
}

.screen-img {
  width: 100%;
  display: block;
  border-top: 1px solid rgba(255,255,255,.04);
}

/* ═══════════════════════════════════════════════════════════════
   STATS BAND
════════════════════════════════════════════════════════════════ */
.stats-band {
  background: var(--text);
  padding: 40px 24px;
}

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 12px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-val {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.1);
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS commons
════════════════════════════════════════════════════════════════ */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 56px;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES — BENTO
════════════════════════════════════════════════════════════════ */
.features {
  padding: 100px 0;
  background: var(--surface);
}

.features .section-inner > .section-eyebrow,
.features .section-inner > .section-title,
.features .section-inner > .section-sub {
  text-align: center;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.bento-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-2px);
}

.bento-large {
  grid-column: span 2;
  display: flex;
  gap: 24px;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.bento-small {
  grid-column: span 1;
}

.feat-content {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feat-screen {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--surface);
}

.feat-screen img {
  width: 100%;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
  object-position: top;
  margin-top: auto;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}

.feat-screen-right {
  align-items: flex-end;
}

.feat-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--blue-lt);
  color: var(--blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.feat-icon-purple { background: #f5f3ff; color: var(--purple); }
.feat-icon-green  { background: #dcfce7; color: var(--green); }
.feat-icon-orange { background: #fff7ed; color: var(--orange); }

.bento-card h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text);
}

.bento-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.feat-list li {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.feat-list li::before {
  content: '→';
  color: var(--blue);
  font-weight: 700;
}

.ia-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.ia-chip {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
  background: #f5f3ff;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid #ddd6fe;
}

/* Feature-specific accents */
.feat-pipeline { border-top: 3px solid var(--blue); }
.feat-crm      { border-top: 3px solid var(--green); }
.feat-offers   { border-top: 3px solid var(--orange); }
.feat-ia       { border-top: 3px solid var(--purple); }
.feat-sav      { border-top: 3px solid var(--green); }
.feat-finance  { border-top: 3px solid var(--orange); }

/* ═══════════════════════════════════════════════════════════════
   SHOWCASE
════════════════════════════════════════════════════════════════ */
.showcase {
  padding: 100px 0;
  background: var(--white);
}

.showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.showcase-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
  margin-top: 12px;
}

.showcase-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-soft);
  font-weight: 500;
}

.check-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.btn-section-cta {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.15s;
}

.btn-section-cta:hover { text-decoration: underline; }

.showcase-visual {
  position: relative;
}

.visual-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.visual-glow-blue {
  background: radial-gradient(ellipse, rgba(37,99,235,.15) 0%, transparent 70%);
}

.showcase-visual img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.12);
  border: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════════════
   WHY AKMOUS
════════════════════════════════════════════════════════════════ */
.why {
  padding: 100px 0;
  background: var(--surface);
}

.why .section-inner > .section-eyebrow,
.why .section-inner > .section-title {
  text-align: center;
}

.why .section-title { margin-bottom: 56px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.why-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.07);
  transform: translateY(-2px);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-lt);
  color: var(--blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   COMPARE
════════════════════════════════════════════════════════════════ */
.compare {
  padding: 100px 0;
  background: var(--white);
}

.compare-table-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.compare-badge {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  text-align: center;
  margin-bottom: 32px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  border: 1px solid var(--border);
}

.compare-table thead tr {
  background: var(--text);
}

.compare-table th {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  text-align: center;
}

.compare-table th.col-feature { text-align: left; color: #64748b; }

.compare-table th .brand-name {
  color: var(--white);
  font-size: 15px;
}

.compare-table tbody tr {
  border-top: 1px solid var(--border);
  transition: background 0.15s;
}

.compare-table tbody tr:hover { background: var(--surface); }

.compare-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-soft);
  text-align: center;
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.col-akmous { background: rgba(37,99,235,.04); }

.check-yes { color: var(--green); }
.check-no  { color: #cbd5e1; }
.check-partial { font-size: 12px; color: var(--muted); font-style: italic; }

/* ═══════════════════════════════════════════════════════════════
   TÉMOIGNAGES
════════════════════════════════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: var(--surface);
}

.testimonials .section-inner > .section-eyebrow,
.testimonials .section-inner > .section-title {
  text-align: center;
}

.testimonials .section-title { margin-bottom: 56px; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.testi-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.07);
  transform: translateY(-2px);
}

.testi-featured {
  grid-row: span 2;
  background: linear-gradient(145deg, #1e40af, var(--blue));
  border-color: transparent;
  color: var(--white);
}

.testi-stars {
  font-size: 14px;
  color: #fbbf24;
  letter-spacing: 2px;
}

.testi-featured .testi-stars { color: #fde68a; }

.testi-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  font-style: italic;
  flex: 1;
}

.testi-featured blockquote {
  font-size: 18px;
  color: rgba(255,255,255,.9);
  font-style: normal;
  font-weight: 400;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-featured .testi-avatar {
  background: rgba(255,255,255,.2);
}

.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.testi-featured .testi-author strong {
  color: var(--white);
}

.testi-author span {
  font-size: 12px;
  color: var(--muted);
}

.testi-featured .testi-author span {
  color: rgba(255,255,255,.7);
}

/* ═══════════════════════════════════════════════════════════════
   TARIFS
════════════════════════════════════════════════════════════════ */
.pricing {
  padding: 100px 0;
  background: var(--white);
}

.pricing .section-inner > .section-eyebrow,
.pricing .section-inner > .section-title,
.pricing .section-inner > .section-sub {
  text-align: center;
}

.toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}

.toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.15s;
}

.toggle-label.active { color: var(--text); }

.save-badge {
  font-size: 11px;
  font-weight: 700;
  background: #dcfce7;
  color: var(--green);
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 4px;
}

.toggle-btn {
  width: 44px;
  height: 24px;
  background: var(--border);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
}

.toggle-btn.on { background: var(--blue); }

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.toggle-btn.on .toggle-thumb { transform: translateX(20px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pricing-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-2px);
}

.pricing-popular {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
  transform: scale(1.03);
}

.pricing-popular:hover {
  transform: scale(1.03) translateY(-2px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-bottom: 16px;
}

.pricing-popular .plan-name { color: #94a3b8; }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}

.price-val {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--text);
}

.pricing-popular .price-val { color: var(--white); }

.price-unit {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.pricing-popular .price-unit { color: #94a3b8; }

.plan-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-popular .plan-desc {
  color: #94a3b8;
  border-color: rgba(255,255,255,.1);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 500;
}

.pricing-popular .plan-features li { color: rgba(255,255,255,.85); }

.plan-features svg { flex-shrink: 0; }

.btn-plan {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid var(--border);
  color: var(--text);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-plan:hover {
  background: var(--surface);
  border-color: #94a3b8;
}

.btn-plan-popular {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-plan-popular:hover {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
  color: var(--white);
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 32px;
}

/* ═══════════════════════════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════════════════════════════ */
.cta-final {
  padding: 100px 24px;
  background: var(--text);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(37,99,235,.4) 0%, transparent 60%);
  pointer-events: none;
}

.cta-final h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-final p {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 36px;
}

.cta-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 16px;
}

.cta-input {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.cta-input::placeholder { color: #475569; }

.cta-input:focus {
  border-color: var(--blue);
}

.cta-submit {
  padding: 14px 24px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
  box-shadow: 0 4px 16px rgba(37,99,235,.5);
}

.cta-submit:hover {
  background: var(--blue-dk);
  transform: translateY(-1px);
}

.cta-note {
  font-size: 12px;
  color: #475569;
  margin-bottom: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.footer {
  background: #0a0f1e;
  padding: 60px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  display: block;
  margin-bottom: 12px;
}

.footer-brand-col p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-copy {
  font-size: 12px;
  color: #334155;
  margin-bottom: 0 !important;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #475569;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 10px;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento-large {
    grid-column: span 2;
    flex-direction: column;
  }

  .feat-screen {
    max-height: 220px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-popular {
    transform: none;
    order: -1;
  }

  .pricing-popular:hover { transform: translateY(-2px); }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .testi-featured {
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }

  .hero { padding-top: calc(var(--nav-h) + 48px); }
  .hero-title { letter-spacing: -1.5px; }
  .d-none-sm { display: none; }

  .bento {
    grid-template-columns: 1fr;
  }

  .bento-large {
    grid-column: span 1;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .stats-inner { gap: 0; }
  .stat-item { padding: 16px 24px; }
  .stat-divider { display: none; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-form {
    flex-direction: column;
  }

  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }
  .footer-links { grid-template-columns: 1fr; }
}
