/* ═══════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════ */
:root {
  --ink:      #07060a;
  --ink-1:    #0e0c13;
  --ink-2:    #181620;
  --ink-3:    #23202e;

  --g:        #c9a55a;
  --g-hi:     #e2c07a;
  --g-lo:     #8a6d35;
  --g-mist:   rgba(201,165,90,0.10);
  --g-glow:   rgba(201,165,90,0.22);
  --g-grad:   linear-gradient(135deg, #c9a55a 0%, #e2c07a 50%, #c9a55a 100%);
  --g-grad-b: linear-gradient(135deg, #e2c07a 0%, #c9a55a 100%);

  --chalk:    #f2efe9;
  --chalk-2:  #d8d4ca;
  --chalk-3:  #9e9a91;
  --chalk-4:  #635e56;

  --b:        rgba(255,255,255,0.06);
  --b-g:      rgba(201,165,90,0.20);
  --b-ghi:    rgba(226,192,122,0.35);

  --violet:   rgba(110,70,210,0.16);
  --teal:     rgba(30,190,180,0.09);

  --bg-grad:
    radial-gradient(ellipse 80% 60% at 60% 0%,   rgba(110,70,210,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 90% 20%,  rgba(110,70,210,0.10) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 5%  80%,  rgba(201,165,90,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 80% 90%,  rgba(30,190,180,0.07) 0%, transparent 50%),
    var(--ink-1);

  --font-h: 'Fraunces', Georgia, serif;
  --font-b: 'DM Sans', system-ui, -apple-system, sans-serif;

  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --max:     1280px;
  --pad:     clamp(24px, 5vw, 80px);
  --sv:      clamp(80px, 10vw, 136px);
  --r:       14px;
  --r-lg:    20px;
}

/* ═══════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--ink);
  color: var(--chalk);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
p, li { line-height: 1.78; }

/* ═══════════════════════════════════════════════
   SITE-WIDE GRADIENT BACKGROUND
═══════════════════════════════════════════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--bg-grad);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   SECTION SEPARATORS
═══════════════════════════════════════════════ */
.section::before,
.why-section::before,
.testi::before,
.about-section::before,
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,165,90,0.10) 20%,
    rgba(201,165,90,0.22) 50%,
    rgba(201,165,90,0.10) 80%,
    transparent 100%);
  pointer-events: none;
}

.section-alt { position: relative; }
.section-alt::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(201,165,90,0.028) 0%, transparent 40%, transparent 60%, rgba(201,165,90,0.018) 100%),
    rgba(255,255,255,0.016);
  pointer-events: none;
}
.section-alt::after {
  content: '';
  position: absolute;
  top: 0; left: 6%; right: 6%; height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(201,165,90,0.18) 35%,
    rgba(201,165,90,0.28) 50%,
    rgba(201,165,90,0.18) 65%,
    transparent);
  pointer-events: none;
  z-index: 2;
}
.section-alt > * { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-b);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--g);
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--g-grad);
  flex-shrink: 0;
}

.h1 {
  font-family: var(--font-h);
  font-size: clamp(38px, 5.8vw, 82px);
  font-weight: 900; line-height: 0.94;
  letter-spacing: -0.04em; color: var(--chalk);
  hyphens: auto;
}
.h1 em { font-style: italic; font-weight: 300; color: var(--g); }

.h2 {
  font-family: var(--font-h);
  font-size: clamp(28px, 3.6vw, 50px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.03em; color: var(--chalk);
}
.h2 em { font-style: italic; font-weight: 300; color: var(--g); }

.h3 {
  font-family: var(--font-h);
  font-size: 19px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--chalk); line-height: 1.2;
}

.body { font-size: 15px; font-weight: 300; color: var(--chalk-3); line-height: 1.8; }
.small { font-size: 12px; color: var(--chalk-4); line-height: 1.6; }

/* Gradient text — Why section */
.why-section .h2 em,
.why-section .h2 {
  background: linear-gradient(135deg, var(--chalk) 0%, rgba(201,165,90,0.85) 60%, var(--chalk) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why-section .h2 em {
  background: var(--g-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testi-q em {
  background: var(--g-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

/* ═══════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════ */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ═══════════════════════════════════════════════
   GOLD SHINE ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes goldPlateText {
  0%   { background-position: 150% 150%; }
  100% { background-position: -50% -50%; }
}

.g-text {
  background: linear-gradient(135deg,
    var(--g) 0%, var(--g) 30%, var(--g-hi) 42%,
    #fef3d0 50%, var(--g-hi) 58%, var(--g) 70%, var(--g) 100%);
  background-size: 300% 300%;
  background-position: 150% 150%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldPlateText 4.8s ease-in-out infinite;
}

@keyframes goldPlateBtn {
  0%   { transform: translateX(-180%) translateY(80%) rotateZ(-35deg); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateX(180%)  translateY(-80%) rotateZ(-35deg); opacity: 0; }
}

.btn-gold,
.btn-submit { overflow: hidden; isolation: isolate; }

.btn-gold::after,
.btn-submit::after {
  content: '';
  position: absolute; inset: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(90deg,
    transparent 0%, rgba(255,243,190,0.00) 30%, rgba(255,243,190,0.08) 42%,
    rgba(255,250,220,0.18) 50%, rgba(255,243,190,0.08) 58%,
    rgba(255,243,190,0.00) 70%, transparent 100%);
  transform: translateX(-180%) translateY(80%) rotateZ(-35deg);
  animation: goldPlateBtn 5.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  pointer-events: none;
  z-index: 1;
}

.btn-submit::after { animation-delay: 1.6s; }
.nav-links .nav-cta { position: relative; overflow: hidden; }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-b);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 15px 34px; border-radius: 4px;
  cursor: pointer; border: none;
  white-space: normal; text-align: center;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), filter 0.2s;
  position: relative; overflow: hidden;
}
.btn svg { flex-shrink: 0; transition: transform 0.2s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: scale(0.97); }

.btn-gold { background: var(--g-grad); color: var(--ink); }
.btn-gold::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, transparent 55%);
  pointer-events: none; z-index: 0;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(201,165,90,0.32), 0 4px 12px rgba(201,165,90,0.18);
  filter: brightness(1.08);
}

.btn-ghost {
  background: transparent;
  color: var(--chalk-2);
  border: 1px solid rgba(255,255,255,0.14);
}
.btn-ghost:hover { border-color: var(--b-g); color: var(--chalk); background: rgba(255,255,255,0.03); }

.btn-dark {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--chalk);
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }

/* ═══════════════════════════════════════════════
   SECTION UTILITIES
═══════════════════════════════════════════════ */
.section-scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--g));
  animation: scrollPulse 2.4s ease-in-out infinite;
}
.section-scroll-lbl {
  font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--chalk-4);
  font-family: var(--font-b);
}

.section { padding: var(--sv) var(--pad); }

.s-head {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px; margin-bottom: 72px;
}
.s-head .eyebrow { justify-content: center; }
.s-head .body { max-width: 520px; }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  background: rgba(7,6,10,0.82);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
}
.nav::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(201,165,90,0.12) 15%, rgba(201,165,90,0.35) 50%,
    rgba(201,165,90,0.12) 85%, transparent 100%);
}

.nav-logo {
  font-family: var(--font-h);
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.025em; color: var(--chalk);
  position: relative; z-index: 1;
}
.nav-logo .dot { color: var(--g); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400;
  color: var(--chalk-3); transition: color 0.15s;
}
.nav-links a:hover { color: var(--chalk); }
.nav-links .nav-cta {
  padding: 9px 22px;
  background: var(--g-grad);
  color: var(--ink);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 3px; white-space: nowrap;
  transition: filter 0.2s, transform 0.15s;
}
.nav-links .nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); color: var(--ink); }

/* ── Hamburger button (mobile only) ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--chalk-3);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s, width 0.2s;
  transform-origin: center;
}
.nav-burger:hover span { background: var(--chalk); }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile slide-down panel ── */
.nav-mobile {
  display: none;
  position: absolute;
  top: 64px; left: 0; right: 0;
  background: rgba(7,6,10,0.97);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  border-bottom: 1px solid rgba(201,165,90,0.15);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease);
}
.nav-mobile.open { max-height: 400px; }
.nav-mobile ul { list-style: none; padding: 8px 0 20px; margin: 0; }
.nav-mobile-link {
  display: block;
  padding: 13px var(--pad);
  font-size: 15px; font-weight: 400;
  color: var(--chalk-3);
  transition: color 0.15s, background 0.15s;
}
.nav-mobile-link:hover { color: var(--chalk); background: rgba(255,255,255,0.03); }
.nav-mobile-cta {
  display: inline-block;
  margin: 6px var(--pad) 0;
  padding: 10px 24px;
  background: var(--g-grad);
  color: var(--ink) !important;
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 3px;
}
.nav-mobile-cta:hover { filter: brightness(1.1); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 128px var(--pad) 96px;
  overflow: hidden;
}

.orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(88px); pointer-events: none;
  will-change: transform;
}
.orb-a {
  width: 60vw; height: 60vw; max-width: 860px; max-height: 860px;
  right: -18%; top: -22%;
  background: radial-gradient(circle, rgba(100,60,200,0.30) 0%, rgba(70,30,180,0.12) 40%, transparent 70%);
  animation: orbFloat 18s ease-in-out infinite;
}
.orb-b {
  width: 42vw; height: 42vw; max-width: 600px; max-height: 600px;
  right: 8%; top: 28%;
  background: radial-gradient(circle, rgba(30,185,175,0.16) 0%, rgba(20,155,148,0.07) 45%, transparent 70%);
  animation: orbFloat 24s ease-in-out infinite reverse;
}
.orb-c {
  width: 38vw; height: 38vw; max-width: 520px; max-height: 520px;
  left: -10%; bottom: -12%;
  background: radial-gradient(circle, rgba(201,165,90,0.18) 0%, rgba(160,120,55,0.07) 45%, transparent 70%);
  animation: orbFloat 20s ease-in-out infinite 4s;
}
.orb-d {
  width: 22vw; height: 22vw; max-width: 300px; max-height: 300px;
  right: 26%; top: 52%;
  background: radial-gradient(circle, rgba(220,80,110,0.11) 0%, transparent 70%);
  animation: orbFloat 15s ease-in-out infinite 8s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(2%, -3%) scale(1.02); }
  66%      { transform: translate(-1%, 2%) scale(0.98); }
}

.grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.36;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.13'/%3E%3C/svg%3E");
  background-size: 180px;
}
.vignette {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 38%, rgba(7,6,10,0.60) 100%);
}

.hero-inner {
  position: relative; z-index: 10;
  display: grid; grid-template-columns: 1fr 410px; gap: 72px; align-items: flex-end;
  animation: heroIn 1s var(--ease) both;
}
@keyframes heroIn { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:none; } }

.hero-left .eyebrow { margin-bottom: 28px; }
.hero-h1 { margin-bottom: 26px; }
.hero-sub {
  font-size: 16px; font-weight: 300; color: var(--chalk-3);
  line-height: 1.8; max-width: 500px; margin-bottom: 44px;
}
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--chalk-4); margin-top: 14px;
}
.hero-trust::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--g); flex-shrink: 0;
}

.hero-stats { display: flex; flex-direction: column; gap: 12px; }
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid var(--b);
  border-radius: var(--r); padding: 22px 26px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.stat-card:hover { border-color: var(--b-g); background: rgba(255,255,255,0.06); }
.stat-card::before {
  content: '';
  position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--g), transparent);
  opacity: 0.55;
}
.stat-num {
  font-family: var(--font-h);
  font-size: 40px; font-weight: 900; line-height: 1;
  letter-spacing: -0.04em; color: var(--chalk); margin-bottom: 5px;
}
.stat-num .hi {
  background: var(--g-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 13px; font-weight: 400; color: var(--chalk-3); line-height: 1.45; }
.stat-ctx   { font-size: 11px; font-weight: 300; color: var(--chalk-4); margin-top: 3px; }

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--g));
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.18} 55%{opacity:0.75} }
.scroll-lbl { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--chalk-4); }

/* ═══════════════════════════════════════════════
   LOGO STRIP
═══════════════════════════════════════════════ */
.pww {
  padding: 64px var(--pad);
  position: relative;
  border-top: 0.5px solid var(--b);
  border-bottom: 0.5px solid var(--b);
}
.pww::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--g-glow), transparent);
}
.pww-lbl {
  text-align: center; font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--chalk-4); margin-bottom: 36px;
}
.logo-marquee {
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: logoScroll 24s linear infinite;
}
.logo-track:hover { animation-play-state: paused; }
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  flex-shrink: 0;
  width: 220px; height: 152px;
  border: 0.5px solid var(--b); border-radius: 12px;
  background: rgba(255,255,255,0.022);
  display: flex; align-items: center; justify-content: center;
  padding: 20px 24px;
  transition: border-color 0.4s, background 0.4s;
}
.logo-item img {
  max-height: 80px; max-width: 170px; width: auto; object-fit: contain;
  opacity: calc(0.2 + var(--logo-prox, 0) * 0.65);
  filter: grayscale(calc(1 - var(--logo-prox, 0))) brightness(calc(1.8 - var(--logo-prox, 0) * 0.5));
  transition: opacity 1.2s ease, filter 1.2s ease;
}
.logo-item:hover { border-color: var(--b-g); background: var(--g-mist); }
.logo-item:hover img { opacity: 0.85; filter: grayscale(0) brightness(1.3); transition-duration: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
}

/* ═══════════════════════════════════════════════
   WHO WE WORK WITH
═══════════════════════════════════════════════ */
.who-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--b);
  border-radius: var(--r-lg); overflow: hidden;
  border: 0.5px solid var(--b);
  max-width: var(--max); margin: 0 auto;
}
.who-card {
  background: rgba(14,12,19,0.95);
  padding: 36px 28px; position: relative; overflow: hidden;
  transition: background 0.3s;
}
.who-card:hover { background: rgba(255,255,255,0.03); }
.who-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--g-grad); opacity: 0; transition: opacity 0.3s;
}
.who-card:hover::after { opacity: 1; }
.w-icon {
  width: 46px; height: 46px; border-radius: 12px;
  border: 0.5px solid var(--b-g); background: var(--g-mist);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--g);
}
.who-card .h3 { margin-bottom: 10px; }
.who-card .body { font-size: 13px; }

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; max-width: var(--max); margin: 0 auto 56px;
}
.svc-card {
  background: rgba(14,12,19,0.8);
  border: 0.5px solid var(--b); border-radius: var(--r-lg);
  padding: 40px 32px 36px; position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.svc-card:hover { border-color: var(--b-g); transform: translateY(-5px); }
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--g-grad); opacity: 0; transition: opacity 0.3s;
}
.svc-card:hover::before { opacity: 0.7; }
.svc-card::after {
  content: attr(data-num);
  position: absolute; bottom: -18px; right: 18px;
  font-family: var(--font-h); font-size: 140px; font-weight: 900;
  color: rgba(255,255,255,0.018); line-height: 1; pointer-events: none;
  transition: color 0.3s;
}
.svc-card:hover::after { color: rgba(201,165,90,0.04); }

.svc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  border: 0.5px solid var(--b-g); background: var(--g-mist);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; color: var(--g);
}
.svc-card .h3 { font-size: 22px; margin-bottom: 20px; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.svc-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--chalk-3); font-weight: 300; line-height: 1.55;
}
.svc-list li::before {
  content: ''; flex-shrink: 0; margin-top: 7px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--g);
}
.s-cta { display: flex; justify-content: center; }

/* ═══════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════ */
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: var(--max); margin: 0 auto;
}
.p-card {
  background: rgba(14,12,19,0.8);
  border: 0.5px solid var(--b);
  border-radius: var(--r); padding: 32px 26px;
  display: flex; flex-direction: column; align-items: flex-start;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.p-card:hover { border-color: var(--b-g); background: rgba(255,255,255,0.025); }

.p-card.p-partner {
  border-color: var(--b-g);
  background: linear-gradient(135deg, rgba(201,165,90,0.07) 0%, rgba(201,165,90,0.02) 100%);
}
.p-card.p-partner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--g-grad); opacity: 0.6;
}

.p-num-badge {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 0.5px solid var(--b-g); background: var(--g-mist);
  margin-bottom: 20px;
  font-family: var(--font-h); font-size: 16px; font-weight: 900;
  color: var(--g); position: relative;
}
.p-card.p-partner .p-num-badge {
  background: linear-gradient(135deg, rgba(201,165,90,0.18) 0%, rgba(201,165,90,0.06) 100%);
  border-color: var(--b-ghi);
  box-shadow: 0 0 20px rgba(201,165,90,0.15);
}

.p-icon { margin-bottom: 16px; color: var(--chalk-4); }
.p-card.p-partner .p-icon { color: var(--g); }
.p-card .h3 { font-size: 16px; margin-bottom: 8px; }
.p-card .body { font-size: 13px; }

@keyframes partnerPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.18); opacity: 0.75; }
}
.p-card.p-partner .p-icon svg {
  animation: partnerPulse 2.8s ease-in-out infinite;
  transform-origin: center;
}

.p-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--g-grad); color: var(--ink);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
  margin-bottom: 14px;
}

.process-cta {
  max-width: var(--max); margin: 48px auto 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; text-align: center; width: 100%;
}
.process-cta p { font-size: 14px; color: var(--chalk-3); font-style: italic; }

/* ═══════════════════════════════════════════════
   MEDIA CARDS
═══════════════════════════════════════════════ */
.media-3 {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 14px; max-width: var(--max); margin: 0 auto 14px;
}
.media-2 {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 14px; max-width: calc(var(--max) * 0.666); margin: 0 auto;
}
.m-card {
  background: rgba(14,12,19,0.8);
  border: 0.5px solid var(--b); border-radius: var(--r); padding: 28px 24px;
  transition: border-color 0.3s, background 0.3s;
}
.m-card:hover { border-color: var(--b-g); background: rgba(255,255,255,0.03); }
.m-icon { margin-bottom: 16px; color: var(--g); }
.m-card .h3 { font-size: 16px; margin-bottom: 8px; }
.m-card .body { font-size: 13px; }

/* ═══════════════════════════════════════════════
   LONG TERM
═══════════════════════════════════════════════ */
.lt-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 14px; max-width: var(--max); margin: 0 auto;
}
.lt-card {
  border: 0.5px solid var(--b); border-radius: var(--r);
  padding: 32px 28px;
  background: rgba(14,12,19,0.7);
  position: relative; overflow: hidden; transition: border-color 0.3s;
}
.lt-card:hover { border-color: var(--b-g); }
.lt-card::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 2px;
  background: var(--g-grad); opacity: 0; transition: opacity 0.3s;
}
.lt-card:hover::before { opacity: 1; }
.lt-icon { margin-bottom: 18px; color: var(--g); }
.lt-card .h3 { margin-bottom: 10px; }
.lt-card .body { font-size: 13px; }

/* ═══════════════════════════════════════════════
   WHY SECTION
═══════════════════════════════════════════════ */
.why-section { padding: var(--sv) var(--pad); position: relative; overflow: hidden; }
.why-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 65% at 78% 50%, rgba(201,165,90,0.06) 0%, transparent 60%),
              rgba(255,255,255,0.01);
}
.why-geo { position: absolute; right: -56px; top: 50%; transform: translateY(-50%); opacity: 0.075; pointer-events: none; }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1; max-width: var(--max); margin: 0 auto;
}
.why-left .eyebrow { margin-bottom: 22px; }
.why-left .h2 { margin-bottom: 20px; }
.why-left .body { font-size: 15px; }

.why-list { display: flex; flex-direction: column; }
.why-row {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 0; border-bottom: 0.5px solid var(--b);
  transition: border-color 0.2s;
}
.why-row:last-child { border-bottom: none; }
.why-row:hover { border-bottom-color: var(--b-g); }
.why-row-ico {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px;
  background: var(--g-mist); border: 0.5px solid var(--b-g);
  display: flex; align-items: center; justify-content: center; color: var(--g);
}
.why-text .h3 { font-size: 14px; margin-bottom: 3px; }
.why-text .body { font-size: 13px; }

/* ═══════════════════════════════════════════════
   TESTIMONIAL
═══════════════════════════════════════════════ */
.testi {
  padding: 80px var(--pad);
  border-top: 0.5px solid var(--b); border-bottom: 0.5px solid var(--b);
  position: relative;
}
.testi::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--g-glow), transparent);
}
.testi-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.testi-q {
  font-family: var(--font-h);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300; font-style: italic;
  color: var(--chalk-2); line-height: 1.65; margin-bottom: 28px;
}
.testi-q em { font-style: normal; font-weight: 500; color: var(--g); }
.testi-meta { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testi-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--g-mist); border: 1px solid var(--b-g);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 14px; font-weight: 700; color: var(--g);
}
.testi-name { font-size: 13px; font-weight: 500; color: var(--chalk-2); }
.testi-role { font-size: 12px; color: var(--chalk-4); }

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about-section { padding: var(--sv) var(--pad); text-align: center; }
.about-inner { max-width: 740px; margin: 0 auto; }
.about-section .eyebrow { justify-content: center; margin-bottom: 28px; }
.about-section .h2 { margin-bottom: 28px; }
.about-section .body { font-size: 16px; }

/* ═══════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════ */
.cta-band {
  position: relative; overflow: hidden;
  padding: 88px var(--pad); text-align: center;
  background: linear-gradient(135deg, #c9a55a 0%, #e2c07a 45%, #c9a55a 100%);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(255,255,255,0.15), transparent 65%);
}
.cta-band::after {
  content: '100+';
  position: absolute; right: 3%; top: 50%; transform: translateY(-50%);
  font-family: var(--font-h); font-size: clamp(80px,15vw,220px);
  font-weight: 900; color: rgba(7,6,10,0.07);
  letter-spacing: -0.05em; pointer-events: none; line-height: 1;
}
.cta-inner { position: relative; z-index: 1; }
.cta-band .h2 { color: var(--ink); margin-bottom: 14px; }
.cta-band .h2 em { color: rgba(7,6,10,0.50); font-style: italic; font-weight: 300; }
.cta-body { font-size: 16px; color: rgba(7,6,10,0.60); margin-bottom: 36px; }

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-section { padding: var(--sv) var(--pad); position: relative; overflow: hidden; }
.contact-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 50% at 50% 0%, rgba(201,165,90,0.06), transparent 55%);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start;
  position: relative; z-index: 1; max-width: var(--max); margin: 0 auto;
}
.c-left .eyebrow { margin-bottom: 22px; }
.c-left .h2 { margin-bottom: 18px; }
.c-left .body { font-size: 15px; margin-bottom: 36px; }
.c-promises { display: flex; flex-direction: column; gap: 14px; }
.c-item { display: flex; align-items: center; gap: 12px; }
.c-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--g); flex-shrink: 0; }
.c-item span { font-size: 13px; color: var(--chalk-3); }

.c-form { display: flex; flex-direction: column; gap: 14px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-g { display: flex; flex-direction: column; gap: 7px; }
.f-g label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--chalk-4);
}
.c-form input, .c-form textarea, .c-form select {
  background: rgba(255,255,255,0.042);
  border: 0.5px solid rgba(255,255,255,0.10); border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-b); font-size: 14px; font-weight: 300;
  color: var(--chalk); outline: none; -webkit-appearance: none;
  transition: border-color 0.2s, background 0.2s; min-width: 0;
}
.c-form input::placeholder, .c-form textarea::placeholder { color: rgba(255,255,255,0.20); }
.c-form input:focus, .c-form textarea:focus, .c-form select:focus {
  border-color: rgba(201,165,90,0.45);
  background: rgba(255,255,255,0.06);
}
.c-form select { color: rgba(255,255,255,0.40); cursor: pointer; }
.c-form select option { background: var(--ink-2); color: var(--chalk); }
.c-form textarea { min-height: 130px; resize: none; }

.submit-wrap { display: flex; flex-direction: column; gap: 10px; }
.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; background: var(--g-grad); color: var(--ink);
  font-family: var(--font-b); font-size: 12px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 16px; border-radius: 4px;
  border: none; cursor: pointer; position: relative; overflow: hidden;
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-submit::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, transparent 55%);
  pointer-events: none; z-index: 0;
}
.btn-submit:hover {
  filter: brightness(1.1); transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(201,165,90,0.25);
}
.trust-line {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 11px; color: var(--chalk-4);
}
.trust-line::before, .trust-line::after { content:''; flex:1; height:0.5px; background:var(--b); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  border-top: 0.5px solid var(--b);
  padding: 44px var(--pad);
  display: grid; grid-template-columns: 220px 1fr auto;
  align-items: center; gap: 32px;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--g-glow), transparent);
}
.f-logo {
  font-family: var(--font-h); font-size: 17px; font-weight: 700;
  letter-spacing: -0.025em; color: var(--chalk);
  display: block; margin-bottom: 4px;
}
.f-logo .dot { color: var(--g); }
.f-tag { font-size: 12px; color: var(--chalk-4); }
.f-links { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.f-links a { font-size: 12px; color: var(--chalk-4); transition: color 0.15s; }
.f-links a:hover { color: var(--chalk); }
.f-copy { text-align: right; font-size: 11px; color: rgba(255,255,255,0.18); }

/* ═══════════════════════════════════════════════
   LANGUAGE SWITCHER
═══════════════════════════════════════════════ */
.lang-switch { position: relative; margin-left: 12px; flex-shrink: 0; }
.lang-current {
  display: flex; align-items: center; gap: 5px;
  background: none; border: 0.5px solid var(--b); cursor: pointer;
  font-family: var(--font-b); font-size: 11px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--chalk-3); padding: 6px 10px; border-radius: 4px;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap; line-height: 1;
}
.lang-current:hover { color: var(--chalk); border-color: var(--b-g); }
.lang-current svg { transition: transform 0.2s; flex-shrink: 0; }
.lang-switch.open .lang-current svg { transform: rotate(180deg); }
.lang-current.active-glow { color: var(--g); border-color: var(--b-g); }

.lang-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: rgba(14,12,19,0.97);
  border: 0.5px solid var(--b-g); border-radius: 6px;
  overflow: hidden; min-width: 80px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  opacity: 0; transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease);
  z-index: 999;
}
.lang-switch.open .lang-dropdown { opacity: 1; transform: translateY(0); pointer-events: auto; }
.lang-opt {
  display: block; width: 100%; padding: 9px 14px;
  font-family: var(--font-b); font-size: 11px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--chalk-3); background: none; border: none; cursor: pointer;
  text-align: left; transition: color 0.15s, background 0.15s; white-space: nowrap;
}
.lang-opt:hover { color: var(--chalk); background: rgba(255,255,255,0.05); }
.lang-opt.active { color: var(--g); }
.lang-opt + .lang-opt { border-top: 0.5px solid var(--b); }

/* i18n content visibility */
[data-lang] { display: none; }
.lang-en [data-lang="en"],
.lang-pl [data-lang="pl"],
.lang-es [data-lang="es"] { display: revert; }
span[data-lang], em[data-lang], a[data-lang] { display: none; }
.lang-en span[data-lang="en"],
.lang-en em[data-lang="en"],
.lang-en a[data-lang="en"],
.lang-pl span[data-lang="pl"],
.lang-pl em[data-lang="pl"],
.lang-pl a[data-lang="pl"],
.lang-es span[data-lang="es"],
.lang-es em[data-lang="es"],
.lang-es a[data-lang="es"] { display: inline; }

.lang-note {
  font-size: 12px; color: var(--chalk-4); text-align: center;
  padding: 10px 14px; border: 0.5px solid var(--b-g); border-radius: 7px;
  background: var(--g-mist); line-height: 1.6; margin-top: 4px;
}
.lang-note strong { color: var(--g); font-weight: 600; }

.gold-link {
  color: var(--g);
  border-bottom: 1px solid rgba(201,165,90,0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.gold-link:hover { border-color: rgba(201,165,90,0.8); }

/* ═══════════════════════════════════════════════
   VIDEO SECTION
═══════════════════════════════════════════════ */
.video-section {
  padding: 72px var(--pad);
  border-top: 0.5px solid var(--b);
  border-bottom: 0.5px solid var(--b);
  position: relative;
}
.video-section::before {
  content: '';
  position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--g-glow), transparent);
}
.video-wrap { max-width: 860px; margin: 0 auto; }
.video-head { text-align: center; margin-bottom: 36px; }
.video-head .eyebrow { justify-content: center; margin-bottom: 14px; }
.video-thumb {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--ink-2); border: 0.5px solid var(--b-g); cursor: pointer;
}
.video-thumb::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(110,70,210,0.14) 0%, transparent 60%),
    linear-gradient(135deg, rgba(201,165,90,0.06) 0%, transparent 60%);
}
.video-thumb-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
}
.play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--g-grad);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(201,165,90,0.35);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
}
.play-btn::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.video-thumb:hover .play-btn {
  transform: scale(1.10);
  box-shadow: 0 12px 44px rgba(201,165,90,0.50);
}
.play-icon {
  width: 0; height: 0; border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--ink);
  margin-left: 3px; position: relative; z-index: 1;
}
.video-label {
  font-family: var(--font-h); font-size: 13px; font-weight: 300;
  color: var(--chalk-3); letter-spacing: 0.02em;
}
.video-yt-lbl {
  position: absolute; bottom: 16px; right: 16px;
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--chalk-4);
}

/* ═══════════════════════════════════════════════
   GATED PDF
═══════════════════════════════════════════════ */
.pdf-section { padding: var(--sv) var(--pad); position: relative; overflow: hidden; }
.pdf-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,165,90,0.055) 0%, transparent 65%);
}
.pdf-inner {
  max-width: 860px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}
.pdf-book { position: relative; display: flex; align-items: center; justify-content: center; }
.pdf-cover {
  width: 200px; aspect-ratio: 5/7;
  background: linear-gradient(145deg, var(--ink-2) 0%, var(--ink-3) 100%);
  border-radius: 4px 12px 12px 4px;
  border: 0.5px solid var(--b-g);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; padding: 24px;
  box-shadow: -8px 8px 32px rgba(0,0,0,0.5), 0 4px 16px rgba(201,165,90,0.12);
  position: relative; overflow: hidden;
}
.pdf-cover::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,165,90,0.08) 0%, transparent 50%);
}
.pdf-cover::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 10px;
  background: linear-gradient(to right, rgba(201,165,90,0.15), transparent);
}
.pdf-cover-icon { color: var(--g); position: relative; z-index: 1; }
.pdf-cover-title {
  font-family: var(--font-h); font-size: 11px; font-weight: 700;
  color: var(--chalk-2); text-align: center; line-height: 1.4;
  position: relative; z-index: 1;
}
.pdf-cover-sub {
  font-size: 9px; font-weight: 400; color: var(--chalk-4); text-align: center;
  letter-spacing: 0.06em; text-transform: uppercase;
  position: relative; z-index: 1;
}
.pdf-glow {
  position: absolute; width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,165,90,0.15), transparent 70%);
  bottom: -40px; right: -20px; pointer-events: none;
}
.pdf-text .eyebrow { margin-bottom: 18px; }
.pdf-text .h2 { margin-bottom: 16px; }
.pdf-text .body { margin-bottom: 28px; font-size: 15px; }
.pdf-points { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pdf-points li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--chalk-3); font-weight: 300;
}
.pdf-points li::before {
  content: ''; flex-shrink: 0; margin-top: 7px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--g);
}

.pdf-popup-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(7,6,10,0.80);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.pdf-popup-overlay.open { opacity: 1; pointer-events: auto; }
.pdf-popup {
  background: var(--ink-1); border: 0.5px solid var(--b-g);
  border-radius: var(--r-lg); padding: 44px 40px;
  max-width: 440px; width: 90%; position: relative;
  transform: translateY(16px); transition: transform 0.25s var(--ease);
}
.pdf-popup-overlay.open .pdf-popup { transform: translateY(0); }
.pdf-popup::before {
  content: ''; position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--g), transparent); opacity: 0.5;
}
.pdf-popup-close {
  position: absolute; top: 14px; right: 14px;
  background: none; border: none; cursor: pointer;
  color: var(--chalk-4); font-size: 18px; line-height: 1;
  padding: 6px; border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.pdf-popup-close:hover { color: var(--chalk); background: rgba(255,255,255,0.05); }
.pdf-popup-title {
  font-family: var(--font-h); font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--chalk); margin-bottom: 8px; line-height: 1.2;
}
.pdf-popup-sub { font-size: 13px; color: var(--chalk-3); margin-bottom: 24px; line-height: 1.6; }
.pdf-email-form { display: flex; flex-direction: column; gap: 12px; }
.pdf-email-form input[type="email"] {
  background: rgba(255,255,255,0.042);
  border: 0.5px solid rgba(255,255,255,0.10);
  border-radius: 7px; padding: 13px 16px;
  font-family: var(--font-b); font-size: 14px; font-weight: 300;
  color: var(--chalk); outline: none; transition: border-color 0.2s;
}
.pdf-email-form input:focus { border-color: rgba(201,165,90,0.45); }
.pdf-email-form input::placeholder { color: rgba(255,255,255,0.22); }
.btn-pdf-submit {
  background: var(--g-grad); color: var(--ink);
  font-family: var(--font-b); font-size: 12px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 14px; border-radius: 4px;
  border: none; cursor: pointer; position: relative; overflow: hidden;
  transition: filter 0.2s, transform 0.2s;
}
.btn-pdf-submit:hover { filter: brightness(1.1); transform: translateY(-1px); }
.pdf-privacy { font-size: 11px; color: var(--chalk-4); text-align: center; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1 1 200px; }
  .who-grid { grid-template-columns: repeat(2,1fr); }
  .svc-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 56px; }
  .why-geo { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer { grid-template-columns: 1fr; text-align: center; }
  .f-copy { text-align: center; }
  .f-links { justify-content: center; }
}
@media (max-width: 720px) {
  :root { --pad: 20px; --sv: 72px; }
  .who-grid { grid-template-columns: 1fr; }
  .media-3, .media-2 { grid-template-columns: 1fr; max-width: 100%; }
  .lt-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero { justify-content: flex-start; padding-top: 100px; padding-bottom: 60px; }
  .hero-stats { display: none; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { display: block; }
}
@media (max-width: 860px) {
  .pdf-inner { grid-template-columns: 1fr; gap: 40px; }
  .pdf-book { display: none; }
  .video-section { padding: 56px var(--pad); }
}
