/* ============================================================
   WE WANT ADS v2.0 — Master CSS
   Inspired by: Droga5, Hyperflow, Buff Motion, HUEMOR
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,300&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: #0C0C0C; color: #F0EFED; overflow-x: hidden; cursor: none; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font-family: inherit; }

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --black:      #0C0C0C;
  --off-black:  #111111;
  --red:        #E8272A;
  --red-dark:   #B81E21;
  --cream:      #F5F4F0;
  --cream-dark: #ECEAE4;
  --white:      #FFFFFF;
  --gray-1:     #1A1A1A;
  --gray-2:     #222222;
  --gray-3:     #333333;
  --gray-5:     #555555;
  --gray-8:     #888888;
  --gray-b:     #BBBBBB;
  --font-d:     'Bebas Neue', sans-serif;
  --font-s:     'DM Serif Display', serif;
  --font-b:     'DM Sans', sans-serif;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:    cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── CUSTOM CURSOR ─────────────────────────────────────────── */
.cursor-wrap { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 10000; }
.c-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  position: absolute; transform: translate(-50%, -50%);
}
.c-ring {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(232,39,42,0.5);
  position: absolute; transform: translate(-50%, -50%);
  transition: width .35s var(--ease), height .35s var(--ease), opacity .3s ease, background .3s ease;
}
.c-ring.hovered { width: 80px; height: 80px; background: rgba(232,39,42,0.08); }
.c-ring.clicking { width: 20px; height: 20px; background: rgba(232,39,42,0.3); }

/* ── SMOOTH SCROLL PROGRESS ────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--red); z-index: 9999;
  width: 0%; transition: width .05s linear;
}

/* ── LOADER ────────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; background: var(--black);
  z-index: 9998; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 0;
  overflow: hidden;
}
.loader-line {
  overflow: hidden; line-height: 1;
}
.loader-we {
  font-family: var(--font-s); font-size: 14px; letter-spacing: 10px;
  color: rgba(255,255,255,0.3); font-style: italic;
  transform: translateY(100%);
}
.loader-want {
  font-family: var(--font-d); font-size: clamp(48px, 10vw, 100px);
  color: var(--white); line-height: 0.9; letter-spacing: -1px;
  transform: translateY(100%);
}
.loader-ads {
  font-family: var(--font-d); font-size: clamp(48px, 10vw, 100px);
  color: var(--red); line-height: 0.9; letter-spacing: -1px;
  transform: translateY(100%);
}
.loader-bar {
  width: 0%; height: 1px; background: var(--red);
  margin-top: 32px; align-self: flex-start;
}

/* ── NAVIGATION ────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s ease, backdrop-filter .4s ease;
}
.site-nav.scrolled {
  background: rgba(12,12,12,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  display: flex; flex-direction: column; line-height: 1; gap: 0;
  transform-origin: left center;
}
.logo-we  { font-family: var(--font-s); font-size: 10px; letter-spacing: 8px; color: rgba(255,255,255,0.25); font-style: italic; }
.logo-row { display: flex; align-items: baseline; gap: 0; }
.logo-want{ font-family: var(--font-d); font-size: 26px; color: var(--white); letter-spacing: -0.5px; line-height: 1; }
.logo-ads { font-family: var(--font-d); font-size: 26px; color: var(--red);   letter-spacing: -0.5px; line-height: 1; }
.logo-dot { color: var(--red); }

.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.5px; color: rgba(255,255,255,0.5);
  transition: color .2s ease; position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-cta-btn {
  background: var(--red) !important; color: var(--white) !important;
  padding: 9px 22px !important; border-radius: 2px;
  font-size: 11px !important; letter-spacing: 1.5px !important; text-transform: uppercase !important;
  transition: background .2s ease !important;
}
.nav-cta-btn:hover { background: var(--red-dark) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; cursor: none;
}
.hamburger span { display: block; width: 22px; height: 1px; background: var(--white); transition: .3s ease; }

/* ── FULL-SCREEN MENU ──────────────────────────────────────── */
.full-menu {
  position: fixed; inset: 0; background: var(--black); z-index: 999;
  display: flex; align-items: center;
  clip-path: inset(0 0 100% 0); transition: clip-path .7s var(--ease);
}
.full-menu.open { clip-path: inset(0 0 0% 0); }
.full-menu-inner { padding: 0 60px; }
.full-menu-links { list-style: none; }
.full-menu-links li { overflow: hidden; }
.full-menu-links a {
  font-family: var(--font-d); font-size: clamp(48px, 8vw, 96px);
  color: rgba(255,255,255,0.15); display: block; line-height: 1.1;
  transition: color .25s ease; letter-spacing: -1px;
  transform: translateY(100%);
}
.full-menu.open .full-menu-links a { transform: translateY(0); transition: transform .6s var(--ease); }
.full-menu-links a:hover { color: var(--white); }
.full-menu-links li:nth-child(2) a { transition-delay: .05s; }
.full-menu-links li:nth-child(3) a { transition-delay: .1s; }
.full-menu-links li:nth-child(4) a { transition-delay: .15s; }
.full-menu-links li:nth-child(5) a { transition-delay: .2s; }
.menu-close {
  position: absolute; top: 32px; right: 48px;
  font-family: var(--font-d); font-size: 28px; color: rgba(255,255,255,0.3);
  background: none; border: none; cursor: none; transition: color .2s ease;
}
.menu-close:hover { color: var(--red); }
.full-menu-bottom {
  position: absolute; bottom: 48px; left: 60px; right: 60px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.full-menu-email { font-size: 13px; color: rgba(255,255,255,0.3); }
.full-menu-email a:hover { color: var(--red); }
.full-menu-social { display: flex; gap: 24px; }
.full-menu-social a { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.2); transition: color .2s ease; }
.full-menu-social a:hover { color: var(--white); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; background: var(--black);
  display: grid; grid-template-rows: 1fr auto;
  padding: 0 48px 60px;
  position: relative; overflow: hidden;
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.4;
}
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,39,42,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-label {
  position: absolute; top: 110px; left: 48px;
  display: flex; align-items: center; gap: 12px; opacity: 0;
}
.hero-label-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(0.8); }
}
.hero-label-text { font-size: 10px; letter-spacing: 3px; color: rgba(255,255,255,0.3); text-transform: uppercase; }

.hero-scroll-cue {
  position: absolute; right: 48px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0;
}
.hero-scroll-line { width: 1px; height: 60px; background: rgba(255,255,255,0.15); position: relative; overflow: hidden; }
.hero-scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; right: 0;
  height: 100%; background: var(--red);
  animation: scroll-line 1.8s ease infinite;
}
@keyframes scroll-line { 0%{top:-100%} 100%{top:100%} }
.hero-scroll-label { font-size: 9px; letter-spacing: 3px; color: rgba(255,255,255,0.2); text-transform: uppercase; writing-mode: vertical-rl; }

.hero-content { align-self: end; position: relative; z-index: 2; padding-top: 140px; }
.hero-eyebrow {
  font-family: var(--font-s); font-size: 16px; font-style: italic;
  color: rgba(255,255,255,0.3); display: block; margin-bottom: 20px; opacity: 0;
}
.hero-title {
  font-family: var(--font-d);
  font-size: clamp(88px, 14.5vw, 184px);
  line-height: 0.87; letter-spacing: -2px; overflow: hidden;
}
.hero-title .line { overflow: hidden; display: block; }
.hero-title .word { display: block; transform: translateY(110%); }
.hero-title .solid  { color: var(--white); }
.hero-title .outline { -webkit-text-stroke: 1.5px rgba(255,255,255,0.2); color: transparent; }
.hero-title .accent  { color: var(--red); }

.hero-bottom {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: end; gap: 60px; margin-top: 56px; opacity: 0;
}
.hero-tagline {
  font-size: 17px; color: rgba(255,255,255,0.4); font-weight: 300;
  line-height: 1.65; max-width: 340px;
}
.hero-cta-wrap { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.btn-main {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--red); color: var(--white);
  padding: 15px 32px; border-radius: 2px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  border: 2px solid var(--red);
  transition: background .2s ease, color .2s ease, transform .2s ease;
  white-space: nowrap;
}
.btn-main:hover { background: transparent; color: var(--red); transform: translateY(-2px); }
.btn-main svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform .3s var(--ease); }
.btn-main:hover svg { transform: translateX(5px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  transition: color .2s ease;
}
.btn-outline:hover { color: var(--white); }

.hero-stats { display: flex; flex-direction: column; gap: 24px; }
.hero-stat {}
.stat-num {
  font-family: var(--font-d); font-size: 44px; color: var(--white);
  line-height: 1; letter-spacing: -1px;
}
.stat-num em { color: var(--red); font-style: normal; }
.stat-lbl { font-size: 10px; letter-spacing: 2px; color: rgba(255,255,255,0.25); text-transform: uppercase; margin-top: 4px; line-height: 1.4; }

/* ── SECTION BASE ──────────────────────────────────────────── */
.sec { padding: 140px 0; }
.sec-sm { padding: 80px 0; }
.wrap { max-width: 1360px; margin: 0 auto; padding: 0 48px; }
.wrap-wide { max-width: 1600px; margin: 0 auto; padding: 0 48px; }

.sec-tag {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.sec-tag-line { width: 28px; height: 1px; background: var(--red); }
.sec-tag-text { font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gray-8); }

/* ── TICKER ────────────────────────────────────────────────── */
.ticker-wrap { background: var(--red); padding: 13px 0; overflow: hidden; }
.ticker-track { display: flex; white-space: nowrap; animation: ticker 30s linear infinite; }
.ticker-item {
  font-family: var(--font-d); font-size: 14px; letter-spacing: 2px;
  color: var(--white); padding: 0 36px;
  display: flex; align-items: center; gap: 36px;
}
.ticker-item::after { content: '✦'; font-size: 8px; color: rgba(255,255,255,0.4); }
@keyframes ticker { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ── ABOUT STRIP ───────────────────────────────────────────── */
.about-strip { background: var(--cream); }
.about-strip-inner {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; align-items: stretch;
}
.about-left {
  background: var(--cream); padding: 120px 72px 120px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-right {
  background: var(--off-black); padding: 120px 48px 120px 72px;
  display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden;
}
.about-right-bg-word {
  position: absolute; bottom: -40px; right: -20px;
  font-family: var(--font-d); font-size: 200px; color: rgba(255,255,255,0.03);
  line-height: 1; pointer-events: none; user-select: none; letter-spacing: -5px;
}
.about-display {
  font-family: var(--font-d); font-size: clamp(52px, 7vw, 88px);
  color: var(--off-black); line-height: 0.92; letter-spacing: -1px; margin-bottom: 40px;
}
.about-display .red { color: var(--red); }
.about-body { font-size: 16px; color: var(--gray-5); line-height: 1.8; max-width: 440px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 48px; }
.about-cell {
  background: var(--cream-dark); padding: 28px 24px;
}
.about-cell-num { font-family: var(--font-d); font-size: 40px; color: var(--red); line-height: 1; }
.about-cell-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-8); margin-top: 4px; }

.about-quote {
  font-family: var(--font-s); font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic; color: var(--white); line-height: 1.5; margin-bottom: 40px;
}
.about-quote .accent { color: var(--red); font-style: normal; }
.about-source { font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 1px; }

/* ── SERVICES ──────────────────────────────────────────────── */
.services-sec { background: var(--off-black); }
.services-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end; margin-bottom: 80px;
}
.services-title {
  font-family: var(--font-d); font-size: clamp(52px, 8vw, 96px);
  color: var(--white); line-height: 0.9; letter-spacing: -1px;
}
.services-title .accent { color: var(--red); }
.services-subtitle { font-size: 15px; color: rgba(255,255,255,0.4); line-height: 1.75; max-width: 380px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.svc-card {
  background: var(--gray-1); padding: 52px 44px;
  position: relative; overflow: hidden;
  transition: background .35s ease;
  cursor: none;
}
.svc-card::after {
  content: ''; position: absolute; inset: 0;
  background: var(--red); opacity: 0;
  transition: opacity .35s ease;
}
.svc-card:hover { background: var(--black); }
.svc-card-inner { position: relative; z-index: 1; }
.svc-num {
  font-family: var(--font-d); font-size: 80px;
  color: rgba(255,255,255,0.05); line-height: 1; margin-bottom: 36px;
  transition: color .35s ease;
}
.svc-card:hover .svc-num { color: rgba(255,255,255,0.08); }
.svc-icon { font-size: 28px; margin-bottom: 24px; }
.svc-title {
  font-family: var(--font-d); font-size: 30px; color: var(--white);
  line-height: 1.05; margin-bottom: 16px; letter-spacing: -0.3px;
}
.svc-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.75; margin-bottom: 32px; }
.svc-list { list-style: none; margin-bottom: 36px; }
.svc-list li {
  font-size: 12px; color: rgba(255,255,255,0.3);
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 10px;
}
.svc-list li::before { content: '→'; color: var(--red); font-size: 10px; flex-shrink: 0; }
.svc-footer {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
}
.svc-from { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.2); }
.svc-price { font-family: var(--font-d); font-size: 24px; color: var(--red); }
.svc-arrow {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3); font-size: 16px;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .3s var(--ease);
}
.svc-card:hover .svc-arrow { background: var(--red); border-color: var(--red); color: var(--white); transform: translate(3px,-3px); }

/* ── RESULTS ───────────────────────────────────────────────── */
.results-sec { background: var(--black); }
.results-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  margin-top: 80px;
}
.result-card {
  padding: 60px 44px; background: var(--gray-1);
  border-top: 3px solid transparent; transition: border-color .3s ease;
  position: relative; overflow: hidden;
}
.result-card:first-child { background: var(--red); border-top-color: var(--red-dark); }
.result-card:hover { border-top-color: var(--red); }
.result-card:first-child:hover { border-top-color: var(--red-dark); }
.result-tag { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 24px; }
.result-num {
  font-family: var(--font-d); font-size: clamp(56px, 7vw, 88px);
  color: var(--white); line-height: 1; letter-spacing: -1px; margin-bottom: 16px;
}
.result-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.65; }
.result-card:first-child .result-tag,
.result-card:first-child .result-desc { color: rgba(255,255,255,0.7); }

/* ── PROCESS ───────────────────────────────────────────────── */
.process-sec { background: var(--cream); }
.process-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 80px; gap: 40px;
}
.process-title {
  font-family: var(--font-d); font-size: clamp(52px, 8vw, 96px);
  color: var(--off-black); line-height: 0.9; letter-spacing: -1px;
}
.process-title .red { color: var(--red); }
.process-intro { font-size: 15px; color: var(--gray-5); line-height: 1.75; max-width: 320px; }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
.ps-card {
  background: var(--white); padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background .3s ease;
}
.ps-card:hover { background: var(--off-black); }
.ps-card:hover .ps-num { color: rgba(255,255,255,0.06); }
.ps-card:hover .ps-title { color: var(--white); }
.ps-card:hover .ps-desc { color: rgba(255,255,255,0.4); }
.ps-card:hover .ps-arrow { color: var(--red); }
.ps-connector {
  position: absolute; right: -12px; top: 44px; z-index: 2;
  color: var(--red); font-size: 18px;
}
.ps-card:last-child .ps-connector { display: none; }
.ps-num {
  font-family: var(--font-d); font-size: 64px; color: rgba(0,0,0,0.06);
  line-height: 1; margin-bottom: 28px; transition: color .3s ease;
}
.ps-title {
  font-family: var(--font-d); font-size: 22px; color: var(--off-black);
  margin-bottom: 12px; line-height: 1; transition: color .3s ease;
}
.ps-desc { font-size: 13px; color: var(--gray-5); line-height: 1.65; transition: color .3s ease; }
.ps-arrow { position: absolute; bottom: 44px; right: 36px; font-size: 18px; color: var(--gray-b); transition: color .3s ease; }

/* ── CLIENTS PORTFOLIO ─────────────────────────────────────── */
.clients-sec { background: var(--off-black); }
.clients-head { margin-bottom: 60px; }
.clients-filter {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-top: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.filter-btn {
  padding: 8px 20px; border-radius: 1px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.35); background: transparent;
  transition: all .25s ease; cursor: none;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red); border-color: var(--red); color: var(--white);
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px; margin-top: 0;
}
.client-card {
  position: relative; overflow: hidden;
  aspect-ratio: 16/10; background: var(--gray-1);
  cursor: none;
}
.client-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease), filter .4s ease;
  filter: grayscale(40%);
}
.client-card:hover img { transform: scale(1.05); filter: grayscale(0%); }
.client-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px 20px 22px;
  opacity: 0; transition: opacity .35s ease; transform: translateY(8px);
}
.client-card:hover .client-overlay { opacity: 1; transform: translateY(0); }
.client-name { font-family: var(--font-d); font-size: 18px; color: var(--white); line-height: 1; margin-bottom: 6px; }
.client-meta { font-size: 11px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 10px; }
.client-metric { color: var(--red); font-weight: 600; }
.client-link {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 14px;
  opacity: 0; transform: scale(0.8);
  transition: opacity .3s ease, transform .3s var(--ease);
}
.client-card:hover .client-link { opacity: 1; transform: scale(1); }
.client-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 40px; color: rgba(255,255,255,0.06);
  background: var(--gray-2); letter-spacing: -1px;
}
.clients-load-more {
  text-align: center; margin-top: 60px;
}

/* ── PRICING ───────────────────────────────────────────────── */
.pricing-sec { background: var(--black); }
.pricing-head { margin-bottom: 80px; }
.pricing-note { font-size: 14px; color: rgba(255,255,255,0.3); margin-top: 20px; }
.pricing-toggle {
  display: flex; align-items: center; gap: 16px; margin-top: 32px;
}
.toggle-label { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.toggle-switch {
  width: 48px; height: 26px; border-radius: 13px;
  background: var(--gray-2); position: relative; cursor: none;
  border: 1px solid rgba(255,255,255,0.1); transition: background .2s ease;
}
.toggle-switch.on { background: var(--red); }
.toggle-switch::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%; background: var(--white);
  transition: transform .2s var(--ease);
}
.toggle-switch.on::after { transform: translateX(22px); }
.toggle-save { font-size: 11px; color: var(--red); font-weight: 600; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.plan-card {
  background: var(--gray-1); padding: 52px 40px;
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  transition: background .3s ease;
}
.plan-card.featured { background: var(--white); }
.plan-card:not(.featured):hover { background: var(--gray-2); }
.plan-featured-badge {
  position: absolute; top: 0; left: 0; right: 0;
  background: var(--red); padding: 6px 0;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); text-align: center;
}
.plan-card.featured { padding-top: 68px; }
.plan-tier {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 28px;
}
.plan-card.featured .plan-tier { color: var(--gray-8); }
.plan-price {
  font-family: var(--font-d); font-size: 64px; line-height: 1;
  color: var(--white); margin-bottom: 4px; letter-spacing: -1px;
}
.plan-card.featured .plan-price { color: var(--off-black); }
.plan-price-sym { font-family: var(--font-b); font-size: 22px; font-weight: 300; vertical-align: super; color: rgba(255,255,255,0.4); }
.plan-card.featured .plan-price-sym { color: var(--gray-8); }
.plan-period { font-size: 12px; color: rgba(255,255,255,0.25); margin-bottom: 36px; }
.plan-card.featured .plan-period { color: var(--gray-8); }
.plan-features { list-style: none; margin-bottom: 40px; flex: 1; }
.plan-features li {
  font-size: 13px; color: rgba(255,255,255,0.45);
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.4;
}
.plan-card.featured .plan-features li { color: var(--gray-5); border-color: var(--cream-dark); }
.plan-check { color: var(--red); flex-shrink: 0; margin-top: 2px; font-size: 11px; }

.plan-btn {
  display: block; width: 100%; padding: 15px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  text-align: center; border-radius: 2px;
  transition: all .25s ease; cursor: none; position: relative;
}
.plan-btn-outline {
  border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.5);
}
.plan-btn-outline:hover { border-color: var(--red); color: var(--white); background: var(--red); }
.plan-btn-featured {
  background: var(--red); color: var(--white); border: 2px solid var(--red);
}
.plan-btn-featured:hover { background: var(--red-dark); border-color: var(--red-dark); }
.plan-btn-loading::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff; border-radius: 50%; transform: translate(-50%,-50%);
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg) } }

.stripe-badge {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 40px; color: rgba(255,255,255,0.2); font-size: 11px; letter-spacing: 1px;
}
.stripe-badge svg { width: 36px; opacity: 0.3; }

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testi-sec { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 80px; }
.testi-card { background: var(--white); padding: 52px 44px; position: relative; overflow: hidden; }
.testi-card:first-child { background: var(--red); }
.testi-card:first-child .testi-body { color: rgba(255,255,255,0.85); }
.testi-card:first-child .testi-name { color: var(--white); }
.testi-card:first-child .testi-role { color: rgba(255,255,255,0.6); }
.testi-card:first-child .testi-stars { color: rgba(255,255,255,0.6); }
.testi-stars { color: var(--red); font-size: 13px; letter-spacing: 3px; margin-bottom: 28px; }
.testi-metric {
  position: absolute; top: 44px; right: 44px;
  font-family: var(--font-d); font-size: 22px; color: rgba(0,0,0,0.08);
}
.testi-card:first-child .testi-metric { color: rgba(255,255,255,0.15); }
.testi-body {
  font-family: var(--font-s); font-style: italic;
  font-size: 17px; line-height: 1.65; color: var(--off-black); margin-bottom: 36px;
}
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream-dark); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 18px; color: var(--gray-8); flex-shrink: 0;
}
.testi-card:first-child .testi-av { background: rgba(255,255,255,0.2); color: var(--white); }
.testi-name { font-size: 14px; font-weight: 600; color: var(--off-black); }
.testi-role { font-size: 12px; color: var(--gray-8); margin-top: 2px; }

/* ── CTA BAND ──────────────────────────────────────────────── */
.cta-band {
  background: var(--red); padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: 'SCALE';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-d); font-size: clamp(180px, 30vw, 340px);
  color: rgba(0,0,0,0.08); line-height: 1; pointer-events: none; white-space: nowrap;
}
.cta-band h2 {
  font-family: var(--font-d); font-size: clamp(56px, 10vw, 120px);
  color: var(--white); line-height: 0.9; letter-spacing: -1px; margin-bottom: 24px;
  position: relative;
}
.cta-band p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 48px; font-weight: 300; position: relative; }
.cta-band-btns { display: flex; align-items: center; justify-content: center; gap: 20px; position: relative; }
.btn-white {
  background: var(--white); color: var(--red);
  padding: 15px 36px; border-radius: 2px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border: 2px solid var(--white);
  display: inline-flex; align-items: center; gap: 12px;
  transition: background .2s ease, color .2s ease;
}
.btn-white:hover { background: transparent; color: var(--white); }
.btn-ghost-white {
  color: rgba(255,255,255,0.7); font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  transition: color .2s ease;
}
.btn-ghost-white:hover { color: var(--white); }

/* ── CONTACT ───────────────────────────────────────────────── */
.contact-hero { background: var(--off-black); padding: 180px 0 100px; }
.contact-h1 {
  font-family: var(--font-d); font-size: clamp(72px, 12vw, 148px);
  color: var(--white); line-height: 0.88; letter-spacing: -2px;
}
.contact-h1 .hollow { -webkit-text-stroke: 1px rgba(255,255,255,0.2); color: transparent; }
.contact-h1 .red { color: var(--red); }

.contact-body { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 100px; padding: 100px 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.form-field { margin-bottom: 32px; }
.form-lbl {
  display: block; font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gray-8); margin-bottom: 10px;
}
.form-inp, .form-ta, .form-sel {
  width: 100%; background: transparent;
  border: none; border-bottom: 1.5px solid rgba(0,0,0,0.12);
  padding: 12px 0; font-size: 15px; color: var(--off-black);
  outline: none; transition: border-color .2s ease; border-radius: 0;
}
.form-inp:focus, .form-ta:focus { border-color: var(--off-black); }
.form-ta { resize: none; min-height: 110px; }
.form-sel { cursor: none; }
.form-checks { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.form-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray-5); cursor: none;
}
.form-check input { accent-color: var(--red); cursor: none; }
.form-submit {
  width: 100%; padding: 17px; border: none; border-radius: 2px;
  background: var(--off-black); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  cursor: none; transition: background .2s ease; margin-top: 8px; position: relative;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.form-submit:hover { background: var(--red); }
.form-msg { font-size: 13px; text-align: center; margin-top: 16px; min-height: 20px; }
.form-msg.success { color: #1a7a3c; }
.form-msg.error { color: var(--red); }

.contact-info { padding-top: 20px; }
.ci-item { display: flex; gap: 20px; margin-bottom: 44px; }
.ci-icon {
  width: 48px; height: 48px; background: var(--off-black);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px; color: var(--red);
}
.ci-lbl { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-8); margin-bottom: 6px; }
.ci-val { font-size: 15px; color: var(--off-black); line-height: 1.5; }
.ci-val a { transition: color .2s ease; }
.ci-val a:hover { color: var(--red); }

.next-steps { background: var(--off-black); padding: 56px 52px; margin-top: 56px; }
.next-steps-title { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 32px; }
.next-step { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.next-step:last-child { border: none; }
.next-step-n { font-family: var(--font-d); font-size: 32px; color: var(--red); flex-shrink: 0; line-height: 1; }
.next-step-t { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer { background: #070707; padding: 80px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand {}
.footer-logo-we { font-family: var(--font-s); font-size: 11px; letter-spacing: 8px; color: rgba(255,255,255,0.15); font-style: italic; }
.footer-logo-main { font-family: var(--font-d); font-size: 44px; line-height: 0.95; letter-spacing: -1px; color: var(--white); }
.footer-logo-main .r { color: var(--red); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.25); margin-top: 20px; line-height: 1.7; max-width: 260px; }
.footer-col-h { font-family: var(--font-d); font-size: 13px; color: rgba(255,255,255,0.3); letter-spacing: 1px; margin-bottom: 24px; }
.footer-list { list-style: none; }
.footer-list li { margin-bottom: 10px; }
.footer-list a { font-size: 13px; color: rgba(255,255,255,0.25); transition: color .2s ease; }
.footer-list a:hover { color: var(--red); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 36px; gap: 24px; flex-wrap: wrap; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.15); }
.footer-copy .r { color: var(--red); opacity: 0.7; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.15); transition: color .2s ease; }
.footer-legal a:hover { color: rgba(255,255,255,0.4); }

/* ── PAYMENT SUCCESS ───────────────────────────────────────── */
.success-page { min-height: 100vh; background: var(--black); display: flex; align-items: center; justify-content: center; text-align: center; }
.success-inner { max-width: 480px; padding: 0 40px; }
.success-icon { font-size: 64px; margin-bottom: 32px; }
.success-title { font-family: var(--font-d); font-size: 72px; color: var(--white); line-height: 0.9; margin-bottom: 24px; }
.success-title span { color: var(--red); }
.success-body { font-size: 16px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 40px; }

/* ── UTILITY ───────────────────────────────────────────────── */
.d-title { font-family: var(--font-d); font-size: clamp(52px, 8vw, 96px); color: var(--white); line-height: 0.9; letter-spacing: -1px; }
.d-title.dark { color: var(--off-black); }
.d-title .r { color: var(--red); }
.d-title .h { -webkit-text-stroke: 1.5px rgba(255,255,255,0.2); color: transparent; }
.mt-4 { margin-top: 16px; } .mt-8 { margin-top: 32px; } .mt-12 { margin-top: 48px; } .mt-16 { margin-top: 64px; }

/* ── GSAP ANIMATION INIT STATES ─────────────────────────────── */
.gsap-fade { opacity: 0; }
.gsap-up { opacity: 0; transform: translateY(48px); }
.gsap-scale { opacity: 0; transform: scale(0.95); }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .wrap, .wrap-wide { padding: 0 28px; }
  .site-nav { padding: 0 28px; }
  .hero { padding: 0 28px 52px; }
  .about-strip-inner { grid-template-columns: 1fr; }
  .about-right { min-height: 60vh; padding: 80px 28px; }
  .about-left { padding: 80px 28px; }
  .services-head { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-bottom { grid-template-columns: 1fr; gap: 40px; }
  .hamburger { display: flex; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .results-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sec { padding: 80px 0; }
  .cursor-wrap { display: none; }
  body { cursor: auto; }
  button, a { cursor: pointer; }
}
