/* ============================================================
   VENTUR CREATIVES — MAIN STYLESHEET
   Palette: #0D0D0D bg / #F0EDE8 text / #C9A84C gold
   ============================================================ */

:root {
  --bg:         #0D0D0D;
  --bg-card:    #141414;
  --bg-card2:   #1A1A1A;
  --text:       #F0EDE8;
  --text-muted: #A09A92;
  --gold:       #C9A84C;
  --gold-dark:  #A8873A;
  --border:     rgba(240,237,232,0.08);
  --border-gold:rgba(201,168,76,0.3);
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: Arial Black, Arial, sans-serif;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-muted); }
.text-gold  { color: var(--gold); }
.text-white { color: var(--text); }

/* ── Layout Helpers ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 6rem 0; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.section-heading { margin-bottom: 1rem; }
.section-heading em { font-style: normal; color: var(--gold); }
.section-subtext {
  font-size: 1.1rem;
  max-width: 620px;
  margin-bottom: 3rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: Arial Black, Arial, sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease-out), box-shadow 0.2s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.07);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-large { padding: 1rem 2.5rem; font-size: 0.9rem; }
.btn-arrow { gap: 0.75rem; }
.btn-arrow svg { transition: transform 0.2s var(--ease-out); flex-shrink: 0; }
.btn-arrow:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--gold); color: #0D0D0D; }
.btn-primary:hover {
  background: #D4B55C;
  box-shadow: 0 8px 24px rgba(201,168,76,0.25);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(240,237,232,0.3);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: #0D0D0D; }

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

/* ── CUSTOM CURSOR ── */
#cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9990;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  opacity: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s;
}
nav.scrolled {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: Arial Black, Arial, sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-cta { margin-left: 1rem; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.25rem;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-mobile {
  display: none;
  flex-direction: column;
  background: #0A0A0A;
  border-top: 1px solid var(--border);
  padding: 1.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.75rem 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-cta { color: var(--gold) !important; margin-top: 0.5rem; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ───── Cinematic full-bleed hero ───── */
.hero-cinematic { background: #0a0a0a; }
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: contrast(1.04) saturate(0.95) brightness(0.85);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right,
      rgba(10,10,10,0.92) 0%,
      rgba(10,10,10,0.78) 25%,
      rgba(10,10,10,0.45) 55%,
      rgba(10,10,10,0.25) 80%,
      rgba(10,10,10,0.55) 100%),
    linear-gradient(to bottom,
      rgba(10,10,10,0.55) 0%,
      rgba(10,10,10,0) 18%,
      rgba(10,10,10,0) 60%,
      rgba(10,10,10,0.85) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(201,168,76,0.07) 0%, transparent 55%);
}
.hero-bg-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  mix-blend-mode: overlay;
  opacity: 0.55;
}
.hero-corner-meta {
  position: absolute;
  top: 6.5rem;
  right: 2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  background: rgba(10,10,10,0.55);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(10px);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.hero-corner-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.hero-cinematic-container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content-cinematic {
  max-width: 720px;
  padding-top: 4rem;
  padding-bottom: 9rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-content-cinematic .hero-sub-cinematic {
  color: rgba(240,237,232,0.82);
  max-width: 520px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}
.hero-display-stack {
  display: block;
  margin-bottom: 1.75rem !important;
  line-height: 0.88;
  letter-spacing: -0.045em;
}
.hero-stack-line {
  display: block;
  text-transform: uppercase;
  font-weight: 900;
  font-size: clamp(3.6rem, 11vw, 9rem);
  line-height: 0.85;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.55);
}
.hero-stack-line.hero-stack-2 {
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  padding-left: 2.4ch;
  margin-top: 0.15em;
  margin-bottom: 0.05em;
  font-style: italic;
}
.hero-stack-line.hero-stack-3 em {
  font-style: normal;
  background: linear-gradient(135deg, #f3d98a 0%, var(--gold) 45%, #e0b65a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}
.btn-secondary-onvideo {
  background: rgba(10,10,10,0.45);
  backdrop-filter: blur(8px);
  border-color: rgba(240,237,232,0.25);
  color: var(--text);
}
.btn-secondary-onvideo:hover {
  background: rgba(10,10,10,0.7);
  border-color: var(--gold);
  color: var(--gold);
}
.hero-urgency-onvideo {
  color: rgba(240,237,232,0.78);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  margin-bottom: 0;
  margin-top: 1.75rem;
}

/* Bottom bar: inline stats + scroll cue */
.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.55) 60%, transparent 100%);
  border-top: 1px solid rgba(240,237,232,0.07);
  backdrop-filter: blur(6px);
}
.hero-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}
.hero-stats-inline {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat-pill {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: rgba(240,237,232,0.7);
  letter-spacing: 0.02em;
}
.hero-stat-pill strong {
  font-family: Arial Black, Arial, sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.hero-scroll-cue {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
}
.hero-scroll-cue svg {
  animation: scroll-bob 2s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(4px); opacity: 0.55; }
}

@media (max-width: 900px) {
  .hero-corner-meta { top: 5rem; right: 1rem; font-size: 0.6rem; padding: 0.45rem 0.7rem; }
  .hero-content-cinematic { padding-bottom: 11rem; }
  .hero-bottom-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-stats-inline { gap: 1rem; }
  .hero-stat-pill { font-size: 0.72rem; }
}
@media (max-width: 640px) {
  .hero-stack-line.hero-stack-2 { padding-left: 1ch; }
  .hero-stats-inline .hero-stat-pill:nth-child(3) { display: none; }
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,13,13,0.2) 0%, rgba(13,13,13,0.6) 60%, rgba(13,13,13,1) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%);
  background-color: var(--bg);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,237,232,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,237,232,0.018) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 4rem;
  min-height: 100vh;
}
.hero-content { max-width: 600px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero-eyebrow-line {
  width: 40px;
  height: 1.5px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-display {
  font-size: clamp(3.4rem, 9.2vw, 7.2rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 1.75rem !important;
}
.hero-display em {
  font-style: normal;
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold) 0%, #e8c875 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-urgency {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}
.hero-urgency strong { color: var(--text); }
.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat-number {
  display: block;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.hero-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}

/* Hero visual — cinematic reel */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-reel {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border-gold);
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(201,168,76,0.18) inset,
    0 0 60px rgba(201,168,76,0.12);
  background: #0d0d0d;
}
.hero-reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(1.05);
}
.hero-reel-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13,13,13,0) 50%, rgba(13,13,13,0.55) 100%),
    radial-gradient(ellipse at 50% 50%, transparent 55%, rgba(13,13,13,0.35) 100%);
  z-index: 1;
}
.hero-reel-meta {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(13,13,13,0.78);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--text);
  z-index: 2;
}
.hero-reel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.hero-reel-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(13,13,13,0.88);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(8px);
  padding: 0.7rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  z-index: 2;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.85); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-reel { max-width: 100%; aspect-ratio: 16 / 9; }
}

/* ── TICKER STRIP ── */
.ticker-section {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  height: 44px;
}
.ticker-label {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding: 0 1.5rem;
  border-right: 1px solid var(--border);
  height: 100%;
  display: flex;
  align-items: center;
  background: var(--bg-card2);
  flex-shrink: 0;
}
.ticker-viewport {
  overflow: hidden;
  flex: 1;
  height: 100%;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
  height: 100%;
  align-items: center;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-set {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.ticker-item {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 0 1.5rem;
  transition: color 0.2s;
}
.ticker-item:hover { color: var(--text); }
.ticker-sep {
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── PROBLEM SECTION ── */
.problem {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.problem-item {
  padding: 3rem 2.5rem;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}
.problem-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease-out);
}
.problem-item:hover::before { height: 100%; }
.problem-number {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.problem-item h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); line-height: 1.3; }

/* ── HOW IT WORKS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.process-step {
  background: var(--bg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.25s;
}
.process-step:hover { background: var(--bg-card); }
.process-step-num {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.process-step-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
  transition: background 0.2s, border-color 0.2s;
}
.process-step:hover .process-step-icon {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
}
.process-step h4 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.process-step p { font-size: 0.9rem; line-height: 1.65; }
.process-cta-row {
  margin-top: 2.5rem;
  text-align: center;
}

/* ── PACKAGES ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.25s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.package-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.package-card.popular { border-color: var(--gold); }
.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0D0D0D;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
}
.package-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.package-name { font-size: 1.5rem; color: var(--text); margin-bottom: 0.25rem; }
.package-best-for { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.5; }
.package-price {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.package-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 0.5rem; color: var(--text-muted); }
.package-price-note { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 2rem; }
.package-divider { height: 1px; background: var(--border); margin-bottom: 1.75rem; }
.package-features { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.package-feature { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; color: var(--text-muted); }
.feature-check { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.packages-footnote { text-align: center; font-size: 0.95rem; color: var(--text-muted); margin-top: 1rem; }
.packages-footnote a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.portfolio-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.portfolio-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.portfolio-thumb {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-card2);
  overflow: hidden;
}
.portfolio-thumb .thumb-before,
.portfolio-thumb .thumb-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portfolio-thumb .thumb-after {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.portfolio-card:hover .thumb-after { opacity: 1; }
.thumb-compare-label {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(13,13,13,0.85);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  padding: 0.3rem 0.6rem;
  opacity: 1;
  transition: opacity 0.25s;
}
.portfolio-card:hover .thumb-compare-label { opacity: 0; }

.portfolio-hover-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 2;
  display: block;
  background: #0a0a0a;
}
.portfolio-card.is-previewing .portfolio-hover-video { opacity: 1; }
.portfolio-card.is-previewing .portfolio-play { opacity: 0; }
.portfolio-card.is-previewing .thumb-after { opacity: 0; }

.portfolio-hover-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(13,13,13,0.85);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(6px);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--gold);
  padding: 0.3rem 0.6rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 3;
  pointer-events: none;
}
.portfolio-card:hover .portfolio-hover-tag {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-hover-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
  animation: pulse-dot 1.4s ease-in-out infinite;
}
.portfolio-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1A1A1A 0%, #111111 100%);
}
.portfolio-thumb-placeholder svg { opacity: 0.15; }
.portfolio-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,13,13,0.4);
  opacity: 0;
  transition: opacity 0.25s;
}
.portfolio-card:hover .portfolio-play { opacity: 1; }
.play-circle {
  width: 56px;
  height: 56px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform 0.25s var(--ease-out), background 0.25s;
}
.portfolio-card:hover .play-circle {
  transform: scale(1.1);
  background: rgba(201,168,76,0.12);
}
.portfolio-info { padding: 1.25rem 1.5rem; }
.portfolio-niche {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.portfolio-client {
  font-size: 1rem;
  font-weight: 900;
  font-family: Arial Black, Arial, sans-serif;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.portfolio-stat { font-size: 0.8rem; color: var(--text-muted); }
.portfolio-cta-wrap { text-align: center; }
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active { background: var(--gold); color: #0D0D0D; border-color: var(--gold); }

/* ── RESULTS TIMELINE ── */
/* ── WHY VIDEO NOW (Proof) ── */
.proof-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  margin-bottom: 4.5rem;
}
.proof-stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.proof-stat-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease-out);
}
.proof-stat-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}
.proof-stat-card:hover::before { height: 100%; }
.proof-stat-num {
  font-family: Arial Black, Arial, sans-serif;
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.15em;
}
.proof-stat-num span {
  font-size: 0.5em;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.85;
}
.proof-stat-claim {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.proof-stat-claim strong { color: var(--gold); font-weight: 700; }
.proof-stat-source {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* Comparison */
.proof-compare-wrap {
  margin-top: 2rem;
}
.proof-compare-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.proof-compare-title h3 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--text);
}
.proof-compare-title p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.proof-compare {
  border: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
}
.proof-compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  border-top: 1px solid var(--border);
}
.proof-compare-row:first-child { border-top: none; }
.proof-compare-row > div {
  padding: 1.1rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.45;
  display: flex;
  align-items: center;
}
.proof-compare-row > div + div { border-left: 1px solid var(--border); }
.proof-compare-row > [role="rowheader"] {
  font-weight: 700;
  color: var(--text);
  background: var(--bg-card);
  letter-spacing: 0.01em;
}
.proof-compare-head > div {
  background: var(--bg-card);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--text-muted);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.proof-compare-head .col-highlight {
  color: var(--gold);
  background: linear-gradient(180deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
}
.col-highlight {
  background: rgba(201,168,76,0.06);
  color: var(--text);
}
.cell-neg { color: var(--text-muted); }
.cell-mid { color: var(--text-muted); }
.cell-pos {
  color: var(--text);
  font-weight: 600;
}
.cell-pos::before,
.cell-neg::before,
.cell-mid::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 0.6rem;
  flex-shrink: 0;
}
.cell-pos::before { background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.cell-mid::before { background: var(--text-muted); opacity: 0.6; }
.cell-neg::before { background: #6a4a4a; opacity: 0.55; }

.proof-cta {
  text-align: center;
  margin-top: 3rem;
}
.proof-cta-kicker {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .proof-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-compare-row { grid-template-columns: 1.2fr 1fr 1fr 1.2fr; }
  .proof-compare-row > div { padding: 0.85rem 0.9rem; font-size: 0.82rem; }
  .proof-compare-head > div { font-size: 0.62rem; letter-spacing: 0.1em; }
}
@media (max-width: 640px) {
  .proof-stats-grid { grid-template-columns: 1fr; }
  .proof-compare-row { grid-template-columns: 1fr 1fr; }
  .proof-compare-row > [role="rowheader"] { grid-column: 1 / -1; padding: 0.65rem 1rem 0.25rem; }
  .proof-compare-row > div + div { border-left: none; border-top: 1px solid var(--border); }
  .proof-compare-head { display: none; }
  .proof-compare-row > div:not([role="rowheader"])::after {
    content: attr(data-col);
  }
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: border-color 0.25s, transform 0.3s var(--ease-out);
}
.testimonial-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.testimonial-result-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1rem;
}
.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1rem;
}
.testimonial-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.testimonial-title { font-size: 0.75rem; color: var(--text-muted); }

/* ── WHY VENTUR ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.3s var(--ease-out);
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  transition: opacity 0.3s;
  opacity: 0;
}
.why-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: background 0.2s;
}
.why-card:hover .why-icon { background: rgba(201,168,76,0.08); }
.why-card h3 { font-size: 1.2rem; color: var(--text); margin-bottom: 0.75rem; }
.why-card p  { font-size: 0.9rem; line-height: 1.7; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 1px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: var(--border-gold); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  gap: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question h4 {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 700;
  font-family: Arial, sans-serif;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(201,168,76,0.1); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s; }
.faq-answer-inner { padding: 0 2rem 1.5rem; font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── FINAL CTA ── */
.final-cta {
  text-align: center;
  background: linear-gradient(135deg, #0D0D0D 0%, #111111 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-urgency-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border-gold);
  padding: 0.5rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.final-cta h2 { margin-bottom: 1rem; }
.final-cta p  { font-size: 1.05rem; max-width: 500px; margin: 0 auto 2.5rem; }
.final-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.cta-subtext {
  font-size: 0.82rem !important;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto !important;
}

/* ── STATS BANNER ── */
.stats-banner {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.stat-item { background: var(--bg-card); padding: 2rem; text-align: center; }
.stat-number {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.05em; }

/* ── FOOTER ── */
footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { font-size: 1.1rem; margin-bottom: 0.75rem; display: block; }
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; max-width: 260px; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }

/* ── FLOATING CTA ── */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  pointer-events: none;
}
.float-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.float-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: #0D0D0D;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 1.4rem;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(201,168,76,0.3);
  transition: background 0.2s, transform 0.2s var(--ease-out), box-shadow 0.2s;
  position: relative;
}
.float-cta-link:hover {
  background: #D4B55C;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
}
.float-cta-pulse {
  position: absolute;
  inset: 0;
  animation: float-pulse 2.5s ease-out infinite;
}
@keyframes float-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  70%  { box-shadow: 0 0 0 14px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}
.float-cta-badge {
  background: rgba(13,13,13,0.2);
  font-size: 0.6rem;
  padding: 0.2rem 0.4rem;
  letter-spacing: 0.1em;
  border-radius: 0;
}

/* ── ABOUT PAGE ── */
.about-hero {
  padding: 10rem 0 6rem;
  border-bottom: 1px solid var(--border);
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-photo {
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-photo-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  z-index: 2;
}
.about-photo-corner.tl { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; }
.about-photo-corner.tr { top: 0; right: 0; border-top-width: 2px; border-right-width: 2px; }
.about-photo-corner.bl { bottom: 0; left: 0; border-bottom-width: 2px; border-left-width: 2px; }
.about-photo-corner.br { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; }
.about-bio-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.about-bio p { font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }
.equipment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.equipment-card { background: var(--bg-card); border: 1px solid var(--border); padding: 2rem; }
.equipment-card h4 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.equipment-list { display: flex; flex-direction: column; gap: 0.5rem; }
.equipment-list li { font-size: 0.85rem; color: var(--text-muted); padding-left: 1rem; position: relative; }
.equipment-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* ── CONTACT PAGE ── */
.contact-hero { padding: 10rem 0 6rem; border-bottom: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
.contact-info-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem; }
.contact-info-value { font-size: 0.95rem; color: var(--text); }
.contact-info-sub { font-size: 0.8rem; color: var(--text-muted); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.form-input, .form-select, .form-textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1rem;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(160, 154, 146, 0.5); }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 140px; }
.form-error { font-size: 0.75rem; color: #E05252; display: none; }
.form-group.invalid .form-error { display: block; }
.form-group.invalid .form-input,
.form-group.invalid .form-select,
.form-group.invalid .form-textarea { border-color: #E05252; }
.form-note { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
.form-success {
  display: none;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border-gold);
  padding: 1.5rem;
  text-align: center;
}
.form-success h4 { color: var(--gold); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; }
.calendly-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
}
.calendly-placeholder h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.calendly-placeholder p { font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ── PORTFOLIO PAGE ── */
.portfolio-hero { padding: 10rem 0 5rem; border-bottom: 1px solid var(--border); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

.gold-rule { width: 60px; height: 2px; background: var(--gold); margin-bottom: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .problem-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .equipment-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .final-cta-btns { flex-direction: column; align-items: center; }
  .final-cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-stats { gap: 1.5rem; }
  .result-shots { gap: 0.75rem; }
  .result-shot { min-width: 100px; }
  .result-header { flex-direction: column; align-items: flex-start; }
  .float-cta { bottom: 1rem; right: 1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .ticker-label { display: none; }
  .hero-frame-float { display: none; }
}

/* ── VIDEO MODAL ── */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(8px);
}
.video-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.video-modal-inner {
  position: relative;
  width: 90vw;
  max-width: 960px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  transform: scale(0.94);
  transition: transform 0.3s var(--ease-out);
}
.video-modal-overlay.open .video-modal-inner {
  transform: scale(1);
}
.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.video-modal-title {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.video-modal-close {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.video-modal-close:hover { border-color: var(--gold); color: var(--gold); }
.video-modal-body {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}
.video-modal-body video {
  width: 100%;
  height: 100%;
  display: block;
}
.video-modal-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-modal-niche {
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

/* ── ARSENAL / EQUIPMENT SECTION ── */
.arsenal-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.arsenal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.arsenal-card {
  background: var(--bg);
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  transform-style: preserve-3d;
  will-change: transform;
}
.arsenal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201,168,76,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.arsenal-card:hover::before { opacity: 1; }
.arsenal-card:hover { background: var(--bg-card2); }
.arsenal-svg {
  width: 100%;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,168,76,0.25);
  transition: color 0.3s;
}
.arsenal-card:hover .arsenal-svg { color: rgba(201,168,76,0.5); }
.arsenal-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.arsenal-card h3 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.arsenal-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.arsenal-spec {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: auto;
}
.arsenal-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease-out);
  pointer-events: none;
}
.arsenal-card:hover .arsenal-shine { left: 140%; }

/* Arsenal bottom row spans full width */
.arsenal-grid-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
}

/* ── SCAN LINE EFFECT (hero) ── */
.hero-scan {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-scan::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.2) 50%, transparent 100%);
  animation: scan-line 4s linear infinite;
}
@keyframes scan-line {
  0%   { top: -2px; }
  100% { top: 100%; }
}

/* ── MAGNETIC BUTTON ── */
.btn-magnetic {
  transition: transform 0.15s ease, background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* ── PARALLAX SECTION ── */
.parallax-bg {
  will-change: transform;
}

/* ── STAGGER ANIMATION ── */
.stagger-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.stagger-child.visible { opacity: 1; transform: translateY(0); }
.stagger-child:nth-child(1) { transition-delay: 0s; }
.stagger-child:nth-child(2) { transition-delay: 0.08s; }
.stagger-child:nth-child(3) { transition-delay: 0.16s; }
.stagger-child:nth-child(4) { transition-delay: 0.24s; }
.stagger-child:nth-child(5) { transition-delay: 0.32s; }
.stagger-child:nth-child(6) { transition-delay: 0.4s; }
.stagger-child:nth-child(7) { transition-delay: 0.08s; }
.stagger-child:nth-child(8) { transition-delay: 0.16s; }

/* ── FLOATING ORB ACCENT ── */
.orb-accent {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: orb-drift 8s ease-in-out infinite;
}
.orb-accent-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  right: -50px; top: 10%;
  animation-delay: 0s;
}
.orb-accent-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  left: 5%; bottom: 20%;
  animation-delay: 3s;
}
@keyframes orb-drift {
  0%, 100% { transform: translate(0,0); }
  33%       { transform: translate(20px, -30px); }
  66%       { transform: translate(-15px, 20px); }
}

/* Arsenal responsive */
@media (max-width: 1024px) {
  .arsenal-grid { grid-template-columns: repeat(2, 1fr); }
  .arsenal-grid-row2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .arsenal-grid { grid-template-columns: 1fr; }
  .arsenal-grid-row2 { grid-template-columns: 1fr; }
}
