﻿/* ===== DESIGN SYSTEM ===== */
:root {
  --blue:       #8BC5D3;
  --blue-dark:  #1A3A5C;
  --blue-mid:   #2A6080;
  --blue-xlight:#E8F4F8;
  --white:      #FFFFFF;
  --gray:       #6B7280;
  --gray-light: #F4F8FB;
  --dark:       #0F2236;
  --text:       #1A2B3C;
  /* LSO accent — teal/emerald */
  --teal:       #1ABC9C;
  --teal-dark:  #148F77;
  --teal-mid:   #17A589;
  --teal-light: #A2D9CE;
  --teal-xlight:#E8F8F5;
}
*, *::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%,#0d3d31 40%,#0e5c47 70%,#1ABC9C 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(26,188,156,.18) 0%,transparent 70%);
  border-radius:50%;
}
.hero::after {
  content:''; position:absolute; bottom:-150px; left:-100px;
  width:500px; height:500px;
  background:radial-gradient(circle,rgba(26,188,156,.1) 0%,transparent 70%);
  border-radius:50%;
}
.hero-shape {
  position:absolute; border-radius:50%;
  background:rgba(26,188,156,.07);
  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(26,188,156,.2); border:1px solid rgba(26,188,156,.4);
  color:var(--teal-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(--teal);
  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:22px;
  animation:slideUp .8s ease both;
}
.hero h1 span { color:var(--teal-light); }
.hero-desc {
  font-size:1.05rem; color:rgba(255,255,255,.7); line-height:1.75;
  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(--teal); 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(26,188,156,.4);
  display:inline-flex; align-items:center; gap:8px;
}
.btn-primary:hover { background:var(--white); color:var(--teal-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(--teal-light); background:rgba(26,188,156,.15); transform:translateY(-2px); }

/* Hero visual — local map mockup */
.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(26,188,156,.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(26,188,156,.1);
}
.mockup-bar {
  background:rgba(0,0,0,.4); padding:12px 18px;
  display:flex; align-items:center; gap:8px;
  border-bottom:1px solid rgba(26,188,156,.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%,#0d3d31 100%); }
.mockup-header { padding:16px 20px 12px; border-bottom:1px solid rgba(26,188,156,.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(26,188,156,.2); color:var(--teal-light); padding:3px 10px; border-radius:20px; font-size:.68rem; font-weight:700; }

/* Google My Business mockup */
.gmb-header { padding:16px 18px; border-bottom:1px solid rgba(26,188,156,.08); display:flex; align-items:center; gap:12px; }
.gmb-logo { width:36px; height:36px; background:linear-gradient(135deg,#4285f4,#34a853); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1rem; }
.gmb-name { color:var(--white); font-weight:700; font-size:.85rem; }
.gmb-sub { color:rgba(255,255,255,.4); font-size:.65rem; margin-top:2px; }
.gmb-rating { margin-left:auto; text-align:right; }
.gmb-stars { color:#f59e0b; font-size:.7rem; }
.gmb-score { color:var(--teal); font-weight:800; font-size:.8rem; }

.lso-stats-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:rgba(26,188,156,.06); }
.lso-stat { background:rgba(10,22,40,.85); padding:12px 10px; text-align:center; }
.lso-stat-val { color:var(--teal); font-size:1.1rem; font-weight:800; font-family:'Nunito',sans-serif; display:block; }
.lso-stat-lbl { color:rgba(255,255,255,.38); font-size:.58rem; text-transform:uppercase; letter-spacing:.04em; margin-top:2px; display:block; }

.map-preview { padding:14px 18px; border-bottom:1px solid rgba(26,188,156,.08); }
.map-label { color:rgba(255,255,255,.4); font-size:.65rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom:8px; }
.map-box {
  background:rgba(26,188,156,.06); border:1px solid rgba(26,188,156,.12);
  border-radius:10px; padding:12px; display:flex; flex-direction:column; gap:6px;
}
.map-result {
  display:flex; align-items:center; gap:8px; padding:6px 8px;
  background:rgba(255,255,255,.03); border-radius:7px;
}
.map-result.top { background:rgba(26,188,156,.1); border:1px solid rgba(26,188,156,.2); }
.map-pos { width:20px; height:20px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.62rem; font-weight:900; flex-shrink:0; }
.map-result.top .map-pos { background:var(--teal); color:var(--white); }
.map-result:not(.top) .map-pos { background:rgba(255,255,255,.1); color:rgba(255,255,255,.5); }
.map-biz { flex:1; }
.map-biz-name { color:rgba(255,255,255,.8); font-size:.72rem; font-weight:700; }
.map-biz-dist { color:rgba(255,255,255,.35); font-size:.6rem; }
.map-biz-stars { color:#f59e0b; font-size:.58rem; }

.lso-keywords { padding:12px 18px 14px; }
.kw-label { color:rgba(255,255,255,.35); font-size:.62rem; text-transform:uppercase; letter-spacing:.05em; margin-bottom:8px; }
.kw-tags { display:flex; flex-wrap:wrap; gap:6px; }
.kw-tag { background:rgba(26,188,156,.12); border:1px solid rgba(26,188,156,.2); color:var(--teal-light); padding:4px 10px; border-radius:20px; font-size:.62rem; font-weight:600; }

/* 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(26,188,156,.2);
  display:flex; justify-content:center;
}
.hero-stat { flex:1; max-width:220px; padding:22px 20px; text-align:center; border-right:1px solid rgba(26,188,156,.15); }
.hero-stat:last-child { border-right:none; }
.hero-stat-num { font-family:'Nunito',sans-serif; font-size:2rem; font-weight:900; color:var(--teal-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(26,188,156,.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(--teal-mid); text-decoration:none; font-weight:600; transition:color .2s; }
.breadcrumb a:hover { color:var(--teal); }
.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(--teal-xlight); color:var(--teal-dark); 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(--teal-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; }

/* ── STATS SECTION ────────────────────────────────────── */
.stats-section {
  background:linear-gradient(135deg,#0F2236 0%,#0d3d31 50%,#0e5c47 100%);
  padding:90px 5%; position:relative; overflow:hidden;
}
.stats-section::before {
  content:''; position:absolute; top:-100px; right:-100px;
  width:500px; height:500px;
  background:radial-gradient(circle,rgba(26,188,156,.12) 0%,transparent 70%);
  border-radius:50%;
}
.stats-inner { max-width:1100px; margin:0 auto; position:relative; z-index:1; }
.stats-title {
  font-family:'Nunito',sans-serif; font-size:2rem; font-weight:900;
  color:var(--teal); text-align:center; margin-bottom:50px; line-height:1.3;
}
.stats-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.stat-card {
  border-radius:22px; padding:36px 28px; text-align:center; transition:all .3s; position:relative; overflow:hidden;
}
.stat-card:hover { transform:translateY(-6px); box-shadow:0 20px 50px rgba(0,0,0,.3); }
.stat-card.teal-card { background:linear-gradient(135deg,var(--teal-dark),var(--teal)); }
.stat-card.purple-card { background:linear-gradient(135deg,#6C3483,#9B59B6); }
.stat-card.gold-card { background:linear-gradient(135deg,#B7770D,#F5A623); }
.stat-num {
  font-family:'Nunito',sans-serif; font-size:3.5rem; font-weight:900;
  color:var(--white); line-height:1; margin-bottom:8px; display:block;
}
.stat-label {
  font-family:'Nunito',sans-serif; font-size:1rem; font-weight:800;
  color:rgba(255,255,255,.9); margin-bottom:14px;
}
.stat-desc { font-size:.86rem; color:rgba(255,255,255,.75); line-height:1.65; }

/* ── WHY SECTION ──────────────────────────────────────── */
.why-section { background:var(--white); }
.why-inner { max-width:800px; margin:0 auto; text-align:center; }
.why-inner p { font-size:1rem; color:var(--gray); line-height:1.85; }
.why-inner p strong { color:var(--text); }
.why-inner .highlight { color:var(--teal-mid); font-weight:700; }

/* ── HOW SECTION (dark) ───────────────────────────────── */
.how-section {
  background:linear-gradient(135deg,#0F2236 0%,#0d3d31 50%,#0e5c47 100%);
  padding:90px 5%; position:relative; overflow:hidden;
}
.how-section::before {
  content:''; position:absolute; top:-80px; right:-80px;
  width:400px; height:400px;
  background:radial-gradient(circle,rgba(26,188,156,.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.3rem; font-weight:900; color:var(--white); line-height:1.15; margin-bottom:28px; }
.how-left h2 span { color:var(--teal-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(26,188,156,.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(26,188,156,.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; }
.illu-row { background:rgba(26,188,156,.08); border:1px solid rgba(26,188,156,.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(--teal-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(26,188,156,.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(26,188,156,.18); border:1px solid rgba(26,188,156,.3); color:var(--teal-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(--teal); 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(--teal-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; }

/* ── FOR WHO SECTION ──────────────────────────────────── */
.forwhom-section { background:var(--white); }
.forwhom-inner { display:flex; gap:70px; align-items:center; max-width:1100px; margin:0 auto; }
.forwhom-visual { flex:0 0 420px; display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.forwhom-img {
  background:linear-gradient(135deg,var(--teal-xlight),var(--teal-light));
  border-radius:18px; aspect-ratio:1; display:flex; align-items:center;
  justify-content:center; font-size:3.5rem;
  border:1px solid rgba(26,188,156,.2); transition:all .3s;
}
.forwhom-img:hover { transform:scale(1.03); box-shadow:0 10px 30px rgba(26,188,156,.15); }
.forwhom-img.tall { grid-row:span 2; aspect-ratio:auto; min-height:220px; font-size:4rem; }
.forwhom-content { flex:1; }
.forwhom-content .section-sub { max-width:100%; margin-bottom:20px; }
.forwhom-content p { font-size:.95rem; color:var(--gray); line-height:1.8; margin-bottom:16px; }
.forwhom-content p strong { color:var(--text); }
.forwhom-list { list-style:none; display:flex; flex-direction:column; gap:12px; margin-top:20px; }
.forwhom-list li {
  display:flex; align-items:flex-start; gap:12px; padding:14px 18px;
  background:var(--gray-light); border-radius:12px;
  border:1px solid rgba(26,188,156,.15); transition:all .3s;
}
.forwhom-list li:hover { border-color:var(--teal); transform:translateX(4px); }
.forwhom-list li::before { content:'📍'; font-size:.9rem; flex-shrink:0; margin-top:2px; }
.forwhom-list-text { font-size:.86rem; color:var(--text); line-height:1.55; }
.forwhom-list-text strong { color:var(--teal-dark); }

/* ── SERVICES GRID ────────────────────────────────────── */
.services-section { background:var(--gray-light); }
.services-inner { max-width:1100px; margin:0 auto; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:50px; }
.service-card {
  background:var(--white); border-radius:22px; padding:34px 28px;
  border:1px solid rgba(26,188,156,.15); transition:all .3s; position:relative; overflow:hidden;
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:4px;
  background:linear-gradient(90deg,var(--teal),var(--teal-light)); opacity:0; transition:opacity .3s;
}
.service-card:hover { border-color:rgba(26,188,156,.4); box-shadow:0 20px 50px rgba(26,188,156,.12); transform:translateY(-6px); }
.service-card:hover::before { opacity:1; }
.service-card.featured { background:linear-gradient(135deg,var(--dark),#0d3d31); border-color:var(--teal); }
.service-card.featured::before { opacity:1; }
.service-icon { width:54px; height:54px; border-radius:16px; display:flex; align-items:center; justify-content:center; background:var(--teal-xlight); font-size:1.5rem; margin-bottom:18px; }
.service-card.featured .service-icon { background:rgba(26,188,156,.2); }
.service-card h3 { font-family:'Nunito',sans-serif; font-size:1.1rem; font-weight:800; color:var(--dark); margin-bottom:10px; }
.service-card.featured h3 { color:var(--white); }
.service-card p { font-size:.84rem; color:var(--gray); line-height:1.65; }
.service-card.featured p { color:rgba(255,255,255,.6); }
.service-num { position:absolute; top:20px; right:20px; font-family:'Nunito',sans-serif; font-size:2.2rem; font-weight:900; color:rgba(26,188,156,.12); line-height:1; }
.service-card.featured .service-num { color:rgba(26,188,156,.18); }

/* ── 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(26,188,156,.12); transition:all .3s; text-align:center; }
.process-step:hover { border-color:var(--teal); box-shadow:0 10px 30px rgba(26,188,156,.12); transform:translateY(-4px); }
.step-num { width:52px; height:52px; background:linear-gradient(135deg,var(--teal-dark),var(--teal)); 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(26,188,156,.2); transition:all .3s; }
.testi-card:hover { box-shadow:0 16px 40px rgba(26,188,156,.12); transform:translateY(-4px); }
.testi-quote { font-family:'Nunito',sans-serif; font-size:3.5rem; font-weight:900; color:var(--teal-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(--teal-dark),var(--teal)); 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(26,188,156,.2); border-radius:14px; margin-bottom:12px; overflow:hidden; transition:border-color .3s; }
.faq-item:hover { border-color:var(--teal); }
.faq-item.open { border-color:var(--teal); }
.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(--teal-xlight); }
.faq-item.open .faq-q { background:var(--teal-xlight); }
.faq-arrow { color:var(--teal-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:220px; }
.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,var(--dark) 0%,#0d3d31 50%,#0e5c47 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(26,188,156,.1) 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 h2 span { color:var(--teal-light); }
.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-teal { background:var(--teal); 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(26,188,156,.4); display:inline-flex; align-items:center; gap:8px; }
.btn-teal:hover { background:var(--teal-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(--teal-light); background:rgba(26,188,156,.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; }
  .stats-grid { grid-template-columns:1fr; }
  .how-inner { flex-direction:column; }
  .how-left { flex:none; width:100%; }
  .forwhom-inner { flex-direction:column; }
  .forwhom-visual { width:100%; flex:none; }
  .services-grid { grid-template-columns: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; }
}