/* ════════════════════════════════════════════════════════════════════
   BRANDBUZZ ADVERTISING — MASTER STYLESHEET  v1.0
   Brand Guideline Compliant
   ────────────────────────────────────────────────────────────────
   Colours  #eeb607 y · #000000 Black · #ffffff White
   Fonts    Montserrat (titles) · Poppins (subtitles/body)
   ────────────────────────────────────────────────────────────────
   CONTENTS
    1.  Design Tokens
    2.  Reset & Base
    3.  Typography Scale
    4.  Layout Utilities
    5.  Brand Pill Labels
    6.  Buttons
    7.  Logo
    8.  Navigation
    9.  Section Backgrounds
   10.  Hero Layouts
   11.  Card Components
   12.  Form Elements
   13.  List Components
   14.  Stats Components
   15.  Grid Layouts
   16.  Tag Chips & Industry Cards
   17.  FAQ Accordion
   18.  Quote Block
   19.  CTA Section
   20.  Animations & Keyframes
   21.  Scroll Reveal
   22.  Footer
   23.  Responsive Breakpoints
════════════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────
   1. DESIGN TOKENS
──────────────────────────────────────────── */
:root {
  /* Brand palette */
  --y: #eeb607;
  --y2: #d4a005;
  --y3: rgba(238, 182, 7, 0.1);
  --y4: rgba(238, 182, 7, 0.22);
  --grey-bg: #f5f5f5;
  --bk: #000000;
  --bk2: #111111;
  --bk3: #1a1a1a;
  --bk4: #222222;
  --w: #ffffff;
  /* Neutral scale */
  --g1: #f7f7f5;
  --g2: #eeeeec;
  --g3: #888888;
  --g4: #555555;
  --g5: #333333;
  --bd: #e0e0e0;
  --grey-brd: #cccccc;
  --nbd: #e0e0de;
  /* On-dark text */
  --wh-hi: rgba(255, 255, 255, 0.9);
  --wh-md: rgba(255, 255, 255, 0.62);
  --wh-lo: rgba(255, 255, 255, 0.38);
  --wh-faint: rgba(255, 255, 255, 0.07);

  /* Typography */
  --ft: "Montserrat", sans-serif;
  --fb: "Poppins", sans-serif;

  /* Layout */
  --fw: 1180px;
  --px: 52px;
  --pad: 52px;
  --r: 10px;
  --rl: 20px;
  --pill: 50px;
  /* Spacing */
  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 24px;
  --sp-lg: 40px;
  --sp-xl: 64px;
  --sp-2xl: 96px;
  --border: #00000026;
  /* Radii */
  --r: 10px;
  --rl: 20px;
  --rp: 60px;

  /* Shadows */
  --sh-y: 0 10px 28px rgba(238, 182, 7, 0.35);
  --sh-bk: 0 10px 28px rgba(0, 0, 0, 0.22);
  --sh-lg: 0 20px 52px rgba(0, 0, 0, 0.18);

  --tr: all 0.25s ease;
}
/* ── Reset & base ─────────────────────────────────────────── */
.bb-nav *, .bb-nav *::before, .bb-nav *::after { box-sizing: border-box; }
.bb-nav a { text-decoration: none; }
.bb-nav ul { list-style: none; margin: 0; padding: 0; }
.bb-nav button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Brand tokens ─────────────────────────────────────────── */
.bb-nav {
  --nfw: 1180px; --npx: 52px;
  --nr: 10px; --nrl: 20px; --nrp: 60px;
  --ntr: all .22s ease;
  --nsh: 0 20px 60px rgba(0,0,0,.13), 0 4px 12px rgba(0,0,0,.06);
  --nsh-y: 0 8px 24px rgba(238,182,7,.35);
  --nav-h: 70px;
}
/* ── ANIMATIONS ── */
@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fr {
  from {
    opacity: 0;
    transform: translateX(22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ────────────────────────────────────────────
   2. RESET & BASE
──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  background: var(--w);
  color: var(--bk);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img,
video,
svg {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
input,
textarea,
select {
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--g1);
}
::-webkit-scrollbar-thumb {
  background: var(--y);
  border-radius: 2px;
}
.s-white {
  background: var(--w);
}
/* ────────────────────────────────────────────
   3. TYPOGRAPHY SCALE
──────────────────────────────────────────── */
.t-display {
  font-family: var(--ft);
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.t-h1 {
  font-family: var(--ft);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
}
.t-h2 {
  font-family: var(--ft);
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.t-h2 .y {
  color: var(--y);
}
.t-h3 {
  font-family: var(--ft);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.t-h4 {
  font-family: var(--ft);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.t-lg {
  font-family: var(--fb);
  font-size: 17px;
  line-height: 1.8;
}
.t-md {
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.8;
}
.t-sm {
  font-family: var(--fb);
  font-size: 13px;
  line-height: 1.7;
}
.t-xs {
  font-family: var(--fb);
  font-size: 11px;
  line-height: 1.6;
}

.t-label {
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Colour helpers */
.c-y {
  color: var(--y);
}
.c-bk {
  color: var(--bk);
}
.c-w {
  color: var(--w);
}
.c-g3 {
  color: var(--g3);
}
.c-g4 {
  color: var(--g4);
}
.c-whi {
  color: var(--wh-hi);
}
.c-whm {
  color: var(--wh-md);
}
.c-whl {
  color: var(--wh-lo);
}

/* Text alignment */
.ta-c {
  text-align: center;
}
.ta-l {
  text-align: left;
}
.ta-r {
  text-align: right;
}

/* Margin helpers */
.mb-sm {
  margin-bottom: var(--sp-sm);
}
.mt-sm {
  margin-top: var(--sp-sm);
}
.mb-md {
  margin-bottom: var(--sp-md);
}
.mt-md {
  margin-top: var(--sp-md);
}
.mb-lg {
  margin-bottom: var(--sp-lg);
}
.mt-lg {
  margin-top: var(--sp-lg);
}
.mb-xl {
  margin-bottom: var(--sp-xl);
}
.mt-xl {
  margin-top: var(--sp-xl);
}

/* ────────────────────────────────────────────
   4. LAYOUT UTILITIES
──────────────────────────────────────────── */
.wrap {
  max-width: var(--fw);
  margin: 0 auto;
  padding: 0 var(--px);
}
section {
  padding: var(--sp-2xl) 0;
  position: relative;
}
.hero {
  padding-bottom: 0px !important;
}
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.gap-sm {
  gap: var(--sp-sm);
}
.gap-md {
  gap: var(--sp-md);
}
.gap-lg {
  gap: var(--sp-lg);
}
.t-h3 .y {
  color: var(--y);
}

.y-divider {
  width: 72px;
  height: 3px;
  background: var(--y);
  border-radius: 2px;
  margin: 0 auto;
}
.y-divider-l {
  margin: 0;
}

/* ────────────────────────────────────────────
   5. BRAND PILL LABELS (exact from guidelines)
──────────────────────────────────────────── */

/* Left-aligned: line + pill */
.pill-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 22px;
}
.pill-line {
  width: 46px;
  height: 1.5px;
  background: var(--y);
  flex-shrink: 0;
}
.pill {
  display: inline-block;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  color: var(--bk);
  background: var(--y);
  border-radius: var(--rp);
  padding: 7px 24px;
  letter-spacing: 0.01em;
  line-height: 1;
}
.pill-bk {
  background: var(--bk);
  color: var(--y);
}
.pill-out {
  background: transparent;
  color: var(--bk);
  border: 1.5px solid var(--bk);
}
.pill-out-w {
  background: transparent;
  color: var(--w);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

/* Centred pill (no line, common on grey/y sections) */
.pill-c {
  display: inline-block;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  color: var(--bk);
  background: var(--y);
  border-radius: var(--rp);
  padding: 7px 24px;
  margin-bottom: 22px;
  line-height: 1;
}
.pill-c-bk {
  background: var(--bk);
  color: var(--y);
}

/* Centred with lines on both sides */
.pill-row-c {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 22px;
}

/* ────────────────────────────────────────────
   6. BUTTONS
──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ft);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--rp);
  transition: var(--tr);
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-bk {
  background: var(--bk);
  color: var(--w);
}
.btn-bk:hover {
  background: var(--bk4);
  transform: translateY(-2px);
  box-shadow: var(--sh-bk);
}
.btn-y {
  background: var(--y);
  color: var(--bk);
}
.btn-y:hover {
  background: var(--y2);
  transform: translateY(-2px);
  box-shadow: var(--sh-y);
}
.btn-ob {
  background: transparent;
  color: var(--bk);
  border: 2px solid var(--bk);
}
.btn-ob:hover {
  background: var(--bk);
  color: var(--w);
}
.btn-ow {
  background: transparent;
  color: var(--w);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-ow:hover {
  border-color: var(--y);
  color: var(--y);
  background: var(--y3);
}
.btn-ghost {
  background: transparent;
  color: var(--g4);
  border: 1.5px solid var(--bd);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: var(--r);
  border: 1.5px solid var(--bd);
  font-family: var(--ft);
  font-size: 14px;
  font-weight: 700;
  color: var(--bk);
  text-decoration: none;
  transition: all 0.2s;
  flex: 1;
  min-width: 100px;
}
.btn-ghost:hover {
  border-color: var(--bk);
  color: var(--bk);
}

.btn-sm {
  font-size: 12px;
  padding: 9px 18px;
}
.btn-lg {
  font-size: 16px;
  padding: 15px 34px;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ────────────────────────────────────────────
   7. LOGO
──────────────────────────────────────────── */

.main-header .logo img,
.footer-log .logo img {
  /* max-width: 100%; */
  max-width: 100px;
  height: auto;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--ft);
  font-size: 20px;
  font-weight: 800;
  color: var(--bk);
  letter-spacing: -0.02em;
}
.logo-name .y {
  color: var(--y);
}
.logo-name.wh {
  color: var(--w);
}
.logo-adv {
  font-family: var(--ft);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bk);
  margin-top: 2px;
}
.logo-adv.wh {
  color: rgba(255, 255, 255, 0.5);
}
.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.logo-icon-sm {
  width: 32px;
  height: 32px;
}

/* ────────────────────────────────────────────
   8. NAVIGATION
──────────────────────────────────────────── */
/* ── Sticky bar ───────────────────────────────────────────── */
.bb-nav {
  /* position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: var(--nav-h);
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2.5px solid var(--y);
  transition: box-shadow .3s; */
  position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
  border-bottom: 2.5px solid var(--y);
    transition: box-shadow 0.3s;
    height: var(--nav-h);
}
.bb-nav.bb-scrolled { box-shadow: 0 2px 30px rgba(0,0,0,.10); }

/* ── Inner wrapper ────────────────────────────────────────── */
.bb-nav .nav-inner {
  max-width: var(--nfw);
  margin: 0 auto;
  padding: 0 var(--npx);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ── Logo ─────────────────────────────────────────────────── */
.bb-nav .nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  cursor: pointer;
}
.bb-nav .logo-name {
  font-family: var(--ft);
  font-size: 20px;
  font-weight: 800;
  color: var(--bk);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.bb-nav .logo-name .y { color: var(--y); }
.bb-nav .logo-sub {
  font-family: var(--ft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--bk);
  margin-top: 2px;
  opacity: .6;
}

/* ── Desktop nav links ────────────────────────────────────── */
.bb-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.bb-nav .nav-links li { position: relative; }

.bb-nav .nav-links > li > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 500;
  color: var(--g4);
  padding: 8px 12px;
  border-radius: var(--nr);
  transition: color .18s, background .18s;
  white-space: nowrap;
  cursor: pointer;
}
.bb-nav .nav-links > li > a:hover {
  color: var(--bk);
  background: var(--g1);
}
.bb-nav .nav-links > li > a.active {
  color: var(--y2);
  font-weight: 600;
}

/* chevron for items with dropdown */
.bb-nav .has-dd > a .chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  transition: transform .22s;
  opacity: .5;
}
.bb-nav .has-dd > a .chev svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}
.bb-nav .has-dd.open > a .chev,
.bb-nav .has-dd > a:hover .chev { opacity: 1; }
.bb-nav .has-dd.open > a .chev { transform: rotate(180deg); }

/* ── CTA button ───────────────────────────────────────────── */
.bb-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ft);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--bk) !important;
  background: var(--y);
  padding: 10px 22px;
  border-radius: var(--nrp);
  letter-spacing: .01em;
  transition: var(--ntr);
  white-space: nowrap;
  flex-shrink: 0;
}
.bb-nav .nav-cta:hover {
  background: var(--y2);
  box-shadow: var(--nsh-y);
  transform: translateY(-1px);
}

/* ── Dropdown panel ───────────────────────────────────────── */
.bb-nav .nav-dd {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--w);
  border: 1.5px solid var(--nbd);
  border-radius: var(--nrl);
  padding: 8px;
  min-width: 280px;
  box-shadow: var(--nsh);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  z-index: 10000;
}
/* pointer arrow */
.bb-nav .nav-dd::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--w);
  border-left: 1.5px solid var(--nbd);
  border-top: 1.5px solid var(--nbd);
}
/* visible state (JS adds .open to parent li) */
.bb-nav .has-dd.open > .nav-dd {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear 0s;
}

/* ── Dropdown rows ────────────────────────────────────────── */
.bb-nav .dd-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 10px;
  border-radius: var(--nr);
  transition: background .18s;
  cursor: pointer;
}
.bb-nav .dd-item:hover { background: var(--g1); }
.bb-nav .dd-item.curr { background: var(--g1); }

.bb-nav .dd-ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--y3);
  border: 1px solid var(--y4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: background .18s, border-color .18s;
}
.bb-nav .dd-item:hover .dd-ico,
.bb-nav .dd-item.curr .dd-ico {
  background: var(--y);
  border-color: var(--y);
}
.bb-nav .dd-txt { display: flex; flex-direction: column; gap: 1px; }
.bb-nav .dd-name {
  font-family: var(--ft);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--bk);
  line-height: 1.2;
}
.bb-nav .dd-hint {
  font-family: var(--fb);
  font-size: 10px;
  color: var(--g3);
  font-weight: 400;
}
.bb-nav .dd-sep {
  height: 1px;
  background: var(--nbd);
  margin: 5px 0;
}
.bb-nav .dd-lbl {
  font-family: var(--ft);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--g3);
  padding: 7px 10px 3px;
}

/* ── Hamburger ────────────────────────────────────────────── */
.bb-nav .nav-ham {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.bb-nav .nav-ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bk);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .28s ease, opacity .2s ease, width .2s ease;
}
.bb-nav .nav-ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bb-nav .nav-ham.open span:nth-child(2) { opacity: 0; width: 0; }
.bb-nav .nav-ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Overlay ──────────────────────────────────────────────── */
.bb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65); /* Made slightly darker */
  z-index: 10000; /* Increased to be above sticky nav */
  opacity: 0;
  transition: opacity .3s ease;
  -webkit-tap-highlight-color: transparent;
}
.bb-overlay.show {
  display: block;
}
.bb-overlay.visible {
  opacity: 1;
}

/* ── Mobile Drawer ────────────────────────────────────────── */
.bb-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 94vw);
  background: var(--w, #fff);
  z-index: 10001; /* Above overlay and sticky nav */
  display: flex;
  flex-direction: column;
  transform: translateX(100.5%); /* Extra 0.5% to ensure it's hidden */
  visibility: hidden; /* Prevent focus traps and scroll issues */
  transition: transform .32s cubic-bezier(.4, 0, .2, 1), visibility .32s;
  box-shadow: -6px 0 40px rgba(0,0,0,.16);
}
.bb-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

/* Drawer top bar */
.bb-dhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: var(--nav-h, 70px);
  border-bottom: 2.5px solid var(--y);
  flex-shrink: 0;
  background: var(--w);
  z-index: 2;
}
.bb-dclose {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--nbd);
  background: var(--g1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--bk);
  cursor: pointer;
  transition: background .18s;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.bb-dclose:hover { background: var(--g2); }

/* Drawer scrollable body */
.bb-dbody {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-bottom: 32px;
}
.bb-dbody::-webkit-scrollbar { width: 3px; }
.bb-dbody::-webkit-scrollbar-thumb { background: var(--y); border-radius: 2px; }

/* Plain drawer link */
.bb-dlink {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 500;
  color: var(--g4);
  border-bottom: 1px solid var(--g2);
  transition: color .18s, background .18s;
  -webkit-tap-highlight-color: transparent;
}
.bb-dlink:hover { color: var(--bk); background: var(--g1); }
.bb-dlink.active { color: var(--y2); font-weight: 600; }

/* Section trigger (accordion button) */
.bb-dsec {
  width: 100%;
  border-bottom: 1px solid var(--g2);
}
.bb-dsec-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-family: var(--ft);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--bk);
  background: var(--w);
  cursor: pointer;
  transition: background .18s;
  -webkit-tap-highlight-color: transparent;
  text-align: left;
}
.bb-dsec-btn:hover { background: var(--g1); }
.bb-dsec-badge {
  background: var(--y);
  color: var(--bk);
  font-size: 9px;
  font-weight: 700;
  font-family: var(--ft);
  padding: 2px 8px;
  border-radius: 40px;
  letter-spacing: .05em;
}
.bb-dsec-chevron {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--g1);
  border: 1px solid var(--nbd);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s, background .18s;
}
.bb-dsec-chevron svg {
  width: 11px;
  height: 11px;
  stroke: var(--g3);
  stroke-width: 2.5;
  fill: none;
}
.bb-dsec.open .bb-dsec-chevron {
  transform: rotate(180deg);
  background: var(--y);
  border-color: var(--y);
}
.bb-dsec.open .bb-dsec-chevron svg { stroke: var(--bk); }

/* Accordion body */
.bb-dsec-body {
  max-height: 0;
  overflow: hidden;
  background: var(--g1);
  transition: max-height .3s ease;
}
.bb-dsec.open .bb-dsec-body {
  max-height: 800px;
}

/* Sub-link inside accordion */
.bb-dsub {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-family: var(--fb);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--g4);
  border-bottom: 1px solid var(--nbd);
  transition: color .18s, background .18s;
  -webkit-tap-highlight-color: transparent;
}
.bb-dsub:last-child { border-bottom: none; }
.bb-dsub:hover { color: var(--bk); background: var(--g2); }
.bb-dsub.active { color: var(--y2); font-weight: 600; }
.bb-dsub-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--y3);
  border: 1px solid var(--y4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: background .18s, border-color .18s;
}
.bb-dsub:hover .bb-dsub-ico,
.bb-dsub.active .bb-dsub-ico { background: var(--y); border-color: var(--y); }
.bb-dsub-txt { display: flex; flex-direction: column; gap: 1px; }
.bb-dsub-name {
  font-family: var(--ft);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--bk);
  line-height: 1.2;
}
.bb-dsub-hint {
  font-family: var(--fb);
  font-size: 10.5px;
  color: var(--g3);
  font-weight: 400;
}

/* Bottom CTA in drawer */
.bb-dcta-wrap { padding: 18px 20px 8px; }
.bb-dcta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: var(--y);
  color: var(--bk);
  font-family: var(--ft);
  font-size: 13.5px;
  font-weight: 700;
  border-radius: var(--nrp);
  letter-spacing: .02em;
  transition: background .2s;
  -webkit-tap-highlight-color: transparent;
}
.bb-dcta:hover { background: var(--y2); }

/* ── Scroll-lock on body ──────────────────────────────────── */
body.bb-locked {
  overflow: hidden !important;
  touch-action: none;
  position: relative; /* Ensure it stays put */
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .bb-nav { --npx: 30px; }
}
@media (max-width: 960px) {
  .bb-nav .nav-links { display: none !important; }
  .bb-nav .nav-ham   { display: flex !important; }
  .bb-nav .nav-cta   { display: none !important; }
}
@media (max-width: 600px) {
  .bb-nav { --npx: 18px; }
  .bb-nav .logo-name { font-size: 18px; }
}

/* ────────────────────────────────────────────
   9. SECTION BACKGROUNDS
──────────────────────────────────────────── */
.s-w {
  background: var(--w);
}
.s-bk {
  background: var(--bk);
}
.s-y {
  background: var(--y);
}
.s-g {
  background: var(--g1);
}
.s-dk {
  background: var(--bk3);
}
.s-grey {
  background: var(--grey-bg);
}
/* White/y split hero (brand pattern) */
/* .split-wy {
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
}
.split-wy .spl {
  background: var(--w);
}
.split-wy .spr {
  background: var(--y);
} */

/* White/Black split */
.split-wb {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.split-wb .spl {
  background: var(--w);
}
.split-wb .spr {
  background: var(--bk);
}

/* Grid overlay */
.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(238, 182, 7, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 182, 7, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
}

/* Platform strip */
.plat-strip {
  background: var(--bk);
  padding: 22px 0;
  border-top: 2px solid var(--y);
}
.plat-strip-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  flex-wrap: wrap;
}
.plat-nm {
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  transition: color 0.2s;
  cursor: default;
}
.plat-nm:hover {
  color: var(--y);
}

/* ────────────────────────────────────────────
   10. HERO LAYOUTS
──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  padding-top: 74px; /* nav height */
}
.hero-left {
  background: var(--w);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--pad) 80px 170px;
  position: relative;
  z-index: 1;
}
.hero-right {
  background: var(--y);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
}
/* Decorative dots grid on hero right */
.hero-dots {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: grid;
  grid-template-columns: repeat(7, 10px);
  gap: 12px;
  opacity: 0.25;
  pointer-events: none;
}
.hero-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bk);
}
/* Large background letter */
.hero-bg-letter {
  position: absolute;
  right: -30px;
  bottom: -40px;
  font-family: var(--ft);
  font-weight: 900;
  font-size: 340px;
  color: rgba(0, 0, 0, 0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 700;
  background: var(--bk);
  color: var(--y);
  border-radius: var(--pill);
  padding: 6px 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fu 0.5s ease both;
}
.kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--y);
  animation: blink 2s ease infinite;
}

.hero h1 {
  font-family: var(--ft);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  animation: fu 0.5s 0.1s ease both;
}
.hero h1 .line-y {
  color: var(--y);
  display: block;
}
.hero h1 .line-b {
  color: var(--bk);
  display: block;
}

.hero-desc {
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 400;
  color: var(--g3);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
  animation: fu 0.5s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fu 0.5s 0.3s ease both;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  animation: fu 0.5s 0.4s ease both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 700;
  color: var(--g4);
  letter-spacing: 0.04em;
}
.trust-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--y3);
  border: 1.5px solid var(--y4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: var(--bk);
  font-family: var(--ft);
}
/* .trust-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
} */

/* Hero right stats card */
.hero-stats-card {
  background: var(--bk);
  border-radius: var(--rl);
  padding: 28px;
  width: 100%;
  max-width: 430px;
  position: relative;
  overflow: hidden;
  animation: fr 0.6s 0.2s ease both;
}
.hero-stats-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--y);
}
.hsc-label {
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 18px;
}
.stats-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.stat-box {
  background: rgba(238, 182, 7, 0.1);
  border: 1px solid rgba(238, 182, 7, 0.2);
  border-radius: var(--r);
  padding: 16px;
  text-align: center;
}
.sb-val {
  font-family: var(--ft);
  font-size: 28px;
  font-weight: 900;
  color: var(--y);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}
.sb-lbl {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.platform-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
}
.chip {
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}
.chip.active {
  background: var(--y);
  border-color: var(--y);
  color: var(--bk);
}
.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cert-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cert-box .ci {
  font-size: 13px;
}
.cert-box .ct {
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}

/* Hero right announcement cards */
.hero-announce {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 380px;
  animation: fr 0.6s 0.35s ease both;
}
.announce-card {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: var(--r);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ac-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.ac-title {
  font-family: var(--ft);
  font-size: 13px;
  font-weight: 700;
  color: var(--bk);
  margin-bottom: 2px;
}
.ac-sub {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
}

/* ══ PLATFORM STRIP ══ */
.strip {
  background: var(--bk);
  padding: 22px 0;
}
.strip-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.strip-name {
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  transition: color 0.2s;
  cursor: default;
}
.strip-name:hover {
  color: var(--y);
}
.hero-offset {
  padding-top: 70px;
} /* accounts for fixed nav */

.dot-grid {
  position: absolute;
  top: 40px;
  right: 40px;
  display: grid;
  grid-template-columns: repeat(8, 9px);
  gap: 12px;
  opacity: 0.2;
  pointer-events: none;
}
.dot-grid span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bk);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 700;
  background: var(--bk);
  color: var(--y);
  border-radius: var(--rp);
  padding: 7px 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--y);
  animation: blink 2s ease infinite;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: fu 0.5s 0.4s ease both;
}
.trust-sep {
  /* width: 1px;
  height: 20px;
  background: var(--bd); */
  flex-shrink: 0;
  width: 1px;
  height: 22px;
  background: var(--grey-brd);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--y3);
  border: 1.5px solid var(--y4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  color: var(--bk);
  font-family: var(--ft);
}
.trust-lbl {
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 700;
  color: var(--g4);
  letter-spacing: 0.04em;
}

.hsc-lbl {
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 18px;
}

/* ────────────────────────────────────────────
   11. CARD COMPONENTS
──────────────────────────────────────────── */
.card {
  background: var(--w);
  border: 2px solid var(--bd);
  border-radius: var(--rl);
  padding: 28px 24px;
  transition: var(--tr);
}
.card:hover {
  border-color: var(--y);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(238, 182, 7, 0.12);
}

.card-dark {
  background: var(--bk3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rl);
  padding: 28px 24px;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.card-dark:hover {
  border-color: var(--y4);
  transform: translateY(-4px);
}
.card-dark.top-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--y);
}

.card-y {
  background: var(--y);
  border-radius: var(--rl);
  padding: 28px 24px;
  transition: var(--tr);
}
.card-y:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.card-accent {
  background: var(--g1);
  border: 1.5px solid var(--bd);
  border-radius: var(--rl);
  padding: 26px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--tr);
}
.card-accent::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--y);
}
.card-accent:hover {
  border-color: var(--y);
  box-shadow: 0 8px 32px rgba(238, 182, 7, 0.1);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.card-icon-sm {
  width: 38px;
  height: 38px;
  font-size: 16px;
  border-radius: 10px;
  margin-bottom: 14px;
}
.card-icon-bk {
  background: var(--bk);
}

.card-bg-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--ft);
  font-size: 50px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

/* Testimonial */
.testi-card {
  background: var(--w);
  border: 2px solid var(--bd);
  border-radius: var(--rl);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--tr);
}
.testi-card:hover {
  border-color: var(--y);
  box-shadow: 0 12px 40px rgba(238, 182, 7, 0.12);
  transform: translateY(-4px);
}
.testi-card::before {
  content: "\201C";
  font-family: var(--ft);
  font-size: 72px;
  font-weight: 900;
  color: var(--y);
  opacity: 0.22;
  position: absolute;
  top: 8px;
  right: 18px;
  line-height: 1;
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.testi-star {
  color: var(--y);
  font-size: 14px;
}
.testi-body {
  font-family: var(--fb);
  font-size: 14px;
  color: var(--g3);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px;
}
.testi-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ft);
  font-size: 13px;
  font-weight: 800;
  color: var(--bk);
  flex-shrink: 0;
}
.testi-name {
  font-family: var(--ft);
  font-size: 14px;
  font-weight: 700;
  color: var(--bk);
}
.testi-role {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--g3);
}
.testi-badge {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--rp);
  background: var(--y3);
  color: var(--bk);
  border: 1.5px solid var(--y4);
}

/* ────────────────────────────────────────────
   12. FORM ELEMENTS
──────────────────────────────────────────── */
.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-label {
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--g5);
  display: flex;
  align-items: center;
  gap: 5px;
}
.field-req {
  color: var(--y2);
  font-size: 13px;
}
.field-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--bd);
  border-radius: var(--r);
  font-family: var(--fb);
  font-size: 14px;
  color: var(--bk);
  background: var(--w);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
}
.field-input:focus {
  border-color: var(--y);
  box-shadow: 0 0 0 3px rgba(238, 182, 7, 0.15);
}
.field-input::placeholder {
  color: var(--g3);
}
.field-input.err {
  border-color: #e04040;
}
select.field-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
  cursor: pointer;
}
textarea.field-input {
  resize: vertical;
  min-height: 100px;
}
.field-helper {
  font-family: var(--fb);
  font-size: 11px;
  color: var(--g3);
  margin-top: 4px;
}
.field-err {
  font-family: var(--fb);
  font-size: 11px;
  color: #e04040;
  margin-top: 4px;
  display: none;
}
.field-group.has-err .field-err {
  display: block;
}
.field-group.has-err .field-input {
  border-color: #e04040;
}

/* Radio card */
.radio-card {
  position: relative;
}
.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-card label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid var(--bd);
  border-radius: var(--r);
  cursor: pointer;
  transition: var(--tr);
  font-family: var(--fb);
  font-size: 13px;
  color: var(--g4);
  background: var(--w);
}
.radio-card label:hover {
  border-color: var(--y4);
  background: var(--y3);
}
.radio-card input:checked + label {
  border-color: var(--y);
  background: var(--y3);
  color: var(--bk);
  font-weight: 600;
}
.radio-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--bd);
  flex-shrink: 0;
  transition: var(--tr);
  display: flex;
  align-items: center;
  justify-content: center;
}
.radio-card input:checked + label .radio-dot {
  border-color: var(--y);
  background: var(--y);
}
.radio-card input:checked + label .radio-dot::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bk);
}

/* Checkbox card */
.check-card {
  position: relative;
}
.check-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.check-card label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid var(--bd);
  border-radius: var(--r);
  cursor: pointer;
  transition: var(--tr);
  font-family: var(--fb);
  font-size: 13px;
  color: var(--g4);
  background: var(--w);
}
.check-card label:hover {
  border-color: var(--y4);
  background: var(--y3);
}
.check-card input:checked + label {
  border-color: var(--y);
  background: var(--y);
  color: var(--bk);
  font-weight: 600;
}
.check-box {
  width: 17px;
  height: 17px;
  border-radius: 4px;
  border: 2px solid var(--bd);
  flex-shrink: 0;
  transition: var(--tr);
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-card input:checked + label .check-box {
  border-color: var(--bk);
  background: var(--bk);
}
.check-card input:checked + label .check-box::after {
  content: "✓";
  color: var(--y);
  font-size: 10px;
  font-weight: 900;
}

/* ────────────────────────────────────────────
   13. LIST COMPONENTS
──────────────────────────────────────────── */
.blist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--fb);
  font-size: 15px;
  color: var(--g4);
}
.blist-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: var(--bk);
  flex-shrink: 0;
  margin-top: 1px;
}

.cklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--fb);
  font-size: 15px;
  color: var(--g4);
}
.ck {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  color: var(--bk);
  flex-shrink: 0;
  margin-top: 2px;
}

.dotlist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dotlist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fb);
  font-size: 14px;
  color: var(--g4);
}
.dotlist li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--y);
  flex-shrink: 0;
}

/* On-dark variants */
.dotlist.dark li {
  color: rgba(255, 255, 255, 0.65);
}
.cklist.dark li {
  color: rgba(255, 255, 255, 0.65);
}

/* ────────────────────────────────────────────
   14. STATS COMPONENTS
──────────────────────────────────────────── */
.stat-big {
  background: var(--bk);
  border-radius: var(--rl);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}
.stat-big::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--y);
}
.sb-val {
  font-family: var(--ft);
  font-size: 52px;
  font-weight: 900;
  color: var(--y);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.sb-lbl {
  font-family: var(--fb);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.stat-mini {
  background: var(--g1);
  border: 1.5px solid var(--bd);
  border-radius: var(--r);
  padding: 18px 20px;
}
.sm-val {
  font-family: var(--ft);
  font-size: 30px;
  font-weight: 900;
  color: var(--bk);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.sm-val span {
  color: var(--y);
}
.sm-lbl {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 600;
  color: var(--g3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.stat-box {
  background: rgba(238, 182, 7, 0.1);
  border: 1px solid rgba(238, 182, 7, 0.2);
  border-radius: var(--r);
  padding: 16px;
  text-align: center;
}
.sbx-val {
  font-family: var(--ft);
  font-size: 26px;
  font-weight: 900;
  color: var(--y);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}
.sbx-lbl {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ────────────────────────────────────────────
   15. GRID LAYOUTS
──────────────────────────────────────────── */
.g2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.g5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.g6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.g-sidebar {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 52px;
  align-items: start;
}
.g-halves {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ────────────────────────────────────────────
   16. CHIPS · INDUSTRY CARDS · PLATFORM CARDS
──────────────────────────────────────────── */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.chip {
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--rp);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}
.chip.active,
.chip.y {
  background: var(--y);
  border-color: var(--y);
  color: var(--bk);
}
.chip.light {
  background: var(--g1);
  border-color: var(--bd);
  color: var(--g4);
}

.proc-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--w);
  border: 2.5px solid var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--ft);
  font-size: 20px;
  font-weight: 900;
  color: var(--bk);
  transition: var(--tr);
  cursor: pointer;
}
.proc-circle:hover {
  background: var(--y);
  box-shadow: 0 6px 24px rgba(238, 182, 7, 0.45);
}

.ind-card {
  background: var(--w);
  border: 2px solid var(--bd);
  border-radius: var(--r);
  padding: 22px 16px;
  text-align: center;
  transition: var(--tr);
  cursor: pointer;
}
.ind-card:hover {
  border-color: var(--y);
  background: var(--y);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(238, 182, 7, 0.3);
}
.ind-icon {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}
.ind-name {
  font-family: var(--ft);
  font-size: 13px;
  font-weight: 700;
  color: var(--bk);
  line-height: 1.3;
}

.plat-card {
  background: var(--w);
  border: 2px solid var(--bd);
  border-radius: var(--r);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--tr);
}
.plat-card:hover {
  border-color: var(--y);
  background: var(--y3);
  transform: translateX(4px);
}
.plat-em {
  font-size: 26px;
  flex-shrink: 0;
}
.plat-name {
  font-family: var(--ft);
  font-size: 14px;
  font-weight: 700;
  color: var(--bk);
  margin-bottom: 2px;
}
.plat-hint {
  font-family: var(--fb);
  font-size: 11px;
  color: var(--g3);
}

/* ────────────────────────────────────────────
   17. FAQ ACCORDION
──────────────────────────────────────────── */
.faq-item {
  border: 1.5px solid var(--bd);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: var(--y4);
}
.faq-q {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq-qt {
  font-family: var(--ft);
  font-size: 15px;
  font-weight: 700;
  color: var(--bk);
  line-height: 1.4;
}
.faq-tog {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--g1);
  border: 1.5px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--bk);
  transition: var(--tr);
  flex-shrink: 0;
  font-weight: 700;
}
.faq-item.open .faq-tog {
  background: var(--y);
  border-color: var(--y);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a {
  max-height: 280px;
}
.faq-ans {
  padding: 0 24px 20px;
  font-family: var(--fb);
  font-size: 14px;
  color: var(--g3);
  line-height: 1.8;
  border-top: 1px solid var(--bd);
  padding-top: 16px;
}

/* Dark FAQ variant */
.faq-dark .faq-item {
  border-color: rgba(255, 255, 255, 0.08);
}
.faq-dark .faq-item.open {
  border-color: var(--y4);
}
.faq-dark .faq-qt {
  color: var(--w);
}
.faq-dark .faq-tog {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--y);
}
.faq-dark .faq-ans {
  color: rgba(255, 255, 255, 0.52);
  border-top-color: rgba(255, 255, 255, 0.07);
}

/* ────────────────────────────────────────────
   18. QUOTE BLOCK
──────────────────────────────────────────── */
.quote-mark {
  font-family: var(--ft);
  font-size: 80px;
  font-weight: 900;
  color: var(--y);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: -18px;
  display: block;
}
.quote-text {
  font-family: var(--ft);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  color: var(--w);
  line-height: 1.6;
  margin-bottom: 18px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.quote-attr {
  font-family: var(--ft);
  font-size: 13px;
  font-weight: 700;
  color: var(--y);
}
.quote-attr span {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

/* ────────────────────────────────────────────
   19. CTA SECTION
──────────────────────────────────────────── */
.cta-wrap {
  text-align: center;
  padding: 96px 0;
  overflow: hidden;
  position: relative;
}
.cta-wrap.s-y::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--bk);
}
.cta-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(238, 182, 7, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* ────────────────────────────────────────────
   20. ANIMATIONS & KEYFRAMES
──────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(238, 182, 7, 0.45);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(238, 182, 7, 0);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes drawLine {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ────────────────────────────────────────────
   21. SCROLL REVEAL
──────────────────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.rv.in {
  opacity: 1;
  transform: translateY(0);
}
.rv-l {
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.rv-l.in {
  opacity: 1;
  transform: translateX(0);
}
.rv-r {
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.rv-r.in {
  opacity: 1;
  transform: translateX(0);
}

/* ────────────────────────────────────────────
   22. FOOTER
──────────────────────────────────────────── */
.bb-footer {
  background: var(--bk2);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 44px 0 24px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-nav {
  display: flex;
  gap: 22px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--fb);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--y);
}
.footer-addr {
  font-family: var(--fb);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bot {
  text-align: center;
  font-family: var(--fb);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
}

/* ────────────────────────────────────────────
   23. RESPONSIVE BREAKPOINTS
──────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root {
    --px: 32px;
  }
  .split-wy,
  .split-wb {
    grid-template-columns: 1fr;
  }
  /* .hero-l {
    padding: 80px var(--px);
  }
  .hero-r {
    padding: 60px var(--px);
  } */
  .g-halves {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .g5 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g4 {
    grid-template-columns: 1fr 1fr;
  }
  .g-sidebar {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  :root {
    --px: 28px;
  }
  .g3 {
    grid-template-columns: 1fr 1fr;
  }
  .g5 {
    grid-template-columns: repeat(3, 1fr);
  }
 
}
@media (max-width: 640px) {
  :root {
    --px: 22px;
  }
  section {
    padding: 72px 0;
  }
  .g2,
  .g3,
  .g4 {
    grid-template-columns: 1fr;
  }
  .g5 {
    grid-template-columns: 1fr 1fr;
  }
  .stat-2x2 {
    grid-template-columns: 1fr 1fr;
  }
  /* .hero-l {
    padding: 60px var(--px);
  } */
}
@media (max-width: 480px) {
  .g5,
  .g6 {
    grid-template-columns: 1fr;
  }
  .btn {
    font-size: 13px;
    padding: 12px 22px;
  }
}

/* ── Page-specific overrides only Home page── */
/* ══════════════════════════════════════════════
   SECTION 2 — ABOUT / WHO WE ARE
   Brand pattern: White bg, stats black card on right
══════════════════════════════════════════════ */
.sec-body.on-black {
    color: rgba(255, 255, 255, .65);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-copy-p {
  font-family: var(--fb);
  font-size: 16px;
  color: var(--g3);
  line-height: 1.8;
  margin-bottom: 20px;
}
.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bl-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--fb);
  font-size: 15px;
  color: var(--g4);
}
.bl-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: var(--bk);
  flex-shrink: 0;
  margin-top: 1px;
}
.bl-text b {
  font-weight: 600;
  color: var(--bk);
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stat-hero-card {
  background: var(--bk);
  border-radius: var(--rl);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}
.stat-hero-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--y);
}
.shc-val {
  font-family: var(--ft);
  font-size: 54px;
  font-weight: 900;
  color: var(--y);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.shc-lbl {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}
.stat-mini-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat-mini {
  background: var(--g1);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
}
.sm-val {
  font-family: var(--ft);
  font-size: 32px;
  font-weight: 900;
  color: var(--bk);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.sm-val span {
  color: var(--y);
}
.sm-lbl {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 600;
  color: var(--g3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.founder-plate {
  background: var(--y);
  border-radius: var(--r);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.fp-av {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ft);
  font-size: 15px;
  font-weight: 900;
  color: var(--y);
  flex-shrink: 0;
}
.fp-name {
  font-family: var(--ft);
  font-size: 16px;
  font-weight: 800;
  color: var(--bk);
  letter-spacing: -0.01em;
}
.fp-role {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 2px;
}

/* ══════════════════════════════════════════════
   SECTION 3 — SERVICES
   Brand pattern: Black bg, y accent
══════════════════════════════════════════════ */
.services-section {
  background: var(--bk);
}

.svc-tabs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.svc-tab {
  font-family: var(--ft);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.svc-tab:hover {
  border-color: var(--y4);
  color: rgba(255, 255, 255, 0.8);
}
.svc-tab.active {
  background: var(--y);
  border-color: var(--y);
  color: var(--bk);
}

.svc-panel {
  display: none;
}
.svc-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  animation: fu 0.3s ease both;
}
.sp-h3 {
  font-family: var(--ft);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: var(--w);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.sp-h3 span {
  color: var(--y);
}
.sp-body {
  font-family: var(--fb);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 26px;
}
.sp-list-title {
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 14px;
}
.sp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fb);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.sp-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--y);
  flex-shrink: 0;
}
.sp-visual {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rl);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.sp-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--y);
}
.spv-em {
  font-size: 48px;
  display: block;
  margin-bottom: 18px;
}
.spv-title {
  font-family: var(--ft);
  font-size: 16px;
  font-weight: 700;
  color: var(--w);
  margin-bottom: 14px;
}
.spv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.spv-tag {
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
}
.spv-tag.y {
  background: var(--y);
  border-color: var(--y);
  color: var(--bk);
}
.spv-note {
  margin-top: 20px;
  background: var(--y);
  border-radius: var(--r);
  padding: 14px 16px;
}
.spvn-title {
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bk);
  margin-bottom: 5px;
}
.spvn-body {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 500;
  color: var(--bk);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   SECTION 4 — WHY CHOOSE US
   Brand pattern: y bg, black cards
══════════════════════════════════════════════ */
/* ── WHY CARDS ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  border: 2px solid var(--grey-brd);
  border-radius: var(--rl);
  padding: 30px 26px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.why-card:hover {
  border-color: var(--y);
  box-shadow: 0 12px 40px rgba(238, 182, 7, 0.15);
  transform: translateY(-4px);
}
.wc-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--mt);
  font-size: 44px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
}
.why-card:hover .wc-num {
  color: rgba(238, 182, 7, 0.12);
}
.wc-icon {
  width: 50px;
  height: 50px;
  background: var(--y);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.wc-title {
  font-family: var(--ft);
  font-size: 16px;
  font-weight: 700;
  color: var(--bk);
  margin-bottom: 10px;
  line-height: 1.3;
}
.wc-desc {
  font-family: var(--fp);
  font-size: 14px;
  color: var(--grey-m);
  line-height: 1.7;
}
.why-intro-copy {
  font-family: var(--fb);
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 52px;
}
/* .why-section {
  background: var(--y);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--w);
  border-radius: var(--rl);
  padding: 28px 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.wc-bg-num {
 position: absolute;
    top: 18px;
    right: 20px;
    font-family: var(--ft);
    font-size: 44px;
    font-weight: 900;
    color: rgba(0, 0, 0, .05);
    line-height: 1;
}
.why-card:hover .wc-bg-num {
  color: rgba(238, 182, 7, 0.08);
}
.wc-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.wc-title {
  font-family: var(--ft);
  font-size: 16px;
  font-weight: 700;
  color: var(--bk);
  margin-bottom: 10px;
  line-height: 1.3;
}
.wc-desc {
  font-family: var(--fb);
  font-size: 13px;
  color:#555555;
  line-height: 1.75;
} */

/* ══════════════════════════════════════════════
   SECTION 5 — INDUSTRIES
   Brand pattern: White bg, y hover cards
══════════════════════════════════════════════ */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.ind-card {
  background: var(--w);
  border: 2px solid var(--border);
  border-radius: var(--r);
  padding: 22px 16px;
  text-align: center;
  transition: all 0.25s;
  cursor: pointer;
}
.ind-card:hover {
  border-color: var(--y);
  background: var(--y);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(238, 182, 7, 0.3);
}
.ind-icon {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}
.ind-name {
  font-family: var(--ft);
  font-size: 13px;
  font-weight: 700;
  color: var(--bk);
  line-height: 1.3;
}

/* ══════════════════════════════════════════════
   SECTION 6 — PROCESS
   Brand pattern: Grey bg, y numbered circles
══════════════════════════════════════════════ */
.process-section {
  background: var(--g1);
}
.proc-container {
  position: relative;
  margin-top: 64px;
}
.proc-line {
  position: absolute;
  top: 36px;
  left: calc(8.33% + 24px);
  right: calc(8.33% + 24px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--y) 0,
    var(--y) 14px,
    transparent 14px,
    transparent 24px
  );
  z-index: 0;
}
.proc-row-services{
    grid-template-columns: repeat(5, 1fr) !important;
}
.proc-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.proc-step {
  text-align: center;
  padding: 0 12px;
}
.proc-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--w);
  border: 2.5px solid var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--ft);
  font-size: 20px;
  font-weight: 900;
  color: var(--bk);
  transition: all 0.3s;
  cursor: pointer;
}
.proc-step:hover .proc-num {
  background: var(--y);
  box-shadow: 0 6px 24px rgba(238, 182, 7, 0.45);
}
.proc-title {
  font-family: var(--ft);
  font-size: 13px;
  font-weight: 700;
  color: var(--bk);
  margin-bottom: 8px;
  line-height: 1.3;
}
.proc-desc {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--g3);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   SECTION 7 — WHY PM MATTERS
   Brand pattern: White left / Black right split
══════════════════════════════════════════════ */
.wpm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.wpm-left {
  /* background: var(--w); */
  padding: 96px var(--pad) 96px calc((100vw - var(--fw)) / 2 + var(--pad));
}
.wpm-right {
  background: var(--bk);
  padding: 96px calc((100vw - var(--fw)) / 2 + var(--pad)) 96px var(--pad);
  position: relative;
  overflow: hidden;
}
.wpm-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--y);
}
.wpm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.wpm-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--fb);
  font-size: 15px;
  color: var(--g4);
}
.wpm-ck {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  color: var(--bk);
  flex-shrink: 0;
  margin-top: 2px;
}
.wpm-quote-mark {
  font-family: var(--ft);
  font-size: 80px;
  font-weight: 900;
  color: var(--y);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: -16px;
  display: block;
}
.wpm-quote {
  font-family: var(--ft);
  font-size: 19px;
  font-weight: 600;
  color: var(--w);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.wpm-attr {
  font-family: var(--ft);
  font-size: 13px;
  font-weight: 700;
  color: var(--y);
}
.wpm-attr span {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}
.wpm-stats-row {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wpm-stat-v {
  font-family: var(--ft);
  font-size: 34px;
  font-weight: 900;
  color: var(--y);
  line-height: 1;
}
.wpm-stat-l {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
}

/* ══════════════════════════════════════════════
   SECTION 8 — TESTIMONIALS
   Brand pattern: y bg, white cards
══════════════════════════════════════════════ */
.testi-section {
  background: var(--y);
}
.testi-intro {
  font-family: var(--fb);
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  max-width: 600px;
  line-height: 1.8;
  margin: 0 auto 52px;
  text-align: center;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--w);
  border-radius: var(--rl);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.testi-card::before {
  content: "\201C";
  font-family: var(--ft);
  font-size: 72px;
  font-weight: 900;
  color: var(--y);
  opacity: 0.25;
  position: absolute;
  top: 8px;
  right: 18px;
  line-height: 1;
}
.tc-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.tc-star {
  color: var(--y);
  font-size: 14px;
}
.tc-text {
  font-family: var(--fb);
  font-size: 14px;
  color: var(--g3);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tc-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ft);
  font-size: 13px;
  font-weight: 800;
  color: var(--bk);
  flex-shrink: 0;
}
.tc-name {
  font-family: var(--ft);
  font-size: 14px;
  font-weight: 700;
  color: var(--bk);
}
.tc-role {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--g3);
}
.tc-badge {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--pill);
  background: var(--y3);
  color: var(--bk);
  border: 1.5px solid var(--y4);
}

/* ══════════════════════════════════════════════
   SECTION 9 — PLATFORMS
   Brand pattern: White bg, clean grid
══════════════════════════════════════════════ */
.plat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.plat-grid-t{
 grid-template-columns: repeat(5, 1fr) !important;
}
.plat-card {
  background: var(--w);
  border: 2px solid var(--border);
  border-radius: var(--r);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.25s;
}
.plat-card:hover {
  border-color: var(--y);
  background: var(--y3);
  transform: translateX(4px);
}
.pc-em {
  font-size: 26px;
  flex-shrink: 0;
}
.pc-name {
  font-family: var(--ft);
  font-size: 14px;
  font-weight: 700;
  color: var(--bk);
  margin-bottom: 2px;
}
.pc-sub {
  font-family: var(--fb);
  font-size: 11px;
  color: var(--g3);
}

/* ══════════════════════════════════════════════
   SECTION 10 — FAQ
   Brand pattern: Black bg, y accents
══════════════════════════════════════════════ */
.faq-section {
  background: var(--bk);
}
.faq-wrap {
  max-width: 820px;
  margin: 52px auto 0;
}
.faq-item {
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: var(--y4);
}
.faq-q {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq-qt {
  font-family: var(--ft);
  font-size: 15px;
  font-weight: 700;
  color: var(--w);
  line-height: 1.4;
}
.faq-tog {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--y);
  transition: all 0.3s;
  flex-shrink: 0;
  font-weight: 700;
}
.faq-item.open .faq-tog {
  background: var(--y);
  color: var(--bk);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a {
  max-height: 240px;
}
.faq-ans {
  padding: 0 24px 20px;
  font-family: var(--fb);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 16px;
}

/* ══════════════════════════════════════════════
   SECTION 11 — CTA
   Brand pattern: y bg full width, bold black
══════════════════════════════════════════════ */
.cta-section {
  background: var(--y);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--bk);
}
.cta-bg-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ft);
  font-weight: 900;
  font-size: 260px;
  color: rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.cta-h2 {
  font-family: var(--ft);
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 900;
  color: var(--bk);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.cta-sub {
  font-family: var(--fb);
  font-size: 17px;
  color: rgba(0, 0, 0, 0.6);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.cta-small {
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  :root {
    --pad: 32px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 80px var(--pad);
  }
  .hero-right {
    padding: 60px var(--pad);
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .about-grid,
  .wpm-split {
    grid-template-columns: 1fr;
  }
  .wpm-left,
  .wpm-right {
    padding: 72px var(--pad);
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ind-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .plat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .proc-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .proc-line {
    display: none;
  }
  .svc-panel.active {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  :root {
    --pad: 22px;
  }
  section {
    padding: 72px 0;
  }
 
  
  .why-grid,
  .ind-grid,
  .plat-grid,
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-mini-row,
  .proc-row {
    grid-template-columns: 1fr 1fr;
  }
  .stats-2x2 {
    grid-template-columns: 1fr 1fr;
  }
  .hero-right {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 38px;
  }
  .why-grid,
  .ind-grid,
  .plat-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .proc-row {
    grid-template-columns: 1fr !important;
  }
  .cta-bg-text {
    display: none;
  }
}

.hero-home {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 70px;
}

.svc-panel {
  display: none;
}
.svc-panel.on {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  animation: fadeUp 0.3s ease both;
}
.stab {
  font-family: var(--ft);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--rp);
  background: var(--g1);
  border: 1.5px solid var(--bd);
  color: var(--g3);
  cursor: pointer;
  transition: var(--tr);
  letter-spacing: 0.02em;
}
.sb-l {
  color: #fff;
}
.stab:hover {
  border-color: var(--y4);
  color: var(--bk);
}
.stab.on {
  background: var(--y);
  border-color: var(--y);
  color: var(--bk);
}
.sp-vis {
  background: var(--bk);
  border-radius: var(--rl);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.sp-vis::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--y);
}
.sp-em {
  font-size: 46px;
  display: block;
  margin-bottom: 16px;
}
.sp-title {
  font-family: var(--ft);
  font-size: 16px;
  font-weight: 700;
  color: var(--w);
  margin-bottom: 14px;
}
.sp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sp-tag {
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--rp);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
}
.sp-tag.y {
  background: var(--y);
  border-color: var(--y);
  color: var(--bk);
}
.sp-note {
  margin-top: 18px;
  background: var(--y);
  border-radius: var(--r);
  padding: 14px 16px;
}
.sp-note-t {
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bk);
  margin-bottom: 4px;
}
.sp-note-b {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 500;
  color: var(--bk);
  line-height: 1.6;
}
.split-mvp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.mvp-l {
  background: var(--w);
  padding: 96px 52px 96px calc((100vw - 1180px) / 2 + 52px);
}
.mvp-r {
  background: var(--bk);
  padding: 96px calc((100vw - 1180px) / 2 + 52px) 96px 52px;
  position: relative;
  overflow: hidden;
}
.mvp-r::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--y);
}
.mv-card {
  background: var(--g1);
  border: 1.5px solid var(--bd);
  border-radius: var(--rl);
  padding: 26px 28px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  transition: var(--tr);
}
.mv-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--y);
  border-radius: 4px 0 0 4px;
}
.mv-card:hover {
  border-color: var(--y);
  box-shadow: 0 8px 28px rgba(238, 182, 7, 0.1);
}
.mvc-tag {
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--y2);
  margin-bottom: 8px;
}
.mvc-h {
  font-family: var(--ft);
  font-size: 18px;
  font-weight: 800;
  color: var(--bk);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.mvc-p {
  font-family: var(--fb);
  font-size: 14px;
  color: var(--g3);
  line-height: 1.8;
}
.wpm-stats-row {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wst-v {
  font-family: var(--ft);
  font-size: 32px;
  font-weight: 900;
  color: var(--y);
  line-height: 1;
}
.wst-l {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
}
.proc-track {
  position: relative;
}
.proc-conn {
  position: absolute;
  top: 36px;
  left: calc(8.33% + 24px);
  right: calc(8.33% + 24px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--y) 0,
    var(--y) 14px,
    transparent 14px,
    transparent 24px
  );
  z-index: 0;
}
.ps {
  text-align: center;
  padding: 0 10px;
}
.ps-t {
  font-family: var(--ft);
  font-size: 13px;
  font-weight: 700;
  color: var(--bk);
  margin-bottom: 8px;
  line-height: 1.3;
}
.ps-d {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--g3);
  line-height: 1.7;
}
@media (max-width: 1100px) {
  .hero-home {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .svc-panel.on {
    grid-template-columns: 1fr;
  }
  .split-mvp {
    grid-template-columns: 1fr;
  }
  .mvp-l,
  .mvp-r {
    padding: 72px 32px;
  }
  .proc-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .proc-conn {
    display: none;
  }
}
@media (max-width: 768px) {
  .proc-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .proc-row {
    grid-template-columns: 1fr;
  }
}
/* ── Page-specific: Thank You page runs on black bg ── */
/* body {
  background: var(--bk);
  color: var(--w);
} */
.ty-hero {
  background: var(--bk);
  color: var(--w);
}
/* Nav override for dark bg */
/* .bb-nav { background: rgba(0,0,0,.92) !important; border-bottom: 1px solid rgba(255,255,255,.07) !important; }
.bb-nav .logo-name { color: var(--w) !important; }
.bb-nav .logo-adv  { color: rgba(255,255,255,.45) !important; }
.bb-nav .nav-links a { color: rgba(255,255,255,.55) !important; }
.bb-nav .nav-links a:hover { color: var(--y) !important; }
.bb-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.4) !important; }
.nav-ham span { background: var(--w) !important; }
.nav-drawer { background: var(--bk2) !important; border-bottom: 1px solid rgba(255,255,255,.07) !important; }
.nav-drawer a { color: rgba(255,255,255,.55) !important; border-bottom-color: rgba(255,255,255,.07) !important; } */

/* Confetti canvas */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s;
}
#confetti-canvas.show {
  opacity: 1;
}

/* HERO */
.ty-hero {
  min-height: 100vh;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}
/* Grid bg */
.ty-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(238, 182, 7, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 182, 7, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 30%,
    transparent 100%
  );
}
/* y glow */
.ty-glow {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(238, 182, 7, 0.09) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}
.ty-inner {
  position: relative;
  z-index: 2;
  padding: 80px var(--px) 60px;
  max-width: 860px;
  width: 100%;
}

/* Success icon ring */
.ty-icon-ring {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 36px;
  animation: scaleIn 0.6s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.ty-icon-ring::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(238, 182, 7, 0.2);
  animation: pulse 2.5s ease 1s infinite;
}
.ty-icon-ring::after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(238, 182, 7, 0.07);
}
.ty-icon-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.ty-tick {
  font-size: 44px;
  font-weight: 900;
  color: var(--bk);
  animation: rotateTick 0.5s 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes rotateTick {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  60% {
    transform: scale(1.2) rotate(8deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(238, 182, 7, 0.4);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(238, 182, 7, 0);
  }
}

/* THANK YOU big text */
.ty-big {
  font-family: var(--ft);
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  animation: fadeUp 0.6s 0.5s ease both;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ty-big .ty-y {
  background: linear-gradient(135deg, #eeb607 0%, #ffd060 50%, #eeb607 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    fadeUp 0.6s 0.5s ease both,
    shimmer 3s linear 1.5s infinite;
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.ty-headline {
  font-family: var(--ft);
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--y);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  animation: fadeUp 0.6s 0.65s ease both;
}
.ty-tagline {
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.7s ease both;
}
.ty-body {
  font-family: var(--fb);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 40px;
  animation: fadeUp 0.6s 0.75s ease both;
}
/* 4hr badge */
.ty-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--y);
  color: var(--bk);
  border-radius: var(--rp);
  padding: 10px 24px;
  font-family: var(--ft);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 56px;
  animation: fadeUp 0.6s 0.8s ease both;
  box-shadow: 0 6px 28px rgba(238, 182, 7, 0.4);
}
.ty-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bk);
  animation: blink 1.5s ease infinite;
}

/* y divider */
.ty-divider {
  width: 80px;
  height: 3px;
  background: var(--y);
  border-radius: 2px;
  margin: 0 auto 52px;
  animation: drawLine 0.8s 0.9s ease both;
}
@keyframes drawLine {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

/* STEPS — what happens next */
.steps-section {
  padding: 0 var(--px) 80px;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.steps-lbl {
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--y);
  text-align: center;
  margin-bottom: 14px;
}
.steps-title {
  font-family: var(--ft);
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 800;
  color: var(--w);
  text-align: center;
  margin-bottom: 44px;
  letter-spacing: -0.02em;
}
.steps-title span {
  color: var(--y);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1.5px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(238, 182, 7, 0.3),
    rgba(238, 182, 7, 0.3),
    transparent
  );
  z-index: 0;
}
.step-c {
  background: var(--bk3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rl);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--tr);
}
.step-c:hover {
  border-color: var(--y4);
  background: rgba(238, 182, 7, 0.04);
  transform: translateY(-4px);
}
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bk);
  border: 2px solid var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--ft);
  font-size: 22px;
  font-weight: 900;
  color: var(--y);
  transition: var(--tr);
}
.step-c:hover .step-num {
  background: var(--y);
  color: var(--bk);
  box-shadow: 0 0 28px rgba(238, 182, 7, 0.4);
}
.step-time {
  display: inline-block;
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--y);
  background: rgba(238, 182, 7, 0.1);
  border: 1px solid var(--y4);
  border-radius: var(--rp);
  padding: 3px 12px;
  margin-bottom: 12px;
}
.step-title {
  font-family: var(--ft);
  font-size: 15px;
  font-weight: 700;
  color: var(--w);
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-desc {
  font-family: var(--fb);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* URGENT CONTACT — y section */
.urgent-sec {
  background: var(--y);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.urgent-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ft);
  font-weight: 900;
  font-size: 200px;
  color: rgba(0, 0, 0, 0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}
.urgent-pill-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 18px;
}
.urgent-line {
  width: 44px;
  height: 1.5px;
  background: var(--bk);
  flex-shrink: 0;
}
.urgent-pill {
  display: inline-block;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  color: var(--y);
  background: var(--bk);
  border-radius: var(--rp);
  padding: 7px 24px;
}
.urgent-title {
  font-family: var(--ft);
  font-size: clamp(26px, 4vw, 50px);
  font-weight: 900;
  color: var(--bk);
  text-align: center;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.urgent-sub {
  font-family: var(--fb);
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 52px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
/* 3 Contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cc {
  background: var(--bk);
  border-radius: var(--rl);
  padding: 34px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--tr);
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.cc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--y);
}
.cc:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.3);
}
.cc-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  animation: floatY 3s ease infinite;
}
.cc:nth-child(2) .cc-icon {
  animation-delay: 0.5s;
}
.cc:nth-child(3) .cc-icon {
  animation-delay: 1s;
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.cc-lbl {
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 10px;
}
.cc-main {
  font-family: var(--ft);
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 800;
  color: var(--w);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.cc-main a {
  color: var(--w);
  transition: color 0.2s;
}
.cc-main a:hover {
  color: var(--y);
}
.cc-sub {
  font-family: var(--fb);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
  margin-bottom: 18px;
}
.cc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ft);
  font-size: 14px;
  font-weight: 700;
  background: var(--y);
  color: var(--bk);
  padding: 9px 18px;
  border-radius: var(--rp);
  transition: var(--tr);
  letter-spacing: 0.02em;
}
.cc-btn:hover {
  background: #ffd060;
  box-shadow: 0 6px 20px rgba(238, 182, 7, 0.4);
  transform: translateY(-1px);
}
.cc-btn.wa {
  background: #25d366;
  color: var(--w);
}
.cc-btn.wa:hover {
  background: #1ebe5d;
}
/* Map placeholder */
.map-card {
  background: var(--g1);
  border-radius: var(--rl);
  overflow: hidden;
  border: 1.5px solid var(--bd);
}
.map-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--g2) 0%, var(--g1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.mp-icon {
  font-size: 32px;
}
.mp-t {
  font-family: var(--ft);
  font-size: 13px;
  font-weight: 700;
  color: var(--g4);
}
.mp-s {
  font-family: var(--fb);
  font-size: 11px;
  color: var(--g3);
  text-align: center;
  padding: 0 20px;
}
.map-footer {
  padding: 14px 18px;
  background: var(--w);
}
.mf-addr {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--g4);
  line-height: 1.7;
}
.mf-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 700;
  color: var(--y2);
  margin-top: 6px;
  text-decoration: none;
}
.mf-link:hover {
  text-decoration: underline;
}
/* Contact info cards on y side */
.cinfo-card {
  background: var(--bk);
  border-radius: var(--rl);
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
  animation: fu 0.6s 0.2s ease both;
}
.cinfo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--y);
}
.ci-label {
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 14px;
}
.ci-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ci-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.ci-ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.ci-text {
  flex: 1;
}
.ci-t {
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.ci-v {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  color: var(--w);
  line-height: 1.4;
}
.ci-v a {
  color: var(--y);
  text-decoration: none;
  transition: opacity 0.2s;
}
.ci-v a:hover {
  opacity: 0.8;
}
/* EXPLORE section */
.explore-sec {
  background: var(--bk2);
  padding: 72px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.explore-title {
  font-family: var(--ft);
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 800;
  color: var(--w);
  text-align: center;
  margin-bottom: 44px;
  letter-spacing: -0.02em;
}
.explore-title span {
  color: var(--y);
}
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 40px;
}
.ex-card {
  background: var(--bk3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  padding: 22px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--tr);
}
.ex-card:hover {
  border-color: var(--y4);
  background: rgba(238, 182, 7, 0.04);
  transform: translateX(4px);
}
.ex-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ex-title {
  font-family: var(--ft);
  font-size: 14px;
  font-weight: 700;
  color: var(--w);
  margin-bottom: 4px;
}
.ex-desc {
  font-family: var(--fb);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}
.ex-arr {
  font-size: 14px;
  color: var(--y);
  margin-top: 8px;
  display: block;
}

/* Referral strip */
.ref-strip {
  background: var(--bk3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 0;
}
.ref-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.ref-txt {
  font-family: var(--fb);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  line-height: 1.7;
}
.ref-txt strong {
  color: var(--w);
  font-weight: 600;
}
.share-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ft);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: var(--rp);
  transition: var(--tr);
  letter-spacing: 0.02em;
}
.share-wa {
  background: #25d366;
  color: var(--w);
}
.share-wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}
.share-li {
  background: #0a66c2;
  color: var(--w);
}
.share-li:hover {
  background: #0858a3;
  transform: translateY(-1px);
}
.share-cp {
  background: var(--bk);
  color: var(--w);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.share-cp:hover {
  border-color: var(--y);
  color: var(--y);
}

@media (max-width: 900px) {
  .steps-grid,
  .contact-cards,
  .explore-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid::before {
    display: none;
  }
}
@media (max-width: 600px) {
  :root {
    --px: 22px;
  }
  .steps-grid,
  .contact-cards,
  .explore-grid {
    grid-template-columns: 1fr;
  }
  .ty-big {
    font-size: clamp(52px, 14vw, 88px);
  }
  .ref-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ── About US Page-specific only ── */
.hero-about {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 90vh;
  overflow: hidden;
  padding-top: 70px;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.founder-card {
  background: var(--bk);
  border-radius: var(--rl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--y);
}
.fc-av {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ft);
  font-size: 26px;
  font-weight: 900;
  color: var(--bk);
  margin: 0 auto 24px;
  border: 4px solid rgba(238, 182, 7, 0.3);
}
.fc-ex {
  display: inline-block;
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--rp);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  margin: 3px;
}
.fc-ex.y {
  background: var(--y);
  border-color: var(--y);
  color: var(--bk);
}
.story-intro {
  font-family: var(--ft);
  font-size: clamp(16px, 1.8vw, 26px);
  font-weight: 700;
  color: var(--bk);
  line-height: 1.4;
  font-style: italic;
  border-left: 4px solid var(--y);
  padding-left: 20px;
  margin-bottom: 22px;
}
.why-block {
  background: var(--bk);
  border-radius: var(--rl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.why-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--y);
}
.wb-lbl {
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 14px;
}
.promise-box {
  background: var(--y);
  border-radius: var(--r);
  padding: 20px 24px;
  margin-top: 20px;
}
.pb-txt {
  font-family: var(--ft);
  font-size: 15px;
  font-weight: 700;
  color: var(--bk);
  line-height: 1.6;
  font-style: italic;
}
.mvp-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mvp-l {
  background: var(--w);
  padding: 96px 52px 96px calc((100vw - 1180px) / 2 + 52px);
}
.mvp-r {
  background: var(--bk);
  padding: 96px calc((100vw - 1180px) / 2 + 52px) 96px 52px;
  position: relative;
  overflow: hidden;
}
.mvp-r::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--y);
}
.mv-card {
  background: var(--g1);
  border: 1.5px solid var(--bd);
  border-radius: var(--rl);
  padding: 26px 28px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  transition: var(--tr);
}
.mv-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--y);
  border-radius: 4px 0 0 4px;
}
.mv-card:hover {
  border-color: var(--y);
  box-shadow: 0 8px 28px rgba(238, 182, 7, 0.1);
}
.mvc-tag {
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--y2);
  margin-bottom: 8px;
}
.mvc-h {
  font-family: var(--ft);
  font-size: 18px;
  font-weight: 800;
  color: var(--bk);
  margin-bottom: 10px;
}
.mvc-p {
  font-family: var(--fb);
  font-size: 14px;
  color: var(--g3);
  line-height: 1.8;
}
.wpm-stats-row {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wst-v {
  font-family: var(--ft);
  font-size: 32px;
  font-weight: 900;
  color: var(--y);
  line-height: 1;
}
.wst-l {
  font-family: var(--fb);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
}
.wg4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.val-card {
  background: var(--bk);
  border-radius: var(--rl);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: var(--tr);
}
.val-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.val-card-bg {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--ft);
  font-size: 50px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
}
.val-card:hover .val-card-bg {
  color: rgba(238, 182, 7, 0.07);
}
.val-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.val-title {
  font-family: var(--ft);
  font-size: 18px;
  font-weight: 800;
  color: var(--w);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.val-title span {
  color: var(--y);
}
.val-body {
  font-family: var(--fb);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}
.vs-box {
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--rl);
  padding: 32px 36px;
  margin-top: 32px;
  position: relative;
}
.vs-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--bk);
  border-radius: 4px;
}
.vs-txt {
  font-family: var(--fb);
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.85;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.ws {
  background: var(--g1);
  border: 2px solid var(--bd);
  border-radius: var(--rl);
  padding: 28px 22px;
  transition: var(--tr);
}
.ws:hover {
  border-color: var(--y);
  background: var(--w);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(238, 182, 7, 0.12);
}
.ws-num {
  font-family: var(--ft);
  font-size: 40px;
  font-weight: 900;
  color: var(--y);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 14px;
  transition: opacity 0.3s;
}
.ws:hover .ws-num {
  opacity: 0.8;
}
.ws-t {
  font-family: var(--ft);
  font-size: 16px;
  font-weight: 700;
  color: var(--bk);
  margin-bottom: 10px;
  line-height: 1.3;
}
.ws-d {
  font-family: var(--fb);
  font-size: 13px;
  color: var(--g3);
  line-height: 1.75;
}
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
}
.cred-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rl);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: var(--tr);
}
.cred-card:hover {
  border-color: var(--y4);
  background: rgba(238, 182, 7, 0.04);
}
.cred-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--y);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.cred-card:hover::before {
  transform: scaleX(1);
}
.cc-badge {
  width: 52px;
  height: 52px;
  background: var(--y);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ft);
  font-size: 18px;
  font-weight: 900;
  color: var(--bk);
  margin-bottom: 18px;
}
.cc-title {
  font-family: var(--ft);
  font-size: 18px;
  font-weight: 800;
  color: var(--w);
  margin-bottom: 10px;
}
.cc-body {
  font-family: var(--fb);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.8;
}
.stats6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.sc {
  background: var(--bk);
  border-radius: var(--rl);
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s;
}
.sc:hover {
  transform: translateY(-4px);
}
.sc-v {
  font-family: var(--ft);
  font-size: 52px;
  font-weight: 900;
  color: var(--y);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.sc-l {
  font-family: var(--fb);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}
@media (max-width: 1100px) {
  .hero-about,
  .mvp-wrap {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .mvp-l,
  .mvp-r {
    padding: 72px 32px;
  }
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .wg4 {
    grid-template-columns: 1fr 1fr;
  }
  .work-grid,
  .cred-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats6 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .wg4,
  .work-grid,
  .cred-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .wg4,
  .work-grid,
  .cred-grid,
  .stats6 {
    grid-template-columns: 1fr;
  }
}
/* ── contact us Page-specific only ── */
.hero-contact {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 65vh;
  overflow: hidden;
  padding-top: 70px;
}
.contact-main {
  padding: 80px 0;
  background: var(--g1);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 52px;
  align-items: start;
}
.form-card {
  background: var(--w);
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}
.form-header {
  background: var(--bk);
  padding: 28px 36px;
  position: relative;
  overflow: hidden;
}
.form-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--y);
}
/* Response badge */
.resp-badge {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--r);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fu 0.6s 0.35s ease both;
}
.rb-ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--bk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.rb-t {
  font-family: var(--ft);
  font-size: 13px;
  font-weight: 700;
  color: var(--bk);
}
.rb-s {
  font-family: var(--fb);
  font-size: 11px;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 2px;
}
.hero-bg {
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-family: var(--ft);
  font-weight: 900;
  font-size: 280px;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.fh-kicker {
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 8px;
}
.fh-title {
  font-family: var(--ft);
  font-size: 22px;
  font-weight: 800;
  color: var(--w);
  letter-spacing: -0.02em;
}
.fh-sub {
  font-family: var(--fb);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}
.step-bar {
  display: flex;
  align-items: center;
  padding: 20px 36px;
  background: var(--g1);
  border-bottom: 1px solid var(--bd);
  gap: 0;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 800;
  color: var(--g3);
  flex-shrink: 0;
  transition: all 0.3s;
}
.step-item.done .step-num {
  background: var(--y);
  color: var(--bk);
}
.step-item.active .step-num {
  background: var(--bk);
  color: var(--y);
}
.step-lbl {
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 700;
  color: var(--g3);
  letter-spacing: 0.04em;
}
.step-item.done .step-lbl,
.step-item.active .step-lbl {
  color: var(--bk);
}
.step-conn {
  width: 100%;
  height: 2px;
  background: var(--bd);
  margin: 0 10px;
  transition: background 0.3s;
}
.step-item.done .step-conn {
  background: var(--y);
}
.form-body {
  padding: 32px 36px;
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
  animation: fadeUp 0.35s ease both;
}
.fsec-title {
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--y2);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--y4);
  display: flex;
  align-items: center;
  gap: 8px;
}
.fsec-title::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--y);
}
.field-row {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}
.field-row.c2 {
  grid-template-columns: 1fr 1fr;
}
.field-row.c1 {
  grid-template-columns: 1fr;
}
.form-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--bd);
}
.radio-grid {
  display: grid;
  gap: 8px;
}
.radio-grid.c2 {
  grid-template-columns: 1fr 1fr;
}
.radio-grid.c3 {
  grid-template-columns: repeat(3, 1fr);
}
.check-grid {
  display: grid;
  gap: 8px;
}
.check-grid.c2 {
  grid-template-columns: 1fr 1fr;
}
.check-grid.c3 {
  grid-template-columns: repeat(3, 1fr);
}
.privacy-txt {
  font-family: var(--fb);
  font-size: 11px;
  color: var(--g3);
  text-align: center;
  margin-top: 14px;
  line-height: 1.65;
}
.privacy-txt a {
  color: var(--y2);
}
.captcha-wrap {
  background: var(--g1);
  border: 1.5px solid var(--bd);
  border-radius: var(--r);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.captcha-cb {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 2px solid var(--bd);
  flex-shrink: 0;
  background: var(--w);
  cursor: pointer;
  transition: all 0.2s;
}
.captcha-lbl {
  font-family: var(--fb);
  font-size: 13px;
  color: var(--g4);
}
.success-state {
  display: none;
  text-align: center;
  padding: 48px 36px;
}
.suc-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
}
.suc-h {
  font-family: var(--ft);
  font-size: 24px;
  font-weight: 900;
  color: var(--bk);
  margin-bottom: 10px;
}
.suc-p {
  font-family: var(--fb);
  font-size: 15px;
  color: var(--g3);
  line-height: 1.8;
  max-width: 360px;
  margin: 0 auto 24px;
}
.suc-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-bottom: 24px;
}
.sst {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sst-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 800;
  color: var(--bk);
  flex-shrink: 0;
  margin-top: 1px;
}
.sst-txt {
  font-family: var(--fb);
  font-size: 13px;
  color: var(--g4);
  line-height: 1.65;
}
/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sb-card {
  background: var(--w);
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
}
.sb-head {
  background: var(--bk);
  padding: 20px 24px;
  position: relative;
}
.sb-head::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--y);
}
.sb-head-t {
  font-family: var(--ft);
  font-size: 14px;
  font-weight: 700;
  color: var(--y);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sb-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sb-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sb-ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.sb-lbl {
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g3);
  margin-bottom: 3px;
}
.sb-val-con {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  color: var(--bk);
  line-height: 1.55;
}
.sb-val-con a {
  color: var(--bk);
  transition: color 0.2s;
}
.sb-val-con a:hover {
  color: var(--y2);
}
.hrs-card {
  background: var(--y);
  border-radius: var(--rl);
  padding: 22px 24px;
}
.hrs-t {
  font-family: var(--ft);
  font-size: 13px;
  font-weight: 800;
  color: var(--bk);
  margin-bottom: 12px;
}
.hrs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--fb);
  font-size: 13px;
  margin-bottom: 8px;
}
.hrs-day {
  color: rgba(0, 0, 0, 0.6);
}
.hrs-time {
  font-weight: 700;
  color: var(--bk);
}
.hrs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bk);
  color: var(--y);
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--rp);
  margin-top: 12px;
}
.trust-sb {
  background: var(--bk);
  border-radius: var(--rl);
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
}
.trust-sb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--y);
}
.tsb-t {
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 14px;
}
.tsb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tsb-box {
  background: rgba(238, 182, 7, 0.1);
  border: 1px solid rgba(238, 182, 7, 0.2);
  border-radius: var(--r);
  padding: 12px;
  text-align: center;
}
.tsb-v {
  font-family: var(--ft);
  font-size: 20px;
  font-weight: 900;
  color: var(--y);
  line-height: 1;
  margin-bottom: 4px;
}
.tsb-l {
  font-family: var(--fb);
  font-size: 9px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.wa-card {
  background: var(--bk);
  border-radius: var(--rl);
  padding: 22px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wa-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--y);
}
@media (max-width: 1100px) {
  .hero-contact {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .field-row.c2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .sidebar {
    grid-template-columns: 1fr;
  }
  .radio-grid.c2,
  .radio-grid.c3,
  .check-grid.c2,
  .check-grid.c3 {
    grid-template-columns: 1fr 1fr;
  }
  .step-bar {
    padding: 16px 20px;
  }
  .form-body {
    padding: 24px 20px;
  }
  .form-header {
    padding: 22px 20px;
  }
}
@media (max-width: 480px) {
  .radio-grid.c2,
  .radio-grid.c3,
  .check-grid.c2,
  .check-grid.c3 {
    grid-template-columns: 1fr;
  }
}
/* ── performance marketing agency in pune Page specific only ── */
.hero-pm {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 70px;
}
.svc-panel {
  display: none;
}
.svc-panel.on {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  animation: fadeUp 0.3s ease both;
}
.stab {
  font-family: var(--ft);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--rp);
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--tr);
  letter-spacing: 0.02em;
}
.stab:hover {
  border-color: var(--y4);
  color: rgba(255, 255, 255, 0.85);
}
.stab.on {
  background: var(--y);
  border-color: var(--y);
  color: var(--bk);
}
.sp-vis {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rl);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.sp-vis::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--y);
}
.sp-em {
  font-size: 46px;
  display: block;
  margin-bottom: 16px;
}
.sp-title {
  font-family: var(--ft);
  font-size: 16px;
  font-weight: 700;
  color: var(--w);
  margin-bottom: 14px;
}
.sp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sp-tag {
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--rp);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
}
.sp-tag.y {
  background: var(--y);
  border-color: var(--y);
  color: var(--bk);
}
.sp-note {
  margin-top: 18px;
  background: var(--y);
  border-radius: var(--r);
  padding: 14px 16px;
}
.sp-note-t {
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bk);
  margin-bottom: 4px;
}
.sp-note-b {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 500;
  color: var(--bk);
  line-height: 1.6;
}
.split-wpm {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.wpm-l {
  background: var(--w);
  padding: 96px 52px 96px calc((100vw - 1180px) / 2 + 52px);
}
.wpm-r {
  background: var(--bk);
  padding: 96px calc((100vw - 1180px) / 2 + 52px) 96px 52px;
  position: relative;
  overflow: hidden;
}
.wpm-r::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--y);
}
/* .proc-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  z-index: 1;
  margin-top: 64px;
} */
.proc-track {
  position: relative;
}
.proc-conn {
  position: absolute;
  top: 36px;
  left: calc(8.33% + 24px);
  right: calc(8.33% + 24px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--y) 0,
    var(--y) 14px,
    transparent 14px,
    transparent 24px
  );
  z-index: 0;
}
.ps {
  text-align: center;
  padding: 0 10px;
}
.ps-t {
  font-family: var(--ft);
  font-size: 13px;
  font-weight: 700;
  color: var(--bk);
  margin-bottom: 8px;
  line-height: 1.3;
}
.ps-d {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--g3);
  line-height: 1.7;
}
.wpm-stats {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wst-v {
  font-family: var(--ft);
  font-size: 32px;
  font-weight: 900;
  color: var(--y);
  line-height: 1;
}
.wst-l {
  font-family: var(--fb);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
}
@media (max-width: 1100px) {
  .hero-pm,
  .split-wpm {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .wpm-l,
  .wpm-r {
    padding: 72px 32px;
  }
  .svc-panel.on {
    grid-template-columns: 1fr;
  }

  .proc-conn {
    display: none;
  }
}

.section-label-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}
.slr-line {
  height: 1px;
  width: 44px;
  background: var(--y);
}

/* ── ANIMATIONS ── */
@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fr {
  from {
    opacity: 0;
    transform: translateX(22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.rev {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.rev.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-accent-block {
    display: none;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .hero-panel {
    max-width: 480px;
  }
  .about-grid,
  .wpm-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ind-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .plat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-connector {
    display: none;
  }
  .svc-panel.active {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .wrap {
    padding: 0 24px;
  }
  section {
    padding: 72px 0;
  }
 
  .why-grid,
  .ind-grid,
  .plat-grid,
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 40px;
  }
  .why-grid,
  .ind-grid,
  .plat-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .process-row {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    padding: 0 24px;
  }
}
/* ══════════════════════════════════════════════════
  Social Media Marketing — PAGE-SPECIFIC STYLES ONLY
══════════════════════════════════════════════════ */

/* Why choose — 2x3 cards on yellow */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.wc-card {
  background: var(--w);
  border: 2px solid var(--bd);
  border-radius: var(--rl);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: var(--tr);
}
.wc-card:hover {
  border-color: var(--y);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(238, 182, 7, 0.12);
}
.wc-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--y);
}
.wc-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.wc-title {
  font-family: var(--ft);
  font-size: 15px;
  font-weight: 700;
  color: var(--bk);
  margin-bottom: 8px;
  line-height: 1.3;
}
.wc-desc {
  font-family: var(--fb);
  font-size: 13px;
  color: var(--g3);
  line-height: 1.75;
}
/* Stats strip */
.stats-strip {
  background: var(--y);
  padding: 32px 0;
  border-top: 3px solid var(--bk);
  border-bottom: 3px solid var(--bk);
}
.stats-strip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.ss-item {
  text-align: center;
  flex: 1;
  min-width: 110px;
}
.ss-val {
  font-family: var(--ft);
  font-size: clamp(28px, 4vw, 32px);
  font-weight: 900;
  color: var(--bk);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.ss-lbl {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.ss-sep {
  width: 1px;
  height: 56px;
  background: rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}
/* Platform showcase grid */

.plat-showcase {
  background: var(--w);
  border: 2px solid var(--bd);
  border-radius: var(--rl);
  padding: 22px 18px;
  text-align: center;
  transition: var(--tr);
}
.plat-showcase:hover {
  border-color: var(--y);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(238, 182, 7, 0.12);
}
.ps-icon {
  font-size: 32px;
  margin-bottom: 10px;
  display: block;
}
.ps-name {
  font-family: var(--ft);
  font-size: 14px;
  font-weight: 700;
  color: var(--bk);
  margin-bottom: 6px;
}
.ps-desc {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--g3);
  line-height: 1.55;
}

/* ══════════════════════════════════════════════════
   PRIVACY POLICY — PAGE-SPECIFIC STYLES ONLY
════════════════════════════════════════════════── */

/* ── Hero: black bg, y accent ── */
.pp-hero {
  background: var(--bk);
  padding: 120px var(--px) 72px;
  position: relative;
  overflow: hidden;
}
.pp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(238, 182, 7, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 182, 7, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(
    ellipse 90% 90% at 50% 50%,
    black 20%,
    transparent 100%
  );
}
.pp-hero-inner {
  max-width: var(--fw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pp-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 700;
  background: var(--y);
  color: var(--bk);
  border-radius: var(--rp);
  padding: 7px 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.pp-hero h1 {
  font-family: var(--ft);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--w);
  margin-bottom: 20px;
}
.pp-hero h1 span {
  color: var(--y);
}
.pp-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.pp-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.pp-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--y);
  flex-shrink: 0;
}

/* ── Layout: sidebar + content ── */
.pp-layout {
  max-width: var(--fw);
  margin: 0 auto;
  padding: 72px var(--px);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

/* ── Sticky sidebar ── */
.pp-sidebar {
  position: sticky;
  top: 90px;
}
.pp-toc-card {
  background: var(--bk);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rl);
  overflow: hidden;
  margin-bottom: 20px;
}
.pp-toc-head {
  background: var(--y);
  padding: 14px 20px;
}
.pp-toc-head-t {
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bk);
}
.pp-toc-nav {
  padding: 8px 0;
}
.pp-toc-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.2s;
  border-left: 2px solid transparent;
}
.pp-toc-nav a:hover,
.pp-toc-nav a.active {
  color: var(--y);
  background: rgba(238, 182, 7, 0.06);
  border-left-color: var(--y);
}
.pp-toc-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(238, 182, 7, 0.12);
  border: 1px solid rgba(238, 182, 7, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ft);
  font-size: 9px;
  font-weight: 800;
  color: var(--y);
  flex-shrink: 0;
}

/* Contact quick card in sidebar */
.pp-contact-card {
  background: var(--y);
  border-radius: var(--rl);
  padding: 22px 20px;
}
.pp-cc-title {
  font-family: var(--ft);
  font-size: 13px;
  font-weight: 800;
  color: var(--bk);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.pp-cc-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pp-cc-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pp-cc-ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--bk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.pp-cc-label {
  font-family: var(--ft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 2px;
}
.pp-cc-val {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  color: var(--bk);
  line-height: 1.45;
}
.pp-cc-val a {
  color: var(--bk);
}

/* ── Main content area ── */
.pp-content {
  max-width: 760px;
}

/* Section block */
.pp-section {
  padding-top: 64px;
  border-top: 1px solid var(--bd);
  margin-bottom: 0;
  scroll-margin-top: 100px;
}
.pp-section:first-child {
  padding-top: 0;
  border-top: none;
}

/* Section heading */
.pp-sec-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.pp-sec-num-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ft);
  font-size: 14px;
  font-weight: 900;
  color: var(--bk);
  flex-shrink: 0;
}
.pp-sec-num-lbl {
  font-family: var(--ft);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--y2);
}
.pp-section h2 {
  font-family: var(--ft);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--bk);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.2;
}
.pp-section h2 span {
  color: var(--y);
}

/* Body text */
.pp-p {
  font-family: var(--fb);
  font-size: 16px;
  color: var(--g4);
  line-height: 1.85;
  margin-bottom: 18px;
}
.pp-p:last-child {
  margin-bottom: 0;
}
.pp-p a {
  color: var(--y2);
  text-decoration: underline;
}

/* Two-column list grid */
.pp-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}
.pp-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: var(--g1);
  border: 1.5px solid var(--bd);
  border-radius: var(--r);
  font-family: var(--fb);
  font-size: 16px;
  color: var(--g4);
  line-height: 1.5;
  transition: all 0.2s;
}
.pp-list-item:hover {
  border-color: var(--y4);
  background: var(--w);
}
.pp-list-item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--y);
  flex-shrink: 0;
  margin-top: 4px;
}

/* "Never collect" list — red tint */
.pp-list-item.never {
  background: rgba(224, 64, 64, 0.04);
  border-color: rgba(224, 64, 64, 0.15);
}
.pp-list-item.never .pp-list-item-dot {
  background: #cc3333;
}
.pp-list-item.never:hover {
  border-color: rgba(224, 64, 64, 0.3);
  background: rgba(224, 64, 64, 0.06);
}

/* Single-column plain list */
.pp-ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0;
}
.pp-ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--fb);
  font-size: 16px;
  color: var(--g4);
  line-height: 1.7;
}
.pp-ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--y);
  flex-shrink: 0;
  margin-top: 9px;
}

/* Principles grid — 2x3 cards */
.pp-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 22px 0;
}
.pp-principle {
  background: var(--bk);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  padding: 20px 18px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.pp-principle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--y);
}
.pp-principle:hover {
  border-color: var(--y4);
  transform: translateY(-3px);
}
.pp-principle-icon {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}
.pp-principle-t {
  font-family: var(--ft);
  font-size: 18px;
  font-weight: 700;
  color: var(--w);
  margin-bottom: 8px;
  line-height: 1.3;
}
.pp-principle-d {
  font-family: var(--fb);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* Rights cards */
.pp-rights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0;
}
.pp-right-card {
  background: var(--w);
  border: 2px solid var(--bd);
  border-radius: var(--r);
  padding: 18px 16px;
  transition: all 0.25s;
}
.pp-right-card:hover {
  border-color: var(--y);
  box-shadow: 0 8px 24px rgba(238, 182, 7, 0.1);
}
.pp-right-label {
  font-family: var(--ft);
  font-size: 16px;
  font-weight: 700;
  color: var(--y2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pp-right-title {
  font-family: var(--ft);
  font-size: 18px;
  font-weight: 800;
  color: var(--bk);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.pp-right-desc {
  font-family: var(--fb);
  font-size: 16px;
  color: var(--g3);
  line-height: 1.65;
}

/* Cookies grid */
.pp-cookies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0;
}
.pp-cookie {
  background: var(--g1);
  border: 1.5px solid var(--bd);
  border-radius: var(--r);
  padding: 16px;
  transition: all 0.2s;
}
.pp-cookie:hover {
  border-color: var(--y4);
  background: var(--w);
}
.pp-cookie-icon {
  font-size: 26px;
  margin-bottom: 8px;
  display: block;
}
.pp-cookie-title {
  font-family: var(--ft);
  font-size: 18px;
  font-weight: 700;
  color: var(--bk);
  margin-bottom: 6px;
}
.pp-cookie-desc {
  font-family: var(--fb);
  font-size: 16px;
  color: var(--g3);
  line-height: 1.6;
}

/* Warning / alert box */
.pp-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(238, 182, 7, 0.08);
  border: 1.5px solid var(--y4);
  border-radius: var(--r);
  padding: 18px 20px;
  margin: 22px 0;
}
.pp-alert-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pp-alert-txt {
  font-family: var(--fb);
  font-size: 16px;
  color: var(--g4);
  line-height: 1.75;
}
.pp-alert-txt strong {
  color: var(--bk);
  font-weight: 700;
}

/* Important note box */
.pp-note {
  background: var(--g1);
  border-left: 4px solid var(--y);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 18px 20px;
  margin: 22px 0;
}
.pp-note-t {
  font-family: var(--ft);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--y2);
  margin-bottom: 8px;
}
.pp-note p {
  font-family: var(--fb);
  font-size: 16px;
  color: var(--g4);
  line-height: 1.75;
  margin: 0;
}

/* Grievance officer contact table */
.pp-contact-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 0 0 1.5px var(--bd);
}
.pp-contact-table thead tr {
  background: var(--bk);
}
.pp-contact-table thead th {
  padding: 14px 20px;
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--y);
  text-align: left;
}
.pp-contact-table tbody tr {
  border-bottom: 1px solid var(--bd);
  transition: background 0.2s;
}
.pp-contact-table tbody tr:last-child {
  border-bottom: none;
}
.pp-contact-table tbody tr:hover {
  background: var(--g1);
}
.pp-contact-table td {
  padding: 14px 20px;
  font-family: var(--fb);
  font-size: 14px;
  color: var(--g4);
  vertical-align: top;
}
.pp-contact-table td:first-child {
  font-family: var(--ft);
  font-size: 13px;
  font-weight: 700;
  color: var(--bk);
  white-space: nowrap;
  width: 130px;
}
.pp-contact-table a {
  color: var(--y2);
}

/* Grievance CTA card */
.pp-grievance-card {
  background: var(--bk);
  border-radius: var(--rl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  margin-top: 28px;
}
.pp-grievance-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--y);
}
.pp-gc-title {
  font-family: var(--ft);
  font-size: 18px;
  font-weight: 800;
  color: var(--w);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.pp-gc-body {
  font-family: var(--fb);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 22px;
}
.pp-gc-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Last updated strip */
.pp-updated-strip {
  background: var(--y3);
  border: 1.5px solid var(--y4);
  border-radius: var(--r);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}
.pp-updated-icon {
  font-size: 18px;
  flex-shrink: 0;
}
.pp-updated-txt {
  font-family: var(--fb);
  font-size: 13px;
  color: var(--g4);
  line-height: 1.6;
}
.pp-updated-txt strong {
  color: var(--bk);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
  .pp-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .pp-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }
  .pp-content {
    max-width: 100%;
  }
  .pp-toc-card {
    grid-column: 1 / -1;
  }
}
@media (max-width: 768px) {
  .pp-hero {
    padding: 100px var(--px) 52px;
  }
  .pp-layout {
    padding: 52px var(--px);
  }
  .pp-sidebar {
    grid-template-columns: 1fr;
  }
  .pp-list-grid,
  .pp-principles,
  .pp-rights,
  .pp-cookies {
    grid-template-columns: 1fr;
  }
  
}
@media (max-width: 480px) {
  .pp-hero h1 {
    font-size: 36px;
  }
  .pp-contact-table {
    font-size: 12px;
  }
  .pp-contact-table td,
  .pp-contact-table th {
    padding: 10px 14px;
  }
}

/* ══════════════════════════════════════════════════
   Service — PAGE-SPECIFIC STYLES ONLY
════════════════════════════════════════════════── */
.svc-accordion {
  margin-top: 48px;
}
.svc-acc-item {
  background: var(--w);
  border: 1.5px solid var(--bd);
  border-radius: var(--rl);
  overflow: hidden;
  margin-bottom: 14px;
  transition: var(--tr);
}
.svc-acc-item:hover {
  border-color: var(--y4);
  box-shadow: 0 8px 28px rgba(238, 182, 7, 0.08);
}
.svc-acc-item.open {
  border-color: var(--y);
  box-shadow: 0 12px 40px rgba(238, 182, 7, 0.12);
}
.svc-acc-head {
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  transition: background 0.2s;
}
.svc-acc-head:hover {
  background: var(--g1);
}
.svc-acc-item.open .svc-acc-head {
  background: var(--bk);
}
.svc-acc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: var(--tr);
}
.svc-acc-item.open .svc-acc-icon {
  background: rgba(238, 182, 7, 0.15);
}
.svc-acc-num {
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--y2);
  margin-bottom: 4px;
}
.svc-acc-item.open .svc-acc-num {
  color: rgba(238, 182, 7, 0.6);
}
.svc-acc-title {
  font-family: var(--ft);
  font-size: 17px;
  font-weight: 800;
  color: var(--bk);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.svc-acc-item.open .svc-acc-title {
  color: var(--w);
}
.svc-acc-sub {
  font-family: var(--fb);
  font-size: 13px;
  color: var(--g3);
  margin-top: 4px;
  line-height: 1.4;
}
.svc-acc-item.open .svc-acc-sub {
  color: rgba(255, 255, 255, 0.42);
}
.svc-acc-tog {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--g1);
  border: 1.5px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--g3);
  flex-shrink: 0;
  transition: var(--tr);
}
.svc-acc-item.open .svc-acc-tog {
  background: var(--y);
  border-color: var(--y);
  color: var(--bk);
  transform: rotate(45deg);
}
.svc-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.svc-acc-item.open .svc-acc-body {
  max-height: 520px;
}
.svc-acc-content {
  padding: 0 28px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  background: var(--bk);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
}
.svc-acc-desc {
  font-family: var(--fb);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  margin-bottom: 16px;
}
.svc-acc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ft);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--bk);
  padding: 10px 20px;
  border-radius: var(--rp);
  background: var(--y);
  transition: var(--tr);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.svc-acc-cta:hover {
  background: var(--y2);
  transform: translateY(-1px);
  box-shadow: var(--sh-y);
}
.svc-acc-cta svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.svc-acc-cta:hover svg {
  transform: translateX(3px);
}
.svc-acc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px;
}
.svc-tag-dk {
  font-family: var(--ft);
  font-size: 9.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--rp);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
}
.svc-tag-dk.y {
  background: var(--y);
  border-color: var(--y);
  color: var(--bk);
}
     @media (max-width: 1100px) {
        .svc-acc-content {
          grid-template-columns: 1fr;
        }
         .svc-grid {
        grid-template-columns: 1fr;
           }
     }
        @media (max-width: 768px) {
            .svc-acc-head {
          grid-template-columns: 44px 1fr auto;
          gap: 12px;
          padding: 16px 20px;
        }
        .svc-acc-content {
          padding: 0 20px 22px;
          padding-top: 18px;
        }
           .svc-grid {
        grid-template-columns: 1fr !important;
           }
        }

/* ══════════════════════════════════════════════════
  Branding Agency — PAGE-SPECIFIC STYLES ONLY
════════════════════════════════════════════════── */
/* Brand showcase card (hero right) */
.brand-showcase{background:var(--bk);border-radius:var(--rl);padding:24px;position:relative;overflow:hidden;max-width:390px}
.brand-showcase::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--y)}
.bs-lbl{font-family:var(--ft);font-size:10px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--y);margin-bottom:12px}
.bs-logo-row{display:flex;align-items:center;gap:12px;margin-bottom:14px;padding-bottom:14px;border-bottom:1px solid rgba(255,255,255,.08)}
.bs-logo-mark{width:48px;height:48px;border-radius:12px;background:var(--y);display:flex;align-items:center;justify-content:center;font-family:var(--ft);font-size:16px;font-weight:900;color:var(--bk);flex-shrink:0}
.bs-brand-name{font-family:var(--ft);font-size:18px;font-weight:900;color:var(--w);letter-spacing:-.02em}
.bs-tagline{font-family:var(--fb);font-size:11px;color:rgba(255,255,255,.4);margin-top:2px}
.bs-colors{display:flex;align-items:center;gap:8px;margin-bottom:14px}
.bs-color-lbl{font-family:var(--ft);font-size:9px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.35);margin-right:4px}
.bs-swatch{width:24px;height:24px;border-radius:50%}
.bs-chips{display:flex;flex-wrap:wrap;gap:5px;margin-bottom:14px}
/* Why branding feature cards */
.wb-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:14px;margin-top:28px}
.wb-card{background:var(--w);border:1.5px solid var(--bd);border-radius:var(--rl);padding:22px;position:relative;overflow:hidden;transition:var(--tr)}
.wb-card:hover{border-color:var(--y);transform:translateY(-4px);box-shadow:0 12px 32px rgba(238,182,7,.1)}
.wb-card::after{content:'';position:absolute;left:0;top:0;bottom:0;width:4px;background:var(--y);border-radius:0}
.wb-icon{width:44px;height:44px;border-radius:12px;background:var(--y);display:flex;align-items:center;justify-content:center;font-size:20px;margin-bottom:14px;flex-shrink:0}
.wb-title{font-family:var(--ft);font-size:14px;font-weight:700;color:var(--bk);margin-bottom:8px;line-height:1.3}
.wb-desc{font-family:var(--fb);font-size:13px;color:var(--g3);line-height:1.75}
/* Service tabs */
/* .stab{font-family:var(--ft);font-size:12px;font-weight:700;padding:9px 18px;border-radius:var(--rp);background:var(--g1);border:1.5px solid var(--bd);color:var(--g3);cursor:pointer;transition:var(--tr);letter-spacing:.02em}
.stab:hover{border-color:var(--y4);color:var(--bk)}
.stab.on{background:var(--y);border-color:var(--y);color:var(--bk)}
.svc-panel{display:none}
.svc-panel.on{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:start;animation:fadeUp .3s ease both}
.sp-vis{background:var(--bk);border-radius:var(--rl);padding:32px;position:relative;overflow:hidden}
.sp-vis::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--y)}
.sp-icon{font-size:46px;margin-bottom:16px;display:block}
.sp-title{font-family:var(--ft);font-size:16px;font-weight:700;color:var(--w);margin-bottom:14px}
.sp-tags{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:16px}
.sp-tag{font-family:var(--ft);font-size:10px;font-weight:700;padding:4px 12px;border-radius:var(--rp);background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);color:rgba(255,255,255,.55)}
.sp-tag.y{background:var(--y);border-color:var(--y);color:var(--bk)}
.sp-note{background:var(--y);border-radius:var(--r);padding:14px 16px}
.sp-note-t{font-family:var(--ft);font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--bk);margin-bottom:4px;opacity:.7}
.sp-note-b{font-family:var(--fb);font-size:13px;font-weight:500;color:var(--bk);line-height:1.6} */


/* ══════════════════════════════════════════════════
  SEO — PAGE-SPECIFIC STYLES ONLY
════════════════════════════════════════════════── */
/* ── AI / GEO / AEO card ── */
.ai-card {
  background: var(--bk); border-radius: var(--rl);
  padding: 36px; position: relative; overflow: hidden;
  margin-top: 32px;
}
.ai-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--y), #ffd060, var(--y));
}
.ai-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 24px;
}
.ai-item {
  background: rgba(238,182,7,.08); border: 1px solid rgba(238,182,7,.18);
  border-radius: var(--r); padding: 16px;
}
.ai-item-icon { font-size: 22px; display: block; margin-bottom: 8px; }
.ai-item-t {
  font-family: var(--ft); font-size: 13px; font-weight: 700;
  color: var(--y); margin-bottom: 6px;
}
.ai-item-d {
  font-family: var(--fb); font-size: 12px;
  color: rgba(255,255,255,.5); line-height: 1.6;
}

/* ══════════════════════════════════════════════════
  Website Design and Development — PAGE-SPECIFIC STYLES ONLY
════════════════════════════════════════════════── */
.browser-frame{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:10px;overflow:hidden;margin-bottom:16px}
.browser-bar{background:rgba(255,255,255,.07);padding:7px 10px;display:flex;align-items:center;gap:6px}
.b-dot{width:6px;height:6px;border-radius:50%}
.b-url{background:rgba(255,255,255,.06);border-radius:4px;padding:3px 10px;font-family:var(--fb);font-size:9px;color:rgba(255,255,255,.4);flex:1;margin-left:4px}
.b-screen{padding:14px;display:flex;flex-direction:column;gap:8px}
.b-hero{background:var(--y);border-radius:4px;height:9px;width:78%}
.b-lines{display:flex;flex-direction:column;gap:5px}
.b-line{background:rgba(255,255,255,.1);border-radius:3px;height:5px}
.b-cols{display:grid;grid-template-columns:1fr 1fr 1fr;gap:5px;margin-top:4px}
.b-col{background:rgba(255,255,255,.06);border-radius:5px;height:30px}
/* ══════════════════════════════════════════════════
  Digital Marketing Agency Pune — PAGE-SPECIFIC STYLES ONLY
════════════════════════════════════════════════── */
/* Service cards */
.svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:48px}
.svc-card{background:var(--w);border:1.5px solid var(--bd);border-radius:var(--rl);padding:28px;position:relative;overflow:hidden;transition:var(--tr)}
.svc-card:hover{border-color:var(--y);transform:translateY(-5px);box-shadow:0 16px 40px rgba(238,182,7,.12)}
.svc-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--y);transform:scaleX(0);transition:transform .3s;transform-origin:left}
.svc-card:hover::before{transform:scaleX(1)}
.svc-num{font-family:var(--ft);font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--y2);margin-bottom:14px}
.svc-icon{width:52px;height:52px;border-radius:14px;background:var(--y);display:flex;align-items:center;justify-content:center;font-size:22px;margin-bottom:18px;flex-shrink:0;transition:var(--tr)}
.svc-card:hover .svc-icon{transform:scale(1.08)}
.svc-title{font-family:var(--ft);font-size:16px;font-weight:700;color:var(--bk);margin-bottom:10px;line-height:1.3}
.svc-desc{font-family:var(--fb);font-size:13px;color:var(--g3);line-height:1.75;margin-bottom:16px}
.svc-tags{display:flex;flex-wrap:wrap;gap:5px}
.svc-tag{font-family:var(--ft);font-size:9.5px;font-weight:700;padding:3px 9px;border-radius:var(--rp);background:var(--g1);border:1px solid var(--bd);color:var(--g4)}
.svc-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    font-family: var(--ft);
    font-size: 12px;
    font-weight: 700;
    color: var(--bk);
    padding: 9px 18px;
    border-radius: var(--rp);
    background: var(--y);
    border: none;
    cursor: pointer;
    transition: var(--tr);
    letter-spacing: .02em;
    text-decoration: none;
}