/* =====================================================
   LANDING PAGE — Variant: SAAS (Premium Product, Glassmorphism)
   Palette: Soft Gray-Blue + Indigo/Violet Gradient
   Type: Inter (everything, heavy weights on headlines)
   ===================================================== */

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

/* ─── DESIGN TOKENS ──────────────────────────────────── */
:root {
  --slate-50:  #F7F8FB;
  --slate-100: #FFFFFF;
  --slate-200: #EEF0F7;
  --slate-300: #E1E4F0;
  --slate-400: #C7CCE3;
  --slate-500: #A6ADCB;

  --ink-900: #12142B;
  --ink-800: #1B1E3A;
  --ink-700: #2B2F52;

  --bg:             var(--slate-50);
  --bg-card:        var(--slate-100);
  --bg-elevated:    var(--slate-200);
  --border:         var(--slate-300);
  --border-subtle:  rgba(18, 20, 43, 0.06);
  --border-light:   var(--slate-400);

  --text:           var(--ink-900);
  --text-secondary: #585E82;
  --text-muted:     #8489A8;
  --text-dimmed:    #ACB1CB;

  --accent:         #6366F1;
  --accent-dim:     rgba(99, 102, 241, 0.08);
  --accent-mid:     rgba(99, 102, 241, 0.16);
  --accent-border:  rgba(99, 102, 241, 0.25);
  --accent-glow:    rgba(99, 102, 241, 0.3);

  --violet:         #A855F7;
  --violet-dim:     rgba(168, 85, 247, 0.08);
  --violet-border:  rgba(168, 85, 247, 0.24);

  --green:          #10B981;
  --green-dim:      rgba(16, 185, 129, 0.08);
  --green-border:   rgba(16, 185, 129, 0.24);

  --amber:          #F59E0B;
  --amber-dim:      rgba(245, 158, 11, 0.08);
  --amber-border:   rgba(245, 158, 11, 0.24);

  --grad-brand:     linear-gradient(135deg, var(--accent) 0%, var(--violet) 100%);
  --grad-green:     linear-gradient(135deg, var(--green) 0%, #059669 100%);
  --grad-text:      linear-gradient(135deg, var(--ink-900) 20%, var(--accent) 100%);

  --max-w:          1100px;
  --radius:         24px;
  --radius-sm:      16px;
  --radius-xs:      12px;

  --shadow-sm:      0 2px 8px rgba(43, 47, 82, 0.06);
  --shadow-md:      0 12px 32px rgba(43, 47, 82, 0.09);
  --shadow-lg:      0 24px 60px rgba(43, 47, 82, 0.14);
  --shadow-glow:    0 0 50px rgba(99, 102, 241, 0.2);

  --ease-out:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition:     all 0.3s var(--ease-out);
}

/* ─── BASE ────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: #fff; }
a { text-decoration: none; color: inherit; }

/* ─── SCROLL PROGRESS ─────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--grad-brand);
  z-index: 500;
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── NAVIGATION ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 24px;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 24px;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 10px 24px !important;
  border-radius: 999px;
  background: var(--grad-brand) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  box-shadow: 0 6px 20px var(--accent-glow);
}
.nav-cta:hover {
  box-shadow: 0 8px 28px var(--accent-glow) !important;
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
}
.nav-toggle:hover { border-color: var(--accent-border); }

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 12px; right: 12px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 28px 24px;
    gap: 22px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 130px 24px 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  top: -300px; left: -250px;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.16) 0%, transparent 65%);
  animation: blob-float 9s ease-in-out infinite alternate;
  filter: blur(20px);
}
.hero-bg::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  bottom: -220px; right: -200px;
  background: radial-gradient(ellipse, rgba(168, 85, 247, 0.14) 0%, transparent 65%);
  animation: blob-float 12s ease-in-out infinite alternate-reverse;
  filter: blur(20px);
}
@keyframes blob-float {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 30px) scale(1.12); }
}
.hero-grid { display: none; }
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 840px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 36px;
  cursor: default;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad-brand);
  animation: dot-pulse 1.8s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.65); }
}
.hero-title {
  font-size: clamp(2.3rem, 5.8vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.06;
  margin-bottom: 28px;
}
.hero-title .grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.75;
  font-weight: 450;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-dimmed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--accent);
  animation: bounce 2.2s ease-in-out infinite;
  box-shadow: var(--shadow-sm);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ─── STATS STRIP ─────────────────────────────────────── */
.stats-strip {
  background: var(--slate-100);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-inner {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.stat-item {
  padding: 44px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: var(--border);
}
.stat-item:hover { background: var(--slate-50); }
.stat-value {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  display: block;
}
.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
  line-height: 1.4;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover {
  box-shadow: 0 12px 32px var(--accent-glow);
  transform: translateY(-2px);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--accent-border);
  transform: translateY(-1px);
}
.btn-large { padding: 19px 44px; font-size: 16px; }

/* ─── SECTIONS ────────────────────────────────────────── */
.section {
  padding: 112px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-dark {
  max-width: 100%;
  padding: 112px 24px;
  background: var(--slate-200);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.section-dark > .section-badge,
.section-dark > .section-title,
.section-dark > .section-subtitle,
.section-dark > .problem-list,
.section-dark > .faq-list,
.section-dark > .testimonial-wrap,
.section-dark > .section-quote,
.section-dark > .section-cta {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
}
.section-badge.amber {
  background: var(--amber-dim);
  border-color: var(--amber-border);
  color: var(--amber);
}
.section-title {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.15;
  margin-bottom: 52px;
  max-width: 720px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.75;
}
.section-cta { text-align: center; margin-top: 56px; }
.section-quote {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 600;
  max-width: 660px;
  margin: 48px auto 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}

/* ─── CARDS GRID ──────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-border);
}
.card-icon {
  font-size: 30px;
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}
.card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── PROBLEM ─────────────────────────────────────────── */
.problem-list {
  display: flex;
  flex-direction: column;
  max-width: 760px;
}
.problem-item {
  display: flex;
  gap: 24px;
  padding: 30px;
  margin-bottom: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.problem-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.problem-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.problem-num {
  width: 44px; height: 44px;
  border-radius: 14px;
  border: none;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.problem-line { display: none; }
.problem-body { flex: 1; padding-top: 4px; }
.problem-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.problem-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.75; }

/* ─── SOLUTION ────────────────────────────────────────── */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.solution-check {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--grad-green);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 800;
}
.solution-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.solution-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ─── TESTIMONIAL ─────────────────────────────────────── */
.testimonial-wrap { max-width: 760px; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -28px; left: 28px;
  font-size: 160px;
  color: var(--accent);
  opacity: 0.08;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 22px;
}
.star { color: var(--amber); font-size: 15px; }
.testimonial-card blockquote {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 30px;
  font-weight: 500;
  position: relative;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--grad-brand);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; letter-spacing: -0.2px; }
.testimonial-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ─── OFFER ───────────────────────────────────────────── */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.offer-card.featured {
  background: linear-gradient(180deg, rgba(99,102,241,0.05), var(--bg-card) 40%);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-glow);
}
.offer-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  display: block;
}
.offer-icon {
  font-size: 44px;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}
.offer-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}
.offer-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.offer-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.offer-link:hover { opacity: 0.8; }
.urgency {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--amber-dim);
  border: 1px solid var(--amber-border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-top: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.urgency-icon { font-size: 22px; flex-shrink: 0; line-height: 1; margin-top: 1px; }
.urgency p { font-size: 14px; color: #B45309; font-weight: 600; line-height: 1.6; }
.urgency strong { color: var(--text); font-weight: 800; }

/* ─── FAQ ─────────────────────────────────────────────── */
.faq-list { max-width: 740px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  background: var(--bg-card);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 20px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: var(--transition);
  flex-shrink: 0;
  color: var(--text-muted);
}
.faq-item.open .faq-question { color: var(--accent); }
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--grad-brand);
  color: #fff;
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  padding: 0 24px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.85;
  transition: max-height 0.4s var(--ease-out), padding 0.35s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 24px; }

/* ─── FINAL CTA ───────────────────────────────────────── */
.section-final {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 130px 24px;
}
.final-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.final-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99, 102, 241, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(168, 85, 247, 0.1) 0%, transparent 60%);
}
.final-bg::after { content: none; }
.section-final .section-content { position: relative; z-index: 1; }
.section-final .section-title {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-final .section-subtitle {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.78;
}

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  padding: 56px 24px 36px;
  border-top: 1px solid var(--border);
  background: var(--slate-100);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  margin-bottom: 36px;
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.footer-brand-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.65;
}
.footer-links-group {
  display: flex;
  gap: 48px;
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-col .col-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dimmed);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}
.footer-links-col a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer-links-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12px;
  color: var(--text-dimmed);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--accent); }

/* ─── REVEAL ANIMATIONS ───────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal]:nth-child(1) { transition-delay: 0s; }
[data-reveal]:nth-child(2) { transition-delay: 0.1s; }
[data-reveal]:nth-child(3) { transition-delay: 0.2s; }
[data-reveal]:nth-child(4) { transition-delay: 0.3s; }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item + .stat-item::before { top: 0; bottom: auto; left: 25%; right: 25%; width: auto; height: 1px; }
  .solution-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-links-group { gap: 28px; }
}
@media (max-width: 640px) {
  .section { padding: 72px 20px; }
  .section-dark { padding: 72px 20px; }
  .hero { padding: 110px 20px 72px; }
  .hero-title { font-size: 2.1rem; letter-spacing: -1.5px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions > * { text-align: center; justify-content: center; }
  .cards-grid { grid-template-columns: 1fr; }
  .stat-value { font-size: 2.4rem; }
  .stat-item { padding: 28px 24px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-legal { justify-content: center; }
}
