/* ================================================================
   EcomixPro Agency — Professional WordPress-Style Theme
   Inspired by: Trivium, Canopy, CommerceKind, Mindful Goods
   Palette: Black · White · Yellow  |  Clean · Bold · Data-rich
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Syne:wght@700;800&display=swap');

/* ── CSS TOKENS ─────────────────────────────────────────── */
:root {
  /* Core Palette */
  --y:    #F5C518;   /* yellow accent */
  --yd:   #D4A80F;   /* darker yellow */
  --yl:   #FFF4C2;   /* light yellow tint */

  /* Backgrounds */
  --bg:   #000000;
  --bg1:  #0B0B0B;
  --bg2:  #141414;
  --bg3:  #1C1C1C;

  /* White cards */
  --w:    #FFFFFF;
  --wf:   #F7F7F7;
  --wb:   #EFEFEF;

  /* Text */
  --th:   #0A0A0A;
  --tb:   #2E2E2E;
  --tm:   #6B6B6B;
  --tw:   #FFFFFF;
  --td:   #999999;

  /* Borders */
  --bw:   rgba(0,0,0,0.09);
  --bd:   rgba(255,255,255,0.07);
  --by:   rgba(245,197,24,0.30);

  /* Typography */
  --fh:   'Syne', sans-serif;
  --fb:   'Plus Jakarta Sans', sans-serif;

  /* Spacing & Shape */
  --r:    12px;
  --rl:   20px;
  --rxl:  28px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--fb); background: var(--bg); color: var(--tw); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--y); border-radius: 2px; }

/* ── TOPBAR ─────────────────────────────────────────────── */
.topbar {
  background: #000;
  border-bottom: 1px solid var(--bd);
  padding: 8px 7%;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .72rem; gap: 12px;
}
.topbar-left { display: flex; gap: 24px; color: var(--td); flex-wrap: wrap; }
.topbar-left a { color: var(--td); display: flex; align-items: center; gap: 5px; transition: color .2s; }
.topbar-left a:hover { color: var(--y); }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.topbar-social { display: flex; gap: 6px; }
.topbar-social a {
  width: 26px; height: 26px; border-radius: 6px;
  background: rgba(255,255,255,.05); border: 1px solid var(--bd);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; color: #666;
  transition: background .2s, color .2s;
}
.topbar-social a:hover { background: var(--y); color: #000; border-color: var(--y); }
.topbar-audit {
  background: var(--y); color: #000;
  padding: 5px 14px; border-radius: 6px;
  font-weight: 700; font-size: .7rem;
  letter-spacing: .5px; text-transform: uppercase;
  transition: opacity .2s;
}
.topbar-audit:hover { opacity: .88; }

/* ── NAVIGATION ─────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 900;
  background: rgba(0,0,0,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bd);
  padding: 0 7%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,.9); }

.logo {
  font-family: var(--fh); font-weight: 800; font-size: 1.55rem;
  color: #fff; letter-spacing: -1px;
  display: flex; align-items: center; gap: 3px;
}
.logo em { color: var(--y); font-style: normal; }
.logo-sub {
  font-family: var(--fb); font-size: .42rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--y);
  border: 1px solid var(--by); padding: 2px 6px; border-radius: 4px;
  background: rgba(245,197,24,.08); margin-left: 4px; align-self: flex-end; margin-bottom: 3px;
}

.nav-links { display: flex; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 0 16px; height: 72px; line-height: 72px;
  font-size: .84rem; font-weight: 500; color: #888;
  transition: color .2s; white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: #fff; }
.nav-links > li > a.active { position: relative; }
.nav-links > li > a.active::after {
  content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 2px; background: var(--y); border-radius: 1px;
}
.drop-arrow { font-size: .6rem; opacity: .5; }

/* Mega dropdown — WHITE */
.nav-dropdown {
  display: none; position: absolute;
  top: 72px; left: -10px;
  background: #fff;
  border-top: 3px solid var(--y);
  border-radius: 0 0 var(--rl) var(--rl);
  min-width: 270px; padding: 8px 0;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  z-index: 1000;
}
.nav-links > li:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px; font-size: .83rem; font-weight: 500; color: #333;
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: background .15s, padding-left .15s;
}
.nav-dropdown a:last-child { border: none; }
.nav-dropdown a:hover { background: #FFFBEE; padding-left: 24px; color: #000; }
.nav-dropdown .di {
  width: 32px; height: 32px;
  background: rgba(245,197,24,.12); border: 1px solid rgba(245,197,24,.3);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0;
}

.nav-cta {
  background: var(--y); color: #000;
  padding: 10px 22px; border-radius: 8px;
  font-size: .83rem; font-weight: 700; letter-spacing: .2px;
  margin-left: 14px;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: .88; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,197,24,.4); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }

/* ── HERO SECTION ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: #000;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  padding: 100px 7% 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 45%, rgba(245,197,24,.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 0% 80%, rgba(245,197,24,.04) 0%, transparent 50%);
}
/* Grid lines */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000, transparent);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,197,24,.1); border: 1px solid rgba(245,197,24,.3);
  color: var(--y); padding: 8px 16px; border-radius: 50px;
  font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--y); box-shadow: 0 0 8px var(--y); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 {
  font-family: var(--fh); font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 800; line-height: 1.02; letter-spacing: -2px;
  color: #fff; margin-bottom: 26px;
}
.hero h1 em { color: var(--y); font-style: normal; }
.hero-desc { font-size: 1.05rem; color: #888; line-height: 1.8; max-width: 540px; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.07);
}
.trust-item { display: flex; align-items: center; gap: 7px; font-size: .78rem; color: #666; }
.trust-item .ck { color: var(--y); font-weight: 700; font-size: .8rem; }

/* Hero right — white card dashboard */
.hero-card {
  position: relative; z-index: 2;
  background: #fff; border-radius: var(--rxl);
  overflow: hidden;
  box-shadow: 0 32px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(245,197,24,.1);
}
.hc-header {
  background: #000;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 3px solid var(--y);
}
.hc-title { font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--y); }
.hc-live { display: flex; align-items: center; gap: 5px; font-size: .68rem; color: #3DCC6F; font-weight: 600; }
.hc-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #3DCC6F; animation: blink 1.5s infinite; }
.hc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 24px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: background .15s;
}
.hc-row:hover { background: #FFFDF0; }
.hc-row:last-of-type { border: none; }
.hc-label { font-size: .8rem; color: #777; }
.hc-val { font-size: .88rem; font-weight: 700; color: #000; }
.hc-val.green { color: #16a34a; }
.hc-val.yellow { color: var(--yd); }
.hc-val.red { color: #dc2626; }
.hc-footer {
  background: #FFFBEE; border-top: 1px solid rgba(245,197,24,.25);
  padding: 13px 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.hc-footer span { font-size: .73rem; color: #888; }
.hc-footer strong { font-size: .76rem; color: var(--yd); font-weight: 700; }

/* Mini stats below card */
.hero-mini-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
  margin-top: 14px;
}
.mini-stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r); padding: 16px 14px; text-align: center;
  position: relative; z-index: 2;
}
.mini-stat strong { display: block; font-family: var(--fh); font-size: 1.6rem; font-weight: 800; color: var(--y); line-height: 1; }
.mini-stat span { font-size: .68rem; color: #666; text-transform: uppercase; letter-spacing: .5px; }

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-wrap { background: #fff; overflow: hidden; padding: 16px 0; border-top: 1px solid rgba(0,0,0,.08); border-bottom: 1px solid rgba(0,0,0,.08); }
.marquee-inner { display: flex; gap: 12px; animation: scroll 28s linear infinite; white-space: nowrap; }
@keyframes scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.mpill { background: #000; color: #fff; padding: 8px 20px; border-radius: 50px; font-size: .72rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; flex-shrink: 0; }

/* ── STATS STRIP — WHITE ─────────────────────────────────── */
.stats-strip {
  background: #fff;
  display: grid; grid-template-columns: repeat(5,1fr);
}
.ss-cell {
  padding: 44px 20px; text-align: center;
  border-right: 1px solid rgba(0,0,0,.07);
  transition: background .2s;
}
.ss-cell:last-child { border: none; }
.ss-cell:hover { background: #FFFBEE; }
.ss-num { font-family: var(--fh); font-size: 2.8rem; font-weight: 800; color: #000; line-height: 1; margin-bottom: 8px; }
.ss-num em { color: var(--yd); font-style: normal; }
.ss-lbl { font-size: .68rem; color: #888; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }

/* ── SECTION WRAPPERS ────────────────────────────────────── */
.sec { padding: 100px 7%; }
.sec-black { background: #000; }
.sec-near  { background: #0B0B0B; }
.sec-dark  { background: #141414; }

/* ── SECTION HEADERS ─────────────────────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--y);
  background: rgba(245,197,24,.08); border: 1px solid rgba(245,197,24,.22);
  padding: 5px 14px 5px 10px; border-radius: 50px;
  margin-bottom: 16px;
}
.label::before { content: ''; width: 18px; height: 1px; background: var(--y); }

h2.sh {
  font-family: var(--fh);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 800; letter-spacing: -1px; line-height: 1.1;
  color: #fff; margin-bottom: 16px;
}
h2.sh em { color: var(--y); font-style: normal; }
h2.sh-dark { color: #000; }
h2.sh-dark em { color: var(--yd); }

.sub {
  font-size: .95rem; color: #666; line-height: 1.8;
  max-width: 560px; margin-bottom: 52px;
}
.sub-dark { color: #555; }

.row-hd { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 50px; flex-wrap: wrap; }
.row-hd .sub { margin-bottom: 0; }
.center { text-align: center; }
.center .sub { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--y); color: #000;
  padding: 13px 28px; border-radius: 8px;
  font-size: .88rem; font-weight: 700;
  transition: transform .2s var(--ease), box-shadow .2s, opacity .2s;
  box-shadow: 0 4px 16px rgba(245,197,24,.2);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,197,24,.38); }
.btn-out {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 13px 28px; border-radius: 8px;
  font-size: .88rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,.18);
  transition: background .2s, border-color .2s;
}
.btn-out:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.3); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: #000; color: #fff;
  padding: 13px 28px; border-radius: 8px;
  font-size: .88rem; font-weight: 700;
  transition: transform .2s, box-shadow .2s;
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.4); }

/* ── SERVICE CARDS — white on black ─────────────────────── */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.svc {
  background: #fff; border-radius: var(--rl); padding: 38px;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.svc:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.25); }
.svc::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--y), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.svc:hover::before { transform: scaleX(1); }
.svc-no { font-size: .65rem; font-weight: 700; letter-spacing: 2px; color: #ccc; text-transform: uppercase; margin-bottom: 20px; }
.svc-ic {
  width: 52px; height: 52px;
  background: rgba(245,197,24,.12); border: 1px solid rgba(245,197,24,.35);
  border-radius: 13px; display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 20px;
  transition: background .2s, transform .2s;
}
.svc:hover .svc-ic { background: rgba(245,197,24,.22); transform: scale(1.05); }
.svc h3 { font-family: var(--fh); font-size: 1.25rem; font-weight: 700; color: #000; margin-bottom: 10px; }
.svc p { font-size: .84rem; color: #555; line-height: 1.75; margin-bottom: 20px; }
.svc-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.chip { font-size: .66rem; font-weight: 700; background: rgba(245,197,24,.12); color: #7a5e00; padding: 3px 10px; border-radius: 4px; border: 1px solid rgba(245,197,24,.28); }
.svc-arrow { font-size: .82rem; font-weight: 700; color: #000; display: inline-flex; align-items: center; gap: 5px; transition: gap .2s, color .2s; }
.svc:hover .svc-arrow { gap: 9px; color: var(--yd); }

/* ── PROCESS — alternating steps ────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: 2px; }
.step {
  display: grid; grid-template-columns: 80px 1fr;
  background: #fff; border-radius: var(--r);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.step:hover { transform: translateX(6px); box-shadow: -6px 0 0 var(--y), 0 8px 32px rgba(0,0,0,.15); }
.step-num {
  background: #000; display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 1.8rem; font-weight: 800; color: var(--y);
}
.step-body { padding: 28px 32px; }
.step-body h3 { font-family: var(--fh); font-size: 1.15rem; font-weight: 700; color: #000; margin-bottom: 6px; }
.step-body p { font-size: .84rem; color: #555; line-height: 1.7; }
.step-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 12px; }

/* ── RESULTS GRID ────────────────────────────────────────── */
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.result {
  background: #fff; border-radius: var(--rl); padding: 32px;
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.result::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--y);
}
.result:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.r-tag { font-size: .67rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: #999; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.r-tag::before { content: ''; width: 14px; height: 1px; background: var(--yd); }
.r-big { font-family: var(--fh); font-size: 3rem; font-weight: 800; color: #000; line-height: 1; margin-bottom: 5px; }
.r-big em { color: var(--yd); font-style: normal; }
.r-title { font-size: .88rem; font-weight: 600; color: #222; margin-bottom: 8px; }
.r-desc { font-size: .81rem; color: #666; line-height: 1.7; }
.r-divider { height: 1px; background: rgba(0,0,0,.08); margin: 16px 0; }
.r-ba { display: flex; justify-content: space-between; align-items: center; }
.r-ba-item span { font-size: .67rem; color: #aaa; text-transform: uppercase; letter-spacing: .5px; }
.r-ba-item strong { display: block; font-size: .88rem; font-weight: 700; color: #000; margin-top: 2px; }
.r-arrow { color: var(--yd); font-size: .9rem; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testi-big {
  background: #fff; border-radius: var(--rxl); padding: 52px;
  position: relative; overflow: hidden; margin-bottom: 22px;
  box-shadow: 0 8px 48px rgba(0,0,0,.15);
}
.testi-big::before {
  content: '\201C'; position: absolute; top: -28px; left: 36px;
  font-family: var(--fh); font-size: 16rem; color: rgba(245,197,24,.08); line-height: 1;
}
.tst-stars { color: var(--y); letter-spacing: 3px; font-size: .88rem; margin-bottom: 20px; }
.testi-big blockquote { font-family: var(--fh); font-size: 1.3rem; font-weight: 700; color: #111; line-height: 1.6; font-style: italic; max-width: 760px; margin-bottom: 28px; }
.tst-author { display: flex; align-items: center; gap: 14px; }
.tst-av { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg,var(--y),var(--yd)); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .88rem; color: #000; flex-shrink: 0; }
.tst-info strong { display: block; font-size: .88rem; font-weight: 700; color: #000; }
.tst-info span { font-size: .75rem; color: #777; }
.tst-badge { margin-left: auto; font-size: .67rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; background: rgba(245,197,24,.12); border: 1px solid rgba(245,197,24,.35); color: #7a5e00; padding: 5px 12px; border-radius: 6px; }

.tst-card { background: #fff; border-radius: var(--rl); padding: 28px; transition: transform .3s, box-shadow .3s; }
.tst-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.18); }
.tst-card .tst-stars { font-size: .76rem; margin-bottom: 12px; }
.tst-card blockquote { font-size: .84rem; color: #444; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.tst-card .tst-author { gap: 10px; }
.tst-card .tst-av { width: 38px; height: 38px; font-size: .76rem; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-wrap { display: flex; flex-direction: column; gap: 10px; }
.faq {
  background: #fff; border-radius: var(--r);
  overflow: hidden; cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  transition: box-shadow .3s, transform .2s;
}
.faq:hover { box-shadow: 0 6px 24px rgba(0,0,0,.15); transform: translateY(-1px); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; gap: 14px; border-left: 3px solid transparent; transition: border-color .2s; }
.faq.open .faq-q { border-left-color: var(--y); }
.faq-q h4 { font-size: .9rem; font-weight: 600; color: #000; line-height: 1.4; }
.faq-icon { color: var(--yd); font-size: 1.3rem; font-weight: 700; flex-shrink: 0; transition: transform .3s; }
.faq.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: .84rem; color: #555; line-height: 1.75; overflow: hidden; max-height: 0; padding: 0 24px; transition: max-height .38s ease, padding .38s ease; }
.faq.open .faq-a { max-height: 320px; padding: 0 24px 20px; }

/* ── TEAM CARDS ──────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.team-card { background: #fff; border-radius: var(--rl); overflow: hidden; transition: transform .3s, box-shadow .3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.tc-head { height: 200px; background: linear-gradient(135deg,#111,#1e1e1e); display: flex; align-items: center; justify-content: center; position: relative; }
.tc-head::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--y); }
.tc-initials { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg,var(--y),var(--yd)); display: flex; align-items: center; justify-content: center; font-family: var(--fh); font-size: 1.8rem; font-weight: 800; color: #000; }
.tc-body { padding: 22px; }
.tc-body h3 { font-family: var(--fh); font-size: 1.15rem; font-weight: 700; color: #000; margin-bottom: 3px; }
.tc-role { font-size: .7rem; font-weight: 700; color: var(--yd); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 10px; display: block; }
.tc-body p { font-size: .8rem; color: #555; line-height: 1.6; }
.tc-soc { display: flex; gap: 7px; margin-top: 14px; }
.tc-soc a { width: 28px; height: 28px; border-radius: 6px; background: rgba(0,0,0,.06); border: 1px solid rgba(0,0,0,.1); display: flex; align-items: center; justify-content: center; font-size: .66rem; font-weight: 700; color: #555; transition: background .2s, color .2s; }
.tc-soc a:hover { background: var(--y); color: #000; border-color: var(--y); }

/* ── VALUES ──────────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.val-card { background: #fff; border-radius: var(--rl); padding: 36px; transition: transform .3s, box-shadow .3s; }
.val-card:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(0,0,0,.2); }
.val-ic { width: 52px; height: 52px; background: rgba(245,197,24,.12); border: 1px solid rgba(245,197,24,.3); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px; }
.val-card h3 { font-family: var(--fh); font-size: 1.2rem; font-weight: 700; color: #000; margin-bottom: 8px; }
.val-card p { font-size: .84rem; color: #555; line-height: 1.72; }

/* ── COMPARISON TABLE ────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--rl); overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,.2); }
.compare-table th { background: #000; color: #fff; padding: 20px 24px; font-family: var(--fh); font-size: .95rem; font-weight: 700; text-align: left; }
.compare-table th:first-child { color: #888; font-size: .8rem; font-weight: 500; }
.compare-table th.highlight { background: var(--y); color: #000; }
.compare-table td { padding: 16px 24px; font-size: .86rem; color: #333; border-bottom: 1px solid rgba(0,0,0,.06); vertical-align: middle; }
.compare-table tr:last-child td { border: none; }
.compare-table tr:hover td { background: #FFFBEE; }
.compare-table td.feat { font-weight: 600; color: #000; }
.compare-table .yes { color: #16a34a; font-weight: 700; font-size: 1.1rem; }
.compare-table .no { color: #ccc; font-weight: 700; font-size: 1.1rem; }

/* ── CHECKLIST SECTION ───────────────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: 0; background: #fff; border-radius: var(--rl); overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.15); }
.chk-item { display: flex; gap: 16px; padding: 20px 28px; border-bottom: 1px solid rgba(0,0,0,.07); transition: background .15s; align-items: flex-start; }
.chk-item:last-child { border: none; }
.chk-item:hover { background: #FFFBEE; }
.chk-ic { width: 32px; height: 32px; flex-shrink: 0; background: rgba(245,197,24,.15); border: 1px solid rgba(245,197,24,.35); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--yd); font-weight: 700; font-size: .9rem; margin-top: 2px; }
.chk-content strong { display: block; font-size: .88rem; font-weight: 700; color: #000; margin-bottom: 3px; }
.chk-content p { font-size: .82rem; color: #555; line-height: 1.65; }

/* ── METRICS PANEL ───────────────────────────────────────── */
.metrics-panel {
  background: #fff; border-radius: var(--rl);
  overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,.15);
  position: sticky; top: 88px;
}
.mp-header { background: #000; padding: 18px 24px; border-bottom: 3px solid var(--y); }
.mp-header h4 { font-family: var(--fh); font-size: 1rem; font-weight: 700; color: #fff; }
.mp-header p { font-size: .74rem; color: #666; margin-top: 2px; }
.mp-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 24px; border-bottom: 1px solid rgba(0,0,0,.06); }
.mp-row:last-of-type { border: none; }
.mp-row span { font-size: .82rem; color: #666; }
.mp-row strong { font-size: .86rem; font-weight: 700; color: #000; }
.mp-row strong.g { color: #16a34a; }
.mp-row strong.y { color: var(--yd); }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-sec {
  background: #000; padding: 110px 7%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-sec::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 80% at 50% 50%, rgba(245,197,24,.09) 0%, transparent 70%);
}
.cta-sec > * { position: relative; z-index: 1; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: #000; border-top: 1px solid rgba(255,255,255,.07); padding: 72px 7% 32px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1.4fr; gap: 52px; margin-bottom: 52px; }
.f-brand { font-family: var(--fh); font-weight: 800; font-size: 1.5rem; color: #fff; display: block; margin-bottom: 14px; }
.f-brand em { color: var(--y); font-style: normal; }
.f-desc { font-size: .83rem; color: #444; line-height: 1.75; max-width: 240px; margin-bottom: 22px; }
.f-soc { display: flex; gap: 8px; }
.f-soc a { width: 34px; height: 34px; border-radius: 8px; background: #111; border: 1px solid #222; display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; color: #555; transition: background .2s, color .2s; }
.f-soc a:hover { background: var(--y); color: #000; border-color: var(--y); }
.f-col h5 { font-size: .7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.f-col li { margin-bottom: 10px; }
.f-col a { font-size: .82rem; color: #444; transition: color .2s, padding-left .15s; display: flex; align-items: center; gap: 5px; }
.f-col a:hover { color: var(--y); padding-left: 4px; }
.f-contact p { font-size: .82rem; color: #444; line-height: 1.6; margin-bottom: 12px; }
.f-contact strong { color: var(--y); font-size: .68rem; text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 1px; }
.footer-bar { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.05); font-size: .75rem; color: #333; flex-wrap: wrap; gap: 10px; }
.footer-links-row { display: flex; gap: 20px; }
.footer-links-row a { color: #333; transition: color .2s; }
.footer-links-row a:hover { color: var(--y); }

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  padding: 110px 7% 72px; background: #000;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 70% at 75% 50%, rgba(245,197,24,.07) 0%, transparent 60%);
}
.ph-inner { position: relative; z-index: 1; max-width: 840px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .75rem; color: #555; margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--y); }
.breadcrumb .sep { color: #333; }
.breadcrumb .cur { color: var(--y); }
.page-hero h1 { font-family: var(--fh); font-size: clamp(2.6rem,4.5vw,4rem); font-weight: 800; line-height: 1.08; letter-spacing: -1.5px; color: #fff; margin-bottom: 20px; }
.page-hero h1 em { color: var(--y); font-style: normal; }
.page-hero .ph-desc { font-size: .98rem; color: #777; line-height: 1.8; max-width: 640px; margin-bottom: 32px; }
.ph-stats { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.08); margin-top: 32px; }
.ph-stat strong { display: block; font-family: var(--fh); font-size: 2rem; font-weight: 800; color: var(--y); line-height: 1; }
.ph-stat span { font-size: .7rem; color: #555; text-transform: uppercase; letter-spacing: .5px; }

/* ── PORTFOLIO ───────────────────────────────────────────── */
.port-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 38px; }
.port-btn { background: #fff; border: 1px solid rgba(0,0,0,.12); color: #444; padding: 8px 20px; border-radius: 50px; font-size: .78rem; font-weight: 600; cursor: pointer; transition: all .2s; font-family: var(--fb); }
.port-btn:hover, .port-btn.active { background: var(--y); color: #000; border-color: var(--y); box-shadow: 0 4px 14px rgba(245,197,24,.3); }
.port-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.port-item { position: relative; border-radius: var(--rl); overflow: hidden; background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.2); transition: transform .3s, box-shadow .3s; cursor: pointer; }
.port-item:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.port-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.port-item:hover img { transform: scale(1.05); }
.port-overlay { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 30%,rgba(0,0,0,.93) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; opacity: 0; transition: opacity .3s; border-top: 3px solid transparent; transition: opacity .3s, border-top-color .3s; }
.port-item:hover .port-overlay { opacity: 1; border-top-color: var(--y); }
.port-overlay h4 { font-family: var(--fh); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.port-overlay span { font-size: .72rem; color: var(--y); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.97); z-index: 9999; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lb-img { max-height: 90vh; max-width: 88vw; object-fit: contain; border-radius: var(--r); }
.lb-close { position: absolute; top: 20px; right: 24px; color: #666; font-size: 1.8rem; cursor: pointer; transition: color .2s; background: none; border: none; font-family: var(--fb); }
.lb-close:hover { color: #fff; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #666; cursor: pointer; background: #111; border: 1px solid #222; border-radius: 8px; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; transition: background .2s, color .2s; font-family: var(--fb); }
.lb-nav:hover { background: var(--y); color: #000; }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.r { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.r.on { opacity: 1; transform: none; }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s} .d5{transition-delay:.5s}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media(max-width:1200px){
  .stats-strip{grid-template-columns:repeat(3,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr 1fr;gap:40px}
  .team-grid{grid-template-columns:repeat(2,1fr)}
  .hero{grid-template-columns:1fr;min-height:auto;padding:120px 7% 80px}
  .hero-card,.hero-mini-stats{display:none}
}
@media(max-width:992px){
  .cards-3{grid-template-columns:1fr 1fr}
  .values-grid{grid-template-columns:1fr 1fr}
  .results-grid{grid-template-columns:1fr 1fr}
  .nav-links,.nav-cta{display:none}
  .hamburger{display:flex}
  .port-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .sec{padding:72px 5%}
  .page-hero{padding:90px 5% 52px}
  .stats-strip{grid-template-columns:1fr 1fr}
  .testi-big{padding:30px}
  .testi-big blockquote{font-size:1rem}
  .team-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:600px){
  .cards-3,.cards-2,.results-grid{grid-template-columns:1fr}
  .port-grid{grid-template-columns:1fr}
  .stats-strip{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr}
  .topbar-left{display:none}
  .team-grid{grid-template-columns:1fr}
  .values-grid{grid-template-columns:1fr}
  .hero h1{font-size:2.8rem}
}

/* Mobile nav */
.nav-open .nav-links{display:flex;flex-direction:column;position:fixed;top:72px;left:0;right:0;background:#000;border-bottom:1px solid rgba(255,255,255,.08);padding:16px 0 24px;z-index:800;max-height:calc(100vh - 72px);overflow-y:auto}
.nav-open .nav-links>li>a{height:auto;line-height:1;padding:14px 7%;font-size:.9rem}
.nav-open .nav-cta{display:block;margin:12px 7%;text-align:center}
.nav-open .nav-dropdown{position:static;display:block;border:none;background:rgba(255,255,255,.04);box-shadow:none;border-radius:0}
.nav-open .nav-dropdown a{padding:10px 7% 10px 10%;color:#888;background:transparent}
.nav-open .nav-dropdown a:hover{color:#fff;background:rgba(245,197,24,.07)}
