﻿/* ===== DESIGN SYSTEM ===== */
:root {
  --blue:       #8BC5D3;
  --blue-dark:  #1A3A5C;
  --blue-mid:   #2A6080;
  --blue-light: #BDE0EA;
  --blue-xlight:#E8F4F8;
  --white:      #FFFFFF;
  --gray:       #6B7280;
  --gray-light: #F4F8FB;
  --dark:       #0F2236;
  --text:       #1A2B3C;
  /* SMO accent — violet/purple */
  --purple:     #9B59B6;
  --purple-dark:#6C3483;
  --purple-mid: #8E44AD;
  --purple-light:#D7BDE2;
  --purple-xlight:#F5EEF8;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Nunito Sans',sans-serif; color:var(--text); background:var(--white); overflow-x:hidden; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height:100vh;
  background:linear-gradient(135deg,#0F2236 0%,#1a1040 35%,#2d1b69 65%,#9B59B6 100%);
  display:flex; align-items:center; padding:100px 5% 120px;
  position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; top:-200px; right:-200px;
  width:700px; height:700px;
  background:radial-gradient(circle,rgba(155,89,182,.2) 0%,transparent 70%);
  border-radius:50%;
}
.hero::after {
  content:''; position:absolute; bottom:-150px; left:-100px;
  width:500px; height:500px;
  background:radial-gradient(circle,rgba(155,89,182,.12) 0%,transparent 70%);
  border-radius:50%;
}
.hero-shape {
  position:absolute; border-radius:50%;
  background:rgba(155,89,182,.08);
  animation:float 6s ease-in-out infinite;
}
.hero-shape:nth-child(1){width:80px;height:80px;top:20%;right:15%;}
.hero-shape:nth-child(2){width:120px;height:120px;top:60%;right:8%;animation-delay:2s;}
.hero-shape:nth-child(3){width:50px;height:50px;top:35%;right:30%;animation-delay:4s;}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-20px)}}

.hero-inner { display:flex; align-items:center; gap:60px; width:100%; position:relative; z-index:2; max-width:1200px; margin:0 auto; }
.hero-content { flex:1; max-width:560px; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(155,89,182,.25); border:1px solid rgba(155,89,182,.4);
  color:var(--purple-light); padding:8px 18px; border-radius:50px;
  font-size:.78rem; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; margin-bottom:28px;
}
.hero-badge::before {
  content:''; width:8px; height:8px; background:var(--purple);
  border-radius:50%; animation:pulse 2s infinite;
}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.8)}}
@keyframes slideUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
.hero h1 {
  font-family:'Nunito',sans-serif; font-size:3.2rem; font-weight:900;
  color:var(--white); line-height:1.1; margin-bottom:16px;
  animation:slideUp .8s ease both;
}
.hero h1 span { color:var(--purple-light); }
.hero-sub {
  font-size:1rem; color:rgba(255,255,255,.7); line-height:1.7;
  margin-bottom:40px; animation:slideUp .8s ease both .15s;
}
.hero-btns { display:flex; gap:16px; flex-wrap:wrap; animation:slideUp .8s ease both .3s; }
.btn-primary {
  background:var(--purple); color:var(--white); padding:16px 36px;
  border-radius:50px; font-weight:800; font-size:.95rem;
  text-decoration:none; transition:all .3s;
  box-shadow:0 8px 30px rgba(155,89,182,.4);
  display:inline-flex; align-items:center; gap:8px;
}
.btn-primary:hover { background:var(--white); color:var(--purple-dark); transform:translateY(-2px); }
.btn-secondary {
  border:2px solid rgba(255,255,255,.35); color:var(--white);
  padding:16px 36px; border-radius:50px; font-weight:700;
  font-size:.95rem; text-decoration:none; transition:all .3s;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-secondary:hover { border-color:var(--purple-light); background:rgba(155,89,182,.15); transform:translateY(-2px); }

/* Hero visual — SMO dashboard */
.hero-visual { flex:1; display:flex; justify-content:center; padding-left:40px; animation:slideUp 1s ease both .4s; }
.hero-mockup {
  width:460px; background:rgba(255,255,255,.05);
  border:1px solid rgba(155,89,182,.3); border-radius:24px;
  overflow:hidden; backdrop-filter:blur(20px);
  box-shadow:0 40px 80px rgba(0,0,0,.4),0 0 0 1px rgba(155,89,182,.1);
}
.mockup-bar {
  background:rgba(0,0,0,.4); padding:12px 18px;
  display:flex; align-items:center; gap:8px;
  border-bottom:1px solid rgba(155,89,182,.15);
}
.mockup-dot{width:11px;height:11px;border-radius:50%;}
.mockup-dot:nth-child(1){background:#ff5f57}
.mockup-dot:nth-child(2){background:#febc2e}
.mockup-dot:nth-child(3){background:#28c840}
.mockup-url { flex:1; background:rgba(255,255,255,.07); border-radius:6px; padding:5px 12px; color:rgba(255,255,255,.5); font-size:.73rem; text-align:center; font-family:monospace; }
.mockup-content { background:linear-gradient(160deg,#0a1628 0%,#1a1040 100%); }
.mockup-header { padding:16px 20px 12px; border-bottom:1px solid rgba(155,89,182,.1); display:flex; align-items:center; justify-content:space-between; }
.mockup-title { color:var(--white); font-weight:700; font-size:.85rem; }
.mockup-badge { background:rgba(155,89,182,.25); color:var(--purple-light); padding:3px 10px; border-radius:20px; font-size:.68rem; font-weight:700; }

/* Social stats in mockup */
.smo-platforms { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:rgba(155,89,182,.06); }
.smo-platform { background:rgba(10,22,40,.85); padding:13px 12px; text-align:center; }
.smo-platform-val { color:var(--purple-light); font-size:1.15rem; font-weight:800; font-family:'Nunito',sans-serif; display:block; }
.smo-platform-lbl { color:rgba(255,255,255,.4); font-size:.6rem; text-transform:uppercase; letter-spacing:.04em; margin-top:2px; display:block; }

.smo-engage { padding:14px 18px; border-bottom:1px solid rgba(155,89,182,.08); }
.engage-label { color:rgba(255,255,255,.4); font-size:.65rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom:10px; }
.engage-bars { display:flex; flex-direction:column; gap:7px; }
.engage-row { display:flex; align-items:center; gap:10px; }
.engage-name { color:rgba(255,255,255,.6); font-size:.65rem; width:60px; flex-shrink:0; }
.engage-track { flex:1; height:5px; background:rgba(255,255,255,.06); border-radius:3px; overflow:hidden; }
.engage-fill { height:100%; border-radius:3px; animation:growW 1.5s ease both; }
@keyframes growW{from{width:0}to{width:var(--w)}}
.engage-val { color:var(--purple-light); font-size:.65rem; font-weight:700; width:30px; text-align:right; }

.smo-posts { padding:12px 18px 16px; }
.smo-post { display:flex; align-items:center; gap:10px; padding:6px 0; border-bottom:1px solid rgba(255,255,255,.04); }
.smo-post:last-child { border-bottom:none; }
.post-icon { width:26px; height:26px; background:rgba(155,89,182,.18); border-radius:7px; display:flex; align-items:center; justify-content:center; font-size:.72rem; flex-shrink:0; }
.post-info { flex:1; }
.post-name { color:rgba(255,255,255,.75); font-size:.72rem; font-weight:600; }
.post-sub { color:rgba(255,255,255,.35); font-size:.62rem; margin-top:2px; }
.post-badge { font-size:.62rem; padding:2px 8px; border-radius:20px; font-weight:700; }
.badge-green { background:rgba(34,197,94,.15); color:#4ade80; }
.badge-purple { background:rgba(155,89,182,.2); color:var(--purple-light); }

/* Hero stats bar */
.hero-stats {
  position:absolute; bottom:0; left:0; right:0;
  background:rgba(255,255,255,.05); backdrop-filter:blur(20px);
  border-top:1px solid rgba(155,89,182,.2);
  display:flex; justify-content:center;
}
.hero-stat { flex:1; max-width:220px; padding:22px 20px; text-align:center; border-right:1px solid rgba(155,89,182,.15); }
.hero-stat:last-child { border-right:none; }
.hero-stat-num { font-family:'Nunito',sans-serif; font-size:2rem; font-weight:900; color:var(--purple-light); display:block; line-height:1; }
.hero-stat-lbl { color:rgba(255,255,255,.55); font-size:.78rem; margin-top:5px; display:block; }

/* ── BREADCRUMB ───────────────────────────────────────── */
.breadcrumb-bar { background:var(--gray-light); border-bottom:1px solid rgba(155,89,182,.15); padding:14px 5%; }
.breadcrumb { display:flex; align-items:center; gap:8px; font-size:.8rem; color:var(--gray); max-width:1200px; margin:0 auto; }
.breadcrumb a { color:var(--purple-mid); text-decoration:none; font-weight:600; transition:color .2s; }
.breadcrumb a:hover { color:var(--purple); }
.breadcrumb span { color:var(--gray); }
.breadcrumb .current { color:var(--text); font-weight:700; }

/* ── SECTION BASE ─────────────────────────────────────── */
section { padding:90px 5%; }
.section-tag {
  display:inline-block; background:var(--purple-xlight); color:var(--purple-mid);
  padding:6px 16px; border-radius:50px; font-size:.73rem; font-weight:700;
  text-transform:uppercase; letter-spacing:.1em; margin-bottom:14px;
}
.section-title { font-family:'Nunito',sans-serif; font-size:2.5rem; font-weight:900; color:var(--dark); line-height:1.15; margin-bottom:14px; }
.section-title span { color:var(--purple-mid); }
.section-sub { color:var(--gray); font-size:1rem; line-height:1.7; max-width:600px; }
.section-center { text-align:center; }
.section-center .section-sub { margin:0 auto; }

/* ── WHAT IS SMO ──────────────────────────────────────── */
.what-section { background:var(--white); }
.what-inner { max-width:1100px; margin:0 auto; }
.what-grid { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.what-visual {
  background:linear-gradient(135deg,var(--purple-xlight),var(--purple-light));
  border-radius:24px; padding:32px; display:flex; align-items:center;
  justify-content:center; min-height:260px; position:relative; overflow:hidden;
}
.what-visual::before {
  content:''; position:absolute; top:-40px; right:-40px;
  width:180px; height:180px;
  background:radial-gradient(circle,rgba(155,89,182,.3) 0%,transparent 70%);
  border-radius:50%;
}
.what-big-icon { font-size:6rem; line-height:1; position:relative; z-index:1; }
.what-text p { font-size:.97rem; color:var(--gray); line-height:1.85; margin-bottom:14px; }
.what-text p strong { color:var(--text); }
.what-text .highlight { color:var(--purple-mid); font-weight:700; }

/* ── PROMISE SECTION (dark) ───────────────────────────── */
.promise-section {
  background:linear-gradient(135deg,#0F2236 0%,#1a1040 40%,#2d1b69 80%,#3d1f7a 100%);
  padding:90px 5%; position:relative; overflow:hidden;
}
.promise-section::before {
  content:''; position:absolute; top:-100px; right:-100px;
  width:500px; height:500px;
  background:radial-gradient(circle,rgba(155,89,182,.15) 0%,transparent 70%);
  border-radius:50%;
}
.promise-inner { max-width:1100px; margin:0 auto; position:relative; z-index:1; }
.promise-grid { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:flex-start; margin-top:50px; }
.promise-left { }
.promise-left h3 {
  font-family:'Nunito',sans-serif; font-size:1.15rem; font-weight:800;
  color:rgba(255,255,255,.9); margin-bottom:24px; line-height:1.5;
}
.promise-left h3 span { color:var(--purple-light); }
.promise-list { list-style:none; display:flex; flex-direction:column; gap:14px; }
.promise-list li {
  display:flex; align-items:flex-start; gap:14px;
  background:rgba(155,89,182,.08); border:1px solid rgba(155,89,182,.18);
  border-radius:14px; padding:16px 18px; transition:all .3s;
}
.promise-list li:hover { border-color:rgba(155,89,182,.4); background:rgba(155,89,182,.14); transform:translateX(4px); }
.promise-list-icon { font-size:1.1rem; flex-shrink:0; margin-top:2px; }
.promise-list-text { color:rgba(255,255,255,.75); font-size:.88rem; line-height:1.65; }
.promise-list-text strong { color:var(--white); }

.promise-right { }
.promise-illu {
  background:rgba(255,255,255,.04); border:1px solid rgba(155,89,182,.2);
  border-radius:20px; overflow:hidden; backdrop-filter:blur(10px);
}
.promise-illu-top { background:rgba(0,0,0,.3); padding:12px 16px; display:flex; align-items:center; gap:8px; border-bottom:1px solid rgba(155,89,182,.12); }
.illu-dot { width:9px; height:9px; border-radius:50%; }
.illu-dot:nth-child(1){background:#ff5f57}
.illu-dot:nth-child(2){background:#febc2e}
.illu-dot:nth-child(3){background:#28c840}
.illu-label { color:rgba(255,255,255,.4); font-size:.7rem; font-family:monospace; flex:1; text-align:center; }
.promise-illu-body { padding:20px 18px; display:flex; flex-direction:column; gap:10px; }
.illu-row {
  background:rgba(155,89,182,.08); border:1px solid rgba(155,89,182,.15);
  border-radius:10px; padding:12px 14px;
  display:flex; align-items:center; gap:12px;
}
.illu-icon { font-size:1.1rem; flex-shrink:0; }
.illu-text { flex:1; }
.illu-title { color:rgba(255,255,255,.8); font-size:.78rem; font-weight:700; }
.illu-sub { color:rgba(255,255,255,.4); font-size:.65rem; margin-top:2px; }
.illu-val { color:var(--purple-light); font-family:'Nunito',sans-serif; font-weight:900; font-size:.9rem; }

/* ── HOW SECTION (dark accordion) ────────────────────── */
.how-section {
  background:linear-gradient(135deg,#1a1040 0%,#2d1b69 50%,#3d1f7a 100%);
  padding:90px 5%; position:relative; overflow:hidden;
}
.how-section::before {
  content:''; position:absolute; top:-100px; left:-100px;
  width:400px; height:400px;
  background:radial-gradient(circle,rgba(155,89,182,.12) 0%,transparent 70%);
  border-radius:50%;
}
.how-inner { display:flex; gap:70px; align-items:flex-start; max-width:1100px; margin:0 auto; position:relative; z-index:1; }
.how-left { flex:0 0 360px; }
.how-left h2 { font-family:'Nunito',sans-serif; font-size:2.4rem; font-weight:900; color:var(--white); line-height:1.15; margin-bottom:28px; }
.how-left h2 span { color:var(--purple-light); }
.how-left p { color:rgba(255,255,255,.6); font-size:.9rem; line-height:1.75; margin-bottom:28px; }
.how-illu { background:rgba(255,255,255,.04); border:1px solid rgba(155,89,182,.2); border-radius:20px; overflow:hidden; backdrop-filter:blur(10px); }
.how-illu-top { background:rgba(0,0,0,.3); padding:12px 16px; display:flex; align-items:center; gap:8px; border-bottom:1px solid rgba(155,89,182,.12); }
.how-illu-dot { width:9px; height:9px; border-radius:50%; }
.how-illu-dot:nth-child(1){background:#ff5f57}
.how-illu-dot:nth-child(2){background:#febc2e}
.how-illu-dot:nth-child(3){background:#28c840}
.how-illu-label { color:rgba(255,255,255,.4); font-size:.7rem; font-family:monospace; flex:1; text-align:center; }
.how-illu-body { padding:20px 18px; display:flex; flex-direction:column; gap:10px; }
.how-illu .illu-row { background:rgba(155,89,182,.08); border:1px solid rgba(155,89,182,.15); }
.how-illu .illu-val { color:var(--purple-light); font-family:'Nunito',sans-serif; font-weight:900; font-size:.9rem; }

.how-right { flex:1; padding-top:4px; }
.acc-item { border-bottom:1px solid rgba(155,89,182,.15); overflow:hidden; }
.acc-item:last-child { border-bottom:none; }
.acc-header { display:flex; align-items:center; gap:14px; padding:22px 0; cursor:pointer; transition:all .2s; }
.acc-num {
  width:32px; height:32px; background:rgba(155,89,182,.18);
  border:1px solid rgba(155,89,182,.3); color:var(--purple-light); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:.75rem; flex-shrink:0; transition:background .2s;
}
.acc-item.open .acc-num, .acc-item:hover .acc-num { background:var(--purple); color:var(--white); }
.acc-title { flex:1; color:rgba(255,255,255,.85); font-size:1rem; font-weight:700; transition:color .2s; }
.acc-item:hover .acc-title, .acc-item.open .acc-title { color:var(--white); }
.acc-plus { color:rgba(255,255,255,.4); font-size:1.4rem; font-weight:300; transition:transform .3s,color .2s; flex-shrink:0; line-height:1; }
.acc-item.open .acc-plus { transform:rotate(45deg); color:var(--purple-light); }
.acc-body { max-height:0; overflow:hidden; transition:max-height .4s ease,padding .3s; padding:0 0 0 46px; }
.acc-item.open .acc-body { max-height:160px; padding:0 20px 20px 46px; }
.acc-body p { color:rgba(255,255,255,.55); font-size:.86rem; line-height:1.75; }

/* ── WHY SECTION ──────────────────────────────────────── */
.why-section { background:var(--white); }
.why-inner { max-width:1100px; margin:0 auto; }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:50px; }
.why-card {
  background:linear-gradient(135deg,var(--dark),#1a1040);
  border:1px solid rgba(155,89,182,.2); border-radius:22px;
  padding:34px 28px; transition:all .3s; position:relative; overflow:hidden;
}
.why-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--purple),var(--purple-light)); opacity:0; transition:opacity .3s;
}
.why-card:hover { border-color:rgba(155,89,182,.45); transform:translateY(-6px); box-shadow:0 20px 50px rgba(155,89,182,.15); }
.why-card:hover::before { opacity:1; }
.why-card-icon { width:52px; height:52px; background:rgba(155,89,182,.18); border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:1.4rem; margin-bottom:18px; }
.why-card h3 { font-family:'Nunito',sans-serif; font-size:1.1rem; font-weight:900; color:var(--white); margin-bottom:10px; line-height:1.35; }
.why-card p { font-size:.84rem; color:rgba(255,255,255,.58); line-height:1.65; }
.why-card-num { position:absolute; top:20px; right:22px; font-family:'Nunito',sans-serif; font-size:2.2rem; font-weight:900; color:rgba(155,89,182,.15); line-height:1; }

/* ── PLATFORMS SECTION ─────────────────────────────────── */
.platforms-section { background:var(--gray-light); }
.platforms-inner { max-width:1100px; margin:0 auto; }
.platforms-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:40px; }
.platform-card {
  background:var(--white); border-radius:18px; padding:28px 22px; text-align:center;
  border:1px solid rgba(155,89,182,.15); transition:all .3s;
}
.platform-card:hover { border-color:var(--purple); box-shadow:0 10px 30px rgba(155,89,182,.15); transform:translateY(-4px); }
.platform-icon { font-size:2.4rem; margin-bottom:14px; display:block; }
.platform-card h4 { font-family:'Nunito',sans-serif; font-weight:800; font-size:1rem; color:var(--dark); margin-bottom:7px; }
.platform-card p { font-size:.8rem; color:var(--gray); line-height:1.6; }

/* ── PROCESS SECTION ──────────────────────────────────── */
.process-section { background:var(--white); }
.process-inner { max-width:1100px; margin:0 auto; }
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:50px; }
.process-step {
  background:var(--gray-light); border-radius:20px; padding:32px 26px;
  border:1px solid rgba(155,89,182,.12); transition:all .3s; text-align:center;
}
.process-step:hover { border-color:var(--purple); box-shadow:0 10px 30px rgba(155,89,182,.12); transform:translateY(-4px); }
.step-num {
  width:52px; height:52px; background:linear-gradient(135deg,var(--purple-dark),var(--purple));
  color:var(--white); border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-family:'Nunito',sans-serif; font-size:1.4rem; font-weight:900;
  margin:0 auto 18px;
}
.process-step h3 { font-family:'Nunito',sans-serif; font-size:1.05rem; font-weight:800; color:var(--dark); margin-bottom:10px; }
.process-step p { font-size:.84rem; color:var(--gray); line-height:1.65; }

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testi-section { background:var(--gray-light); }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; max-width:1100px; margin:50px auto 0; }
.testi-card { background:var(--white); border-radius:20px; padding:30px 26px; border:1px solid rgba(155,89,182,.2); transition:all .3s; }
.testi-card:hover { box-shadow:0 16px 40px rgba(155,89,182,.12); transform:translateY(-4px); }
.testi-quote { font-family:'Nunito',sans-serif; font-size:3.5rem; font-weight:900; color:var(--purple-light); line-height:.6; margin-bottom:16px; }
.testi-text { font-size:.88rem; color:var(--gray); line-height:1.7; margin-bottom:20px; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar { width:44px; height:44px; background:linear-gradient(135deg,var(--purple-dark),var(--purple)); color:var(--white); border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:.82rem; flex-shrink:0; }
.testi-name { font-weight:700; font-size:.88rem; color:var(--dark); }
.testi-role { font-size:.76rem; color:var(--gray); }
.testi-stars { color:#f59e0b; font-size:.78rem; margin-top:3px; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-section { background:var(--white); }
.faq-inner { max-width:780px; margin:50px auto 0; }
.faq-item { border:1px solid rgba(155,89,182,.2); border-radius:14px; margin-bottom:12px; overflow:hidden; transition:border-color .3s; }
.faq-item:hover { border-color:var(--purple); }
.faq-item.open { border-color:var(--purple); }
.faq-q { padding:18px 22px; cursor:pointer; display:flex; align-items:center; justify-content:space-between; font-weight:700; font-size:.9rem; color:var(--dark); background:var(--white); user-select:none; }
.faq-q:hover { background:var(--purple-xlight); }
.faq-item.open .faq-q { background:var(--purple-xlight); }
.faq-arrow { color:var(--purple-mid); font-size:.9rem; transition:transform .3s; flex-shrink:0; }
.faq-item.open .faq-arrow { transform:rotate(180deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .4s ease,padding .3s; }
.faq-item.open .faq-a { max-height:200px; }
.faq-a p { padding:0 22px 18px; font-size:.86rem; color:var(--gray); line-height:1.75; }

/* ── CTA STRIP ─────────────────────────────────────────── */
.cta-strip {
  background:linear-gradient(135deg,#0F2236 0%,#1a1040 40%,#2d1b69 100%);
  text-align:center; padding:90px 5%; position:relative; overflow:hidden;
}
.cta-strip::before {
  content:''; position:absolute; top:-100px; right:-100px;
  width:400px; height:400px;
  background:radial-gradient(circle,rgba(155,89,182,.15) 0%,transparent 70%);
  border-radius:50%;
}
.cta-strip h2 { font-family:'Nunito',sans-serif; font-size:2.6rem; font-weight:900; color:var(--white); line-height:1.2; margin-bottom:16px; position:relative; }
.cta-strip p { color:rgba(255,255,255,.7); font-size:1rem; margin-bottom:36px; position:relative; }
.cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; position:relative; }
.btn-purple {
  background:var(--purple); color:var(--white); padding:16px 36px;
  border-radius:50px; font-weight:800; font-size:.95rem;
  text-decoration:none; transition:all .3s;
  box-shadow:0 8px 30px rgba(155,89,182,.4);
  display:inline-flex; align-items:center; gap:8px;
}
.btn-purple:hover { background:var(--purple-light); color:var(--dark); transform:translateY(-2px); }
.btn-outline-white {
  border:2px solid rgba(255,255,255,.4); color:var(--white);
  padding:16px 36px; border-radius:50px; font-weight:700; font-size:.95rem;
  text-decoration:none; transition:all .3s;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-outline-white:hover { border-color:var(--purple-light); background:rgba(155,89,182,.15); transform:translateY(-2px); }

/* ── FADE-UP ─────────────────────────────────────────────── */
.fade-up { opacity:0; transform:translateY(30px); transition:opacity .7s ease,transform .7s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media(max-width:900px){
  .hero-visual { display:none; }
  .hero-inner { flex-direction:column; }
  .hero h1 { font-size:2.3rem; }
  .what-grid { grid-template-columns:1fr; }
  .what-visual { display:none; }
  .promise-grid { grid-template-columns:1fr; }
  .how-inner { flex-direction:column; }
  .how-left { flex:none; width:100%; }
  .why-grid { grid-template-columns:1fr; }
  .platforms-grid { grid-template-columns:repeat(2,1fr); }
  .process-steps { grid-template-columns:1fr 1fr; }
  .testi-grid { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr 1fr; gap:30px; }
  .hero-stats { position:relative; flex-wrap:wrap; }
}