/* ════════════════════════════════════════════════════════
   MOUJA — HYPED EDITION
   Inspired by gethyped.nl
   Aesthetic: Aggressive Editorial · Full-Bleed · Kinetic
   Fonts: Clash Display + Neue Montreal
════════════════════════════════════════════════════════ */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@700,600,500&f[]=neue-montreal@400,500,700&display=swap');

:root {
  --black:  #050505;
  --white:  #F5F1EB;
  --gold:   #D4AF37;
  --goldb:  #F0CC50;
  --red:    #FF2D20;
  --grey:   #111;
  --grey2:  #1a1a1a;
  --muted:  #444;
  --mutedl: #888;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Neue Montreal', 'Cabinet Grotesk', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
#c-dot, #c-ring {
  position: fixed; pointer-events: none;
  z-index: 99999; border-radius: 50%;
  transform: translate(-50%, -50%);
}
#c-dot { width: 8px; height: 8px; background: var(--gold); transition: transform .1s; }
#c-ring {
  width: 40px; height: 40px;
  border: 1px solid rgba(212,175,55,.5);
  transition: transform .14s ease, width .3s, height .3s, opacity .3s;
}
body.hovering #c-ring { width: 64px; height: 64px; opacity: .35; }

/* ── GRAIN ── */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  background: 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.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .55;
}

/* ════ NAV ════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 56px;
  mix-blend-mode: difference;
}
.nav-logo {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px; font-weight: 700; letter-spacing: 5px;
  color: var(--white); text-decoration: none;
}
.nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(245,241,235,.55); text-decoration: none;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold) !important; color: var(--black) !important;
  padding: 10px 22px !important; font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px));
}
.nav-hamburger {
  display: none; background: none;
  border: 1px solid rgba(245,241,235,.3);
  color: var(--white); font-size: 18px;
  padding: 6px 12px; cursor: pointer; line-height: 1;
}

/* ════ HERO — FULL TAKEOVER ════ */
.hero {
  position: relative; width: 100vw; height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--black);
}

/* Huge background text */
.hero-bg-text {
  position: absolute; z-index: 0;
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(120px, 16vw, 240px);
  font-weight: 700; letter-spacing: -8px; line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,175,55,.12);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  animation: bgTextDrift 12s ease-in-out infinite;
}
@keyframes bgTextDrift {
  0%,100% { transform: translate(-50%,-50%) scale(1) rotate(-1deg); }
  50% { transform: translate(-50%,-52%) scale(1.015) rotate(1deg); }
}

/* Hero image fills right side */
.hero-img-fill {
  position: absolute; right: 0; top: 0;
  width: 52%; height: 100%;
  overflow: hidden; z-index: 1;
}
.hero-img-fill img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  filter: brightness(.85) contrast(1.08) saturate(.9);
  transform: scale(1.04);
  animation: imgBreath 10s ease-in-out infinite;
}
@keyframes imgBreath {
  0%,100% { transform: scale(1.04); }
  50% { transform: scale(1.0); }
}
/* Gradient fade left edge */
.hero-img-fill::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to right, var(--black) 0%, transparent 50%);
}
/* Gold bottom line */
.hero-img-fill::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; z-index: 3;
  background: linear-gradient(to right, var(--gold), transparent);
}

/* Text block — bottom left */
.hero-content {
  position: relative; z-index: 3;
  padding: 100px 56px 60px;
  max-width: 60%;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 10px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 24px;
  opacity: 0; animation: fadeUp .6s .2s ease forwards;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow-dot {
  width: 7px; height: 7px; background: var(--gold);
  border-radius: 50%; box-shadow: 0 0 10px var(--gold);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }

.hero h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(52px, 6.5vw, 100px);
  font-weight: 700; line-height: .88; letter-spacing: -3px;
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp .8s .3s ease forwards;
}
.hero h1 .line-outline {
  display: block;
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
}
.hero h1 .line-gold { display: block; color: var(--gold); }

.hero-sub {
  font-size: 16px; line-height: 1.75;
  color: rgba(245,241,235,.55);
  max-width: 420px; margin-bottom: 44px;
  opacity: 0; animation: fadeUp .8s .5s ease forwards;
}
.hero-actions {
  display: flex; gap: 16px; align-items: center;
  opacity: 0; animation: fadeUp .8s .7s ease forwards;
}

/* ── SCROLL TICKER ── */
.hero-scroll {
  position: absolute; bottom: 32px; right: 56px; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-track { width: 1px; height: 64px; background: rgba(245,241,235,.1); position: relative; overflow: hidden; }
.scroll-track::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 50%;
  background: var(--gold);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop { 0%{top:-100%} 100%{top:200%} }
.scroll-label { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--mutedl); writing-mode: vertical-rl; }

/* ── HERO STATS TICKER ── */
.hero-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  display: flex; border-top: 1px solid rgba(245,241,235,.07);
  background: rgba(5,5,5,.6); backdrop-filter: blur(12px);
  opacity: 0; animation: fadeUp .8s .9s ease forwards;
}
.h-stat {
  flex: 1; padding: 22px 40px;
  border-right: 1px solid rgba(245,241,235,.07);
  display: flex; align-items: center; gap: 20px;
}
.h-stat:last-child { border-right: none; }
.h-stat-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 42px; font-weight: 700; color: var(--gold); line-height: 1;
}
.h-stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--mutedl); }

/* ════ MARQUEE STRIP ════ */
.marquee-strip {
  background: var(--gold); padding: 14px 0;
  overflow: hidden; white-space: nowrap;
}
.marquee-inner {
  display: inline-flex; gap: 0;
  animation: marquee 18s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 20px;
  font-family: 'Clash Display', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--black);
  padding: 0 32px;
}
.marquee-sep { width: 5px; height: 5px; background: var(--black); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ════ SPLIT PHOTO SECTION ════ */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 90vh; overflow: hidden;
}
.split-photo {
  position: relative; overflow: hidden;
}
.split-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  transition: transform 8s ease;
  filter: brightness(.8) contrast(1.1) saturate(.85);
}
.split-section:hover .split-photo img { transform: scale(1.04); }
.split-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--black) 100%);
}

.split-content {
  background: var(--black);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px;
  position: relative;
}
.split-content::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
}
.split-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 120px; font-weight: 700; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(212,175,55,.18);
  margin-bottom: -20px;
}

/* ════ SECTION BASE ════ */
section { padding: 112px 56px; }

.sec-label {
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 16px;
}
.sec-label::before { content: ''; width: 36px; height: 1px; background: var(--gold); }

h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 700; line-height: .9;
  letter-spacing: -2px; margin-bottom: 56px;
}
h2 em { font-style: normal; color: var(--gold); }
h2 .outline {
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

/* ════ SERVICES — ACCORDION STYLE ════ */
#services { background: var(--grey); padding: 112px 56px; }
.svc-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(245,241,235,.07); }
.svc-row {
  display: flex; align-items: center; gap: 40px;
  padding: 28px 0; border-bottom: 1px solid rgba(245,241,235,.07);
  cursor: none; position: relative; overflow: hidden;
  transition: padding-left .35s ease;
  group: true;
}
.svc-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold);
  transform: scaleY(0); transform-origin: top;
  transition: transform .35s ease;
}
.svc-row:hover { padding-left: 20px; }
.svc-row:hover::before { transform: scaleY(1); }
.svc-idx {
  font-family: 'Clash Display', sans-serif;
  font-size: 13px; color: var(--gold); letter-spacing: 2px; min-width: 36px;
}
.svc-icon-wrap { font-size: 28px; min-width: 40px; }
.svc-info { flex: 1; }
.svc-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px); font-weight: 600;
  letter-spacing: -.5px; transition: color .2s;
}
.svc-row:hover .svc-title { color: var(--gold); }
.svc-desc { font-size: 13px; color: var(--mutedl); line-height: 1.7; margin-top: 4px; max-width: 480px; }
.svc-arrow {
  font-size: 24px; color: var(--mutedl);
  transition: transform .3s, color .3s;
}
.svc-row:hover .svc-arrow { transform: translateX(8px) rotate(-45deg); color: var(--gold); }

/* ════ BIG NUMBERS SECTION ════ */
.numbers-section {
  background: var(--black); padding: 80px 56px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background-color: rgba(245,241,235,.06);
}
.num-block {
  background: var(--black);
  padding: 72px 56px;
  position: relative; overflow: hidden;
  transition: background .4s;
}
.num-block:hover { background: var(--grey2); }
.num-block::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s ease;
}
.num-block:hover::after { transform: scaleX(1); }
.num-big {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(72px, 8vw, 120px); font-weight: 700;
  color: var(--gold); line-height: .9; margin-bottom: 12px;
  letter-spacing: -3px;
}
.num-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--mutedl); margin-bottom: 16px; }
.num-desc { font-size: 14px; color: rgba(245,241,235,.45); line-height: 1.7; max-width: 240px; }

/* ════ WHY — LARGE LAYOUT ════ */
.why-section {
  background: var(--grey); padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh;
}
.why-visual-col {
  position: relative; overflow: hidden; background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.why-big-letter {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(160px, 18vw, 280px); font-weight: 700;
  -webkit-text-stroke: 1px rgba(212,175,55,.15);
  color: transparent; line-height: 1;
  animation: letterSpin 15s ease-in-out infinite;
}
@keyframes letterSpin {
  0%,100% { transform: rotate(-3deg) scale(1); }
  50% { transform: rotate(3deg) scale(1.05); }
}
.why-visual-col::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}
.why-content-col {
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.why-items { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.why-item {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 24px; padding: 28px 0;
  border-bottom: 1px solid rgba(245,241,235,.06);
  transition: padding-left .3s;
}
.why-item:hover { padding-left: 8px; }
.why-n {
  font-family: 'Clash Display', sans-serif;
  font-size: 11px; color: var(--gold); letter-spacing: 2px; font-weight: 700; padding-top: 4px;
}
.why-t h3 { font-family: 'Clash Display', sans-serif; font-size: 20px; font-weight: 600; margin-bottom: 6px; letter-spacing: -.3px; }
.why-t p { font-size: 13px; color: var(--mutedl); line-height: 1.75; }

/* ════ PROGRAMMES ════ */
#programmes { background: var(--black); }
.prog-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.prog-card {
  border: 1px solid rgba(245,241,235,.07);
  padding: 44px 40px; background: var(--grey);
  position: relative; overflow: hidden;
  transition: transform .35s, border-color .35s, box-shadow .35s;
}
.prog-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.3); box-shadow: 0 32px 64px rgba(0,0,0,.5); }
.prog-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.prog-card:hover::before, .prog-card.featured::before { transform: scaleX(1); }
.prog-card.featured { border-color: rgba(212,175,55,.25); background: linear-gradient(135deg, rgba(212,175,55,.05), var(--grey)); }
.prog-badge { position: absolute; top: -1px; right: 40px; background: var(--gold); color: var(--black); font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; }
.prog-name { font-family: 'Clash Display', sans-serif; font-size: 28px; font-weight: 600; letter-spacing: -.5px; margin-bottom: 10px; }
.prog-price { font-family: 'Clash Display', sans-serif; font-size: 58px; font-weight: 700; color: var(--gold); line-height: 1; letter-spacing: -2px; margin-bottom: 4px; }
.prog-period { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--mutedl); margin-bottom: 28px; }
.prog-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.prog-features li { font-size: 14px; color: rgba(245,241,235,.65); display: flex; align-items: center; gap: 14px; }
.prog-features li::before { content: ''; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* ════ TESTIMONIALS ════ */
.testimonials-section { background: var(--grey); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.testi-card {
  background: var(--black); padding: 36px;
  border: 1px solid rgba(245,241,235,.05);
  transition: border-color .3s, transform .3s;
  position: relative; overflow: hidden;
}
.testi-card:hover { border-color: rgba(212,175,55,.2); transform: translateY(-4px); }
.testi-card::before {
  content: '"';
  font-family: 'Clash Display', sans-serif; font-size: 100px;
  color: var(--gold); opacity: .08;
  position: absolute; top: -10px; left: 16px; line-height: 1;
}
.testi-stars { color: var(--gold); font-size: 12px; letter-spacing: 3px; margin-bottom: 14px; }
.testi-text { font-size: 14px; line-height: 1.8; color: rgba(245,241,235,.65); margin-bottom: 24px; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-av { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Clash Display', sans-serif; font-size: 18px; }
.testi-name { font-family: 'Clash Display', sans-serif; font-size: 16px; font-weight: 600; }
.testi-res { font-size: 11px; color: var(--gold); letter-spacing: 1px; margin-top: 2px; }

/* ════ GOOGLE MAPS + REVIEWS ════ */
.gmaps-section { padding: 112px 56px; background: var(--black); }
.gmaps-header { display: grid; grid-template-columns: 280px 1fr; gap: 16px; margin-bottom: 64px; min-height: 360px; }
.gmaps-rating-block { background: var(--grey); padding: 44px 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 10px; border: 1px solid rgba(245,241,235,.05); }
.gmaps-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.gmaps-google-text { font-family: 'Clash Display', sans-serif; font-size: 20px; font-weight: 700; }
.gmaps-score { font-family: 'Clash Display', sans-serif; font-size: 80px; color: var(--gold); line-height: 1; letter-spacing: -3px; }
.gmaps-stars-row { font-size: 20px; color: #FBBC05; letter-spacing: 4px; }
.gmaps-count { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--mutedl); }
.gmaps-cta-btn { display: inline-block; margin-top: 12px; background: var(--gold); color: var(--black); font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 11px 20px; text-decoration: none; clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px)); transition: background .2s; }
.gmaps-cta-btn:hover { background: var(--goldb); }
.gmaps-map-wrap { position: relative; min-height: 360px; overflow: hidden; border: 1px solid rgba(245,241,235,.05); }
.gmaps-map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: invert(90%) hue-rotate(180deg) grayscale(30%) brightness(.82) contrast(.9); }
.gmaps-map-overlay { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; pointer-events: none; }
.gmaps-pin { filter: drop-shadow(0 4px 12px rgba(212,175,55,.5)); }
.gmaps-pin-label { background: var(--black); border: 1px solid rgba(212,175,55,.3); padding: 10px 18px; display: flex; flex-direction: column; align-items: center; gap: 2px; pointer-events: all; }
.gmaps-pin-label strong { font-family: 'Clash Display', sans-serif; font-size: 18px; letter-spacing: 3px; color: var(--gold); }
.gmaps-pin-label span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--mutedl); }
.gmaps-directions { font-size: 10px; color: var(--gold); text-decoration: none; font-weight: 700; margin-top: 4px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.rev-card { background: var(--grey); padding: 26px; border: 1px solid rgba(245,241,235,.05); transition: background .25s, transform .25s; position: relative; }
.rev-card:hover { background: var(--grey2); transform: translateY(-3px); }
.rev-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #FBBC05; transition: width .35s; }
.rev-card:hover::after { width: 100%; }
.rev-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rev-av { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Clash Display', sans-serif; font-size: 16px; color: #fff; flex-shrink: 0; }
.rev-name { font-family: 'Clash Display', sans-serif; font-size: 15px; font-weight: 600; }
.rev-date { font-size: 11px; color: var(--mutedl); margin-top: 1px; }
.rev-stars { color: #FBBC05; font-size: 11px; letter-spacing: 2px; margin-bottom: 10px; }
.rev-text { font-size: 13px; color: rgba(245,241,235,.55); line-height: 1.75; }
.rev-cta { display: flex; align-items: center; justify-content: center; background: rgba(212,175,55,.04); border: 1px solid rgba(212,175,55,.12); text-align: center; }
.rev-cta-inner { padding: 20px; }
.rev-cta-stars { font-size: 24px; color: #FBBC05; letter-spacing: 3px; margin-bottom: 12px; }
.rev-cta-text { font-size: 13px; color: rgba(245,241,235,.5); line-height: 1.7; max-width: 180px; margin: 0 auto; }

/* ════ FAQ ════ */
#faq { background: var(--grey); }
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 800px; border-top: 1px solid rgba(245,241,235,.07); }
.faq-item { border-bottom: 1px solid rgba(245,241,235,.07); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-family: 'Clash Display', sans-serif; font-size: 18px; font-weight: 600; cursor: none; list-style: none; transition: color .2s; gap: 20px; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 28px; color: var(--gold); flex-shrink: 0; transition: transform .3s; }
details[open] .faq-q { color: var(--gold); }
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding-bottom: 24px; font-size: 15px; color: rgba(245,241,235,.55); line-height: 1.8; }
.faq-a strong { color: var(--white); }

/* ════ CTA ════ */
.cta-section {
  background: var(--black); text-align: center;
  padding: 140px 56px; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(212,175,55,.05), transparent);
}
.cta-section::after {
  content: 'NOW';
  position: absolute; font-family: 'Clash Display', sans-serif;
  font-size: clamp(200px, 30vw, 440px); font-weight: 700;
  color: rgba(212,175,55,.025);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; letter-spacing: -20px; white-space: nowrap;
}
.cta-section h2 { font-size: clamp(52px, 8vw, 108px); margin-bottom: 20px; position: relative; z-index: 1; }
.cta-section > p { font-size: 17px; color: rgba(245,241,235,.5); max-width: 440px; margin: 0 auto 52px; line-height: 1.8; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ════ BUTTONS ════ */
.btn-primary {
  background: var(--gold); color: var(--black);
  padding: 16px 40px; font-family: 'Neue Montreal', sans-serif;
  font-weight: 800; font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none; display: inline-block;
  clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
  transition: background .2s, transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.btn-primary::before { content: ''; position: absolute; inset: 0; background: var(--goldb); transform: translateX(-105%); transition: transform .4s ease; }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(212,175,55,.3); }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  color: var(--white); font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; opacity: .65; transition: opacity .2s;
  border: 1px solid rgba(245,241,235,.2); padding: 16px 32px;
}
.btn-ghost:hover { opacity: 1; border-color: rgba(245,241,235,.5); }

.btn-whatsapp {
  background: #25D366; color: white;
  padding: 16px 40px; font-weight: 800; font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; display: inline-flex; align-items: center; gap: 12px;
  transition: background .3s, transform .25s, box-shadow .25s;
  clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
}
.btn-whatsapp:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(37,211,102,.25); }

/* ════ FOOTER ════ */
footer { border-top: 1px solid rgba(245,241,235,.06); padding: 72px 56px 0; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; background: var(--black); }
.footer-brand .logo { font-family: 'Clash Display', sans-serif; font-size: 28px; letter-spacing: 5px; color: var(--gold); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--mutedl); line-height: 1.7; max-width: 260px; }
footer h4 { font-size: 10px; font-weight: 800; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
footer ul li a { color: var(--mutedl); text-decoration: none; font-size: 14px; transition: color .2s; }
footer ul li a:hover { color: var(--white); }
.footer-bottom { margin-top: 48px; border-top: 1px solid rgba(245,241,235,.05); padding: 24px 0; display: flex; justify-content: space-between; font-size: 12px; color: var(--mutedl); }

/* ════ WHATSAPP FLOAT ════ */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(37,211,102,.4); z-index: 9997; transition: transform .2s; text-decoration: none; animation: waPulse 3s ease-in-out infinite; }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 24px rgba(37,211,102,.4)} 50%{box-shadow:0 4px 44px rgba(37,211,102,.75)} }
.whatsapp-float:hover { transform: scale(1.1); }

/* ════ REVEAL ════ */
@keyframes fadeUp { from{opacity:0;transform:translateY(36px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .85s ease, transform .85s ease; }
.reveal.on { opacity: 1; transform: none; }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s}

/* Mobile nav overlay */
.nav-links.open { display: flex !important; flex-direction: column; position: fixed; inset: 0; background: rgba(5,5,5,.98); padding: 90px 40px 40px; gap: 28px; z-index: 999; align-items: flex-start; }
.nav-links.open li a { font-size: 28px !important; letter-spacing: 3px; font-family: 'Clash Display', sans-serif; color: var(--white); opacity: 1; }
.nav-close-item { display: none; }
.nav-links.open .nav-close-item { display: block; position: absolute; top: 22px; right: 22px; }
.nav-close { background: none; border: 1px solid rgba(245,241,235,.15); color: var(--white); font-size: 18px; width: 40px; height: 40px; cursor: pointer; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ════ LAPTOP 1025-1440 ════ */
@media(min-width:1025px) and (max-width:1440px) {
  nav { padding: 22px 48px; }
  .hero-content { padding: 90px 48px 56px; }
  .hero-scroll { right: 48px; }
  section { padding: 90px 48px; }
  #services { padding: 90px 48px; }
  .gmaps-section { padding: 90px 48px; }
  .cta-section { padding: 110px 48px; }
  .split-content { padding: 64px 48px; }
  .why-content-col { padding: 64px 48px; }
  footer { padding: 60px 48px 0; }
  .numbers-section { padding: 64px 48px; }
}

/* ════ LARGE DESKTOP 1441+ ════ */
@media(min-width:1441px) {
  nav { padding: 28px 80px; }
  .hero-content { padding: 110px 80px 72px; }
  section { padding: 130px 80px; }
  #services { padding: 130px 80px; }
  .gmaps-section { padding: 130px 80px; }
  .cta-section { padding: 160px 80px; }
  .split-content { padding: 80px 80px; }
  .why-content-col { padding: 80px 80px; }
  footer { padding: 80px 80px 0; }
  .numbers-section { padding: 80px 80px; }
}

/* ════ TABLET 769-1024 ════ */
@media(min-width:769px) and (max-width:1024px) {
  nav { padding: 18px 32px; mix-blend-mode: normal; background: rgba(5,5,5,.9); }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 11px; }
  .hero-content { padding: 90px 32px 48px; max-width: 80%; }
  .hero h1 { font-size: clamp(48px,7vw,80px); }
  .hero-img-fill { width: 44%; }
  .h-stat { padding: 18px 24px; }
  .h-stat-num { font-size: 32px; }
  section { padding: 72px 32px; }
  #services { padding: 72px 32px; }
  .split-section { grid-template-columns: 1fr 1fr; }
  .split-content { padding: 56px 32px; }
  .numbers-section { grid-template-columns: repeat(3,1fr); padding: 0 0; }
  .num-block { padding: 48px 32px; }
  .why-section { grid-template-columns: 1fr; }
  .why-visual-col { min-height: 240px; }
  .why-content-col { padding: 56px 32px; }
  .prog-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .testi-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .gmaps-section { padding: 72px 32px; }
  .gmaps-header { grid-template-columns: 220px 1fr; }
  .reviews-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .cta-section { padding: 90px 32px; }
  footer { grid-template-columns: 1fr 1fr; gap: 28px; padding: 48px 32px 0; }
  .hero-scroll { display: none; }
}

/* ════ PHONE 768 ════ */
@media(max-width:768px) {
  body { cursor: auto; }
  #c-dot,#c-ring { display: none; }
  nav { padding: 16px 20px; mix-blend-mode: normal; background: rgba(5,5,5,.9); height: 60px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; align-items: center; justify-content: center; cursor: pointer; }
  .hero { height: auto; min-height: 100vh; align-items: flex-end; flex-direction: column; }
  .hero-bg-text { font-size: 22vw; }
  .hero-img-fill { position: absolute; inset: 0; width: 100%; opacity: .35; }
  .hero-img-fill::before { background: linear-gradient(to top, var(--black) 30%, transparent 100%); }
  .hero-content { padding: 0 20px 180px; max-width: 100%; z-index: 3; position: relative; }
  .hero h1 { font-size: clamp(44px,12vw,72px); letter-spacing: -2px; }
  .hero-sub { font-size: 14px; }
  .hero-actions { flex-direction: column; gap: 10px; width: 100%; }
  .btn-primary,.btn-ghost { width: 100%; text-align: center; justify-content: center; max-width: 320px; }
  .hero-stats-bar { flex-direction: column; position: relative; bottom: auto; }
  .h-stat { border-right: none; border-bottom: 1px solid rgba(245,241,235,.07); padding: 18px 20px; }
  .h-stat:last-child { border-bottom: none; }
  .hero-scroll { display: none; }
  .marquee-item { font-size: 11px; padding: 0 20px; }
  .split-section { grid-template-columns: 1fr; }
  .split-photo { height: 280px; }
  .split-photo::after { background: linear-gradient(to top, var(--black) 0%, transparent 50%); }
  .split-content { padding: 40px 20px; }
  .split-num { font-size: 80px; }
  section { padding: 60px 20px; }
  #services { padding: 60px 20px; }
  h2 { font-size: clamp(32px,9vw,52px); margin-bottom: 36px; letter-spacing: -1px; }
  .svc-row { flex-wrap: wrap; gap: 12px; }
  .svc-title { font-size: 20px; }
  .numbers-section { grid-template-columns: 1fr; padding: 0; }
  .num-block { padding: 44px 20px; }
  .num-big { font-size: clamp(64px,15vw,100px); }
  .why-section { grid-template-columns: 1fr; }
  .why-visual-col { display: none; }
  .why-content-col { padding: 60px 20px; }
  .prog-grid { grid-template-columns: 1fr; gap: 12px; }
  .prog-card { padding: 28px 22px; }
  .prog-price { font-size: 48px; }
  .testi-grid { grid-template-columns: 1fr; gap: 12px; }
  .gmaps-section { padding: 60px 20px; }
  .gmaps-header { grid-template-columns: 1fr; }
  .gmaps-map-wrap { min-height: 220px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
  #faq { padding: 60px 20px; }
  .faq-q { font-size: 16px; }
  .cta-section { padding: 80px 20px; }
  .cta-section h2 { font-size: clamp(36px,10vw,56px); }
  .cta-btns { flex-direction: column; align-items: center; gap: 10px; }
  .btn-whatsapp,.cta-section .btn-primary { width: 100%; max-width: 300px; justify-content: center; }
  footer { grid-template-columns: 1fr; gap: 28px; padding: 44px 20px 0; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding: 18px 0; }
  .whatsapp-float { bottom: 16px; right: 14px; width: 50px; height: 50px; }
}

/* ════ SMALL PHONE 375 ════ */
@media(max-width:375px) {
  .hero h1 { font-size: 40px; }
  section,#services { padding: 48px 16px; }
  nav { padding: 12px 16px; }
  .cta-section { padding: 72px 16px; }
  .gmaps-section { padding: 48px 16px; }
}

/* ══════════════════════════════════════════════
   PROGRAMMES — NO PRICE VERSION
══════════════════════════════════════════════ */
.prog-price { display: none !important; }
.prog-period { display: none !important; }
.prog-price-note {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: rgba(245,241,235,.4);
  letter-spacing: .05em;
}
.prog-card .btn-primary { margin-top: auto; }
.prog-card { display: flex; flex-direction: column; }
.prog-features { flex: 1; }

/* ══════════════════════════════════════════════
   TRANSFORMATION SECTION
══════════════════════════════════════════════ */
.transf-section {
  background: var(--grey);
  padding: 112px 56px;
}
.transf-intro {
  font-size: 16px;
  color: rgba(245,241,235,.45);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 64px;
}
.transf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Card */
.transf-card {
  background: var(--black);
  overflow: hidden;
  transition: transform .35s, border-color .35s, box-shadow .35s;
  border: 1px solid #1a1a1a;
  position: relative;
}
.transf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
  z-index: 5;
}
.transf-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.3); box-shadow: 0 32px 64px rgba(0,0,0,.5); }
.transf-card:hover::before { transform: scaleX(1); }

/* Image wrapper */
.transf-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.transf-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: saturate(.8);
  transition: transform .6s ease, filter .4s;
}
.transf-card:hover .transf-img {
  transform: scale(1.04);
  filter: saturate(1);
}

/* Face blur — top 36% */
/* Face blur handled directly in image via Python/OpenCV — no CSS overlay needed */
.transf-face-blur { display: none; }

/* Divider line */
.transf-divider {
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent 80%);
  z-index: 3;
  pointer-events: none;
  opacity: .7;
}

/* Before / After labels */
.transf-labels {
  position: absolute;
  bottom: 10px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  z-index: 4;
  pointer-events: none;
}
.transf-label-before,
.transf-label-after {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  background: rgba(5,5,5,.75);
  padding: 4px 10px;
  backdrop-filter: blur(6px);
}

/* Card info */
.transf-info {
  padding: 22px 24px 26px;
  border-top: 1px solid #1e1e1e;
  display: flex;
  flex-direction: column;
}
.transf-tag {
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.transf-title {
  font-family: 'Bebas Neue', 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: .06em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.transf-desc {
  font-size: 13px;
  color: rgba(245,241,235,.45);
  line-height: 1.65;
  margin-bottom: 14px;
}
.transf-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.transf-pill {
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245,241,235,.6);
  border: 1px solid #2a2a2a;
  padding: 4px 10px;
}
.transf-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.transf-duration {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--gold);
  line-height: 1;
}
.transf-duration small {
  display: block;
  font-family: inherit;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,241,235,.35);
  margin-bottom: 2px;
  font-family: 'DM Sans', sans-serif;
}

/* Placeholder card */
.transf-placeholder {
  border: 2px dashed #1e1e1e !important;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  cursor: pointer;
}
.transf-placeholder:hover { border-color: rgba(212,175,55,.4) !important; }
.transf-ph-inner { text-align: center; padding: 40px; }
.transf-ph-icon {
  width: 56px; height: 56px;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold);
  margin: 0 auto 20px;
  transition: border-color .3s, transform .3s;
}
.transf-placeholder:hover .transf-ph-icon { border-color: var(--gold); transform: scale(1.1); }
.transf-ph-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: .06em;
  color: #2a2a2a;
  margin-bottom: 10px;
  transition: color .3s;
}
.transf-placeholder:hover .transf-ph-title { color: var(--gold); }
.transf-ph-text {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #2a2a2a;
}

/* Responsive */
@media(max-width:900px){
  .transf-grid { grid-template-columns: 1fr; }
  .transf-section { padding: 72px 24px; }
}

/* ══ WHY PHOTO ══ */
.why-photo-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.why-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.55) saturate(0.85);
  transition: filter 0.5s ease, transform 0.6s ease;
}
.why-section:hover .why-photo {
  filter: brightness(0.65) saturate(1);
  transform: scale(1.03);
}
/* Keep M letter on top of photo */
.why-big-letter {
  position: relative;
  z-index: 2;
  -webkit-text-stroke: 1.5px rgba(212,175,55,.45) !important;
}
/* Gold gradient overlay at bottom for text readability */
.why-visual-col::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(5,5,5,.85), transparent);
  z-index: 2;
  pointer-events: none;
}
