/* ==========================================================================
   SketchVolt — Design System
   Dark, premium agency layout. Flex containers only (Elementor-compatible:
   no CSS grid, no exotic layout tricks). Distinctiveness comes from
   typography, color, spacing and imagery.
   To return to light, swap the token block below — nothing else is hardcoded.
   ========================================================================== */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
/* height:auto is essential — every <img> carries width/height attributes for
   layout stability, and without it a width-constrained image keeps the
   attribute height and distorts. */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

/* ---- Tokens ---- */
:root{
  --accent: #0B79FD;
  --accent-2: #38BDF8;
  --accent-deep: #0757BE;
  --accent-soft: rgba(11,121,253,0.09);
  --accent-line: rgba(11,121,253,0.22);
  --grad: linear-gradient(135deg, #0B79FD 0%, #38BDF8 100%);

  /* Dark theme — page is dark, panels are elevated */
  --ink: #F3F6FA;          /* headings */
  --ink-2: #9AA5B8;        /* body copy */
  --muted: #6D7889;        /* secondary */
  --faint: #3C4553;
  --dim:   #4A5464;        /* the recessed half of two-tone headlines */

  --bg: #0A0C11;           /* page */
  --surface: #141821;      /* cards */
  --surface-2: #1C212C;    /* chips, subtle fills */
  --dark: #141821;         /* island panels — elevated above the page */
  --dark-2: #1C212C;       /* cards inside islands */
  --dark-line: #2A313E;
  --line: #222834;         /* borders */
  --footer: #06080C;       /* anchors the bottom of the page */

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  --sh-sm: 0 2px 10px rgba(0,0,0,0.30);
  --sh-md: 0 18px 44px rgba(0,0,0,0.45);
  --sh-lg: 0 30px 70px rgba(0,0,0,0.60);
  --sh-glow: 0 10px 30px rgba(11,121,253,0.32);

  --container: 1340px;
  --font-head: "Outfit", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

body{
  font-family: var(--font-body);
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.62;
  font-size: 16.5px;
}

h1,h2,h3,h4{
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
}
h1{ font-size: clamp(2.6rem, 5.1vw, 4.5rem); }
h2{ font-size: clamp(2.1rem, 3.7vw, 3.2rem); }
h3{ font-size: clamp(1.3rem, 2vw, 1.6rem); letter-spacing:-0.02em; }
h4{ font-size: 1.15rem; letter-spacing:-0.015em; }

/* Two-tone headline: dim half sits back, solid half leads */
.dim{ color: var(--dim); }
h1 .dim, h2 .dim{ color: var(--dim); }

p{ color: var(--ink-2); }
p.lead{ font-size: 1.19rem; line-height:1.6; color: var(--ink-2); }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

section{ padding: 116px 0; position: relative; }

/* Ambient background texture — dot field + accent bloom. Purely decorative. */
section::before{
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px, 23px 23px;
  background-position: 0 0, 11px 11px;
}
.section-paper::before, .section-light::before{
  background-image:
    radial-gradient(circle, rgba(14,18,24,0.055) 1px, transparent 1px),
    radial-gradient(circle, rgba(14,18,24,0.028) 1px, transparent 1px);
}
.no-texture::before{ display:none; }
.container{ position: relative; z-index: 1; }
@media (max-width: 900px){ section{ padding: 74px 0; } }

/* Light bands. Because every component reads tokens, re-pointing them here
   flips an entire section to the light theme with no other changes. */
.section-paper, .section-light{
  --ink:      #0E1218;
  --ink-2:    #4A5262;
  --muted:    #7C8698;
  --faint:    #C4CBD6;
  --dim:      #C3CBD8;
  --surface:  #FFFFFF;
  --surface-2:#EEF2F8;
  --line:     #E3E8EF;
  --sh-sm: 0 2px 10px rgba(16,19,24,0.05);
  --sh-md: 0 16px 40px rgba(16,19,24,0.10);
  --sh-lg: 0 28px 64px rgba(16,19,24,0.14);
  background: #F7F9FC;
  color: var(--ink-2);
}

/* ---- Flex helpers (map 1:1 to Elementor Flexbox Containers) ---- */
.flex{ display:flex; }
.flex-wrap{ flex-wrap: wrap; }
.items-center{ align-items:center; }
.items-start{ align-items:flex-start; }
.items-end{ align-items:flex-end; }
.justify-between{ justify-content:space-between; }
.justify-center{ justify-content:center; }
.direction-column{ flex-direction:column; }
.gap-xs{ gap:12px; } .gap-sm{ gap:20px; } .gap-md{ gap:32px; } .gap-lg{ gap:56px; }

.row{ display:flex; flex-wrap:wrap; gap:28px; }
.col{ flex:1 1 320px; }
.col-2{ flex:1 1 calc(50% - 14px); }
.col-3{ flex:1 1 calc(33.333% - 19px); }
.col-4{ flex:1 1 calc(25% - 21px); }
@media (max-width: 940px){
  .col-3, .col-4{ flex:1 1 calc(50% - 14px); }
}
@media (max-width: 620px){
  .col-2, .col-3, .col-4{ flex:1 1 100%; }
}

.text-center{ text-align:center; }
.mx-auto{ margin-left:auto; margin-right:auto; }

/* ---- Eyebrow ---- */
.eyebrow{
  display:inline-flex; align-items:center; gap:9px;
  font-family: var(--font-body);
  font-size:0.8rem; font-weight:700; letter-spacing:0.02em;
  color: var(--ink-2);
  background: var(--surface);
  border:1px solid var(--line);
  padding:9px 18px; border-radius: var(--r-pill);
  margin-bottom:22px;
  box-shadow: var(--sh-sm);
}
.eyebrow .dot{ width:7px; height:7px; border-radius:50%; background: var(--accent); flex:none; }
.eyebrow.plain{ background:transparent; border:none; box-shadow:none; padding:0; color:var(--muted); font-weight:600; }

.section-head{ max-width:760px; margin-bottom:64px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head p{ margin-top:20px; font-size:1.12rem; }

/* ---- Buttons ---- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family: var(--font-head);
  font-weight:600; font-size:1rem;
  padding:17px 34px;
  border-radius: var(--r-pill);
  border:1.5px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn svg{ width:16px; height:16px; transition: transform .2s ease; }
.btn:hover svg{ transform: translate(2px,-2px); }

.btn-accent{ background: var(--grad); color:#fff; box-shadow: var(--sh-glow); }
.btn-accent:hover{ transform: translateY(-2px); box-shadow: 0 16px 38px rgba(11,121,253,0.42); }

.btn-ghost{ background: var(--surface); color: var(--ink); border-color: var(--line); box-shadow: var(--sh-sm); }
.btn-ghost:hover{ transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }

.btn-dark{ background: var(--surface-2); color: var(--ink); border-color: var(--line); }
.btn-dark:hover{ transform: translateY(-2px); background:#252b38; }

/* sits on the accent/dark CTA banner — needs an explicitly dark label,
   not var(--ink), which is near-white in this theme */
.btn-white{ background:#fff; color:#0A0C11; }
.btn-white:hover{ transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0,0,0,0.45); }

.btn-outline-light{ background:transparent; border-color: rgba(255,255,255,0.32); color:#fff; }
.btn-outline-light:hover{ transform: translateY(-2px); border-color:#fff; }

.btn-sm{ padding:12px 24px; font-size:0.92rem; }
.btn-block{ width:100%; }

.link-arrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-head); font-weight:600; color: var(--accent);
}
.link-arrow svg{ transition: transform .2s ease; }
.link-arrow:hover svg{ transform: translateX(4px); }

/* Avatar CTA (dark pill with photo + availability dot) */
.avatar-cta{
  display:inline-flex; align-items:center; gap:14px;
  background: var(--surface); color: var(--ink);
  border:1px solid var(--line);
  border-radius: var(--r-pill);
  padding:9px 28px 9px 9px;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: var(--sh-md);
}
.avatar-cta:hover{ transform: translateY(-2px); box-shadow: var(--sh-lg); }
.avatar-cta .ava{
  width:46px; height:46px; border-radius:50%; flex:none;
  background: var(--grad);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-head); font-weight:700; font-size:1.05rem; color:#fff;
}
.avatar-cta b{ display:block; font-family: var(--font-head); font-weight:600; font-size:1rem; line-height:1.25; color: var(--ink); }
.avatar-cta .ava-sub{ display:flex; align-items:center; gap:6px; font-size:0.78rem; color:#9AA3B2; }
.avatar-cta .ava-sub::before{ content:""; width:7px; height:7px; border-radius:50%; background:#22C55E; flex:none; }

/* ---- Header (solid dark bar, nav centred) ---- */
.site-header{
  position: sticky; top:0; z-index:900;
  background:#080B12;
  border-bottom:1px solid rgba(255,255,255,0.07);
  transition: box-shadow .2s ease;
}
.site-header.stuck{ box-shadow: 0 10px 34px rgba(0,0,0,0.55); }
.site-header .container{ display:flex; align-items:center; gap:24px; height:78px; }

.brand{ display:flex; align-items:center; gap:10px; flex:none; }
.brand img{ height:30px; width:auto; }
.brand span{ font-family: var(--font-head); font-weight:700; font-size:1.28rem; letter-spacing:-0.03em; color:#fff; }

.nav-main{ display:flex; align-items:center; gap:2px; margin:0 auto; }
.nav-main > li{ position:relative; }
.nav-main > li > a{
  display:flex; align-items:center; gap:6px;
  padding:10px 15px; font-weight:500; font-size:0.95rem; color:#C7CEDB;
  border-radius: var(--r-pill);
  transition: background .15s ease, color .15s ease;
}
.nav-main > li > a:hover{ background: rgba(255,255,255,0.07); color:#fff; }
.nav-main > li.has-dropdown:hover .dropdown{ opacity:1; visibility:visible; transform: translateY(0); }

.dropdown{
  position:absolute; top:100%; left:0; margin-top:8px;
  background:#10141D; border:1px solid rgba(255,255,255,0.09); border-radius: var(--r-md);
  box-shadow: 0 24px 56px rgba(0,0,0,0.6); padding:10px; width:312px;
  opacity:0; visibility:hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  display:flex; flex-direction:column; gap:2px;
}
.dropdown a{
  display:flex; align-items:center; gap:12px;
  padding:11px 12px; border-radius: var(--r-sm); font-weight:500; font-size:0.92rem; color:#D3D9E4;
}
.dropdown a:hover{ background: rgba(255,255,255,0.07); color:#fff; }
.dropdown a .ic{
  width:36px; height:36px; border-radius:10px; background: rgba(11,121,253,0.16);
  display:flex; align-items:center; justify-content:center; flex:none;
}
.dropdown a .ic svg{ width:18px; height:18px; }

.header-cta{ display:flex; align-items:center; gap:10px; flex:none; }
/* round icon button, e.g. WhatsApp / call */
.icon-btn{
  width:42px; height:42px; border-radius:50%; flex:none;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.10);
  transition: all .18s ease;
}
.icon-btn svg{ width:19px; height:19px; }
.icon-btn:hover{ transform: translateY(-2px); }
.icon-btn.whatsapp{ background:#25D366; border-color:#25D366; }
.icon-btn.whatsapp:hover{ box-shadow: 0 8px 22px rgba(37,211,102,0.45); }

.header-cta .btn-ghost{
  background: rgba(255,255,255,0.07); color:#fff;
  border-color: rgba(255,255,255,0.12); box-shadow:none;
}
.header-cta .btn-ghost:hover{ background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.2); color:#fff; }

.menu-toggle{
  display:none; background: rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.12);
  width:44px; height:44px; align-items:center; justify-content:center; border-radius:13px;
}
.menu-toggle span{ display:block; width:19px; height:2px; background:#fff; position:relative; border-radius:2px; }
.menu-toggle span::before, .menu-toggle span::after{
  content:""; position:absolute; left:0; width:19px; height:2px; background:#fff; border-radius:2px;
  transition: transform .22s ease, opacity .22s ease, top .22s ease;
}
.menu-toggle span::before{ top:-6px; }
.menu-toggle span::after{ top:6px; }
.menu-toggle.active span{ background:transparent; }
.menu-toggle.active span::before{ top:0; transform: rotate(45deg); }
.menu-toggle.active span::after{ top:0; transform: rotate(-45deg); }

@media (max-width: 1140px){
  .nav-main{
    position:fixed; inset:78px 0 0 0; background:#080B12;
    flex-direction:column; align-items:stretch; padding:22px; gap:4px; margin:0;
    transform: translateX(100%); transition: transform .3s ease;
    overflow-y:auto;
  }
  .nav-main.open{ transform: translateX(0); }
  .nav-main > li > a{ padding:16px; border-radius: var(--r-sm); justify-content:space-between; font-size:1.05rem; }
  .dropdown{
    position:static; opacity:1; visibility:visible; transform:none; box-shadow:none;
    width:auto; display:none; margin:0 0 6px; border:none; background: rgba(255,255,255,0.04);
    border-radius: var(--r-sm);
  }
  .nav-main > li.has-dropdown.open .dropdown{ display:flex; }
  .nav-cta-mobile{ display:flex; flex-direction:column; gap:12px; margin-top:20px;
                   padding-top:22px; border-top:1px solid rgba(255,255,255,0.1); }
  .header-cta .btn-ghost{ display:none; }
  .menu-toggle{ display:flex; }
  .site-header .container{ justify-content:space-between; }
}
@media (max-width: 620px){
  .site-header .container{ height:70px; }
  .nav-main{ inset:70px 0 0 0; }
  .header-cta .btn-accent{ display:none; }
  .brand span{ font-size:1.15rem; }
}
.nav-cta-mobile{ display:none; }

/* ---- Hero ---- */
.hero{ padding: 86px 0 110px; overflow:hidden; }
/* full-bleed constellation on the right — fills the space beyond the
   container on wide screens, the way the reference hero does */
.hero-deco{
  position:absolute; top:0; right:0; bottom:0; width:62%;
  z-index:0; pointer-events:none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.16) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(75% 70% at 78% 42%, #000 0%, transparent 72%);
          mask-image: radial-gradient(75% 70% at 78% 42%, #000 0%, transparent 72%);
}
@media (max-width: 900px){ .hero-deco{ width:100%; opacity:.6; } }
/* accent bloom behind the hero, like the reference sites */
.hero::after{
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(760px 460px at 6% -14%, rgba(11,121,253,0.30), transparent 62%),
    radial-gradient(620px 520px at 96% 4%, rgba(56,189,248,0.16), transparent 62%);
}
.hero-grid{ display:flex; gap:64px; align-items:center; flex-wrap:wrap; }
.hero-copy{ flex:1 1 600px; min-width:0; }
.hero-visual{ flex:1 1 420px; min-width:0; }
.hero h1{ margin-bottom:34px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; align-items:center; }

.hero-proof{ display:flex; gap:44px; flex-wrap:wrap; align-items:center; margin-top:64px; }
.rating-block{ display:flex; align-items:center; gap:16px; }
.rating-mark{
  width:56px; height:56px; border-radius:50%; flex:none;
  background: var(--grad); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-head); font-weight:700; font-size:1.15rem;
  box-shadow: var(--sh-glow);
}
.rating-block .score{ display:flex; align-items:center; gap:10px; }
.rating-block .score b{ font-family: var(--font-head); font-size:1.5rem; color: var(--ink); line-height:1; }
.rating-block p{ font-size:0.93rem; margin-top:4px; max-width:330px; }

/* Stacked browser previews */
.shot-stack{ display:flex; flex-direction:column; gap:24px; }
.shot{
  border-radius: var(--r-md);
  overflow:hidden;
  box-shadow: var(--sh-md);
  border:1px solid var(--line);
  background: var(--surface);
  transition: transform .3s ease, box-shadow .3s ease;
}
.shot:hover{ transform: translateY(-6px); box-shadow: var(--sh-lg); }
.shot img{ width:100%; height:auto; }
.shot.push-r{ margin-left:56px; }
.shot.push-l{ margin-right:56px; }
@media (max-width: 640px){
  .shot.push-r{ margin-left:0; }
  .shot.push-l{ margin-right:0; }
}

/* ---- Hero marquee: two columns of work drifting upward ----
   Each column's inner list is duplicated once, so translating it -50%
   lands exactly on the copy and the loop is seamless. */
.shot-marquee{
  display:flex; gap:22px;
  height: 620px; overflow:hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 11%, #000 89%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 11%, #000 89%, transparent 100%);
}
.marquee-col{ flex:1 1 0; min-width:0; }
.marquee-inner{
  display:flex; flex-direction:column; gap:22px;
  animation: marqueeUp 44s linear infinite;
}
.marquee-col.lag .marquee-inner{ animation-duration: 62s; }
.marquee-col.lag{ margin-top:-90px; }
.shot-marquee:hover .marquee-inner,
.shot-marquee:focus-within .marquee-inner{ animation-play-state: paused; }
@keyframes marqueeUp{
  from{ transform: translate3d(0,0,0); }
  to  { transform: translate3d(0,-50%,0); }
}
@media (max-width: 900px){
  .shot-marquee{ height: 460px; gap:16px; }
  .marquee-inner{ gap:16px; }
  .marquee-col.lag{ margin-top:-60px; }
}
@media (prefers-reduced-motion: reduce){
  .marquee-inner{ animation:none; }
  .shot-marquee{ height:auto; overflow:visible; -webkit-mask-image:none; mask-image:none; }
  .marquee-col.lag{ margin-top:0; }
}

/* ---- Page hero (inner pages) ---- */
.page-hero{
  padding:104px 0 116px;
  overflow:hidden;
  /* a band of its own so it reads as a separate header area */
  background:
    linear-gradient(168deg, #090C13 0%, #0B1220 42%, #0D1B33 100%);
  border-bottom:1px solid rgba(255,255,255,0.07);
}
.page-hero::after{
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(820px 460px at 88% -10%, rgba(11,121,253,0.34), transparent 62%),
    radial-gradient(560px 420px at 2% 110%, rgba(56,189,248,0.14), transparent 62%);
}
/* constellation, right side, bleeding to the edge */
.page-hero .hero-deco{ width:56%; }
/* First section after a page hero — the hero already carries bottom padding,
   so this is tuned as a pair rather than a full section's worth. */
.section-first{ padding-top: 92px; }
@media (max-width: 900px){ .section-first{ padding-top: 56px; } }
.page-hero h1{ max-width: 940px; }
@media (max-width: 900px){ .page-hero{ padding:64px 0 72px; } }
.breadcrumb{ display:flex; gap:8px; align-items:center; font-size:0.88rem; color: var(--muted); margin-bottom:22px; flex-wrap:wrap; }
.breadcrumb a{ color: var(--ink-2); }
.breadcrumb a:hover{ color: var(--accent); }
.page-hero h1{ max-width:900px; }
.page-hero p.lead{ max-width:680px; margin-top:22px; }
.page-hero .hero-actions{ margin-top:36px; }

/* ---- Trust strip ---- */
.trust-strip{ padding:0 0 96px; }
.trust-strip p.trust-label{
  text-align:center; font-size:0.82rem; letter-spacing:0.06em; text-transform:uppercase;
  color: var(--muted); margin-bottom:34px; font-weight:600;
}
.trust-logos{ display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:20px 52px; }
.trust-logos .tl{
  font-family: var(--font-head); font-weight:700; font-size:1.32rem;
  color: var(--faint); letter-spacing:-0.03em; white-space:nowrap;
  transition: color .2s ease;
}
.trust-logos .tl:hover{ color: var(--ink); }

/* ---- Statement block ---- */
.statement h2{
  font-size: clamp(2rem, 3.9vw, 3.4rem);
  line-height:1.18; letter-spacing:-0.03em; max-width:1000px;
}
.statement .label{ font-size:0.95rem; color: var(--muted); margin-bottom:28px; font-weight:500; }

/* ---- Cards ---- */
.card{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--r-lg);
  padding:36px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height:100%;
  display:flex; flex-direction:column;
}
.card:hover{ transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.card h3{ margin-bottom:12px; }
.card p{ margin-bottom:0; font-size:0.99rem; }
.card .link-arrow{ margin-top:22px; }

.card-plain{ background:var(--surface); border-color:var(--line); }
.section-paper .card-plain{ background: var(--surface); }

.icon-box{
  width:58px; height:58px; border-radius:17px;
  background: var(--grad);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:26px; flex:none;
  box-shadow: 0 10px 24px rgba(11,121,253,0.3);
}
.icon-box svg{ width:26px; height:26px; stroke:#fff; }
.icon-box.soft{ background: var(--accent-soft); box-shadow:none; }
.icon-box.soft svg{ stroke: var(--accent); }
.icon-box.ink{ background: var(--surface-2); box-shadow:none; }

.service-card{ position:relative; }
.service-card .num{
  position:absolute; top:32px; right:34px;
  font-family: var(--font-head); font-weight:600; font-size:0.85rem; color: #5A6577;
}

.check-list{ display:flex; flex-direction:column; gap:15px; }
.check-list li{ display:flex; gap:13px; align-items:flex-start; color: var(--ink); font-weight:500; }
.check-list li svg{ flex:none; margin-top:4px; width:19px; height:19px; }

/* ---- Dark island (section-dark wraps its container in a dark rounded panel) ---- */
.section-dark{ padding: 0 0 116px; background:transparent; }
.section-dark > .container{
  background: var(--dark);
  border:1px solid var(--dark-line);
  border-radius: var(--r-xl);
  padding: 96px 64px;
  color:#fff;
  position:relative;
  overflow:hidden;
  max-width: var(--container);
}
.section-dark > .container::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(620px 380px at 8% -8%, rgba(11,121,253,0.34), transparent 62%),
    radial-gradient(520px 400px at 100% 6%, rgba(56,189,248,0.2), transparent 62%);
}
.section-dark > .container > *{ position:relative; z-index:1; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4{ color:#fff; }
.section-dark h2 .dim, .section-dark h1 .dim{ color:#59616F; }
.section-dark p{ color:#A3ABBA; }
.section-dark .eyebrow{ background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); color:#D6DBE4; box-shadow:none; }
.section-dark .eyebrow.plain{ background:transparent; border:none; color:#7B8393; }
.section-dark .check-list li{ color:#DCE1E9; }
@media (max-width: 900px){
  .section-dark{ padding-bottom:74px; }
  .section-dark > .container{ padding:56px 26px; border-radius: var(--r-lg); }
}

/* Glow card — dark card with accent bloom in the corner */
.glow-card{
  background: #10141C;
  border:1px solid var(--dark-line);
  border-radius: var(--r-md);
  padding:34px;
  position:relative; overflow:hidden; height:100%;
  display:flex; flex-direction:column;
}
.glow-card::before{
  content:""; position:absolute; top:-70px; right:-70px; width:230px; height:230px;
  background: radial-gradient(circle, rgba(11,121,253,0.55), transparent 70%);
  filter: blur(14px); pointer-events:none;
}
.glow-card > *{ position:relative; z-index:1; }
.glow-card b.stat{ display:block; font-family: var(--font-head); font-size:2.9rem; color:#fff; line-height:1; margin-bottom:14px; letter-spacing:-0.03em; }
.glow-card h4{ color:#fff; margin-bottom:10px; }
.glow-card p{ color:#98A0AF; font-size:0.96rem; }
.glow-card.alt::before{ background: radial-gradient(circle, rgba(56,189,248,0.5), transparent 70%); }

/* ---- Stats row ---- */
.stat-row{ display:flex; flex-wrap:wrap; gap:28px; }
.stat-item{ flex:1 1 200px; }
.stat-item b{ display:block; font-family: var(--font-head); font-size:2.7rem; color: var(--ink); line-height:1; letter-spacing:-0.03em; margin-bottom:10px; }
.stat-item span{ color: var(--muted); font-size:0.95rem; }
.section-dark .stat-item b{ color:#fff; }
.section-dark .stat-item span{ color:#8A93A3; }

/* ---- Work / portfolio ---- */
.work-item{ display:flex; flex-direction:column; }
.work-shot{
  border-radius: var(--r-md); overflow:hidden; border:1px solid var(--line);
  box-shadow: var(--sh-md); background: var(--surface);
  transition: transform .3s ease, box-shadow .3s ease;
}
.work-item:hover .work-shot{ transform: translateY(-8px); box-shadow: var(--sh-lg); }
.work-shot img{ width:100%; height:auto; }
.tag-row{ display:flex; flex-wrap:wrap; gap:12px; margin:24px 0 20px; }
.tag-pill{
  flex:1 1 calc(50% - 6px);
  text-align:center;
  background: var(--surface-2);
  border-radius: var(--r-pill);
  padding:12px 18px;
  font-size:0.92rem; font-weight:500; color: var(--ink-2);
}
.section-paper .tag-pill{ background: var(--surface-2); }
.work-item h3{ margin-bottom:12px; }
.work-item p{ font-size:1rem; }
.work-metrics{ display:flex; gap:32px; flex-wrap:wrap; margin-top:22px; padding-top:22px; border-top:1px solid var(--line); }
.work-metrics b{ display:block; font-family: var(--font-head); font-size:1.5rem; color: var(--accent); line-height:1; letter-spacing:-0.02em; }
.work-metrics span{ font-size:0.83rem; color: var(--muted); }
.work-offset{ margin-top:84px; }
@media (max-width: 940px){ .work-offset{ margin-top:0; } }

/* ---- Process timeline ---- */
.process-wrap{ display:flex; gap:64px; flex-wrap:wrap; align-items:flex-start; }
.process-intro{ flex:1 1 360px; position:sticky; top:120px; }
.process-steps{ flex:1 1 560px; display:flex; flex-direction:column; gap:24px; }
@media (max-width: 940px){ .process-intro{ position:static; } }

.pstep{ display:flex; gap:26px; align-items:flex-start; }
.pstep-num{
  width:56px; height:56px; border-radius:50%; flex:none;
  background: var(--grad); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-head); font-weight:700; font-size:1.1rem;
  box-shadow: var(--sh-glow);
}
.pstep-body{
  flex:1; background: var(--surface); border:1px solid var(--line);
  border-radius: var(--r-md); padding:32px 34px;
  position:relative; overflow:hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pstep:hover .pstep-body{ transform: translateY(-4px); box-shadow: var(--sh-md); }
.pstep-body::before{
  content:""; position:absolute; top:-60px; right:-60px; width:190px; height:190px;
  background: radial-gradient(circle, rgba(11,121,253,0.16), transparent 70%);
  pointer-events:none;
}
.pstep-body > *{ position:relative; z-index:1; }
.pstep-body h4{ margin-bottom:12px; }
.pstep-body ul{ margin-top:16px; display:flex; flex-direction:column; gap:9px; }
.pstep-body ul li{ display:flex; gap:11px; font-size:0.95rem; }
.pstep-body ul li::before{ content:""; width:5px; height:5px; border-radius:50%; background: var(--accent); flex:none; margin-top:9px; }

/* ---- Compare (them vs us) ---- */
.compare-col{
  flex:1 1 calc(50% - 14px);
  background: var(--surface); border:1px solid var(--line);
  border-radius: var(--r-lg); padding:38px;
}
.compare-col.win{ border-color: var(--accent-line); box-shadow: var(--sh-md); }
.compare-col h3{ margin-bottom:26px; display:flex; align-items:center; gap:12px; }
.compare-col ul{ display:flex; flex-direction:column; }
.compare-col ul li{
  display:flex; align-items:flex-start; gap:13px;
  padding:16px 0; border-bottom:1px solid var(--line); font-size:1rem;
}
.compare-col ul li:last-child{ border-bottom:none; }
.compare-col ul li svg{ flex:none; margin-top:3px; width:19px; height:19px; }
.compare-col.win ul li{ color: var(--ink); font-weight:500; }
@media (max-width: 620px){ .compare-col{ flex:1 1 100%; } }

/* ---- Testimonials ---- */
.stars{ display:flex; gap:3px; margin-bottom:18px; }
.stars svg{ width:17px; height:17px; fill:#FFB020; }
.testimonial-card{
  background: var(--surface); border:1px solid var(--line); border-radius: var(--r-lg);
  padding:36px; height:100%; display:flex; flex-direction:column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover{ transform: translateY(-6px); box-shadow: var(--sh-md); }
.section-paper .testimonial-card{ background: var(--surface); border-color: var(--line); }
.testimonial-card p.quote{ color: var(--ink); font-size:1.06rem; flex:1; line-height:1.62; }
.testimonial-person{ display:flex; align-items:center; gap:14px; margin-top:28px; padding-top:24px; border-top:1px solid var(--line); }
.avatar-badge{
  width:48px; height:48px; border-radius:50%; flex:none;
  background: var(--grad); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-head); font-weight:700; font-size:0.98rem;
}
.testimonial-person b{ display:block; font-size:0.97rem; color: var(--ink); font-family:var(--font-head); font-weight:600; }
.testimonial-person span{ display:block; font-size:0.85rem; color: var(--muted); }
.sample-tag{ font-size:0.72rem; color: var(--faint); font-style:italic; margin-top:5px; }

/* ---- Accordion ---- */
.accordion-item{ border-bottom:1px solid var(--line); }
.accordion-trigger{
  width:100%; background:none; border:none; text-align:left;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding:26px 2px; font-family: var(--font-head); font-weight:600; font-size:1.08rem;
  color: var(--ink); letter-spacing:-0.015em;
}
.accordion-trigger .plus{
  flex:none; width:32px; height:32px; border-radius:50%;
  border:1.5px solid var(--line); position:relative; transition: background .2s ease, border-color .2s ease;
}
.accordion-trigger .plus::before, .accordion-trigger .plus::after{
  content:""; position:absolute; background: var(--ink); top:50%; left:50%;
  transform: translate(-50%,-50%); transition: opacity .2s ease, background .2s ease;
}
.accordion-trigger .plus::before{ width:12px; height:2px; border-radius:2px; }
.accordion-trigger .plus::after{ width:2px; height:12px; border-radius:2px; }
.accordion-item.active .accordion-trigger .plus{ background: var(--accent); border-color: var(--accent); }
.accordion-item.active .accordion-trigger .plus::after{ opacity:0; }
.accordion-item.active .accordion-trigger .plus::before,
.accordion-item.active .accordion-trigger .plus::after{ background:#fff; }
.accordion-panel{ max-height:0; overflow:hidden; transition: max-height .3s ease; }
.accordion-panel-inner{ padding:0 2px 28px; max-width:820px; }
.section-dark .accordion-item{ border-bottom-color: var(--dark-line); }
.section-dark .accordion-trigger{ color:#fff; }
.section-dark .accordion-trigger .plus{ border-color: var(--dark-line); }
.section-dark .accordion-trigger .plus::before,
.section-dark .accordion-trigger .plus::after{ background:#fff; }

/* ---- Forms ---- */
.form-card{
  background: var(--surface); border:1px solid var(--line);
  border-radius: var(--r-xl); padding:44px; box-shadow: var(--sh-md);
}
.form-field{ margin-bottom:22px; }
.form-field label{ display:block; font-weight:600; font-size:0.9rem; margin-bottom:9px; color: var(--ink); }
.form-field input, .form-field textarea, .form-field select{
  width:100%; padding:16px 18px; border-radius:14px;
  border:1.5px solid var(--line); background: #0E1117; color: var(--ink);
  transition: border-color .18s ease, background .18s ease;
}
.form-field input::placeholder, .form-field textarea::placeholder{ color: var(--faint); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus{
  outline:none; border-color: var(--accent); background:#12161E;
}
.form-field textarea{ min-height:150px; resize:vertical; }

/* Selectable chips */
.chip-row{ display:flex; flex-wrap:wrap; gap:11px; }
.chip{ position:relative; }
.chip input{ position:absolute; opacity:0; width:0; height:0; }
.chip span{
  display:block; padding:12px 22px; border-radius: var(--r-pill);
  background: #0E1117; border:1.5px solid var(--line);
  font-size:0.93rem; font-weight:500; color: var(--ink-2);
  cursor:pointer; transition: all .18s ease; user-select:none;
}
.chip span:hover{ border-color: var(--accent); color: var(--accent); }
.chip input:checked + span{ background: var(--accent); border-color: var(--accent); color:#fff; }
.chip input:focus-visible + span{ outline:2px solid var(--accent); outline-offset:2px; }

/* ---- CTA banner ---- */
.cta-banner{
  border-radius: var(--r-xl);
  padding:72px 64px;
  color:#fff;
  position:relative; overflow:hidden;
  background: var(--dark);
}
.cta-banner::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(620px 420px at 0% 0%, rgba(11,121,253,0.5), transparent 62%),
    radial-gradient(520px 400px at 100% 100%, rgba(56,189,248,0.32), transparent 62%);
}
.cta-banner > *{ position:relative; z-index:1; }
.cta-banner h2{ color:#fff; margin-bottom:14px; max-width:640px; }
.cta-banner p{ color: rgba(255,255,255,0.72); max-width:520px; }
@media (max-width: 820px){
  .cta-banner{ padding:44px 28px; }
  .cta-banner .flex{ flex-direction:column; align-items:flex-start !important; gap:28px; }
}

/* ---- Footer ---- */
.site-footer{ background: var(--footer); border-top:1px solid var(--line); color:#7C8494; padding-top:92px; }
.footer-top{ display:flex; flex-wrap:wrap; gap:56px; padding-bottom:60px; border-bottom:1px solid var(--dark-line); }
.footer-brand{ flex:1 1 300px; }
.footer-brand .brand span{ color:#fff; }
.footer-brand p{ color:#7C8494; max-width:330px; margin:20px 0 26px; font-size:0.97rem; }
.footer-col{ flex:1 1 160px; }
.footer-col h4{ color:#fff; font-size:0.95rem; margin-bottom:22px; }
.footer-col ul{ display:flex; flex-direction:column; gap:13px; }
.footer-col a, .footer-col li{ color:#7C8494; font-size:0.95rem; transition: color .15s ease; }
.footer-col a:hover{ color: var(--accent-2); }
.social-row{ display:flex; gap:10px; }
.social-row a{
  width:40px; height:40px; border-radius:50%; border:1px solid var(--dark-line);
  display:flex; align-items:center; justify-content:center; transition: all .18s ease;
}
.social-row a:hover{ border-color: var(--accent); background: var(--accent-soft); }
.social-row svg{ width:16px; height:16px; }
.footer-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px; padding:30px 0; font-size:0.87rem; color:#616978; }
.footer-bottom a{ color:#616978; }
.footer-bottom a:hover{ color: var(--accent-2); }

/* ---- Image helpers ---- */
.img-frame{ position:relative; }
.rounded-img{ border-radius: var(--r-lg); }
.float-card{
  position:absolute; background: var(--surface); border-radius: var(--r-md);
  box-shadow: var(--sh-lg); padding:20px 24px;
  display:flex; align-items:center; gap:15px; z-index:2;
}
.float-card b{ display:block; font-family: var(--font-head); font-size:1.4rem; color: var(--ink); line-height:1.1; }
.float-card span{ font-size:0.8rem; color: var(--muted); }
@media (max-width: 620px){ .float-card{ position:static; margin-top:18px; } }

.badge-pill{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  background: var(--surface); border:1px solid var(--line);
  padding:14px 22px; border-radius: var(--r-pill);
  font-weight:500; font-size:0.95rem; color: var(--ink); box-shadow: var(--sh-sm);
}

/* ---- Utilities ---- */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.mt-sm{margin-top:16px}.mt-md{margin-top:32px}.mt-lg{margin-top:56px}
.mb-sm{margin-bottom:16px}.mb-md{margin-bottom:32px}.mb-lg{margin-bottom:56px}
.text-accent{ color: var(--accent); }
.text-muted{ color: var(--muted); }
.w-full{ width:100%; }

/* Reveal on scroll (progressive enhancement; layout intact without JS) */
.reveal{ opacity:0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
  .rev-track{ transition:none; }
}

/* ==========================================================================
   Review carousel — real verified reviews from the Fiverr profile
   Maps to Elementor's native Testimonial Carousel widget.
   ========================================================================== */
.rev-carousel{ position:relative; }
.rev-viewport{ overflow:hidden; }
.rev-track{
  display:flex; gap:28px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.rev-card{
  flex: 0 0 calc(33.333% - 18.67px);
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--r-lg);
  padding:34px;
  display:flex; flex-direction:column;
}
.section-paper .rev-card{ background: var(--surface); border-color: var(--line); }
@media (max-width: 1024px){ .rev-card{ flex-basis: calc(50% - 14px); } }
@media (max-width: 680px){ .rev-card{ flex-basis: 100%; } }

.rev-top{ display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:18px; }
.rev-verified{
  display:inline-flex; align-items:center; gap:6px;
  font-size:0.74rem; font-weight:600; color: var(--muted);
  background: var(--surface-2); border-radius: var(--r-pill); padding:6px 12px;
  white-space:nowrap;
}
.section-paper .rev-verified{ background: var(--surface-2); }
.rev-verified svg{ width:13px; height:13px; flex:none; }
.rev-card p.quote{ color: var(--ink); font-size:1rem; line-height:1.62; flex:1; margin:0; }
.rev-meta{ display:flex; gap:9px; flex-wrap:wrap; margin-top:20px; }
.rev-meta span{
  font-size:0.75rem; font-weight:600; color: var(--ink-2);
  background: var(--surface-2); border-radius: var(--r-pill); padding:6px 12px;
}
.section-paper .rev-meta span{ background: var(--surface-2); }
.rev-person{ display:flex; align-items:center; gap:13px; margin-top:22px; padding-top:20px; border-top:1px solid var(--line); }
.rev-person b{ display:block; font-family: var(--font-head); font-weight:600; font-size:0.96rem; color: var(--ink); }
.rev-person span{ display:block; font-size:0.83rem; color: var(--muted); }

.rev-controls{ display:flex; align-items:center; justify-content:space-between; gap:20px; margin-top:36px; flex-wrap:wrap; }
.rev-dots{ display:flex; gap:8px; }
.rev-dots button{
  width:8px; height:8px; border-radius:50%; border:none; padding:0;
  background: var(--faint); transition: all .2s ease;
}
.rev-dots button.on{ width:26px; border-radius:4px; background: var(--accent); }
.rev-nav{ display:flex; gap:10px; }
.rev-nav button{
  width:48px; height:48px; border-radius:50%;
  border:1.5px solid var(--line); background: var(--surface);
  display:flex; align-items:center; justify-content:center;
  transition: all .2s ease;
}
.rev-nav button:hover:not(:disabled){ border-color: var(--accent); background: var(--accent); }
.rev-nav button:hover:not(:disabled) svg{ stroke:#fff; }
.rev-nav button:disabled{ opacity:.35; cursor:not-allowed; }
.rev-nav svg{ width:18px; height:18px; stroke: var(--ink); transition: stroke .2s ease; }

/* Rating summary */
.rating-summary{ display:flex; gap:48px; flex-wrap:wrap; align-items:center; }
.rating-big{ text-align:center; flex:none; }
.rating-big b{ display:block; font-family:var(--font-head); font-size:4rem; line-height:1; color:var(--ink); letter-spacing:-0.04em; }
.section-dark .rating-big b{ color:#fff; }
.rating-big .stars{ justify-content:center; margin:12px 0 6px; }
.rating-big small{ font-size:0.88rem; color: var(--muted); }
.rating-bars{ flex:1 1 320px; display:flex; flex-direction:column; gap:9px; }
.rating-bar{ display:flex; align-items:center; gap:12px; font-size:0.86rem; color: var(--muted); }
.rating-bar .lab{ flex:none; width:54px; }
.rating-bar .track{ flex:1; height:7px; border-radius:4px; background: var(--surface-2); overflow:hidden; }
.section-dark .rating-bar .track{ background: var(--dark-line); }
.rating-bar .fill{ height:100%; border-radius:4px; background: var(--grad); }
.rating-bar .num{ flex:none; width:36px; text-align:right; }


/* ==========================================================================
   Mobile bottom nav — thumb-reachable quick bar, phones/tablets only.
   Elementor equivalent: a sticky bottom Flexbox Container with Icon Boxes.
   ========================================================================== */
.bottom-nav{ display:none; }

@media (max-width: 900px){
  .bottom-nav{
    display:flex; align-items:flex-end; justify-content:space-around;
    position:fixed; left:12px; right:12px; z-index:950;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    background:#0C1017;
    border:1px solid rgba(255,255,255,0.10);
    border-radius:22px;
    padding:10px 8px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  }
  .bottom-nav a, .bottom-nav button{
    flex:1 1 0; min-width:0;
    display:flex; flex-direction:column; align-items:center; gap:5px;
    background:none; border:none; padding:6px 2px;
    color:#8D97A8; font-size:0.68rem; font-weight:600;
    font-family: var(--font-body); letter-spacing:0.01em;
    transition: color .18s ease;
  }
  .bottom-nav a svg, .bottom-nav button svg{ width:21px; height:21px; stroke:currentColor; fill:none; }
  .bottom-nav a:hover, .bottom-nav button:hover,
  .bottom-nav a.is-current{ color:#fff; }
  .bottom-nav a.is-current svg{ stroke: var(--accent); }

  /* raised centre action */
  .bottom-nav .bn-center{
    flex:0 0 auto; margin-top:-34px;
    width:60px; height:60px; border-radius:20px;
    background: var(--grad); color:#fff;
    justify-content:center; gap:0;
    border:4px solid #0C1017;
    box-shadow: 0 10px 26px rgba(11,121,253,0.5);
  }
  .bottom-nav .bn-center svg{ width:25px; height:25px; stroke:#fff; }
  .bottom-nav .bn-center span{ display:none; }

  /* keep the footer clear of the bar */
  body{ padding-bottom: 92px; }
  .site-footer{ padding-bottom: 8px; }
}
@media (max-width: 380px){
  .bottom-nav a, .bottom-nav button{ font-size:0.62rem; }
}
