/* ========================================================
   VEDIFY AGENCY — Design tokens
   Palette: deep signal-blue + ink navy + paper white
   Type: Outfit (display) / Inter (body) / JetBrains Mono (data)
   ======================================================== */
:root{
  --ink:            #0A0F24;
  --navy-900:       #0C1330;
  --navy-800:       #121A3E;
  --blue-700:       #2141D6;
  --blue-600:       #2F5CFF;
  --blue-400:       #6E93FF;
  --blue-200:       #C4D3FF;
  --paper:          #F5F7FC;
  --paper-dim:      #EBEFFA;
  --white:          #FFFFFF;
  --slate:          #5A6280;
  --slate-light:    #8A90AC;
  --line:           #E2E7F5;
  --signal:         #17C777;   /* growth / verified accent */
  --signal-dim:     #E4F9EE;
  --amber:          #FF9E2C;   /* urgency accent, used sparingly */

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 26px;

  --shadow-card: 0 1px 2px rgba(10,15,36,.04), 0 12px 32px -12px rgba(20,30,90,.18);
  --shadow-deep: 0 24px 60px -20px rgba(10,15,36,.45);

  --ease: cubic-bezier(.22,1,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
}

body{
  margin:0;
  font-family:'Inter',system-ui,sans-serif;
  background:var(--paper);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

h1,h2,h3,h4{
  font-family:'Outfit',system-ui,sans-serif;
  margin:0;
  color:var(--ink);
  letter-spacing:-.01em;
}

p{ margin:0; color:var(--slate); line-height:1.65; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.mono{ font-family:'JetBrains Mono',monospace; }

.wrap{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 22px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:'JetBrains Mono',monospace;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--blue-600);
  font-weight:600;
}
.eyebrow::before{
  content:'';
  width:7px; height:7px;
  border-radius:50%;
  background:var(--signal);
  box-shadow:0 0 0 4px var(--signal-dim);
}

.section{ padding:78px 0; }
.section-head{ max-width:640px; margin-bottom:44px; }
.section-head h2{ font-size:clamp(28px,4vw,40px); margin-top:14px; font-weight:600; }
.section-head p{ margin-top:14px; font-size:16px; }
.section--dark{ background:var(--ink); }
.section--dark .section-head h2{ color:var(--white); }
.section--dark .eyebrow{ color:var(--blue-400); }

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:14px 26px;
  border-radius:999px;
  font-weight:600;
  font-size:15px;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space:nowrap;
}
.btn:active{ transform:scale(.97); }
.btn-primary{
  background:var(--blue-600);
  color:var(--white);
  box-shadow:0 14px 30px -10px rgba(47,92,255,.55);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 18px 36px -10px rgba(47,92,255,.6); }
.btn-telegram{
  background:#27A7E7;
  color:var(--white);
  box-shadow:0 14px 30px -10px rgba(39,167,231,.55);
}
.btn-telegram:hover{ transform:translateY(-2px); }
.btn-whatsapp{
  background:#25D366;
  color:var(--white);
  box-shadow:0 14px 30px -10px rgba(37,211,102,.5);
}
.btn-whatsapp:hover{ transform:translateY(-2px); }
.btn-ghost{
  background:transparent;
  border-color:rgba(255,255,255,.25);
  color:var(--white);
}
.btn-ghost:hover{ border-color:rgba(255,255,255,.55); }
.btn-outline{
  background:var(--white);
  border-color:var(--line);
  color:var(--ink);
}
.btn-outline:hover{ border-color:var(--blue-600); color:var(--blue-600); }
.btn-block{ width:100%; }
.btn-lg{ padding:17px 30px; font-size:16px; }

.cta-row{ display:flex; gap:14px; flex-wrap:wrap; }

/* ---------- HEADER ---------- */
.vh{
  position:fixed; top:0; left:0; right:0;
  z-index:1000;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 22px;
  background:rgba(245,247,252,.78);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.vl{ display:flex; align-items:center; gap:11px; }
.vl-logo{
  position:relative;
  width:38px; height:38px;
  display:flex; align-items:center; justify-content:center;
  animation:logoFloat 4.2s ease-in-out infinite 1.1s;
  transition:transform .45s var(--ease), filter .45s var(--ease);
  filter:drop-shadow(0 2px 6px rgba(47,92,255,.28));
}
.vl-logo::before{
  content:'';
  position:absolute;
  inset:-8px;
  border-radius:50%;
  background:conic-gradient(from 0deg, var(--blue-600), var(--blue-400), transparent 40%, transparent 60%, var(--blue-600));
  opacity:0;
  filter:blur(3px);
  animation:logoOrbit 4.5s linear infinite;
  transition:opacity .4s var(--ease);
  pointer-events:none;
  z-index:-1;
}
.vl:hover .vl-logo::before{ opacity:.5; }
.vl:hover .vl-logo{
  transform:rotate(16deg) scale(1.08);
  filter:drop-shadow(0 4px 16px rgba(47,92,255,.5));
}

/* --- the real logo image, sliced into 6 pieces that fly in and assemble --- */
.piece{
  position:absolute; inset:0;
  background-image:url('/assets/img/ui/logo.png');
  background-size:cover;
  background-position:center;
  opacity:0;
  animation:pieceIn .72s cubic-bezier(.2,.9,.25,1.1) both;
  animation-delay:calc(var(--i) * 90ms + 120ms);
}
@keyframes pieceIn{
  0%{ opacity:0; transform:translate(var(--tx), var(--ty)) scale(.45) rotate(-45deg); }
  65%{ opacity:1; }
  100%{ opacity:1; transform:translate(0,0) scale(1) rotate(0deg); }
}

/* --- wordmark: letters land one by one after the mark assembles --- */
.vl-word{
  display:inline-flex;
  font-family:'Outfit',sans-serif;
  font-size:18px; letter-spacing:.01em; color:var(--ink);
}
.vl-word .lt{
  display:inline-block;
  opacity:0;
  transform:translateY(9px);
  animation:letterIn .5s var(--ease) both;
  animation-delay:calc(650ms + var(--i) * 55ms);
}
@keyframes letterIn{
  to{ opacity:1; transform:translateY(0); }
}
.vl-sub{
  display:block;
  font-size:9.5px; letter-spacing:.22em; color:var(--slate-light); font-weight:600;
  opacity:0;
  animation:letterIn .55s var(--ease) both;
  animation-delay:1050ms;
}

@keyframes logoFloat{
  0%,100%{ transform:translateY(0) rotate(0deg); }
  50%{ transform:translateY(-2.5px) rotate(4deg); }
}
@keyframes logoOrbit{
  0%{ transform:rotate(0deg); }
  100%{ transform:rotate(360deg); }
}
@media (prefers-reduced-motion: reduce){
  .vl-logo, .piece, .vl-word .lt, .vl-sub, .vl-logo::before{ animation:none !important; opacity:1 !important; transform:none !important; }
}
.vl-text{ display:flex; flex-direction:column; line-height:1.05; }
.vl-text b{
  font-family:'Outfit',sans-serif;
  font-size:18px; letter-spacing:.01em; color:var(--ink);
}
.vl-text small{ font-size:9.5px; letter-spacing:.22em; color:var(--slate-light); font-weight:600; }

.vn{
  display:flex; align-items:center; gap:30px;
}
.vn a{
  font-size:14.5px; font-weight:500; color:var(--ink);
  position:relative; padding:4px 0;
}
.vn a::after{
  content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px;
  background:var(--blue-600); transition:width .25s var(--ease);
}
.vn a:hover::after{ width:100%; }
.vn-cta{ display:flex; gap:10px; margin-left:8px; }
.vn-cta .btn{ padding:10px 18px; font-size:13.5px; }

.vm{
  display:none;
  flex-direction:column; gap:5px;
  width:38px; height:38px;
  align-items:center; justify-content:center;
  background:transparent; border:1px solid var(--line); border-radius:10px;
  cursor:pointer;
}
.vm span{ width:18px; height:2px; background:var(--ink); border-radius:2px; transition:.3s; }
.vm.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.vm.open span:nth-child(2){ opacity:0; }
.vm.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:920px){
  .vn{
    position:fixed; inset:64px 0 0 0; height:calc(100vh - 64px);
    background:var(--paper);
    flex-direction:column; justify-content:flex-start;
    padding:30px 26px; gap:22px;
    transform:translateX(100%); transition:transform .35s var(--ease);
    overflow-y:auto;
  }
  .vn.open{ transform:translateX(0); }
  .vn a{ font-size:20px; }
  .vn-cta{ flex-direction:column; width:100%; margin-left:0; margin-top:10px; }
  .vn-cta .btn{ width:100%; padding:14px; font-size:15px; }
  .vm{ display:flex; }
}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  padding:150px 0 90px;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(47,92,255,.14), transparent 60%),
    var(--paper);
  overflow:hidden;
}
.hero-grid{
  display:grid; grid-template-columns:1.05fr .95fr; gap:50px; align-items:center;
}
.hero-badge{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--white); border:1px solid var(--line); border-radius:999px;
  padding:7px 14px; font-size:12.5px; font-weight:600; color:var(--slate);
  box-shadow:var(--shadow-card);
}
.hero-badge b{ color:var(--signal); }
.hero h1{
  margin-top:20px;
  font-size:clamp(34px,5.4vw,58px);
  line-height:1.06; font-weight:700;
}
.hero h1 em{ font-style:normal; color:var(--blue-600); }
.hero p.lead{
  margin-top:20px; font-size:17px; max-width:520px; color:var(--slate);
}
.hero .cta-row{ margin-top:32px; }
.hero-note{
  margin-top:16px; font-size:12.5px; color:var(--slate-light);
  display:flex; align-items:center; gap:8px;
}
.pulse-dot{
  width:7px; height:7px; border-radius:50%; background:var(--signal); flex:none;
  box-shadow:0 0 0 0 rgba(23,199,119,.55);
  animation:pulse 1.8s infinite;
}
.hero-badge svg{ width:14px; height:14px; flex:none; color:var(--signal); }

/* icon svg sizing across .ic wrappers */
.ic svg{ width:20px; height:20px; }
.svc-card .ic svg{ width:22px; height:22px; }
.trust-item .ic svg{ width:19px; height:19px; }
.contact-card .ic svg{ width:24px; height:24px; }
.coming-soon .lock svg{ width:22px; height:22px; }

.hero-stats{
  display:flex; gap:28px; margin-top:44px; flex-wrap:wrap;
}
.hero-stats div b{
  display:block; font-family:'JetBrains Mono',monospace; font-size:22px; color:var(--ink);
}
.hero-stats div span{ font-size:12px; color:var(--slate-light); }

/* 3D account card */
.card-stage{
  perspective:1400px;
  display:flex; align-items:center; justify-content:center;
}
.acct-card{
  position:relative;
  width:100%; max-width:410px;
  aspect-ratio:1.32;
  border-radius:22px;
  padding:26px;
  background:linear-gradient(135deg,var(--navy-900) 0%, var(--blue-700) 60%, var(--blue-600) 100%);
  color:var(--white);
  box-shadow:var(--shadow-deep);
  transform:rotateY(-14deg) rotateX(6deg);
  transition:transform .4s var(--ease);
  transform-style:preserve-3d;
  display:flex; flex-direction:column; gap:14px;
}
.card-stage:hover .acct-card{ transform:rotateY(-6deg) rotateX(2deg) scale(1.02); }
.acct-top{ display:flex; justify-content:space-between; align-items:flex-start; }
.acct-top .ring{
  width:34px; height:34px; border-radius:50%;
  background:conic-gradient(from 210deg, var(--blue-400), #fff, var(--blue-600), var(--blue-400));
  animation:logoOrbit 3s linear infinite;
}
.acct-top .verified{
  display:flex; align-items:center; gap:6px;
  font-size:11px; font-weight:600; letter-spacing:.06em;
  background:rgba(255,255,255,.14); padding:6px 10px; border-radius:999px;
}
.acct-mid .label{ font-size:11px; letter-spacing:.14em; text-transform:uppercase; opacity:.6; }
.acct-mid .num{
  font-family:'JetBrains Mono',monospace; font-size:21px; letter-spacing:.06em; margin-top:6px;
}
.acct-bottom{ display:flex; justify-content:space-between; align-items:flex-end; margin-top:auto; padding-top:6px; }
.acct-bottom .field span{ display:block; font-size:10px; opacity:.6; letter-spacing:.1em; text-transform:uppercase; }
.acct-bottom .field b{ font-family:'JetBrains Mono',monospace; font-size:14px; font-weight:500; }

/* ---- live ad-performance hero card ---- */
.ad-live{
  display:flex; align-items:center; gap:7px;
  font-family:'JetBrains Mono',monospace; font-size:11px; font-weight:600;
  letter-spacing:.08em; color:#fff;
}
.pulse-dot--light{ background:#4EE39A; }
.ad-metrics{
  display:flex; justify-content:space-between; gap:10px; margin-top:18px;
}
.metric{ display:flex; flex-direction:column; gap:4px; }
.metric .m-label{ font-size:10px; letter-spacing:.12em; text-transform:uppercase; opacity:.55; }
.metric .m-value{ font-family:'JetBrains Mono',monospace; font-size:19px; font-weight:600; }
.metric .m-trend{ font-size:11px; font-weight:600; }
.metric .m-trend.up{ color:#4EE39A; }
.metric .m-trend.down{ color:#4EE39A; }
.ad-chart{ margin-top:16px; height:56px; }
.ad-chart svg{ width:100%; height:100%; display:block; }

.acct-float{
  position:absolute; right:-14px; bottom:-18px;
  background:var(--white); color:var(--ink);
  border-radius:14px; padding:10px 14px;
  box-shadow:var(--shadow-card);
  display:flex; align-items:center; gap:8px;
  font-size:12.5px; font-weight:600;
  transform:translateZ(40px);
}
.acct-float .dot{ width:8px; height:8px; border-radius:50%; background:var(--signal); }

@media (max-width:920px){
  .hero{ padding:118px 0 60px; }
  .hero-grid{ grid-template-columns:1fr; }
  .card-stage{ margin-top:20px; }
  .acct-card{ transform:rotateY(0) rotateX(0); max-width:340px; }
  .card-stage:hover .acct-card{ transform:none; }
}

/* ---------- TRUST STRIP ---------- */
.trust{
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  background:var(--white);
}
.trust .wrap{
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
  padding:26px 22px;
}
.trust-item{ display:flex; align-items:center; gap:12px; }
.trust-item .ic{
  width:38px; height:38px; border-radius:11px; flex:none;
  background:var(--paper-dim); display:flex; align-items:center; justify-content:center;
  color:var(--blue-600);
}
.trust-item b{ display:block; font-size:13.5px; font-weight:600; }
.trust-item span{ font-size:11.5px; color:var(--slate-light); }
@media (max-width:800px){
  .trust .wrap{ grid-template-columns:repeat(2,1fr); }
}

/* ---------- SERVICE CARDS ---------- */
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
@media (max-width:1000px){ .grid-4{ grid-template-columns:repeat(2,1fr);} .grid-3{grid-template-columns:repeat(2,1fr);} }
@media (max-width:620px){ .grid-4,.grid-3,.grid-2{ grid-template-columns:1fr; } }

.svc-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  padding:26px 22px;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.svc-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-card);
  border-color:var(--blue-200);
}
.svc-card .ic{
  width:44px; height:44px; border-radius:12px;
  background:var(--paper-dim); color:var(--blue-600);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.svc-card h3{ font-size:17px; font-weight:600; }
.svc-card p{ margin-top:9px; font-size:14px; }
.svc-card .tag{
  display:inline-block; margin-top:14px;
  font-family:'JetBrains Mono',monospace; font-size:11px; color:var(--blue-600);
  background:var(--paper-dim); padding:4px 9px; border-radius:6px;
}

/* ---------- ANCHOR HEADER OFFSET ---------- */
section[id]{ scroll-margin-top:78px; }

/* ---------- PRICING ---------- */
.pricing-wrap{ display:grid; grid-template-columns:1.1fr .9fr; gap:24px; align-items:stretch; }
@media (max-width:900px){ .pricing-wrap{ grid-template-columns:1fr; } }

.terminal{
  background:var(--navy-900);
  border-radius:var(--radius-l);
  padding:0;
  overflow:hidden;
  color:var(--white);
  box-shadow:var(--shadow-deep);
}
.terminal-bar{
  display:flex; align-items:center; gap:8px;
  padding:14px 18px; background:rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.08);
  min-width:0;
}
.terminal-bar span.dot-deco{ width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,.18); flex:none; }
.terminal-bar .label{
  margin-left:8px; font-family:'JetBrains Mono',monospace; font-size:12px; color:rgba(255,255,255,.5);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.terminal-body{ padding:26px 24px; }
.tline{
  display:flex; justify-content:space-between; align-items:center;
  padding:14px 0; border-bottom:1px dashed rgba(255,255,255,.1);
  font-size:14.5px;
}
.tline:last-child{ border-bottom:0; }
.tline .k{ color:rgba(255,255,255,.65); }
.tline .v{ font-family:'JetBrains Mono',monospace; font-size:16px; font-weight:600; color:var(--white); }
.tline .v.up{ color:var(--signal); }
.tgroup-title{
  font-family:'JetBrains Mono',monospace; font-size:11px; letter-spacing:.14em;
  text-transform:uppercase; color:var(--blue-400); margin:22px 0 4px;
}
.tgroup-title:first-child{ margin-top:0; }

.plan-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-l);
  padding:26px; display:flex; flex-direction:column; gap:14px;
}
.plan-card.featured{
  border-color:var(--blue-600);
  box-shadow:0 20px 44px -18px rgba(47,92,255,.35);
  position:relative;
}
.plan-card.featured::before{
  content:'Best Value'; position:absolute; top:-12px; right:22px;
  background:var(--blue-600); color:#fff; font-size:11px; font-weight:700;
  padding:5px 12px; border-radius:999px; letter-spacing:.04em;
}
.plan-card h4{ font-size:16px; font-weight:600; }
.plan-card .price{ font-family:'JetBrains Mono',monospace; font-size:30px; font-weight:700; color:var(--ink); }
.plan-card .price span{ font-size:13px; color:var(--slate-light); font-weight:500; }
.plan-card ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:9px; }
.plan-card li{ font-size:13.5px; color:var(--slate); display:flex; gap:8px; align-items:flex-start; }
.plan-card li::before{ content:'✓'; color:var(--signal); font-weight:700; }

.enterprise-strip{
  margin-top:22px;
  background:linear-gradient(120deg, var(--ink), var(--navy-800));
  border-radius:var(--radius-l);
  padding:30px 34px;
  color:var(--white);
  display:flex; justify-content:space-between; align-items:center; gap:24px; flex-wrap:wrap;
}
.enterprise-strip h3{ font-size:19px; font-weight:600; color:#fff; }
.enterprise-strip p{ color:rgba(255,255,255,.65); font-size:13.5px; margin-top:6px; max-width:440px; }
.enterprise-strip .figs{ display:flex; gap:26px; }
.enterprise-strip .figs div b{ display:block; font-family:'JetBrains Mono',monospace; font-size:18px; color:var(--blue-400); }
.enterprise-strip .figs div span{ font-size:11px; color:rgba(255,255,255,.5); }

/* ---------- AGENCY TEASER BANNER ---------- */
.agency-teaser{
  display:grid; grid-template-columns:1.15fr .85fr; gap:36px; align-items:center;
  background:linear-gradient(120deg, var(--ink) 0%, var(--navy-800) 100%);
  border-radius:var(--radius-l);
  padding:44px;
  color:#fff;
}
.agency-teaser-copy .eyebrow{ color:var(--blue-400); }
.agency-teaser-copy h2{ color:#fff; font-size:clamp(24px,3.2vw,32px); margin-top:12px; }
.agency-teaser-copy p{ color:rgba(255,255,255,.62); margin-top:12px; font-size:14.5px; max-width:460px; }
.agency-teaser-copy .btn{ margin-top:22px; }
.agency-teaser-chips{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.chip{
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
  border-radius:14px; padding:16px;
}
.chip b{ display:block; font-size:20px; color:var(--blue-400); }
.chip span{ font-size:11.5px; color:rgba(255,255,255,.55); }
@media (max-width:840px){
  .agency-teaser{ grid-template-columns:1fr; padding:30px; }
}

/* ---------- TELEGRAM CATEGORIES ---------- */
.cat-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-m);
  padding:22px; display:flex; flex-direction:column; gap:10px;
}
.cat-card .n{ font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--blue-600); }
.cat-card h4{ font-size:16px; font-weight:600; }
.cat-card p{ font-size:13.5px; }

/* ---------- PROOF GALLERY ---------- */
.proof-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px;
}
@media (max-width:900px){ .proof-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .proof-grid{ grid-template-columns:1fr; } }
.proof-item{
  position:relative; border-radius:var(--radius-m); overflow:hidden;
  border:1px solid var(--line); background:var(--white);
  box-shadow:var(--shadow-card);
}
.proof-item img{ width:100%; height:220px; object-fit:cover; display:block; }
.proof-item .cap{
  position:absolute; left:0; right:0; bottom:0;
  padding:12px 14px;
  background:linear-gradient(0deg, rgba(8,12,30,.82), transparent);
  color:#fff; font-size:12px; font-weight:600;
}
.proof-note{
  margin-top:16px; font-size:12.5px; color:var(--slate-light);
}

.coming-soon{
  position:relative; border-radius:var(--radius-m); overflow:hidden;
  border:1px solid var(--line);
}
.coming-soon img{ width:100%; height:220px; object-fit:cover; filter:blur(6px) saturate(60%) brightness(.75); transform:scale(1.08); }
.coming-soon .lock{
  position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:8px; color:#fff; background:rgba(10,15,36,.28);
}
.coming-soon .lock b{ font-family:'JetBrains Mono',monospace; font-size:12.5px; letter-spacing:.1em; text-transform:uppercase; }

/* ---------- FAQ ---------- */
.faq-item{
  border-bottom:1px solid var(--line);
  padding:20px 0;
}
.faq-q{
  display:flex; justify-content:space-between; align-items:center; cursor:pointer;
  font-weight:600; font-size:15.5px; gap:20px;
}
.faq-q .plus{
  flex:none; width:24px; height:24px; border-radius:50%; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; font-size:16px; color:var(--blue-600);
  transition:transform .3s var(--ease);
}
.faq-item.open .plus{ transform:rotate(45deg); }
.faq-a{
  max-height:0; overflow:hidden; transition:max-height .35s var(--ease);
  font-size:14px; color:var(--slate);
}
.faq-item.open .faq-a{ max-height:200px; padding-top:12px; }

/* ---------- FINAL CTA ---------- */
.final-cta{
  background:radial-gradient(700px 400px at 50% 0%, rgba(47,92,255,.35), transparent 70%), var(--ink);
  text-align:center; padding:90px 0;
}
.final-cta h2{ color:#fff; font-size:clamp(28px,4.6vw,42px); }
.final-cta p{ color:rgba(255,255,255,.6); margin-top:14px; max-width:520px; margin-inline:auto; }
.final-cta .cta-row{ justify-content:center; margin-top:30px; }

/* ---------- FOOTER ---------- */
.vf{ background:var(--ink); color:rgba(255,255,255,.6); padding:60px 0 24px; }
.vf-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:36px; }
.vf-logo{ display:flex; align-items:center; gap:10px; }
.vf-logo img{
  width:32px !important; height:32px !important;
  flex:none; max-width:32px; max-height:32px;
  object-fit:contain;
  animation:logoFloat 4s ease-in-out infinite;
  filter:drop-shadow(0 2px 8px rgba(47,92,255,.35));
}
.vf-logo b{ color:#fff; font-family:'Outfit',sans-serif; font-size:17px; }
.vf p{ margin-top:14px; font-size:13.5px; max-width:320px; color:rgba(255,255,255,.45); }
.vf h4{ color:#fff; font-size:13px; letter-spacing:.06em; text-transform:uppercase; margin-bottom:14px; }
.vf a{ display:block; font-size:13.5px; margin-bottom:10px; color:rgba(255,255,255,.6); }
.vf a:hover{ color:#fff; }
.vf-bottom{
  margin-top:40px; padding-top:22px; border-top:1px solid rgba(255,255,255,.08);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:12px; color:rgba(255,255,255,.35);
}
@media (max-width:760px){ .vf-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .vf-grid{ grid-template-columns:1fr; } }

/* ---------- STICKY CONTACT ---------- */
.sticky-contact{
  position:fixed; right:20px; bottom:20px; z-index:900;
  display:flex; align-items:center; gap:10px;
  background:var(--ink); color:#fff;
  padding:13px 18px 13px 14px; border-radius:999px;
  box-shadow:0 16px 34px -10px rgba(10,15,36,.5);
  font-size:13.5px; font-weight:600;
  transition:transform .3s var(--ease);
}
.sticky-contact:hover{ transform:translateY(-3px); }
.sticky-contact .pulse{
  width:10px; height:10px; border-radius:50%; background:var(--signal);
  box-shadow:0 0 0 0 rgba(23,199,119,.6);
  animation:pulse 1.8s infinite;
}
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(23,199,119,.55); }
  70%{ box-shadow:0 0 0 10px rgba(23,199,119,0); }
  100%{ box-shadow:0 0 0 0 rgba(23,199,119,0); }
}
@media (max-width:600px){
  .sticky-contact span.full{ display:none; }
  .sticky-contact{ padding:14px; }
}

/* ---------- CONTACT PAGE ---------- */
.contact-hero{ padding:150px 0 70px; text-align:center; }
.contact-hero .eyebrow{ justify-content:center; display:flex; }
.contact-hero h1{ margin-top:16px; font-size:clamp(30px,5vw,46px); }
.contact-hero p{ margin:16px auto 0; max-width:480px; }

.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:22px; max-width:820px; margin:44px auto 0; }
@media (max-width:700px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-card{
  border-radius:var(--radius-l); padding:34px 28px;
  display:flex; flex-direction:column; align-items:flex-start; gap:14px;
  color:#fff;
  box-shadow:var(--shadow-deep);
  transition:transform .3s var(--ease);
}
.contact-card:hover{ transform:translateY(-6px); }
.contact-card.tg{ background:linear-gradient(135deg,#1EA0DB,#0D6FA8); }
.contact-card.wa{ background:linear-gradient(135deg,#25D366,#0E8E45); }
.contact-card .ic{
  width:52px; height:52px; border-radius:14px; background:rgba(255,255,255,.18);
  display:flex; align-items:center; justify-content:center;
}
.contact-card h3{ color:#fff; font-size:19px; }
.contact-card p{ color:rgba(255,255,255,.82); font-size:13.5px; text-align:left; }
.contact-card .btn{ margin-top:6px; }

.contact-direct{
  max-width:560px; margin:50px auto 0; text-align:center;
  font-size:13.5px; color:var(--slate-light);
}
.contact-direct b{ color:var(--ink); }

/* reveal on scroll */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
