/* ==========================================================================
   LeadLogic Solution — Stylesheet
   Tokens: Primary #0A66FF · Secondary #00C853 · Dark #0F172A
           Light #F8FAFC · Accent #2563EB · Text #1E293B
   Type: Poppins (display) / Inter (body)
   ========================================================================== */

:root{
  --primary:#0A66FF;
  --secondary:#00C853;
  --dark:#0F172A;
  --dark-2:#141b2e;
  --light:#F8FAFC;
  --accent:#2563EB;
  --text:#1E293B;
  --muted:#5b6b85;
  --white:#ffffff;
  --border:rgba(15,23,42,0.08);
  --shadow-sm: 0 2px 10px rgba(15,23,42,.06);
  --shadow-md: 0 12px 32px rgba(15,23,42,.10);
  --shadow-lg: 0 24px 60px rgba(10,102,255,.16);
  --radius: 20px;
  --radius-sm: 12px;
  --grad-primary: linear-gradient(135deg,#0A66FF 0%, #2563EB 55%, #00C853 130%);
  --grad-dark: linear-gradient(160deg,#0F172A 0%, #101a33 60%, #0a1226 100%);
  --ease: cubic-bezier(.16,.84,.44,1);
  --container: 1240px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Inter', sans-serif;
  color:var(--text);
  background:var(--light);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4,.font-display{
  font-family:'Poppins', sans-serif;
  color:var(--dark);
  line-height:1.15;
  margin:0 0 .5em;
  letter-spacing:-0.02em;
}
p{ color:var(--muted); line-height:1.7; margin:0 0 1em; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
::selection{ background:var(--primary); color:#fff; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  color:var(--primary); background:rgba(10,102,255,.08);
  padding:8px 16px; border-radius:100px; margin-bottom:18px;
}
.eyebrow::before{ content:''; width:6px; height:6px; border-radius:50%; background:var(--secondary); }
.section{ padding:110px 0; position:relative; }
.section-head{ max-width:640px; margin:0 auto 60px; text-align:center; }
.section-head h2{ font-size:clamp(30px,4vw,44px); }
.section-head p{ font-size:17px; }
.section-head.left{ margin:0 0 50px; text-align:left; }
.grad-text{
  background:var(--grad-primary); -webkit-background-clip:text; background-clip:text; color:transparent;
}
.bg-dark{ background:var(--grad-dark); color:#cbd5e1; }
.bg-dark h2, .bg-dark h3{ color:#fff; }
.bg-dark p{ color:#93a2c0; }

/* Buttons */
.btn{
  position:relative; display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 32px; border-radius:100px; font-weight:600; font-size:15px;
  border:none; transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  isolation:isolate; overflow:hidden; white-space:nowrap;
}
.btn-primary{ background:var(--grad-primary); color:#fff; box-shadow:0 10px 24px rgba(10,102,255,.30); }
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 16px 34px rgba(10,102,255,.42); }
.btn-ghost{ background:#fff; color:var(--dark); border:1.5px solid var(--border); }
.btn-ghost:hover{ transform:translateY(-3px); border-color:var(--primary); color:var(--primary); }
.btn-light{ background:rgba(255,255,255,.1); color:#fff; border:1.5px solid rgba(255,255,255,.25); backdrop-filter:blur(6px); }
.btn-light:hover{ background:#fff; color:var(--dark); transform:translateY(-3px); }
.btn-wa{ background:#00C853; color:#fff; }
.btn-wa:hover{ transform:translateY(-3px); box-shadow:0 12px 26px rgba(0,200,83,.35); }
.btn-sm{ padding:11px 22px; font-size:13px; }
.magnetic{ will-change:transform; }

/* ===== Loading screen ===== */
#loader{
  position:fixed; inset:0; z-index:9999; background:var(--dark);
  display:flex; align-items:center; justify-content:center; transition:opacity .6s var(--ease), visibility .6s;
}
#loader.hide{ opacity:0; visibility:hidden; pointer-events:none; }
.loader-mark{ position:relative; width:64px; height:64px; }
.loader-mark span{
  position:absolute; inset:0; border-radius:50%; border:3px solid transparent;
  border-top-color:var(--primary); border-right-color:var(--secondary);
  animation:spin 1s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }

/* ===== Navbar ===== */
header#navbar{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:20px 0; transition:all .4s var(--ease);
}
header#navbar .nav-inner{
  max-width:var(--container); margin:0 auto; padding:0 24px;
  display:flex; align-items:center; justify-content:space-between;
}
header#navbar.scrolled{
  padding:12px 0; background:rgba(248,250,252,.75); backdrop-filter:blur(14px) saturate(160%);
  box-shadow:var(--shadow-sm);
}
.logo{ display:flex; align-items:center; gap:10px; font-family:'Poppins'; font-weight:700; font-size:20px; color:var(--dark); }
.logo .dot{ width:11px;height:11px;border-radius:3px; background:var(--grad-primary); transform:rotate(45deg); }
.nav-links{ display:flex; align-items:center; gap:36px; }
.nav-links a{ font-size:14.5px; font-weight:500; color:var(--text); position:relative; padding:6px 0; }
.nav-links a::after{ content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--grad-primary); transition:width .3s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-actions{ display:flex; align-items:center; gap:14px; }
.theme-toggle{
  width:42px;height:42px;border-radius:50%; border:1.5px solid var(--border); background:#fff;
  display:flex; align-items:center; justify-content:center; transition:.3s;
}
.theme-toggle:hover{ border-color:var(--primary); }
.burger{ display:none; width:26px; height:20px; position:relative; background:none; border:none; }
.burger span{ position:absolute; left:0; width:100%; height:2px; background:var(--dark); transition:.35s var(--ease); }
.burger span:nth-child(1){ top:0; } .burger span:nth-child(2){ top:9px; } .burger span:nth-child(3){ top:18px; }
.burger.open span:nth-child(1){ transform:translateY(9px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform:translateY(-9px) rotate(-45deg); }

.mobile-menu{
  position:fixed; top:0; right:0; height:100vh; width:min(84vw,360px); background:#fff; z-index:1100;
  transform:translateX(100%); transition:transform .5s var(--ease); padding:100px 32px 32px;
  box-shadow:-20px 0 60px rgba(15,23,42,.15);
}
.mobile-menu.open{ transform:translateX(0); }
.mobile-menu a{ display:block; font-size:20px; font-weight:600; padding:14px 0; border-bottom:1px solid var(--border); }
.menu-overlay{ position:fixed; inset:0; background:rgba(15,23,42,.4); backdrop-filter:blur(3px); z-index:1050; opacity:0; visibility:hidden; transition:.4s; }
.menu-overlay.open{ opacity:1; visibility:visible; }

/* ===== Hero ===== */
.hero{
  position:relative; padding:190px 0 120px; background:var(--grad-dark); color:#fff; overflow:hidden;
}
.hero::before{
  content:''; position:absolute; width:640px; height:640px; border-radius:50%;
  background:radial-gradient(circle, rgba(10,102,255,.35), transparent 70%);
  top:-220px; right:-160px; filter:blur(10px); animation:blobFloat 12s ease-in-out infinite;
}
.hero::after{
  content:''; position:absolute; width:480px; height:480px; border-radius:50%;
  background:radial-gradient(circle, rgba(0,200,83,.25), transparent 70%);
  bottom:-200px; left:-140px; animation:blobFloat 14s ease-in-out infinite reverse;
}
@keyframes blobFloat{ 0%,100%{ transform:translate(0,0) scale(1);} 50%{ transform:translate(30px,-40px) scale(1.08);} }
.hero-grid{ position:relative; z-index:2; display:grid; grid-template-columns:1.05fr .95fr; gap:60px; align-items:center; }
.hero h1{ color:#fff; font-size:clamp(36px,4.6vw,58px); }
.hero p.lead{ color:#aab6d4; font-size:18px; max-width:520px; }
.hero-cta{ display:flex; gap:16px; margin:34px 0 44px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:34px; flex-wrap:wrap; }
.hero-stats .stat b{ display:block; font-family:'Poppins'; font-size:26px; color:#fff; }
.hero-stats .stat span{ font-size:13px; color:#8b98ba; }
.hero-visual{ position:relative; height:460px; }
.hero-visual canvas{ position:absolute; inset:0; width:100%; height:100%; }
.float-card{
  position:absolute; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15);
  backdrop-filter:blur(14px); border-radius:16px; padding:16px 20px; display:flex; align-items:center; gap:12px;
  animation:floatY 5s ease-in-out infinite; box-shadow:0 20px 40px rgba(0,0,0,.25);
}
.float-card b{ display:block; font-size:15px; color:#fff; } .float-card span{ font-size:12px; color:#93a2c0; }
.float-card.fc1{ top:6%; left:0; animation-delay:0s; }
.float-card.fc2{ bottom:10%; right:0; animation-delay:1.2s; }
.float-card.fc3{ top:46%; right:12%; animation-delay:2.4s; }
@keyframes floatY{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-14px);} }
.icon-badge{ width:38px;height:38px;border-radius:10px; display:flex;align-items:center;justify-content:center; background:var(--grad-primary); flex-shrink:0; }
.icon-badge svg{ width:19px;height:19px; stroke:#fff; }

/* ===== Marquee ===== */
.marquee-wrap{ padding:52px 0; background:#fff; border-bottom:1px solid var(--border); border-top:1px solid var(--border); }
.marquee-label{ text-align:center; font-size:13px; color:var(--muted); letter-spacing:.08em; text-transform:uppercase; margin-bottom:26px; }
.marquee{ overflow:hidden; -webkit-mask-image:linear-gradient(90deg,transparent,#000 10%,#000 90%,transparent); }
.marquee-track{ display:flex; gap:70px; width:max-content; animation:scrollX 26s linear infinite; }
.marquee-track span{ font-family:'Poppins'; font-weight:700; font-size:22px; color:#c4cbdb; white-space:nowrap; }
@keyframes scrollX{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ===== Cards ===== */
.grid{ display:grid; gap:28px; }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }

.card{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:36px 30px;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
  position:relative; overflow:hidden;
}
.card:hover{ transform:translateY(-10px); box-shadow:var(--shadow-lg); border-color:transparent; }
.card .icon-badge{ margin-bottom:20px; }
.card h3{ font-size:19px; }
.card .learn{ display:inline-flex; align-items:center; gap:6px; font-weight:600; font-size:14px; color:var(--primary); margin-top:14px; }
.card .learn svg{ width:15px; height:15px; transition:transform .3s var(--ease); }
.card:hover .learn svg{ transform:translateX(5px); }

.feature-card{ text-align:left; padding:30px; border-radius:var(--radius-sm); background:var(--light); border:1px solid var(--border); }
.feature-card:hover{ background:#fff; box-shadow:var(--shadow-md); }

/* ===== Process timeline ===== */
.process-track{ position:relative; display:grid; grid-template-columns:repeat(5,1fr); gap:20px; margin-top:20px; }
.process-track::before{
  content:''; position:absolute; top:28px; left:6%; right:6%; height:2px;
  background:repeating-linear-gradient(90deg,var(--border) 0 8px, transparent 8px 14px);
}
.process-step{ text-align:center; position:relative; }
.process-num{
  width:58px; height:58px; margin:0 auto 18px; border-radius:50%; background:var(--grad-primary); color:#fff;
  display:flex; align-items:center; justify-content:center; font-family:'Poppins'; font-weight:700; font-size:18px;
  position:relative; z-index:2; box-shadow:0 10px 24px rgba(10,102,255,.28);
}
.process-step h4{ font-size:15.5px; margin-bottom:6px; }
.process-step p{ font-size:13.5px; }

/* ===== Stats ===== */
.stats-band{ background:var(--grad-dark); color:#fff; padding:80px 0; }
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:30px; text-align:center; }
.stat-num{ font-family:'Poppins'; font-weight:700; font-size:clamp(34px,4vw,50px); color:#fff; }
.stat-num span.suffix{ color:var(--secondary); }
.stat-label{ color:#93a2c0; font-size:14px; margin-top:6px; }

/* ===== Portfolio ===== */
.filter-bar{ display:flex; gap:12px; justify-content:center; margin-bottom:44px; flex-wrap:wrap; }
.filter-btn{ padding:10px 22px; border-radius:100px; border:1.5px solid var(--border); background:#fff; font-weight:600; font-size:13.5px; transition:.3s; }
.filter-btn.active, .filter-btn:hover{ background:var(--grad-primary); color:#fff; border-color:transparent; }
.portfolio-item{ border-radius:var(--radius); overflow:hidden; position:relative; cursor:pointer; background:#0F172A; }
.portfolio-item img{ width:100%; height:280px; object-fit:cover; transition:transform .6s var(--ease); }
.portfolio-item:hover img{ transform:scale(1.08); }
.portfolio-overlay{
  position:absolute; inset:0; background:linear-gradient(0deg, rgba(10,20,40,.92), rgba(10,20,40,.1) 60%);
  display:flex; flex-direction:column; justify-content:flex-end; padding:26px; opacity:0; transition:opacity .4s var(--ease);
}
.portfolio-item:hover .portfolio-overlay{ opacity:1; }
.portfolio-overlay span{ color:var(--secondary); font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }
.portfolio-overlay h4{ color:#fff; margin:6px 0 12px; }

/* ===== Testimonials ===== */
.testi-slider{ position:relative; max-width:760px; margin:0 auto; overflow:hidden; }
.testi-track{ display:flex; transition:transform .6s var(--ease); }
.testi-card{ flex:0 0 100%; text-align:center; padding:10px 30px; }
.testi-card .stars{ color:#F5A623; font-size:18px; margin-bottom:16px; }
.testi-card p{ font-size:19px; color:var(--dark); font-family:'Poppins'; font-weight:500; line-height:1.5; }
.testi-person{ display:flex; align-items:center; justify-content:center; gap:12px; margin-top:24px; }
.testi-person img{ width:52px;height:52px;border-radius:50%; object-fit:cover; }
.testi-person b{ display:block; font-size:14.5px; } .testi-person span{ font-size:13px; color:var(--muted); }
.testi-dots{ display:flex; justify-content:center; gap:9px; margin-top:30px; }
.testi-dots button{ width:9px;height:9px;border-radius:50%; border:none; background:var(--border); }
.testi-dots button.active{ background:var(--primary); width:24px; border-radius:6px; transition:.3s; }

/* ===== FAQ ===== */
.faq-item{ border-bottom:1px solid var(--border); padding:22px 0; }
.faq-q{ display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-family:'Poppins'; font-weight:600; font-size:16.5px; }
.faq-q .plus{ width:24px; height:24px; position:relative; flex-shrink:0; }
.faq-q .plus::before, .faq-q .plus::after{ content:''; position:absolute; background:var(--primary); top:50%; left:50%; transform:translate(-50%,-50%); }
.faq-q .plus::before{ width:14px; height:2px; } .faq-q .plus::after{ width:2px; height:14px; transition:transform .3s var(--ease); }
.faq-item.open .plus::after{ transform:translate(-50%,-50%) rotate(90deg) scale(0); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.faq-a p{ padding-top:14px; font-size:15px; }
.faq-item.open .faq-a{ max-height:220px; }

/* ===== CTA band ===== */
.cta-band{ background:var(--grad-primary); border-radius:32px; padding:70px 50px; text-align:center; color:#fff; position:relative; overflow:hidden; }
.cta-band h2{ color:#fff; } .cta-band p{ color:rgba(255,255,255,.85); }
.cta-actions{ display:flex; gap:16px; justify-content:center; margin-top:30px; flex-wrap:wrap; }

/* ===== Pricing ===== */
.price-card{ background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:40px 32px; text-align:center; transition:.4s var(--ease); }
.price-card.popular{ border:2px solid var(--primary); transform:scale(1.04); box-shadow:var(--shadow-lg); }
.price-card:hover{ transform:translateY(-8px); }
.price-card .amount{ font-family:'Poppins'; font-weight:700; font-size:42px; margin:14px 0; }
.price-card .amount span{ font-size:15px; color:var(--muted); font-weight:400; }
.price-card ul{ text-align:left; margin:26px 0; }
.price-card ul li{ padding:9px 0; font-size:14.5px; display:flex; gap:10px; align-items:flex-start; color:var(--text); }

/* ===== Forms ===== */
.form-field{ margin-bottom:20px; }
.form-field label{ display:block; font-size:13.5px; font-weight:600; margin-bottom:8px; }
.form-field input, .form-field select, .form-field textarea{
  width:100%; padding:15px 18px; border-radius:12px; border:1.5px solid var(--border); font-family:inherit; font-size:14.5px;
  background:#fff; transition:.3s; color:var(--text);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{ outline:none; border-color:var(--primary); box-shadow:0 0 0 4px rgba(10,102,255,.1); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-msg{ padding:14px 18px; border-radius:10px; font-size:14px; margin-bottom:18px; display:none; }
.form-msg.success{ background:rgba(0,200,83,.1); color:#0a8a3d; display:block; }
.form-msg.error{ background:rgba(220,38,38,.1); color:#dc2626; display:block; }

/* ===== Footer ===== */
footer{ background:var(--dark); color:#93a2c0; padding-top:90px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:50px; padding-bottom:60px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-grid h4{ color:#fff; font-size:15px; margin-bottom:20px; }
.footer-grid a{ display:block; padding:6px 0; font-size:14px; transition:.2s; }
.footer-grid a:hover{ color:var(--secondary); padding-left:4px; }
.footer-logo{ font-family:'Poppins'; font-weight:700; font-size:21px; color:#fff; display:flex; gap:8px; align-items:center; margin-bottom:16px; }
.social-row{ display:flex; gap:12px; margin-top:20px; }
.social-row a{ width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; }
.social-row a:hover{ background:var(--grad-primary); }
.footer-bottom{ display:flex; justify-content:space-between; padding:26px 0; font-size:13px; flex-wrap:wrap; gap:10px; }
.newsletter-row{ display:flex; gap:10px; margin-top:8px; }
.newsletter-row input{ flex:1; padding:13px 16px; border-radius:10px; border:1px solid rgba(255,255,255,.15); background:rgba(255,255,255,.05); color:#fff; }

/* ===== Floating widgets ===== */
.wa-float{
  position:fixed; bottom:26px; left:26px; z-index:900; width:60px; height:60px; border-radius:50%;
  background:#00C853; display:flex; align-items:center; justify-content:center; box-shadow:0 12px 28px rgba(0,200,83,.4);
  animation:pulse 2.4s ease-in-out infinite;
}
@keyframes pulse{ 0%,100%{ box-shadow:0 0 0 0 rgba(0,200,83,.45);} 50%{ box-shadow:0 0 0 14px rgba(0,200,83,0);} }
.back-top{
  position:fixed; bottom:26px; right:26px; z-index:900; width:52px; height:52px; border-radius:50%;
  background:var(--dark); color:#fff; display:flex; align-items:center; justify-content:center; border:none;
  opacity:0; visibility:hidden; transform:translateY(10px); transition:.4s var(--ease);
}
.back-top.show{ opacity:1; visibility:visible; transform:translateY(0); }

/* Cookie banner */
.cookie-banner{
  position:fixed; bottom:0; left:0; right:0; z-index:1200; background:#fff; box-shadow:0 -10px 40px rgba(15,23,42,.12);
  padding:20px 24px; display:flex; align-items:center; justify-content:center; gap:24px; flex-wrap:wrap;
  transform:translateY(100%); transition:transform .5s var(--ease);
}
.cookie-banner.show{ transform:translateY(0); }

/* Popups */
.popup-overlay{ position:fixed; inset:0; background:rgba(15,23,42,.55); backdrop-filter:blur(4px); z-index:1300; display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden; transition:.4s; }
.popup-overlay.show{ opacity:1; visibility:visible; }
.popup-box{ background:#fff; border-radius:24px; padding:44px; max-width:420px; width:90%; position:relative; text-align:center; transform:scale(.9); transition:.4s var(--ease); }
.popup-overlay.show .popup-box{ transform:scale(1); }
.popup-close{ position:absolute; top:16px; right:16px; width:34px; height:34px; border-radius:50%; border:none; background:var(--light); }

/* Scroll reveal */
.reveal{ opacity:0; transform:translateY(34px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ opacity:0; transform:translateY(30px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.in > *{ opacity:1; transform:translateY(0); }
.reveal-stagger.in > *:nth-child(1){ transition-delay:.05s; } .reveal-stagger.in > *:nth-child(2){ transition-delay:.14s; }
.reveal-stagger.in > *:nth-child(3){ transition-delay:.23s; } .reveal-stagger.in > *:nth-child(4){ transition-delay:.32s; }
.reveal-stagger.in > *:nth-child(5){ transition-delay:.41s; } .reveal-stagger.in > *:nth-child(6){ transition-delay:.5s; }

/* Cursor (desktop only) */
.cursor-dot{ position:fixed; width:10px; height:10px; border-radius:50%; background:var(--primary); pointer-events:none; z-index:9998; transform:translate(-50%,-50%); transition:transform .15s var(--ease), opacity .3s; mix-blend-mode:difference; }
.cursor-ring{ position:fixed; width:36px; height:36px; border-radius:50%; border:1.5px solid var(--primary); pointer-events:none; z-index:9998; transform:translate(-50%,-50%); transition:transform .35s var(--ease), width .3s, height .3s, opacity .3s; }
.cursor-ring.hovered{ width:56px; height:56px; background:rgba(10,102,255,.08); }

/* Breadcrumb + page hero */
.page-hero{ background:var(--grad-dark); color:#fff; padding:170px 0 80px; text-align:center; }
.page-hero h1{ color:#fff; font-size:clamp(32px,4.5vw,48px); }
.breadcrumb{ display:flex; justify-content:center; gap:8px; font-size:13.5px; color:#93a2c0; margin-bottom:18px; }
.breadcrumb a{ color:#93a2c0; } .breadcrumb a:hover{ color:#fff; }

/* Timeline (about/case study) */
.v-timeline{ position:relative; padding-left:36px; }
.v-timeline::before{ content:''; position:absolute; left:9px; top:6px; bottom:6px; width:2px; background:var(--border); }
.v-timeline-item{ position:relative; padding-bottom:44px; }
.v-timeline-item::before{ content:''; position:absolute; left:-36px; top:2px; width:20px; height:20px; border-radius:50%; background:var(--grad-primary); border:4px solid var(--light); }

/* Utility */
.mt-0{margin-top:0} .flex{display:flex} .items-center{align-items:center} .gap-3{gap:12px}
.text-center{text-align:center} .mb-0{margin-bottom:0}

/* ===== Responsive ===== */
@media (max-width: 1024px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ height:320px; order:-1; }
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .stats-grid{ grid-template-columns:repeat(2,1fr); gap:40px; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .process-track{ grid-template-columns:repeat(3,1fr); }
  .process-track::before{ display:none; }
}
@media (max-width: 720px){
  .nav-links{ display:none; }
  .burger{ display:block; }
  .section{ padding:70px 0; }
  .grid-3,.grid-4,.grid-2{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:36px; }
  .cta-band{ padding:50px 26px; }
  .process-track{ grid-template-columns:1fr 1fr; }
  .cursor-dot,.cursor-ring{ display:none; }
  .price-card.popular{ transform:none; }
}
