/* ══════════════════════════════════════════════
   PODIUM — Premium Layer (geil edition)
   ══════════════════════════════════════════════ */

/* ── GRAIN TEXTURE ── */
html::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: multiply;
}

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 10001;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .1s linear;
}

/* ── CUSTOM CURSOR — removed (caused mouse lag) ── */
a, button, [role=button] { cursor: pointer; }

/* ── HERO V2 ── */
.hero-v2 {
  position: relative;
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--bg);
}
.hero-v2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-v2-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
  z-index: 0;
}
.hero-v2-grid, .hero-v2-glow, .hero-v2-glow-2 { z-index: 1; position: relative; }
.hero-v2-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,148,58,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,148,58,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 80%);
}
.hero-v2-glow {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(196,148,58,.07) 0%, transparent 65%);
  filter: blur(40px);
}
.hero-v2-glow-2 {
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(11,11,10,.04) 0%, transparent 70%);
}

.hero-v2-content {
  position: relative;
  z-index: 2;
  padding: 0 0 clamp(3.5rem, 6vw, 6rem);
}
.hero-v2-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}
.hero-v2-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 9vw, 10.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -.03em;
  color: var(--ink);
}
.hero-v2-headline .line { display: block; overflow: hidden; }
.hero-v2-headline .word { display: inline-block; }
.hero-v2-headline em { font-style: italic; color: var(--gold); }
.hero-v2-headline .thin { font-weight: 300; }

.hero-v2-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 0.5rem;
  min-width: 220px;
  max-width: 280px;
  flex-shrink: 0;
}
.hero-v2-sidebar p {
  font-size: .9375rem;
  color: var(--ink-muted);
  line-height: 1.65;
}
.hero-v2-ctas { display: flex; gap: .75rem; flex-wrap: wrap; }

.hero-v2-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-v2-stats { display: flex; gap: clamp(2rem, 4vw, 4rem); flex-wrap: wrap; }
.hero-v2-stat { display: flex; flex-direction: column; gap: .2rem; }
.hero-v2-stat strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.03em;
}
.hero-v2-stat strong .plus { color: var(--gold); }
.hero-v2-stat span { font-size: .8125rem; color: var(--ink-subtle); font-weight: 500; }

.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: .5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--ink-muted);
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(8px);
}
.hero-v2-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.4);
  animation: pulse-green 2s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  50%      { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
}

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .8125rem;
  color: var(--ink-subtle);
  font-weight: 500;
}
.scroll-line {
  width: 32px;
  height: 1px;
  background: var(--ink-subtle);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scroll-line-anim 2s ease-in-out infinite;
}
@keyframes scroll-line-anim {
  0%   { left: -100%; }
  50%  { left: 0; }
  100% { left: 100%; }
}

/* ── MARQUEE V2 ── */
.marquee-v2 {
  padding: 2rem 0;
  background: var(--bg-dark);
  overflow: hidden;
}
.marquee-v2-track {
  display: flex;
  animation: marquee-scroll 24s linear infinite;
  width: max-content;
}
.marquee-v2-track:hover { animation-play-state: paused; }
.marquee-v2-item {
  flex-shrink: 0;
  padding: 0 2.5rem;
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  transition: color .3s;
}
.marquee-v2-item:hover { color: rgba(255,255,255,.8); }
.marquee-v2-item::after {
  content: '×';
  color: rgba(196,148,58,.4);
  font-size: 1rem;
}

/* ── SERVICES ACCORDION ── */
.services-acc {
  border-top: 1px solid var(--border);
}
.service-acc-item {
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.service-acc-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.service-acc-item.open::before,
.service-acc-item:hover::before { transform: scaleY(1); }

.service-acc-header {
  display: grid;
  grid-template-columns: 5rem 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 0 1.75rem 1.5rem;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transition: background var(--transition);
}
.service-acc-header:hover { background: var(--bg-surface); }
.service-acc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  letter-spacing: -.04em;
  transition: color .3s;
}
.service-acc-item.open .service-acc-num,
.service-acc-item:hover .service-acc-num { color: var(--gold); }
.service-acc-title {
  font-size: clamp(1.125rem, 1.75vw, 1.5rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}
.service-acc-cat {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  justify-self: end;
}
.service-acc-arrow {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--ink-muted);
  transition: transform .4s cubic-bezier(.4,0,.2,1), background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.service-acc-item.open .service-acc-arrow {
  transform: rotate(45deg);
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.service-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.4,0,.2,1);
}
.service-acc-item.open .service-acc-body { max-height: 400px; }
.service-acc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 0 0 2rem 1.5rem;
  align-items: start;
}
.service-acc-inner p { font-size: .9375rem; color: var(--ink-muted); line-height: 1.7; }
.service-acc-features { display: flex; flex-direction: column; gap: .5rem; }
.service-acc-feature {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .875rem;
  color: var(--ink-muted);
}
.service-acc-feature::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── EDITORIAL STATS ── */
.stat-editorial {
  background: var(--bg-dark);
  padding: clamp(5rem, 10vw, 10rem) 0;
  overflow: hidden;
}
.stat-editorial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.stat-editorial-item {
  padding: clamp(3rem, 5vw, 5rem);
  border-right: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative;
  overflow: hidden;
}
.stat-editorial-item:nth-child(even) { border-right: none; }
.stat-editorial-item:nth-child(3),
.stat-editorial-item:nth-child(4) { border-bottom: none; }
.stat-editorial-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(196,148,58,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}
.stat-editorial-item:hover::before { opacity: 1; }
.stat-editorial-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 10vw, 12rem);
  font-weight: 700;
  color: #fff;
  line-height: .9;
  letter-spacing: -.04em;
  display: flex;
  align-items: flex-start;
  gap: .125em;
}
.stat-editorial-num .suffix {
  font-size: .35em;
  color: var(--gold);
  line-height: 1.4;
  align-self: flex-start;
  margin-top: .2em;
}
.stat-editorial-label {
  font-size: .9375rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: .625rem;
}
.stat-editorial-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── PULL QUOTE ── */
.pull-quote {
  background: var(--bg-dark);
  padding: clamp(5rem, 8vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.2em;
  left: clamp(1rem, 4vw, 4rem);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(12rem, 25vw, 28rem);
  font-weight: 700;
  color: rgba(196,148,58,.07);
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
}
.pull-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3.5vw, 4rem);
  font-weight: 600;
  font-style: italic;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -.02em;
  max-width: 900px;
  position: relative;
}
.pull-quote blockquote em { color: var(--gold); font-style: italic; }
.pull-quote cite {
  display: block;
  margin-top: 2rem;
  font-style: normal;
  font-size: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.pull-quote cite::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── CASES HORIZONTAL SCROLL ── */
.cases-hs-section {
  overflow: hidden;
  background: var(--bg-surface);
  padding: clamp(4rem, 7vw, 7rem) 0;
}
.cases-hs-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.cases-hs-track {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.cases-hs-track:active { cursor: grabbing; }
.cases-hs-inner {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}
.case-hs-card {
  width: clamp(300px, 38vw, 500px);
  flex-shrink: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-dark);
  position: relative;
  transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s;
}
.case-hs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,.2);
}
.case-hs-img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: #1A1A18;
}
.case-hs-img .img-placeholder { height: 100%; }
.case-hs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,10,.9) 0%, rgba(11,11,10,.3) 60%, transparent 100%);
}
.case-hs-body {
  padding: 1.75rem;
}
.case-hs-tag {
  display: inline-flex;
  padding: .2rem .625rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: .875rem;
}
.case-hs-client {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .375rem;
}
.case-hs-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 1.25rem;
}
.case-hs-metrics {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.case-hs-metric strong { font-size: 1.125rem; font-weight: 700; color: #fff; }
.case-hs-metric span  { font-size: .75rem; color: rgba(255,255,255,.4); display: block; }

/* drag indicator */
.cases-hs-drag {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .8125rem;
  color: var(--ink-subtle);
  margin-top: 1.5rem;
}
.drag-icon { font-size: 1.125rem; }

/* ── TESTIMONIAL MARQUEE ── */
.testi-marquee {
  padding: clamp(4rem, 6vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-white);
}
.testi-marquee-track {
  display: flex;
  gap: 1.5rem;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
}
.testi-marquee-track:hover { animation-play-state: paused; }
.testi-card {
  flex-shrink: 0;
  width: 380px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); border-color: rgba(196,148,58,.3); }
.testi-stars { color: var(--gold); font-size: .875rem; letter-spacing: .15em; }
.testi-quote { font-size: .9375rem; color: var(--ink-muted); line-height: 1.7; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-surface);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  font-weight: 700;
  color: var(--gold);
}
.testi-name  { font-size: .9375rem; font-weight: 600; color: var(--ink); }
.testi-role  { font-size: .8125rem; color: var(--ink-subtle); }

/* ── HOW IT WORKS V2 ── */
.how-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.how-v2-step {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--transition);
}
.how-v2-step:last-child { border-right: none; }
.how-v2-step:hover { background: var(--bg-white); }
.how-v2-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 1.5rem;
  transition: color .3s;
}
.how-v2-step:hover .how-v2-num { color: rgba(196,148,58,.25); }
.how-v2-step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .75rem;
}
.how-v2-step p { font-size: .9375rem; color: var(--ink-muted); line-height: 1.65; }
.how-v2-line {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.25rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.how-v2-step:hover .how-v2-line,
.how-v2-step.visible .how-v2-line { transform: scaleX(1); }

/* ── VIDEO REEL V2 ── */
.reel-v2 {
  position: relative;
  overflow: hidden;
}
.reel-v2-box {
  width: 100%;
  aspect-ratio: 21/9;
  position: relative;
  overflow: hidden;
  background: #0D0D0B;
}
.reel-v2-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111110 0%, #1C1C18 50%, #111110 100%);
  background-blend-mode: multiply;
}
.reel-v2-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.reel-v2-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.reel-v2-glow, .reel-v2-overlay { z-index: 2; }
.reel-v2-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(196,148,58,.08) 0%, transparent 70%);
}
.reel-v2-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-v2-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.reel-v2-play {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  position: relative;
}
.reel-v2-play::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(196,148,58,.2);
  animation: reel-pulse 2.5s ease infinite;
}
@keyframes reel-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0; transform: scale(1.25); }
}
.reel-v2-play:hover {
  background: rgba(196,148,58,.15);
  border-color: var(--gold);
  transform: scale(1.06);
}
.reel-v2-play svg { fill: #fff; margin-left: 4px; }
.reel-v2-label {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  letter-spacing: .06em;
}

/* ── IMAGE MOSAIC ── */
.img-mosaic-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--bg);
}
.img-mosaic-header {
  margin-bottom: 2.5rem;
}
.img-mosaic-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-top: .5rem;
}
.img-mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 360px 220px;
  gap: 14px;
}
.img-mosaic-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.img-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  display: block;
}
.img-mosaic-item:hover img { transform: scale(1.04); }
.img-mosaic-main { grid-column: 1; grid-row: 1; }
.img-mosaic-portrait { grid-column: 2; grid-row: span 2; }
.img-mosaic-item:nth-child(3) { grid-column: 1; grid-row: 2; }
@media (max-width: 768px) {
  .img-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }
  .img-mosaic-portrait { grid-row: span 1; }
  .img-mosaic-item:nth-child(4) { display: none; }
}
@media (max-width: 480px) {
  .img-mosaic { grid-template-columns: 1fr; grid-template-rows: 220px; }
  .img-mosaic-item:nth-child(n+2) { display: none; }
  .img-mosaic-main { display: block !important; }
}

/* ── CTA V2 ── */
.cta-v2 {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: clamp(5rem, 9vw, 10rem) 0;
}
.cta-v2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-v2-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(196,148,58,.15) 0%, transparent 60%);
  filter: blur(60px);
}
.cta-v2-orb-1 { width: 600px; height: 600px; top: -20%; left: -10%; }
.cta-v2-orb-2 { width: 500px; height: 500px; bottom: -20%; right: -5%; }
.cta-v2-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-v2-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem .875rem;
  border: 1px solid rgba(196,148,58,.3);
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.cta-v2-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin-bottom: 1.75rem;
}
.cta-v2-title em { color: var(--gold); font-style: italic; }
.cta-v2-sub { color: rgba(255,255,255,.55); font-size: 1.0625rem; max-width: 460px; margin: 0 auto 3rem; }
.cta-v2-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-v2-trust {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-v2-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.4);
  font-weight: 500;
}
.cta-v2-trust-item::before {
  content: '✓';
  color: var(--gold);
  font-size: .75rem;
}

/* ── TILT CARD (on service cards in other pages) ── */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  transition: transform .15s ease;
}

/* ── WORD REVEAL (GSAP split) ── */
.word-reveal .word {
  display: inline-block;
  overflow: hidden;
}
.word-reveal .char { display: inline-block; }

/* ── SECTION INTRO (big type) ── */
.section-intro-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--ink);
}
.section-intro-text em { color: var(--gold); font-style: italic; }

/* ── FOOTER BIG LOGO ── */
.footer-bigmark {
  text-align: center;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-dark);
  overflow: hidden;
}
.footer-bigmark-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 18vw, 20rem);
  font-weight: 700;
  color: rgba(255,255,255,.03);
  line-height: .85;
  letter-spacing: -.04em;
  -webkit-user-select: none;
  pointer-events: none;
}

/* ── RESPONSIVE OVERRIDES ── */
@media (max-width: 1024px) {
  .hero-v2-top { grid-template-columns: 1fr; }
  .hero-v2-sidebar { max-width: 100%; min-width: auto; }
  .hero-v2-ctas { flex-direction: row; }
  .stat-editorial-inner { grid-template-columns: 1fr 1fr; }
  .service-acc-header { grid-template-columns: 4rem 1fr auto; }
  .service-acc-cat { display: none; }
  .how-v2 { grid-template-columns: 1fr; }
  .how-v2-step { border-right: none; border-bottom: 1px solid var(--border); }
  .how-v2-step:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .hero-v2-headline { font-size: clamp(3.5rem, 12vw, 5.5rem); }
  .hero-v2-stats { gap: 1.75rem; }
  .stat-editorial-inner { grid-template-columns: 1fr; }
  .stat-editorial-item { border-right: none; }
  .stat-editorial-item:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,.07); }
  .service-acc-header { grid-template-columns: 3.5rem 1fr auto; gap: 1rem; padding-left: 1rem; }
  .service-acc-num { font-size: 2.25rem; }
  .service-acc-inner { grid-template-columns: 1fr; gap: 1.5rem; padding-left: 1rem; }
  .testi-card { width: 300px; }
  .reel-v2-box { aspect-ratio: 16/9; }
  .reel-v2-play { width: 72px; height: 72px; }
  .case-hs-card { width: clamp(260px, 80vw, 350px); }
  .cta-v2-title { font-size: clamp(2.25rem, 7vw, 3.5rem); }
  .cta-v2-btns { flex-direction: column; align-items: center; }
  .hero-v2-bottom { flex-direction: column; align-items: flex-start; }
  .pull-quote blockquote { font-size: clamp(1.5rem, 5vw, 2.5rem); }
  .pull-quote::before { font-size: clamp(8rem, 20vw, 16rem); }
}

@media (max-width: 480px) {
  .hero-v2-headline { font-size: clamp(3rem, 13vw, 4.5rem); }
  .hero-v2-stats { gap: 1.25rem; }
  .hero-v2-badge { display: none; }
  .cases-hs-drag { display: none; }
}


/* ── Scroll Reveal (IntersectionObserver) ── */
.js-reveal, .fade-up, .fade-in,
.stat-editorial-item, .blog-card, .testi-card {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.js-reveal.visible, .fade-up.visible, .fade-in.visible,
.stat-editorial-item.visible, .blog-card.visible, .testi-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-acc-item { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.service-acc-item.visible { opacity: 1; transform: translateY(0); }
.how-v2-step { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.how-v2-step.visible { opacity: 1; transform: translateY(0); }
.case-hs-card { opacity: 0; transform: translateX(40px); transition: opacity .6s ease, transform .6s ease; }
.case-hs-card.visible { opacity: 1; transform: translateX(0); }

/* ── Popup (MAO + SMO) ── */
.kn-popup {
  display: none; position: fixed; inset: 0; z-index: 9999;
  align-items: center; justify-content: center; padding: 1.5rem;
}
.kn-popup.visible { display: flex; }
.kn-popup-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.kn-popup-inner { position: relative; z-index: 1; }
.kn-popup-close {
  position: absolute; top: -44px; right: 0;
  width: 32px; height: 32px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.kn-popup-close:hover { background: rgba(255,255,255,.28); }
.kn-popup-card {
  display: block; text-decoration: none; position: relative;
  width: min(260px, 72vw); border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
}
.kn-popup-video { display: block; width: 100%; aspect-ratio: 9/16; object-fit: cover; border-radius: 20px; }
.kn-popup-cta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 3rem 1rem 1.4rem;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
  color: #fff; font-size: .95rem; font-weight: 500; text-align: center; line-height: 1.4;
}
.kn-popup-cta strong { display: block; font-size: 1.1rem; font-weight: 800; color: #C4943A; margin-top: .3rem; }
