/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #f5f3ff;
  --bg2:         #ffffff;
  --bg3:         #ede9fe;
  --purple:      #5b21b6;
  --purple-mid:  #7c3aed;
  --purple-light:#a78bfa;
  --purple-pale: #ede9fe;
  --ink:         #1e1033;
  --ink2:        #3b2a6e;
  --muted:       #6b7280;
  --border:      #ddd6fe;
  --border2:     #ede9fe;
  --card-bg:     #ffffff;
  --card-shadow: 0 2px 16px rgba(91,33,182,0.07);
  --card-shadow-hover: 0 8px 40px rgba(91,33,182,0.14);
  --radius:      18px;
  --radius-sm:   10px;
  --font-display: 'Readex Pro', sans-serif;
  --font-body:    'Readex Pro', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; color: var(--ink); }

.gradient-text {
  background: linear-gradient(135deg, var(--purple-mid) 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-mid);
  border: 1.5px solid var(--border);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  background: var(--purple-pale);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700;
  border-radius: 100px; cursor: pointer;
  text-decoration: none; transition: all 0.22s ease;
  border: none; white-space: nowrap;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  padding: 13px 30px; font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(91,33,182,0.28);
}
.btn-primary:hover {
  background: var(--purple-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(91,33,182,0.38);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  padding: 13px 30px; font-size: 0.95rem;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 8px rgba(91,33,182,0.06);
}
.btn-ghost:hover {
  border-color: var(--purple-mid);
  color: var(--purple-mid);
  box-shadow: 0 4px 16px rgba(91,33,182,0.12);
  transform: translateY(-2px);
}

.btn-lg  { padding: 15px 34px; font-size: 1rem; }
.btn-xl  { padding: 18px 42px; font-size: 1.1rem; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,243,255,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border2);
}

.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; gap: 40px;
}

.logo {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 800; color: var(--ink); letter-spacing: -0.02em;
}
.logo .dot { color: var(--purple-mid); }

.nav-links { display: flex; list-style: none; gap: 32px; margin-left: auto; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }

.nav-cta { margin-left: 16px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; margin-left: auto; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }

.mobile-menu {
  display: none; flex-direction: column; gap: 16px;
  padding: 20px 24px; border-top: 1px solid var(--border2); background: var(--bg2);
}
.mobile-menu a { color: var(--muted); text-decoration: none; font-size: 1rem; font-weight: 500; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 68px; position: relative; overflow: hidden;
  background: var(--bg);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.35;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #c4b5fd, #7c3aed);
  top: -280px; left: -200px;
  animation: orbFloat 9s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #ddd6fe, #a78bfa);
  bottom: -150px; right: -150px;
  animation: orbFloat 12s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0); }
  50%       { transform: translate(24px,-24px); }
}

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 80px 24px; max-width: 620px;
}

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--purple-mid);
  border: 1.5px solid var(--border); padding: 6px 16px;
  border-radius: 100px; margin-bottom: 28px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(91,33,182,0.1);
}
.badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e; animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800; line-height: 1.0;
  margin-bottom: 24px; letter-spacing: -0.03em;
  color: var(--ink);
}

.hero-sub {
  font-size: 1.15rem; color: var(--muted);
  margin-bottom: 12px; max-width: 500px; line-height: 1.7;
}

.hero-tagline {
  font-size: 0.88rem; color: var(--purple-mid);
  font-weight: 600; margin-bottom: 36px; letter-spacing: 0.04em;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 800;
  background: linear-gradient(135deg, var(--purple-mid), #c084fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* HERO DASHBOARD */
.hero-visual {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 480px; padding-right: 40px; z-index: 2;
  animation: floatUp 1s ease-out forwards; opacity: 0; animation-delay: 0.4s;
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(calc(-50% + 30px)); }
  to   { opacity: 1; transform: translateY(-50%); }
}

.dashboard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(91,33,182,0.12), 0 4px 16px rgba(91,33,182,0.08);
}

.dash-header {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px; border-bottom: 1px solid var(--border2);
  background: var(--bg);
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.red    { background: #ff5f57; }
.dash-dot.yellow { background: #febc2e; }
.dash-dot.green  { background: #28c840; }
.dash-title { font-size: 0.78rem; color: var(--muted); margin-left: 8px; font-weight: 600; }

.dash-body { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.dash-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.dash-card {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 14px; display: flex; align-items: center; gap: 12px;
}
.dash-icon { font-size: 1.4rem; color: var(--purple-mid); flex-shrink: 0; }
.dash-card-label { font-size: 0.7rem; color: var(--muted); font-weight: 500; }
.dash-card-val   { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ink); }

.active-dot::before { content: '● '; color: #22c55e; font-size: 0.6rem; }

.pulse-card { border-color: var(--border); animation: cardPulse 3s ease-in-out infinite; }
@keyframes cardPulse {
  0%, 100% { box-shadow: none; }
  50%       { box-shadow: 0 0 0 4px rgba(124,58,237,0.1); }
}

.dash-chart { background: var(--bg); border-radius: var(--radius-sm); padding: 14px; border: 1px solid var(--border2); }
.chart-label { font-size: 0.7rem; color: var(--muted); margin-bottom: 10px; font-weight: 600; }
.chart-bars  { display: flex; align-items: flex-end; gap: 6px; height: 60px; }
.bar { flex: 1; height: var(--h); background: var(--border); border-radius: 4px 4px 0 0; }
.active-bar { background: linear-gradient(to top, var(--purple), var(--purple-light)); }

.dash-feed { display: flex; flex-direction: column; gap: 8px; }
.feed-item {
  font-size: 0.74rem; color: var(--muted);
  padding: 8px 12px; background: var(--bg);
  border-radius: 8px; border-left: 2.5px solid var(--purple-mid);
}

/* ===== LOGOS ===== */
.logos-section {
  padding: 40px 0;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  background: var(--bg2);
}
.logos-label {
  text-align: center; font-size: 0.78rem; color: var(--muted);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 24px; font-weight: 600;
}
.logos-row { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.logos-row img {
  height: 26px; width: auto;
  opacity: 0.35; filter: grayscale(1) brightness(0);
  transition: all 0.3s;
}
.logos-row img:hover { opacity: 0.8; filter: grayscale(0) brightness(1); }

/* ===== PROBLEM ===== */
.problem { background: var(--bg2); }

.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.problem-card {
  background: var(--bg);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius);
  padding: 30px;
  transition: all 0.28s ease;
  box-shadow: var(--card-shadow);
}
.problem-card:hover {
  border-color: var(--purple-light);
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}
.prob-icon { font-size: 2rem; color: var(--purple-mid); display: block; margin-bottom: 16px; }
.problem-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.problem-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

.highlight-card {
  background: var(--purple);
  border-color: var(--purple);
}
.highlight-card h3 { color: #fff; }
.highlight-card p  { color: rgba(255,255,255,0.75); }
.highlight-card .prob-icon { color: #c4b5fd; }

/* ===== SOLUTION ===== */
.solution { background: var(--bg); }

.solution-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.solution-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.solution-list li { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: var(--ink2); font-weight: 500; }
.solution-list iconify-icon { color: var(--purple-mid); font-size: 1.2rem; flex-shrink: 0; }

.solution-visual { display: flex; justify-content: center; }

.system-diagram { position: relative; width: 300px; height: 300px; }

.sys-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.sys-lines line {
  stroke: var(--border);
  stroke-width: 1.5; stroke-dasharray: 6 4;
  animation: dashMove 3s linear infinite;
}
@keyframes dashMove { to { stroke-dashoffset: -20; } }

.sys-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(91,33,182,0.35);
}
.sys-center iconify-icon { font-size: 1.6rem; color: #fff; }
.sys-center span { font-size: 0.52rem; color: rgba(255,255,255,0.85); font-weight: 700; }

.sys-node {
  position: absolute; width: 56px; height: 56px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  z-index: 2; transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(91,33,182,0.08);
}
.sys-node:hover { border-color: var(--purple-mid); box-shadow: 0 4px 20px rgba(91,33,182,0.18); }
.sys-node iconify-icon { font-size: 1.1rem; color: var(--purple-mid); }
.sys-node span { font-size: 0.48rem; color: var(--muted); font-weight: 600; }

.n1 { top: -10px; left: 50%; transform: translateX(-50%); }
.n2 { top: 50px; right: -10px; transform: translateY(-50%); }
.n3 { bottom: 20px; right: 10px; }
.n4 { bottom: 20px; left: 10px; }
.n5 { top: 50px; left: -10px; transform: translateY(-50%); }

/* ===== FEATURES ===== */
.features { background: var(--bg2); }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.feature-card {
  background: var(--bg);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.28s ease;
  position: relative; overflow: hidden;
  box-shadow: var(--card-shadow);
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), #c084fc);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { border-color: var(--purple-light); transform: translateY(-5px); box-shadow: var(--card-shadow-hover); }
.feature-card:hover::before { opacity: 1; }

.feature-icon-wrap {
  width: 48px; height: 48px;
  background: var(--purple-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.4rem; color: var(--purple-mid);
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.feature-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ===== HOW IT WORKS ===== */
.how { background: var(--bg); }
.how .section-title { text-align: center; }
.how .section-tag   { display: block; text-align: center; }

.steps { display: flex; align-items: flex-start; margin-top: 60px; }

.step {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; text-align: center; padding: 0 20px;
}

.step-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 800;
  background: linear-gradient(135deg, var(--purple-mid), #c084fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 20px;
}
.step-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.step-content p  { font-size: 0.88rem; color: var(--muted); }

.step-connector {
  flex-shrink: 0; width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--purple-light), #c084fc);
  margin-top: 24px; opacity: 0.5;
}

/* ===== OFFER ===== */
.offer { background: var(--bg2); }

.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.offer-item {
  background: var(--bg);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  transition: all 0.28s ease;
  box-shadow: var(--card-shadow);
}
.offer-item:hover {
  border-color: var(--purple-light);
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}
.offer-item iconify-icon { font-size: 2.2rem; color: var(--purple-mid); display: block; margin-bottom: 16px; }
.offer-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.offer-item p  { font-size: 0.85rem; color: var(--muted); }

/* ===== SOCIAL PROOF ===== */
.proof { background: var(--bg); }

.marquee-outer {
  overflow: hidden; margin-bottom: 20px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex; gap: 20px; width: max-content;
  animation: marqueeLeft 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-reverse { animation: marqueeRight 45s linear infinite; }
.marquee-reverse:hover { animation-play-state: paused; }

@keyframes marqueeLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqueeRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.testimonial {
  background: var(--bg2);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius);
  padding: 28px 24px; width: 340px; flex-shrink: 0;
  transition: all 0.28s ease;
  box-shadow: var(--card-shadow);
}
.testimonial:hover { border-color: var(--purple-light); box-shadow: var(--card-shadow-hover); transform: translateY(-3px); }

.stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--border); object-fit: cover; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--ink); }
.testi-author span  { font-size: 0.75rem; color: var(--muted); }

.results-row { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 48px; }

.result-badge {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--bg2);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius);
  padding: 24px 32px; min-width: 140px;
  box-shadow: var(--card-shadow);
  transition: all 0.28s;
}
.result-badge:hover { border-color: var(--purple-light); box-shadow: var(--card-shadow-hover); transform: translateY(-3px); }
.result-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--purple-mid), #c084fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.result-badge span:last-child { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

@media (max-width: 640px) { .testimonial { width: 280px; } }

/* ===== FINAL CTA ===== */
.cta-section {
  position: relative; overflow: hidden;
  padding: 120px 0; text-align: center;
  background: var(--purple);
}

.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-cta-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,181,253,0.4), transparent 70%);
  top: -200px; left: 50%; transform: translateX(-50%);
  filter: blur(60px); opacity: 1;
}
.orb-cta-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(167,139,250,0.3), transparent 70%);
  bottom: -100px; right: 5%;
  filter: blur(60px); opacity: 1;
}

.cta-inner { position: relative; z-index: 2; }
.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800;
  margin-bottom: 20px; letter-spacing: -0.03em; color: #fff;
}
.cta-title .gradient-text {
  background: linear-gradient(135deg, #e9d5ff, #fff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-sub { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 40px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.cta-note { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

.cta-section .btn-primary {
  background: #fff; color: var(--purple);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.cta-section .btn-primary:hover {
  background: #f5f3ff; box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.cta-section .btn-ghost {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.4);
  box-shadow: none;
}
.cta-section .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}

/* ===== FOOTER ===== */
.footer { padding: 40px 0; border-top: 1px solid var(--border2); background: var(--bg2); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer-tagline { font-size: 0.85rem; color: var(--muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.82rem; color: var(--muted); text-decoration: none; transition: color 0.2s; font-weight: 500; }
.footer-links a:hover { color: var(--purple-mid); }
.footer-copy { font-size: 0.78rem; color: #c4b5fd; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .solution-inner { grid-template-columns: 1fr; gap: 48px; }
  .solution-visual { display: none; }
  .problem-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .problem-grid, .features-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; align-items: flex-start; gap: 32px; }
  .step { text-align: left; align-items: flex-start; }
  .step-connector { width: 2px; height: 32px; margin: 0 0 0 28px; }
  .results-row { gap: 16px; }
  .hero-btns { flex-direction: column; }
  .hero-stats { gap: 16px; }
}

@media (max-width: 480px) {
  .offer-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.8rem; }
}

/* ===== POLISH & ANIMATIONS ===== */

/* Nav icon in button */
.nav-cta iconify-icon { font-size: 1rem; }

/* Badge sparkle icon */
.badge iconify-icon { font-size: 0.9rem; }

/* Hero tagline */
.hero-tagline { letter-spacing: 0.06em; }

/* Btn icon sizing */
.btn iconify-icon { font-size: 1.05rem; flex-shrink: 0; }

/* Solution list icon fill color */
.solution-list iconify-icon { color: #22c55e; font-size: 1.3rem; }

/* ===== STEP ICON ===== */
.step-icon {
  width: 52px; height: 52px;
  background: var(--purple-pale);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--purple-mid);
  margin-bottom: 16px;
  transition: all 0.3s;
}
.step:hover .step-icon {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  transform: rotate(-6deg) scale(1.08);
}

/* ===== OFFER ICON ===== */
.offer-icon {
  width: 56px; height: 56px;
  background: var(--purple-pale);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--purple-mid);
  margin: 0 auto 20px;
  transition: all 0.3s;
}
.offer-item:hover .offer-icon {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  transform: scale(1.1) rotate(4deg);
}

/* ===== CTA BADGE ===== */
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}
.cta-badge iconify-icon { font-size: 0.9rem; color: #fde68a; }

/* CTA note icon */
.cta-note { display: flex; align-items: center; justify-content: center; gap: 6px; }
.cta-note iconify-icon { font-size: 1rem; color: rgba(255,255,255,0.6); }

/* ===== FOOTER LINKS WITH ICONS ===== */
.footer-links a {
  display: inline-flex; align-items: center; gap: 5px;
}
.footer-links iconify-icon { font-size: 0.85rem; }

/* ===== FEATURE CARD NUMBER ===== */
.feature-card { counter-increment: feature-counter; }
.features-grid { counter-reset: feature-counter; }

/* ===== LOGOS MARQUEE ===== */
.logos-row {
  animation: logosScroll 20s linear infinite;
  flex-wrap: nowrap;
  width: max-content;
}
.logos-outer {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
@keyframes logosScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== HOVER LIFT on problem cards ===== */
.problem-card .prob-icon {
  transition: transform 0.3s ease;
}
.problem-card:hover .prob-icon {
  transform: scale(1.2) rotate(-5deg);
}
.highlight-card:hover .prob-icon {
  transform: scale(1.2) rotate(5deg);
}

/* ===== FEATURE ICON HOVER ===== */
.feature-icon-wrap {
  transition: all 0.3s ease;
}
.feature-card:hover .feature-icon-wrap {
  background: var(--purple);
  color: #fff;
  transform: scale(1.1) rotate(-4deg);
}

/* ===== RESULT BADGE COUNTER ANIMATION ===== */
.result-badge { cursor: default; }

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 99;
  width: 44px; height: 44px;
  background: var(--purple);
  color: #fff; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer;
  box-shadow: 0 4px 20px rgba(91,33,182,0.35);
  opacity: 0; transform: translateY(16px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--purple-mid); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(91,33,182,0.45); }

/* ===== NAV SCROLLED STATE ===== */
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 20px rgba(91,33,182,0.08);
}

/* ===== SECTION ENTRANCE STAGGER ===== */
.problem-card:nth-child(1) { transition-delay: 0.05s; }
.problem-card:nth-child(2) { transition-delay: 0.10s; }
.problem-card:nth-child(3) { transition-delay: 0.15s; }
.problem-card:nth-child(4) { transition-delay: 0.20s; }
.problem-card:nth-child(5) { transition-delay: 0.25s; }
.problem-card:nth-child(6) { transition-delay: 0.30s; }

.feature-card:nth-child(1) { transition-delay: 0.05s; }
.feature-card:nth-child(2) { transition-delay: 0.10s; }
.feature-card:nth-child(3) { transition-delay: 0.15s; }
.feature-card:nth-child(4) { transition-delay: 0.20s; }
.feature-card:nth-child(5) { transition-delay: 0.25s; }
.feature-card:nth-child(6) { transition-delay: 0.30s; }

.step:nth-child(1) { transition-delay: 0.05s; }
.step:nth-child(3) { transition-delay: 0.15s; }
.step:nth-child(5) { transition-delay: 0.25s; }
.step:nth-child(7) { transition-delay: 0.35s; }

.offer-item:nth-child(1) { transition-delay: 0.05s; }
.offer-item:nth-child(2) { transition-delay: 0.12s; }
.offer-item:nth-child(3) { transition-delay: 0.19s; }
.offer-item:nth-child(4) { transition-delay: 0.26s; }

/* ===== LOGOS SECTION REWORK ===== */
.logos-section { overflow: hidden; }
.logos-row { gap: 56px; }

/* ===== HAMBURGER → X ANIMATION ===== */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== LOGOS SECTION FIX ===== */
.logos-section .container { margin-bottom: 20px; }
.logos-row img { height: 26px; width: auto; opacity: 0.4; filter: grayscale(1) brightness(0); transition: all 0.3s; flex-shrink: 0; }
.logos-row img:hover { opacity: 0.75; filter: grayscale(0) brightness(1); }

/* ===== CONTACT FORM LABEL FIX ===== */
.form-group label { color: var(--ink); }
