/* =====================================================
   LANDING PAGE — Variant: EXECUTIVE (Navy & Gold)
   Palette: Deep Navy + Muted Gold/Brass
   Type: Playfair Display (serif headlines) + Inter (body)
   ===================================================== */

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

/* ─── DESIGN TOKENS ──────────────────────────────────── */
:root {
  --navy-950: #070C17;
  --navy-900: #0B1220;
  --navy-800: #0F1B33;
  --navy-700: #131F38;
  --navy-600: #182642;
  --navy-500: #1D2E4E;
  --navy-400: #253A5C;
  --navy-300: #33496C;

  --bg:             var(--navy-900);
  --bg-card:        var(--navy-700);
  --bg-elevated:    var(--navy-500);
  --border:         var(--navy-400);
  --border-subtle:  rgba(201, 162, 39, 0.14);
  --border-light:   var(--navy-300);

  --text:           #F3EFE3;
  --text-secondary: #A9B1C4;
  --text-muted:     #6E7691;
  --text-dimmed:    #454D68;

  --accent:         #C9A227;
  --accent-dim:     rgba(201, 162, 39, 0.08);
  --accent-mid:     rgba(201, 162, 39, 0.15);
  --accent-border:  rgba(201, 162, 39, 0.32);
  --accent-glow:    rgba(201, 162, 39, 0.28);

  --violet:         #C9A227;
  --violet-dim:     rgba(201, 162, 39, 0.08);
  --violet-border:  rgba(201, 162, 39, 0.24);

  --green:          #C9A227;
  --green-dim:      rgba(201, 162, 39, 0.08);
  --green-border:   rgba(201, 162, 39, 0.24);

  --amber:          #C9A227;
  --amber-dim:      rgba(201, 162, 39, 0.08);
  --amber-border:   rgba(201, 162, 39, 0.24);

  --grad-brand:     var(--accent);
  --grad-green:     var(--accent);
  --grad-text:      linear-gradient(135deg, var(--text) 30%, var(--accent) 100%);

  --max-w:          1080px;
  --radius:         4px;
  --radius-sm:      3px;
  --radius-xs:      2px;

  --shadow-sm:      0 1px 3px rgba(0,0,0,0.35);
  --shadow-md:      0 6px 24px rgba(0,0,0,0.45);
  --shadow-lg:      0 14px 46px rgba(0,0,0,0.55);
  --shadow-glow:    0 0 40px rgba(201, 162, 39, 0.16);

  --ease-out:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition:     all 0.35s 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.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: var(--navy-900); }
a { text-decoration: none; color: inherit; }

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

/* ─── NAVIGATION ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 24px;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 24px;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  padding: 10px 24px !important;
  border-radius: 0;
  background: transparent !important;
  border: 1px solid var(--accent) !important;
  color: var(--accent) !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--navy-900) !important;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
}
.nav-toggle:hover { border-color: var(--accent); }

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(11, 18, 32, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 28px 24px;
    gap: 22px;
    border-bottom: 1px solid var(--border);
  }
  .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: 140px 24px 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: -220px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.06) 0%, transparent 65%);
}
.hero-bg::after { content: none; }
.hero-grid { display: none; }
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 0;
  background: none;
  border-top: 1px solid var(--accent-border);
  border-bottom: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
  cursor: default;
}
.hero-badge-dot { display: none; }
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.3rem, 5.4vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.18;
  margin-bottom: 30px;
}
.hero-title .grad {
  font-style: italic;
  color: var(--accent);
  background: none;
  -webkit-text-fill-color: var(--accent);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.85;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 76px;
}
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-dimmed);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--accent);
  animation: bounce 2.4s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ─── STATS STRIP ─────────────────────────────────────── */
.stats-strip {
  background: var(--navy-800);
  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: 48px 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: rgba(201, 162, 39, 0.02); }
.stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--accent);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--navy-900);
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-large { padding: 18px 42px; font-size: 13px; }

/* ─── SECTIONS ────────────────────────────────────────── */
.section {
  padding: 116px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-dark {
  max-width: 100%;
  padding: 116px 24px;
  background: var(--navy-800);
  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: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
}
.section-badge.amber { color: var(--accent); }
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.28;
  margin-bottom: 56px;
  max-width: 700px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.8;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-cta { text-align: center; margin-top: 56px; }
.section-quote {
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text);
  max-width: 660px;
  margin: 52px auto 0;
  padding: 36px 0 0;
  border-top: 1px solid var(--border-subtle);
  line-height: 1.6;
}

/* ─── CARDS GRID (numbered gold monograms, no emoji) ──── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  counter-reset: card-counter;
}
.card {
  background: var(--bg-card);
  border: none;
  border-radius: 0;
  padding: 38px 32px;
  transition: var(--transition);
  position: relative;
  counter-increment: card-counter;
  text-align: center;
}
.card:hover { background: var(--navy-600); }
.card-icon { display: none; }
.card::before {
  content: counter(card-counter, decimal-leading-zero);
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}
.card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── PROBLEM ─────────────────────────────────────────── */
.problem-list {
  display: flex;
  flex-direction: column;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.problem-item {
  display: flex;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
  cursor: default;
}
.problem-item:last-child { border-bottom: none; }
.problem-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.problem-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.problem-line {
  width: 1px;
  flex: 1;
  min-height: 24px;
  margin-top: 10px;
  background: var(--border-subtle);
}
.problem-item:last-child .problem-line { display: none; }
.problem-body { flex: 1; padding-top: 10px; }
.problem-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}
.problem-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }

/* ─── SOLUTION ────────────────────────────────────────── */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.solution-card {
  background: var(--bg-card);
  border: none;
  border-radius: 0;
  padding: 38px 34px;
  transition: var(--transition);
  position: relative;
  text-align: center;
}
.solution-card:hover { background: var(--navy-600); }
.solution-check {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: none;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--accent);
  margin: 0 auto 22px;
  font-weight: 700;
}
.solution-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
.solution-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ─── TESTIMONIAL ─────────────────────────────────────── */
.testimonial-wrap { max-width: 780px; margin-left: auto; margin-right: auto; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 52px;
  position: relative;
  text-align: center;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  font-size: 100px;
  color: var(--accent);
  opacity: 0.18;
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  justify-content: center;
}
.star { color: var(--accent); font-size: 14px; }
.testimonial-card blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 34px;
  position: relative;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid var(--border-subtle);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: none;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Playfair Display', Georgia, serif;
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; }
.testimonial-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ─── OFFER ───────────────────────────────────────────── */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.offer-card {
  background: var(--bg-card);
  border: none;
  border-radius: 0;
  padding: 44px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.offer-card:hover { background: var(--navy-600); }
.offer-card.featured {
  background: var(--navy-600);
  box-shadow: inset 0 3px 0 var(--accent);
}
.offer-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}
.offer-icon { display: none; }
.offer-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 14px;
}
.offer-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.offer-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent-border);
  padding-bottom: 3px;
}
.offer-link:hover { border-color: var(--accent); }
.urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: none;
  border-top: 1px solid var(--accent-border);
  border-bottom: 1px solid var(--accent-border);
  border-radius: 0;
  padding: 24px 26px;
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.urgency-icon { display: none; }
.urgency p { font-size: 14px; color: var(--text-secondary); font-weight: 500; line-height: 1.7; }
.urgency strong { color: var(--accent); font-weight: 700; }

/* ─── FAQ ─────────────────────────────────────────────── */
.faq-list { max-width: 740px; margin-left: auto; margin-right: auto; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 20px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  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);
  border-color: var(--accent);
  color: var(--accent);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.9;
  transition: max-height 0.4s var(--ease-out), padding 0.35s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 26px; }

/* ─── FINAL CTA ───────────────────────────────────────── */
.section-final {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 140px 24px;
  background: var(--navy-800);
  border-top: 1px solid var(--border);
}
.final-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 162, 39, 0.07) 0%, transparent 60%);
}
.final-bg::after { content: none; }
.section-final .section-content { position: relative; z-index: 1; }
.section-final .section-title {
  font-family: 'Playfair Display', Georgia, serif;
  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.8;
}

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  padding: 60px 24px 36px;
  border-top: 1px solid var(--border);
  background: var(--navy-900);
}
.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-subtle);
}
.footer-brand-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.7;
}
.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: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  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);
  letter-spacing: 0.3px;
}
.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(20px);
  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: 80px 20px; }
  .section-dark { padding: 80px 20px; }
  .hero { padding: 120px 20px 80px; }
  .hero-title { font-size: 2.2rem; }
  .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.3rem; }
  .stat-item { padding: 30px 24px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-legal { justify-content: center; }
}
