*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

@font-face{
  font-family:'Helvetica Now';
  src:url('./Helvetica Now/HelveticaNowDisplay.otf') format('opentype');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:'Helvetica Now';
  src:url('./Helvetica Now/HelveticaNowDisplayMedium.otf') format('opentype');
  font-weight:500;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:'Helvetica Now';
  src:url('./Helvetica Now/HelveticaNowDisplayBold.otf') format('opentype');
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

:root{
  --accent: #1800ff;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f6f8ff;
  --text: #0f1020;
  --text-muted: #5b5d74;
  --border: rgba(15,16,32,0.12);
  --glow: rgba(24,0,255,0.32);
  --ink: var(--text);
  --paper: var(--bg);
  --white: var(--surface);
  --blue: var(--accent);
  --blue-lt: rgba(24,0,255,0.12);
  --muted: var(--text-muted);
  --rule: var(--border);
  --f-disp: 'Helvetica Now', 'Helvetica Neue', Arial, sans-serif;
  --f-body: 'Helvetica Now', 'Helvetica Neue', Arial, sans-serif;
  --max:    1020px;
  --ease:   cubic-bezier(.16,1,.3,1);
}

body[data-theme="dark"]{
  --bg: #070711;
  --surface: #0e1020;
  --surface-soft: #141834;
  --text: #f2f3ff;
  --text-muted: #a7add4;
  --border: rgba(151,163,255,0.22);
  --glow: rgba(24,0,255,0.62);
  --ink: var(--text);
  --paper: var(--bg);
  --white: var(--surface);
  --blue: var(--accent);
  --blue-lt: rgba(24,0,255,0.22);
  --muted: var(--text-muted);
  --rule: var(--border);
}

html{scroll-behavior:smooth}
body{
  font-family:var(--f-body);
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* ─── NAV ─── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  height:60px;
  background:rgba(245,244,239,0.88);
  backdrop-filter:blur(24px) saturate(180%);
  -webkit-backdrop-filter:blur(24px) saturate(180%);
  border-bottom:1px solid var(--rule);
}
.nav-in{
  max-width:var(--max);margin:0 auto;padding:0 28px;
  height:100%;display:flex;align-items:center;
}
.logo{
  display:inline-flex;align-items:center;
  cursor:pointer;flex-shrink:0;
}
.logo-img{
  display:block;
  height:auto;
}
.logo .logo-img{
  width:88px !important;
  max-width:88px;
}
.ft-logo .logo-img{
  width:112px !important;
  max-width:112px;
}
.nav-links{
  display:flex;gap:4px;list-style:none;
  position:absolute;left:50%;transform:translateX(-50%);
}
.nav-links > li { position:relative; }
.nav-links > li > a{
  display:flex;align-items:center;gap:5px;
  padding:6px 12px;border-radius:8px;
  transition:background .2s;
}
.nav-links > li > a:hover{ background:rgba(13,13,12,.06) }
.nav-links > li > a.active{ font-weight:500;opacity:1 }
.nav-chevron{
  width:12px;height:12px;display:flex;align-items:center;justify-content:center;
  transition:transform .2s;
}
.nav-links > li:hover .nav-chevron{ transform:rotate(180deg) }

/* Dropdown */
.nav-dropdown{
  position:absolute;top:calc(100% + 10px);left:50%;transform:translateX(-50%);
  background:var(--white);border:1px solid var(--rule);border-radius:14px;
  box-shadow:0 8px 40px rgba(0,0,0,.12);
  padding:8px;min-width:210px;
  opacity:0;pointer-events:none;transform:translateX(-50%) translateY(-6px);
  transition:opacity .2s ease,transform .2s ease;
  z-index:300;
}
/* Invisible bridge fills the gap so hover doesn't break */
.nav-dropdown::before{
  content:'';
  position:absolute;
  top:-14px;left:0;right:0;
  height:14px;
}
.nav-links > li:hover .nav-dropdown,
.nav-links > li:focus-within .nav-dropdown{
  opacity:1;pointer-events:all;transform:translateX(-50%) translateY(0);
}
.dd-item{
  display:flex;align-items:center;gap:12px;
  padding:10px 12px;border-radius:8px;cursor:pointer;
  transition:background .15s;text-decoration:none;
  color:var(--ink);
}
.dd-item:hover{ background:var(--paper) }
.dd-icon{
  width:32px;height:32px;border-radius:8px;
  background:var(--blue-lt);display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.dd-label{ font-size:13px;font-weight:500;color:var(--ink) }
.dd-sub{ font-size:11px;color:var(--muted);font-weight:300 }
.dd-divider{
  height:1px;background:var(--rule);margin:4px 0;
}
.nav-links a{
  font-size:14px;font-weight:400;color:var(--ink);opacity:0.65;
  text-decoration:none;cursor:pointer;
  transition:opacity .2s;
}
.nav-links a:hover{opacity:1}
.nav-links a.active{opacity:1;font-weight:500}
.nav-pill{
  margin-left:auto;
  background:var(--ink);color:var(--white);
  border:none;border-radius:60px;
  padding:9px 20px;font-size:13px;font-weight:500;
  cursor:pointer;font-family:var(--f-body);
  transition:background .2s,transform .15s;flex-shrink:0;
}
.nav-pill:hover{background:#2a2a28;transform:scale(1.02)}

.hamburger{
  display:none;flex-direction:column;gap:5px;
  cursor:pointer;margin-left:auto;padding:4px;
  background:none;border:none;
}
.hamburger span{
  display:block;width:22px;height:1.5px;
  background:var(--ink);border-radius:2px;transition:all .3s;
}

.mob-menu{
  display:none;position:fixed;top:60px;left:0;right:0;
  background:rgba(245,244,239,0.97);backdrop-filter:blur(24px);
  border-bottom:1px solid var(--rule);z-index:199;
  padding:20px 28px 28px;flex-direction:column;gap:0;
}
.mob-menu.open{display:flex}
.mob-menu a{
  font-size:16px;font-weight:400;color:var(--ink);
  text-decoration:none;padding:14px 0;cursor:pointer;
  border-bottom:1px solid var(--rule);opacity:0.75;
}
.mob-menu a.active{opacity:1;font-weight:500}
.mob-menu a:hover{opacity:1}
.mob-cta-btn{
  margin-top:20px;background:var(--ink);color:var(--white);
  border:none;border-radius:60px;padding:14px;
  font-size:15px;font-weight:500;cursor:pointer;
  font-family:var(--f-body);text-align:center;
}

/* ─── PAGE SYSTEM ─── */
.page{display:none;padding-top:60px;min-height:100vh}
.page.active{display:block}

/* ─── SKELETON OVERLAY ─── */
.skel-overlay{
  position:fixed;inset:0;z-index:198;
  background:var(--paper);
  display:flex;flex-direction:column;gap:24px;
  padding:120px 28px 40px;
  opacity:0;pointer-events:none;
  transition:opacity .2s;
}
.skel-overlay.show{opacity:1;pointer-events:all}

@keyframes shimmer{
  0%{background-position:-600px 0}
  100%{background-position:600px 0}
}
.skel-line{
  height:18px;border-radius:4px;
  background:linear-gradient(90deg,rgba(0,0,0,.06) 0%,rgba(0,0,0,.11) 50%,rgba(0,0,0,.06) 100%);
  background-size:600px 100%;
  animation:shimmer 1.4s infinite linear;
}
.skel-line.tall{height:64px;border-radius:8px;max-width:60%}
.skel-line.sm{max-width:38%}
.skel-line.full{max-width:100%}
.skel-line.mid{max-width:52%}
.skel-block{
  height:200px;border-radius:12px;
  background:linear-gradient(90deg,rgba(0,0,0,.06) 0%,rgba(0,0,0,.11) 50%,rgba(0,0,0,.06) 100%);
  background-size:600px 100%;
  animation:shimmer 1.4s infinite linear;
}

/* ─── PAGE TRANSITION ─── */
.page-wrap{
  opacity:0;transform:translateY(10px);
  transition:opacity .5s var(--ease),transform .5s var(--ease);
}
.page-wrap.in{opacity:1;transform:none}

/* ─── LAYOUT HELPERS ─── */
section{padding:100px 28px}
.inner{max-width:var(--max);margin:0 auto}
.bg-paper{background:var(--paper)}
.bg-white{background:var(--white)}
.bg-ink{background:var(--ink)}

/* ─── HERO ─── */
.hero{
  min-height:92vh;
  display:flex;align-items:center;
  padding:100px 28px 80px;
  position:relative;overflow:hidden;
}
.hero .inner{width:100%;position:relative;z-index:1}
.hero-content{width:100%}

/* centered hero */
.hero-centered{min-height:94vh;align-items:center}
.hero-center-wrap{
  display:flex;flex-direction:column;align-items:center;
  text-align:center;
  max-width:900px;
  margin:0 auto;
}
.hero-centered .hero-eye{margin-bottom:24px}
.hero-centered h1{font-size:clamp(52px,7vw,96px)}
.hero-centered .hero-sub{
  font-size:18px;max-width:600px;
  margin:28px auto 40px;
  line-height:1.65;
}

/* pricing row inside hero */
.hero-pricing-row{
  display:flex;
  gap:0;
  border:1px solid var(--rule);
  border-radius:18px;
  overflow:hidden;
  width:100%;
  max-width:860px;
  background:var(--surface);
  box-shadow:0 12px 36px rgba(0,0,0,.07);
  margin-bottom:40px;
}
.hpc-item{
  flex:1;
  padding:24px 24px 22px;
  display:flex;flex-direction:column;gap:4px;
  text-align:left;
}
.hpc-divider{
  width:1px;background:var(--rule);flex-shrink:0;
}
.hpc-badge{
  display:inline-block;
  font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:var(--blue);background:var(--blue-lt);
  border-radius:6px;padding:3px 8px;
  margin-bottom:8px;align-self:flex-start;
}
.hpc-badge-muted{color:var(--muted);background:var(--surface-soft)}
.hpc-price{
  font-family:var(--f-disp);font-size:clamp(28px,3.5vw,40px);
  font-weight:800;letter-spacing:-.03em;color:var(--ink);line-height:1;
  margin-bottom:2px;
}
.hpc-label{font-size:14px;font-weight:600;color:var(--ink);margin-bottom:4px}
.hpc-desc{font-size:12px;font-weight:300;color:var(--muted);line-height:1.55}
.hpc-note-item .hpc-label{color:var(--muted)}

.hero-ctas-center{
  display:flex;gap:12px;justify-content:center;flex-wrap:wrap;
}

/* sub-page hero layout (Google / Meta / Creatives) */
.hero-sub-page{
  min-height:100vh;
  align-items:center;
  padding-top:100px;
  padding-bottom:60px;
}
.hero-sub-layout{
  display:grid;
  grid-template-columns:1fr 400px;
  gap:56px;
  align-items:center;
  width:100%;
}
.hero-sub-left{display:flex;flex-direction:column;align-items:flex-start}

.hero-sub-page h1{
  font-size:clamp(44px,5.5vw,80px);
  line-height:.97;
}
.hero-sub-left .hero-sub{
  font-size:16px;max-width:500px;
  margin:20px 0 28px;line-height:1.6;
}
.hero-tag-row{
  display:flex;flex-wrap:wrap;gap:7px;
  list-style:none;padding:0;margin:0 0 24px;
}
.hero-tag-row li{
  font-size:11px;font-weight:500;letter-spacing:.04em;
  color:var(--blue);background:var(--blue-lt);
  border-radius:20px;padding:4px 11px;
}

/* price card in sub-page hero */
.sub-price-card{
  background:var(--surface);
  border:1px solid var(--rule);
  border-radius:20px;
  padding:24px;
  box-shadow:0 12px 40px rgba(0,0,0,.07);
}
.sub-price-kicker{
  font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  color:var(--muted);margin-bottom:16px;
}
.sub-price-row{
  display:flex;gap:0;
  border:1px solid var(--rule);
  border-radius:12px;overflow:hidden;
  margin-bottom:14px;
}
.sub-price-block{
  flex:1;padding:14px 14px;display:flex;flex-direction:column;gap:4px;
}
.sub-price-block:first-child{border-right:1px solid var(--rule)}
.sub-price-badge{
  display:inline-block;
  font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:var(--blue);background:var(--blue-lt);
  border-radius:5px;padding:3px 7px;
  margin-bottom:8px;align-self:flex-start;
}
.sub-price-num{
  font-family:var(--f-disp);font-size:clamp(26px,2.8vw,36px);
  font-weight:800;letter-spacing:-.03em;color:var(--ink);line-height:1;
}
.sub-price-label{font-size:12px;font-weight:500;color:var(--muted);margin-top:2px}
.sub-price-sep{width:1px;background:var(--rule);flex-shrink:0}
.sub-price-note{
  font-size:12px;font-weight:300;color:var(--muted);line-height:1.55;
  border-top:1px solid var(--rule);padding-top:14px;
}
body[data-theme="dark"] .sub-price-card{
  box-shadow:0 0 0 1px rgba(24,0,255,.2),0 20px 48px rgba(0,0,0,.45);
}

.hero-sub-page .hero-eye{margin-bottom:16px}

@media(max-width:960px){
  .hero-sub-layout{grid-template-columns:1fr;gap:36px}
  .hero-sub-right{width:100%;max-width:520px}
  .hero-sub-page{min-height:auto;padding-top:120px;padding-bottom:60px}
}
@media(max-width:600px){
  .hero-sub-right{max-width:100%}
  .sub-price-card{padding:18px}
}

body[data-theme="dark"] .hero-pricing-row{
  box-shadow:0 0 0 1px rgba(24,0,255,.2),0 20px 48px rgba(0,0,0,.45);
}
.hero-bottom{
  display:grid;
  grid-template-columns:1fr auto;
  gap:40px;align-items:end;
  margin-top:48px;
}
@media(max-width:680px){
  .hero-bottom{grid-template-columns:1fr;gap:24px}
}

/* animated grid bg */
.hero-grid-bg{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(13,13,12,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(13,13,12,.05) 1px,transparent 1px);
  background-size:60px 60px;
  mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,black 40%,transparent 100%);
  -webkit-mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,black 40%,transparent 100%);
}

.hero-eye{
  font-size:11px;font-weight:500;letter-spacing:0.14em;
  text-transform:uppercase;color:var(--blue);
  margin-bottom:28px;display:block;
  opacity:0;transform:translateY(12px);
  animation:lineUp .6s var(--ease) .1s forwards;
}
.hero h1{
  font-family:var(--f-disp);
  font-size:clamp(52px,7.5vw,100px);
  font-weight:800;
  line-height:.97;
  letter-spacing:-.03em;
  color:var(--ink);
  overflow-wrap:break-word;
}
/* staggered line reveal */
.hl{
  display:block;overflow:hidden;
}
.hl span{
  display:block;
  opacity:0;transform:translateY(60px);
  animation:lineUp .75s var(--ease) forwards;
}
.hl:nth-child(1) span{animation-delay:.15s}
.hl:nth-child(2) span{animation-delay:.25s}
.hl:nth-child(3) span{animation-delay:.35s}
.hl:nth-child(4) span{animation-delay:.45s}

.blue-word{color:var(--blue)}

.hero-right{
  padding-bottom:4px;
  opacity:0;transform:translateY(16px);
  animation:lineUp .7s var(--ease) .55s forwards;
}
.hero-sub{
  font-size:17px;font-weight:300;color:var(--muted);
  line-height:1.7;margin-bottom:36px;
}
.hero-ctas{display:flex;gap:12px;flex-wrap:wrap}

/* .pricing-card removed — hero uses .hero-pricing-row instead */

@keyframes lineUp{
  to{opacity:1;transform:none}
}

/* ─── BUTTONS ─── */
.btn-ink{
  background:var(--ink);color:var(--white);
  border:none;border-radius:60px;
  padding:14px 26px;font-size:14px;font-weight:500;
  cursor:pointer;font-family:var(--f-body);
  transition:background .2s,transform .15s;
  text-decoration:none;display:inline-flex;align-items:center;gap:8px;
}
.btn-ink:hover{background:#2a2a28;transform:scale(1.02)}

.btn-outline{
  background:transparent;color:var(--ink);
  border:1px solid rgba(13,13,12,.25);border-radius:60px;
  padding:14px 26px;font-size:14px;font-weight:400;
  cursor:pointer;font-family:var(--f-body);
  transition:border-color .2s,transform .15s;
  text-decoration:none;display:inline-flex;align-items:center;gap:8px;
}
.btn-outline:hover{border-color:var(--ink);transform:scale(1.02)}

.btn-blue{
  background:var(--blue);color:var(--white);
  border:none;border-radius:60px;
  padding:14px 26px;font-size:14px;font-weight:500;
  cursor:pointer;font-family:var(--f-body);
  transition:filter .2s,transform .15s;
  text-decoration:none;display:inline-flex;align-items:center;gap:8px;
}
.btn-blue:hover{filter:brightness(1.12);transform:scale(1.02)}

.btn-white-inv{
  background:var(--white);color:var(--ink);
  border:none;border-radius:60px;
  padding:14px 26px;font-size:14px;font-weight:500;
  cursor:pointer;font-family:var(--f-body);
  transition:transform .2s,box-shadow .2s;
  text-decoration:none;display:inline-flex;align-items:center;gap:8px;
}
.btn-white-inv:hover{transform:scale(1.02);box-shadow:0 8px 32px rgba(0,0,0,.28)}

/* ─── STATS BAR ─── */
.stats-bar{
  border-top:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
  padding:0;
}
.stats-inner{
  max-width:var(--max);margin:0 auto;
  display:grid;grid-template-columns:repeat(4,1fr);
}
.s-item{
  padding:48px 32px;
  border-right:1px solid var(--rule);
  position:relative;
}
.s-item:last-child{border-right:none}
.s-num{
  font-family:var(--f-disp);
  font-size:clamp(40px,5vw,60px);
  font-weight:700;letter-spacing:-.03em;
  color:var(--ink);line-height:1;
  margin-bottom:10px;
}
.s-num .unit{font-size:.55em;font-weight:600;color:var(--blue)}
.s-lbl{font-size:13px;color:var(--muted);line-height:1.5;font-weight:400}

/* ─── SECTION HEADERS ─── */
.s-head{margin-bottom:72px}
.s-head.center{text-align:center}
.s-head.center .s-head-sub{margin:0 auto}
.eyebrow{
  font-size:11px;font-weight:500;letter-spacing:.14em;
  text-transform:uppercase;color:var(--blue);
  margin-bottom:20px;display:block;
}
.s-head h2{
  font-family:var(--f-disp);
  font-size:clamp(36px,5vw,60px);
  font-weight:700;letter-spacing:-.025em;
  line-height:1.04;color:var(--ink);
  margin-bottom:18px;
}
.s-head-sub{
  font-size:17px;font-weight:300;color:var(--muted);
  line-height:1.7;max-width:480px;
}

/* ─── SERVICES SECTION ─── */
.svc-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:auto auto;
  gap:1px;
  background:var(--rule);
  border:1px solid var(--rule);
  border-radius:16px;overflow:hidden;
}
.svc-item{
  background:var(--white);
  padding:48px 44px;
  transition:background .25s;
  cursor:pointer;
  position:relative;
}
.svc-item:hover{background:#FAFAF8}
.svc-item.wide{grid-column:span 2}
.svc-item.accent{background:var(--ink)}
.svc-item.accent:hover{background:#1a1a18}

.svc-num{
  font-family:var(--f-disp);font-size:12px;
  font-weight:700;letter-spacing:.08em;
  color:var(--muted);margin-bottom:32px;display:block;
}
.svc-item.accent .svc-num{color:rgba(255,255,255,.35)}
.svc-item h3{
  font-family:var(--f-disp);
  font-size:28px;font-weight:700;letter-spacing:-.02em;
  color:var(--ink);margin-bottom:14px;line-height:1.1;
}
.svc-item.accent h3{color:var(--white)}
.svc-item p{
  font-size:15px;color:var(--muted);line-height:1.65;
  max-width:360px;font-weight:300;
}
.svc-item.accent p{color:rgba(255,255,255,.55)}
.svc-arrow{
  position:absolute;bottom:40px;right:40px;
  width:40px;height:40px;border-radius:50%;
  border:1px solid rgba(13,13,12,.15);
  display:flex;align-items:center;justify-content:center;
  transition:all .25s;cursor:pointer;
}
.svc-item:hover .svc-arrow{background:rgba(13,13,12,.1);border-color:rgba(13,13,12,.3)}
.svc-item:hover .svc-arrow svg{color:var(--white)}
.svc-item.accent .svc-arrow{border-color:rgba(255,255,255,.25)}
.svc-item.accent:hover .svc-arrow{background:rgba(255,255,255,.15);border-color:rgba(255,255,255,.4)}

/* ─── USP LIST ─── */
.usp-list{display:flex;flex-direction:column;gap:0}
.usp-row{
  display:grid;grid-template-columns:1fr 1fr;
  border-bottom:1px solid var(--rule);
  padding:40px 0;gap:40px;align-items:start;
}
.usp-row:last-child{border-bottom:none}
.usp-label{
  font-family:var(--f-disp);font-size:22px;font-weight:700;
  letter-spacing:-.015em;color:var(--ink);
}
.usp-desc{font-size:15px;color:var(--muted);line-height:1.65;font-weight:300}

/* ─── CTA BANNER ─── */
.cta-s{padding:120px 28px;text-align:center}
.cta-s h2{
  font-family:var(--f-disp);
  font-size:clamp(40px,6vw,72px);
  font-weight:800;letter-spacing:-.03em;
  color:var(--white);margin-bottom:20px;line-height:1.0;
}
.cta-s p{
  font-size:17px;color:rgba(255,255,255,.55);font-weight:300;
  margin-bottom:44px;max-width:440px;margin-left:auto;margin-right:auto;
  line-height:1.6;
}
.price-note{
  font-size:13px !important;
  color:rgba(255,255,255,.72) !important;
  max-width:720px !important;
  margin-top:16px !important;
  margin-bottom:0 !important;
  line-height:1.55 !important;
}

/* ─── PROCESS STEPS ─── */
.proc-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--rule);
}
.proc-item{
  padding:48px 32px;
  border-right:1px solid var(--rule);
}
.proc-item:first-child{padding-left:0}
.proc-item:last-child{border-right:none;padding-right:0}
.proc-n{
  font-family:var(--f-disp);font-size:13px;font-weight:700;
  color:var(--blue);letter-spacing:.06em;margin-bottom:20px;display:block;
}
.proc-item h4{
  font-family:var(--f-disp);font-size:19px;font-weight:700;
  letter-spacing:-.01em;margin-bottom:12px;color:var(--ink);
}
.proc-item p{font-size:14px;color:var(--muted);line-height:1.6;font-weight:300}

/* ─── FEATURE GRID ─── */
.feat-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1px;background:var(--rule);
  border:1px solid var(--rule);border-radius:16px;overflow:hidden;
}
.feat-item{
  background:var(--white);padding:36px 32px;
  transition:background .2s;
}
.feat-item:hover{background:#FAFAF8}
.feat-tag{
  font-size:11px;font-weight:500;letter-spacing:.1em;
  text-transform:uppercase;color:var(--blue);
  margin-bottom:16px;display:block;
}
.feat-item h4{
  font-family:var(--f-disp);font-size:18px;font-weight:700;
  letter-spacing:-.01em;margin-bottom:10px;color:var(--ink);
}
.feat-item p{font-size:13px;color:var(--muted);line-height:1.6;font-weight:300}

/* ─── RESULTS ─── */
.res-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:0;border-top:1px solid var(--rule);
}
.res-item{
  padding:56px 40px;text-align:center;
  border-right:1px solid var(--rule);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
}
.res-item:last-child{border-right:none}
.res-num{
  font-family:var(--f-disp);
  font-size:clamp(52px,7vw,80px);
  font-weight:800;letter-spacing:-.03em;
  color:var(--ink);line-height:1;margin-bottom:14px;
}
.res-desc{font-size:14px;color:var(--muted);line-height:1.55;font-weight:300}

/* ─── SPLIT ─── */
.split{
  display:grid;grid-template-columns:1fr 1fr;
  gap:100px;align-items:start;
}
.split h2{
  font-family:var(--f-disp);
  font-size:clamp(32px,4vw,48px);font-weight:700;
  letter-spacing:-.025em;line-height:1.08;
  color:var(--ink);margin-bottom:20px;
}
.split p{
  font-size:16px;color:var(--muted);line-height:1.7;
  margin-bottom:20px;font-weight:300;
}
.check-list{list-style:none;margin-top:8px}
.check-list li{
  font-size:14px;color:var(--muted);
  padding:12px 0;border-bottom:1px solid var(--rule);
  display:flex;align-items:center;gap:14px;font-weight:300;
}
.check-list li span.dot{
  width:5px;height:5px;border-radius:50%;
  background:var(--blue);flex-shrink:0;
}

/* ─── CAMPAIGNS GRID ─── */
.camp-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:1px;background:var(--rule);
  border:1px solid var(--rule);border-radius:16px;overflow:hidden;
}
.camp-item{
  background:var(--white);padding:44px 40px;
  transition:background .2s;
}
.camp-item:hover{background:#FAFAF8}
.camp-item h3{
  font-family:var(--f-disp);font-size:22px;font-weight:700;
  letter-spacing:-.015em;color:var(--ink);margin-bottom:14px;
}
.camp-item p{font-size:14px;color:var(--muted);line-height:1.65;font-weight:300}

/* ─── FUNNEL ─── */
.funnel-wrap{
  display:flex;flex-direction:column;
  align-items:center;gap:2px;
  max-width:560px;margin:0 auto;
}
.f-step{
  padding:28px 48px;text-align:center;
  border-radius:12px;
  transition:transform .2s;cursor:default;
}
.f-step:hover{transform:scale(1.01)}
.f-step.f1{width:100%;background:var(--ink)}
.f-step.f2{width:78%;background:#2D2D2B}
.f-step.f3{width:58%;background:#444441}
.f-lbl{
  font-size:10px;font-weight:500;letter-spacing:.12em;
  text-transform:uppercase;color:rgba(255,255,255,.4);margin-bottom:6px;
}
.f-step h4{
  font-family:var(--f-disp);font-size:17px;font-weight:700;
  color:var(--white);margin-bottom:4px;
}
.f-step p{font-size:12px;color:rgba(255,255,255,.5);font-weight:300}

/* ─── PREISE CALC ─── */
.calc-grid{
  display:grid;grid-template-columns:1fr 380px;
  gap:72px;align-items:start;
}
.seg{
  display:inline-flex;
  background:rgba(13,13,12,.07);
  border-radius:60px;padding:3px;gap:2px;
}
.seg-b{
  padding:9px 20px;border-radius:60px;border:none;
  background:transparent;font-family:var(--f-body);
  font-size:13px;font-weight:400;color:var(--muted);
  cursor:pointer;transition:all .2s;
}
.seg-b.on{
  background:var(--white);color:var(--ink);font-weight:500;
  box-shadow:0 1px 6px rgba(0,0,0,.1);
}
.calc-block{margin-bottom:52px}
.calc-lbl{
  font-size:11px;font-weight:500;letter-spacing:.1em;
  text-transform:uppercase;color:var(--muted);margin-bottom:18px;
}
.slider-val{
  font-family:var(--f-disp);
  font-size:40px;font-weight:700;letter-spacing:-.025em;
  color:var(--ink);margin-bottom:12px;
}
input[type=range]{
  -webkit-appearance:none;width:100%;height:3px;border-radius:3px;
  background:linear-gradient(to right,var(--ink) var(--p,0%),rgba(13,13,12,.12) var(--p,0%));
  outline:none;cursor:pointer;
}
input[type=range]::-webkit-slider-thumb{
  -webkit-appearance:none;width:20px;height:20px;border-radius:50%;
  background:var(--white);box-shadow:0 2px 10px rgba(0,0,0,.18);
  border:2px solid var(--ink);cursor:pointer;transition:transform .15s;
}
input[type=range]::-webkit-slider-thumb:hover{transform:scale(1.2)}
.range-labels{
  display:flex;justify-content:space-between;
  margin-top:10px;font-size:12px;color:var(--muted);
}

/* result card */
.r-card{
  border:1px solid var(--rule);border-radius:16px;
  overflow:hidden;position:sticky;top:80px;
}
.r-card-head{
  background:var(--ink);padding:32px 32px 28px;
}
.r-card-head h3{
  font-family:var(--f-disp);font-size:18px;font-weight:700;
  color:var(--white);margin-bottom:4px;
}
.r-card-head p{font-size:13px;color:rgba(255,255,255,.4);font-weight:300}
.r-card-body{background:var(--white);padding:24px 32px 32px}
.r-row{
  display:flex;justify-content:space-between;align-items:baseline;
  padding:16px 0;border-bottom:1px solid var(--rule);
}
.r-row:last-of-type{border-bottom:none}
.r-row .rl{font-size:13px;color:var(--muted);font-weight:300}
.r-row .rv{font-size:15px;font-weight:500;color:var(--ink)}
.r-row.big .rv{
  font-family:var(--f-disp);font-size:28px;font-weight:700;
  letter-spacing:-.02em;color:var(--blue);
}
.r-card-foot{
  background:var(--paper);padding:20px 32px;
  border-top:1px solid var(--rule);
}
.r-card-foot p{font-size:12px;color:var(--muted);line-height:1.55;font-weight:300}

.info-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1px;background:var(--rule);
  border:1px solid var(--rule);border-radius:16px;overflow:hidden;
}
.info-item{
  background:var(--white);padding:36px 32px;
}
.info-tag{
  font-size:11px;font-weight:500;letter-spacing:.1em;
  text-transform:uppercase;color:var(--blue);margin-bottom:14px;display:block;
}
.info-item h4{
  font-family:var(--f-disp);font-size:18px;font-weight:700;
  letter-spacing:-.01em;margin-bottom:10px;color:var(--ink);
}
.info-item p{font-size:13px;color:var(--muted);line-height:1.6;font-weight:300}

/* ─── FOOTER ─── */
footer{
  background:var(--white);
  border-top:1px solid var(--rule);
  padding:72px 28px 44px;
}
.ft-grid{
  max-width:var(--max);margin:0 auto;
  display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr 1fr;
  gap:32px;margin-bottom:56px;
}
.ft-logo{
  margin-bottom:10px;
  display:inline-flex;align-items:center;
}

.logo-dark{display:none}
body[data-theme="dark"] .logo-light{display:none}
body[data-theme="dark"] .logo-dark{display:block}

/* ─── COOKIE BANNER ─── */
.cookie-banner{
  position:fixed;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:900;
  display:block;
}
.cookie-banner.is-hidden{
  display:none;
}
.cookie-content{
  max-width:760px;
  margin:0 auto;
  background:var(--surface);
  border:1px solid var(--rule);
  border-radius:14px;
  padding:16px 18px;
  box-shadow:0 18px 38px rgba(0,0,0,.16);
}
.cookie-title{
  font-size:14px;
  font-weight:700;
  color:var(--ink);
  margin-bottom:6px;
}
.cookie-text{
  font-size:13px;
  color:var(--muted);
  line-height:1.6;
}
.cookie-text a{
  color:var(--blue);
  text-decoration:none;
}
.cookie-text a:hover{
  text-decoration:underline;
}
.cookie-actions{
  margin-top:14px;
  display:flex;
  justify-content:flex-end;
  gap:10px;
}
.cookie-btn{
  min-width:120px;
  justify-content:center;
}

body[data-theme="dark"] .cookie-content{
  box-shadow:0 0 0 1px rgba(24,0,255,.2),0 18px 36px rgba(0,0,0,.45);
}
.ft-tag{font-size:13px;color:var(--muted);font-weight:300;line-height:1.6;max-width:180px}
.ft-col h5{
  font-size:11px;font-weight:500;letter-spacing:.1em;
  text-transform:uppercase;color:var(--ink);margin-bottom:16px;
}
.ft-col ul{list-style:none;display:flex;flex-direction:column;gap:10px}
.ft-col ul li a,.ft-col ul li{
  font-size:13px;color:var(--muted);font-weight:300;
  text-decoration:none;cursor:pointer;transition:color .2s;
}
.ft-col ul li a:hover{color:var(--blue)}
.ft-bottom{
  max-width:var(--max);margin:0 auto;
  padding-top:28px;border-top:1px solid var(--rule);
  display:flex;justify-content:space-between;
  font-size:12px;color:var(--muted);font-weight:300;
}

/* ─── REVEAL ─── */
.rv{
  opacity:0;transform:translateY(28px);
  transition:opacity .7s var(--ease),transform .7s var(--ease);
}
.rv.go{opacity:1;transform:none}
.rv.d1{transition-delay:.08s}
.rv.d2{transition-delay:.16s}
.rv.d3{transition-delay:.24s}
.rv.d4{transition-delay:.32s}

/* ─── PLACEHOLDER VISUAL ─── */
.vis-ph{
  border-radius:14px;
  background:linear-gradient(135deg,rgba(24,0,255,.10) 0%,rgba(24,0,255,.18) 100%);
  min-height:320px;display:flex;align-items:center;justify-content:center;
  position:relative;overflow:hidden;
}
.vis-ph::after{
  content:'';position:absolute;inset:0;
  background:repeating-linear-gradient(45deg,
    transparent 0,transparent 12px,
    rgba(21,71,232,.04) 12px,rgba(21,71,232,.04) 13px);
}
.vis-ph-label{
  font-size:12px;font-weight:500;color:rgba(21,71,232,.35);
  font-family:monospace;text-align:center;padding:20px;position:relative;z-index:1;
}

/* ─── THEME RE-SKIN ─── */
nav{
  background:rgba(255,255,255,0.86);
  border-bottom:1px solid var(--rule);
}
body[data-theme="dark"] nav{
  background:rgba(7,7,17,0.82);
  box-shadow:0 18px 42px rgba(0,0,0,.45);
}
.mob-menu{
  background:rgba(255,255,255,0.95);
}
body[data-theme="dark"] .mob-menu{
  background:rgba(8,9,20,0.94);
}

.theme-toggle,
.mob-theme-toggle{
  border:1px solid var(--rule);
  background:var(--surface);
  color:var(--text);
  border-radius:999px;
  font-family:var(--f-body);
  font-size:12px;
  font-weight:600;
  letter-spacing:.01em;
  cursor:pointer;
}
.mob-theme-toggle{display:block}
.theme-toggle{
  margin-left:10px;
  padding:8px 12px;
  display:flex;
  align-items:center;
  gap:8px;
}
.theme-toggle span{
  opacity:.45;
  transition:opacity .2s ease;
}
body[data-theme="light"] .theme-toggle-sun{opacity:1}
body[data-theme="dark"] .theme-toggle-moon{opacity:1}
.mob-theme-toggle{
  width:100%;
  padding:12px 14px;
  margin-bottom:12px;
}

.bg-paper{background:var(--surface-soft)}
.bg-white{background:var(--surface)}
.bg-ink{
  background:linear-gradient(160deg,#130a4f 0%, #1800ff 42%, #0e0f24 100%);
}
.hero-grid-bg{
  background-image:
    linear-gradient(rgba(24,0,255,.10) 1px,transparent 1px),
    linear-gradient(90deg,rgba(24,0,255,.10) 1px,transparent 1px);
}

.nav-links > li > a:hover,
.dd-item:hover,
.svc-item:hover,
.feat-item:hover,
.camp-item:hover{
  background:var(--surface-soft);
}

.btn-ink,
.nav-pill,
.mob-cta-btn{
  background:var(--accent);
  color:#fff;
}
.btn-ink:hover,.nav-pill:hover{
  background:#1800ff;
  box-shadow:0 0 0 1px rgba(24,0,255,.35),0 10px 32px rgba(24,0,255,.35);
}
.btn-outline{
  border-color:rgba(24,0,255,.38);
  color:var(--text);
}
.btn-outline:hover{border-color:var(--accent)}

.nav-dropdown,
.svc-item,
.feat-item,
.camp-item,
.info-item,
.r-card-body,
.r-card-foot,
footer{
  background:var(--surface);
}

.svc-item.accent{
  background:linear-gradient(145deg, rgba(24,0,255,.95), rgba(24,0,255,.72));
}
.svc-item.accent:hover{
  background:linear-gradient(145deg, rgba(24,0,255,1), rgba(24,0,255,.80));
}

.f-step.f1{background:#120c3d}
.f-step.f2{background:#16185b}
.f-step.f3{background:#1a2280}

.vis-ph{
  background:linear-gradient(135deg,rgba(24,0,255,.10) 0%,rgba(24,0,255,.20) 100%);
}
.vis-ph::after{
  background:repeating-linear-gradient(45deg,
    transparent 0,transparent 12px,
    rgba(24,0,255,.10) 12px,rgba(24,0,255,.10) 13px);
}
.vis-ph-label{color:rgba(24,0,255,.55)}

#modal-overlay{background:rgba(8,10,24,.52)!important}
#modal-box{
  background:var(--surface)!important;
  box-shadow:0 32px 80px rgba(8,12,30,.28)!important;
}
input,select,textarea{
  background:var(--surface)!important;
  color:var(--text)!important;
  border-color:var(--rule)!important;
}

body[data-theme="dark"]{
  color-scheme:dark;
}
body[data-theme="dark"] .bg-ink{
  box-shadow:inset 0 0 120px rgba(24,0,255,.35);
}
body[data-theme="dark"] .btn-ink,
body[data-theme="dark"] .nav-pill,
body[data-theme="dark"] .theme-toggle{
  box-shadow:0 0 0 1px rgba(24,0,255,.52),0 0 28px rgba(24,0,255,.48),0 16px 40px rgba(24,0,255,.34);
}
body[data-theme="dark"] .svc-item,
body[data-theme="dark"] .feat-item,
body[data-theme="dark"] .camp-item,
body[data-theme="dark"] .info-item,
body[data-theme="dark"] .r-card,
body[data-theme="dark"] .nav-dropdown,
body[data-theme="dark"] footer{
  box-shadow:0 0 0 1px rgba(24,0,255,.18),0 20px 44px rgba(1,2,7,.55);
}
body[data-theme="dark"] .stats-bar,
body[data-theme="dark"] .s-item,
body[data-theme="dark"] .proc-grid,
body[data-theme="dark"] .proc-item,
body[data-theme="dark"] .res-grid,
body[data-theme="dark"] .res-item,
body[data-theme="dark"] .usp-row,
body[data-theme="dark"] .ft-bottom{
  border-color:var(--rule);
}
body[data-theme="dark"] .blue-word,
body[data-theme="dark"] .hero-eye,
body[data-theme="dark"] .eyebrow{
  text-shadow:0 0 14px rgba(24,0,255,.7),0 0 34px rgba(24,0,255,.45);
}
body[data-theme="dark"] .hero-grid-bg{
  background-image:
    linear-gradient(rgba(24,0,255,.18) 1px,transparent 1px),
    linear-gradient(90deg,rgba(24,0,255,.18) 1px,transparent 1px);
}
body[data-theme="dark"] .s-num .unit,
body[data-theme="dark"] .proc-n,
body[data-theme="dark"] .feat-tag,
body[data-theme="dark"] .info-tag,
body[data-theme="dark"] .hero-eye,
body[data-theme="dark"] .eyebrow{
  color:var(--accent);
}

/* ─── RESPONSIVE ─── */
@media(max-width:860px){
  .nav-links,.nav-pill{display:none}
  .theme-toggle{display:none}
  .hamburger{display:flex}
  .hero-grid{grid-template-columns:1fr}
  .hero-pricing-row{flex-direction:column}
  .hpc-divider{width:100%;height:1px}
  .hpc-item{padding:18px 18px 16px}
  .hero-right{margin-top:0}
  .stats-inner{grid-template-columns:repeat(2,1fr)}
  .s-item:nth-child(2){border-right:none}
  .svc-grid{grid-template-columns:1fr}
  .svc-item.wide{grid-column:span 1}
  .usp-row{grid-template-columns:1fr}
  .proc-grid{grid-template-columns:1fr 1fr;gap:0}
  .proc-item{border-bottom:1px solid var(--rule);border-right:none;padding:36px 0}
  .proc-item:nth-child(odd){padding-right:28px;border-right:1px solid var(--rule)}
  .feat-grid{grid-template-columns:1fr}
  .res-grid{grid-template-columns:1fr}
  .res-item{border-right:none;border-bottom:1px solid var(--rule)}
  .res-item:last-child{border-bottom:none}
  .split{grid-template-columns:1fr;gap:48px}
  .camp-grid{grid-template-columns:1fr}
  .calc-grid{grid-template-columns:1fr}
  .info-grid{grid-template-columns:1fr}
  .ft-grid{grid-template-columns:1fr 1fr 1fr}
  .ft-bottom{flex-direction:column;gap:6px}
}
@media(max-width:540px){
  section{padding:72px 18px}
  .hero{padding:88px 18px 64px;min-height:auto}
  .hero-ctas-center .btn-ink,
  .hero-ctas-center .btn-outline{width:100%;justify-content:center}
  .logo .logo-img{width:76px !important;max-width:76px}
  .ft-logo .logo-img{width:98px !important;max-width:98px}
  .cookie-banner{
    left:10px;
    right:10px;
    bottom:10px;
  }
  .cookie-content{
    padding:14px 14px;
    border-radius:12px;
  }
  .cookie-actions{
    justify-content:stretch;
  }
  .cookie-btn{
    min-width:0;
    width:100%;
    padding:12px 16px;
  }
  .stats-inner{grid-template-columns:repeat(2,1fr)}
  .proc-grid{grid-template-columns:1fr}
  .proc-item:nth-child(odd){padding-right:0;border-right:none}
  .ft-grid{grid-template-columns:1fr}
  .seg{flex-wrap:wrap;border-radius:14px}
  .seg-b{border-radius:10px}
  .camp-grid{grid-template-columns:1fr}
}
