/* ═══════════════════════════════════════════
   Lenny Personal Training — coachingbylenny.ch
   Colors: Royal Blue + Black + Gold
   ═══════════════════════════════════════════ */

:root {
  --bg: #060a14;
  --surface: #0b1122;
  --border: #162040;
  --royal: #1a3a8a;
  --royal-light: #2a5acc;
  --gold: #c9a84c;
  --gold-light: #dfc070;
  --muted: #6b7fa0;
  --light: #8898b8;
  --lighter: #b8c8e0;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { background: var(--bg); color: #fff; font-family: 'Barlow', sans-serif; -webkit-font-smoothing: antialiased; line-height: 1.6; overflow-x: clip; }
h1,h2,h3,h4 { font-family: 'Barlow Condensed', sans-serif; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 112px 0; }
.section-surface { background: var(--surface); }
.pos-rel { position: relative; }

/* ── Section label ── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800;
  text-transform: uppercase; font-style: italic; line-height: 1.05; margin-bottom: 24px;
}
.section-sub { color: var(--light); font-size: 1.125rem; max-width: 640px; margin-bottom: 48px; }

/* ── Gold shimmer text ── */
.text-gold-shimmer {
  background: linear-gradient(90deg, #c9a84c 0%, #f0d888 40%, #c9a84c 60%, #a88a30 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: gold-shimmer 4s ease infinite;
}
@keyframes gold-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── Buttons ── */
.btn-gold {
  background: linear-gradient(135deg, #c9a84c, #dfc070); color: var(--bg);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 12px 32px;
  display: inline-block; transition: all .25s;
  box-shadow: 0 4px 20px rgba(201,168,76,.3);
}
.btn-gold:hover { background: linear-gradient(135deg, #dfc070, #e8d088); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,.5); }
.btn-outline {
  border: 2px solid var(--gold); color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 10px 32px;
  display: inline-block; transition: all .2s;
}
.btn-outline:hover { background: var(--gold); color: var(--bg); }
.btn-sm { font-size: .875rem; padding: 8px 20px; }
.btn-text-gold {
  background: none; border: none; color: var(--gold); cursor: pointer;
  font-family: 'Barlow', sans-serif; font-weight: 600; font-size: .875rem;
  text-transform: uppercase; letter-spacing: .08em; margin-top: 8px;
  transition: color .2s;
}
.btn-text-gold:hover { color: var(--gold-light); }

/* ── Reveal animations ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Glow orbs ── */
.glow-orb { position: absolute; border-radius: 50%; pointer-events: none; animation: glow-pulse 4s ease-in-out infinite; }
.glow-blue { width: 320px; height: 320px; background: var(--royal); filter: blur(150px); }
.glow-gold { width: 240px; height: 240px; background: var(--gold); filter: blur(120px); }
.glow-blue-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 500px; height: 500px; background: var(--royal); border-radius: 50%; filter: blur(250px); opacity: .08; pointer-events: none; }
@keyframes glow-pulse { 0%,100% { opacity: .08; } 50% { opacity: .2; } }

/* ══════════════ NAV ══════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(6,10,20,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 8px; }
.brand-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.brand-sep { width: 1px; height: 20px; background: var(--gold); }
.brand-sub { font-family: 'Barlow Condensed', sans-serif; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.nav-links { display: flex; gap: 32px; }
.nav-link {
  position: relative; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  font-size: .875rem; color: var(--lighter); transition: color .2s;
}
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width .25s ease; }
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: all .3s; }

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 24px; gap: 16px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: flex; }
}

/* ══════════════ HERO ══════════════ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center top; }
.hero-overlay { position: absolute; inset: 0; background: rgba(6,10,20,.6); }
.hero-grad-left { position: absolute; inset: 0; background: linear-gradient(to right, var(--bg), rgba(6,10,20,.7) 50%, transparent); }
.hero-grad-bottom { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg), transparent 40%, rgba(6,10,20,.4)); }

.hero-content { position: relative; z-index: 10; max-width: 1200px; margin: 0 auto; padding: 80px 24px 0; }
.hero-title { font-size: clamp(3.5rem, 9vw, 7.5rem); font-weight: 900; font-style: italic; text-transform: uppercase; line-height: .9; letter-spacing: -.02em; margin-bottom: 24px; }
.hero-sub { color: var(--light); font-size: 1.125rem; max-width: 440px; margin-bottom: 32px; font-weight: 300; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }

/* Lenny cutout */
.lenny-cutout {
  position: absolute; bottom: 0; right: 0; width: 45vw; max-width: 520px;
  pointer-events: none; z-index: 10; display: flex; align-items: flex-end; justify-content: center;
  will-change: transform, opacity; animation: lenny-entrance 1.2s ease .3s forwards; opacity: 0;
}
.lenny-cutout img { width: 100%; object-fit: contain; max-height: 90vh; filter: drop-shadow(0 0 50px rgba(26,58,138,.35)) drop-shadow(0 0 100px rgba(201,168,76,.15)); }
@keyframes lenny-entrance { from { opacity: 0; transform: translateY(40px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* Gym equipment */
.gym-equipment { position: absolute; inset: 0; pointer-events: none; z-index: 5; overflow: hidden; }
.equip {
  position: absolute; transform-style: preserve-3d; will-change: transform;
  animation: equip-float 6s ease-in-out infinite, equip-fade-in 1s ease forwards;
  opacity: 0;
}
@keyframes equip-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes equip-fade-in { from { opacity: 0; } to { opacity: 1; } }

/* Stats bar */
.stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  border-top: 1px solid var(--border); background: rgba(6,10,20,.87);
  backdrop-filter: blur(12px);
}
.stats-inner { max-width: 1200px; margin: 0 auto; padding: 20px 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat { display: flex; align-items: center; gap: 12px; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.5rem; font-weight: 900; }
.stat-label { color: var(--muted); font-size: .875rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 500; }

/* ══════════════ SERVICES ══════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin-top: 64px; }
.service-card { background: var(--bg); overflow: hidden; }
.service-img { position: relative; height: 224px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.service-card:hover .service-img img { transform: scale(1.1); }
.service-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg), transparent); opacity: .8; }
.service-card:hover .service-overlay { background: linear-gradient(to top, var(--bg), rgba(26,58,138,.15)); }
.service-body { padding: 24px; }
.service-tag { color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.service-body h3 { font-size: 1.5rem; font-weight: 700; text-transform: uppercase; margin: 4px 0 12px; }
.service-body p { color: var(--muted); font-size: .875rem; line-height: 1.6; }

@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

/* ══════════════ ABOUT ══════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; max-width: 560px; margin: 0 auto; aspect-ratio: 4/5; display: flex; align-items: flex-end; justify-content: center; }
.about-img-wrap::before {
  content: ''; position: absolute; inset: 8% 5% 15% 5%; z-index: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(26,58,138,.55), rgba(201,168,76,.12) 50%, transparent 72%);
  filter: blur(30px);
}
.about-img-border {
  position: absolute; inset: 0; z-index: 0;
  border: 1px solid rgba(201,168,76,.18);
  background: linear-gradient(160deg, rgba(26,58,138,.08), rgba(6,10,20,0) 60%);
}
.about-img-border::before, .about-img-border::after {
  content: ''; position: absolute; width: 24px; height: 24px; border: 1px solid var(--gold);
}
.about-img-border::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.about-img-border::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.about-img {
  width: 100%; height: 100%; object-fit: contain; object-position: bottom center;
  position: relative; z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.5)) drop-shadow(0 0 30px rgba(26,58,138,.3));
}
.about-badge { position: absolute; bottom: 16px; left: 16px; z-index: 2; border-left: 2px solid var(--gold); padding: 10px 14px; background: rgba(6,10,20,.92); backdrop-filter: blur(8px); }
.about-badge-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.125rem; font-weight: 700; text-transform: uppercase; }
.about-badge-sub { color: var(--muted); font-size: .75rem; letter-spacing: .06em; }
.about-body { color: var(--light); font-size: 1rem; line-height: 1.7; }
.about-body p { margin-bottom: 16px; }
.about-more { display: none; }
.about-more.open { display: block; }
.about-more p { margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-stat { border-left: 2px solid var(--gold); padding-left: 12px; }
.about-stat-label { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.about-stat-val { color: #fff; font-weight: 600; font-size: .875rem; }

@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ══════════════ FÜR WEN ══════════════ */
.fuer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.fuer-heading { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 700; text-transform: uppercase; margin-bottom: 24px; }
.fuer-heading.gold { color: var(--gold); }
.fuer-heading.blue { color: var(--royal-light); }
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.check-dot { width: 8px; height: 8px; margin-top: 8px; background: var(--gold); flex-shrink: 0; transition: transform .2s; }
.check-item:hover .check-dot { transform: scale(1.5); }
.check-item p { color: var(--light); font-size: .875rem; }
.expect-list { display: flex; flex-direction: column; gap: 12px; }
.expect-item {
  position: relative; display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 16px;
  padding: 14px 18px 14px 16px;
  background: linear-gradient(135deg, rgba(26,58,138,.14), rgba(6,10,20,.55));
  border: 1px solid rgba(201,168,76,.12);
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.expect-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--gold), #e6c46a);
  transform: scaleY(.35); transform-origin: center; transition: transform .4s ease;
}
.expect-item::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(circle at 0% 50%, rgba(201,168,76,.12), transparent 60%);
  transition: opacity .4s ease;
}
.expect-item:hover { transform: translateX(6px); border-color: rgba(201,168,76,.35); }
.expect-item:hover::before { transform: scaleY(1); }
.expect-item:hover::after { opacity: 1; }
.expect-item:hover span:first-child { transform: scale(1.1) rotate(-4deg); }
.expect-item span:first-child {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; font-size: 1.5rem; line-height: 1;
  background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.04));
  border: 1px solid rgba(201,168,76,.25); border-radius: 6px;
  filter: drop-shadow(0 0 8px rgba(201,168,76,.2));
  transition: transform .35s ease;
}
.expect-item p { color: #fff; font-size: .95rem; font-weight: 500; line-height: 1.4; letter-spacing: .01em; position: relative; z-index: 1; }
.notice-box { margin-top: 48px; padding: 24px; border: 1px solid rgba(201,168,76,.2); background: rgba(11,17,34,.8); }
.notice-title { color: var(--gold); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; font-size: .875rem; margin-bottom: 8px; }
.notice-text { color: var(--muted); font-size: .875rem; }

@media (max-width: 768px) { .fuer-grid { grid-template-columns: 1fr; } }

/* ══════════════ PHILOSOPHY ══════════════ */
.philo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 48px; }
.philo-text { color: var(--light); font-size: 1rem; line-height: 1.7; }
.philo-text p { margin-bottom: 24px; }
.philo-text blockquote { border-left: 2px solid var(--gold); padding: 8px 0 8px 20px; color: #fff; font-weight: 500; font-style: italic; margin-bottom: 24px; }
.philo-features { display: flex; flex-direction: column; gap: 16px; }
.philo-feat {
  display: grid; grid-template-columns: 56px 1fr; align-items: center; gap: 20px;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(26,58,138,.12), rgba(6,10,20,.6));
  border: 1px solid rgba(201,168,76,.12); border-left: 2px solid var(--gold);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.philo-feat:hover { transform: translateX(4px); border-left-color: #e6c46a; background: linear-gradient(135deg, rgba(26,58,138,.22), rgba(6,10,20,.7)); }
.feat-icon {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; font-size: 1.5rem; margin: 0;
  background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.2); border-radius: 4px;
}
.feat-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin-bottom: 2px; }
.feat-sub { color: var(--muted); font-size: .8125rem; }

@media (max-width: 768px) { .philo-grid { grid-template-columns: 1fr; } }

/* ══════════════ PROCESS ══════════════ */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
.process-step { position: relative; padding-left: 32px; border-left: 1px solid var(--gold); }
.step-bg-num { font-family: 'Barlow Condensed', sans-serif; font-size: 4.5rem; font-weight: 900; color: #0f1730; position: absolute; left: -16px; top: -16px; user-select: none; }
.step-content { position: relative; z-index: 1; }
.step-content h3 { font-size: 1.5rem; font-weight: 700; text-transform: uppercase; margin: 8px 0 12px; }
.step-content p { color: var(--muted); font-size: .875rem; line-height: 1.6; }

@media (max-width: 768px) { .process-grid { grid-template-columns: 1fr; } }

/* ══════════════ GALLERY ══════════════ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); margin-top: 48px; }
.gallery-big { grid-column: span 2; grid-row: span 2; background: var(--bg); }
.gallery-big img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }
.gallery-sm { background: var(--bg); }
.gallery-sm img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }
.gallery-wide { grid-column: span 2; background: var(--bg); }
.gallery-wide img { width: 100%; height: 192px; object-fit: cover; object-position: center; }

@media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; } .gallery-big { grid-column: span 2; } .gallery-wide { grid-column: span 2; } }

/* ══════════════ CTA ══════════════ */
.cta-section { position: relative; padding: 112px 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.cta-overlay { position: absolute; inset: 0; background: rgba(6,10,20,.87); }
.cta-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,58,138,.2), transparent, rgba(201,168,76,.1)); }
.cta-title { font-size: clamp(3rem, 6vw, 5rem); font-weight: 900; font-style: italic; text-transform: uppercase; line-height: 1.05; margin-bottom: 24px; }
.cta-sub { color: var(--light); max-width: 560px; margin: 0 auto 40px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ══════════════ CONTACT ══════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-sub { color: var(--muted); margin-bottom: 32px; }
.contact-links { display: flex; flex-direction: column; gap: 16px; }
.contact-link { display: flex; align-items: center; gap: 12px; color: var(--lighter); transition: color .2s; }
.contact-link:hover { color: #fff; }
.contact-icon {
  width: 32px; height: 32px; border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .75rem; font-weight: 700;
  transition: all .2s;
}
.contact-link:hover .contact-icon { background: var(--gold); color: var(--bg); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  color: #fff; padding: 12px 16px; font-size: .875rem; font-family: 'Barlow', sans-serif;
  outline: none; transition: border-color .2s; resize: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--light); opacity: 1; }
.contact-form select { color: var(--light); }
.contact-form select option { color: #fff; background: var(--bg); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); }

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ══════════════ FOOTER ══════════════ */
footer { border-top: 1px solid var(--border); padding: 48px 0; background: var(--bg); }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 32px; }
.footer-text { color: var(--light); font-size: .875rem; margin-top: 8px; line-height: 1.6; }
.footer-link { display: block; color: var(--light); font-size: .875rem; margin-bottom: 8px; transition: color .2s; }
.footer-link:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p, .footer-bottom a { color: var(--muted); font-size: .75rem; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .lenny-cutout { width: 55vw; }
  .stats-inner { grid-template-columns: 1fr; gap: 12px; }
  .stat-num { font-size: 1.75rem; }
}

/* ══════════════ LEGAL PAGES ══════════════ */
.legal-page { padding: 128px 0 80px; min-height: 100vh; }
.legal-container { max-width: 780px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; font-family: 'Barlow Condensed', sans-serif; font-size: .875rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 32px; transition: color .2s; }
.legal-back:hover { color: var(--gold); }
.legal-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; font-style: italic; text-transform: uppercase; line-height: 1.05; margin-bottom: 40px; }
.legal-lead { color: var(--lighter); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 32px; padding-left: 16px; border-left: 2px solid var(--gold); }
.legal-body { color: var(--light); font-size: 1rem; line-height: 1.75; }
.legal-body h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #fff; margin: 40px 0 12px; }
.legal-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); margin: 24px 0 8px; }
.legal-body p, .legal-body address { margin-bottom: 14px; font-style: normal; }
.legal-body a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201,168,76,.4); transition: color .2s, border-color .2s; }
.legal-body a:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }
.legal-body code { background: var(--surface); border: 1px solid var(--border); padding: 2px 6px; font-size: .85em; color: var(--gold-light); }
.legal-body strong { color: #fff; font-weight: 600; }
.legal-list { list-style: none; padding: 0; margin: 0 0 14px; }
.legal-list li { position: relative; padding-left: 18px; margin-bottom: 8px; }
.legal-list li::before { content: ''; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; background: var(--gold); }

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--muted); font-size: .75rem; transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }

/* ══════════════ WHATSAPP FAB ══════════════ */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.6);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.whatsapp-fab svg { width: 32px; height: 32px; }
.whatsapp-fab:hover { transform: scale(1.08) rotate(-4deg); box-shadow: 0 12px 32px rgba(37,211,102,.55); }
.whatsapp-fab:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
.whatsapp-tooltip {
  position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%) translateX(8px);
  background: var(--bg); color: #fff; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .875rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 8px 14px; border: 1px solid rgba(37,211,102,.4); white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease;
}
.whatsapp-tooltip::after {
  content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%) rotate(45deg);
  width: 8px; height: 8px; background: var(--bg); border-right: 1px solid rgba(37,211,102,.4); border-top: 1px solid rgba(37,211,102,.4);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 14px rgba(37,211,102,0); }
}
@media (max-width: 768px) {
  .whatsapp-fab { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .whatsapp-fab svg { width: 28px; height: 28px; }
  .whatsapp-tooltip { display: none; }
}

/* ══════════════ SCROLL PROGRESS ══════════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 1000;
  background: linear-gradient(90deg, var(--gold), #e6c46a 50%, var(--royal-light));
  transform-origin: 0 50%; transform: scaleX(0); pointer-events: none;
  box-shadow: 0 0 10px rgba(201,168,76,.5);
}
@supports (animation-timeline: scroll()) {
  .scroll-progress { animation: scroll-progress linear both; animation-timeline: scroll(root); }
  @keyframes scroll-progress { to { transform: scaleX(1); } }
}

/* ══════════════ CURSOR GLOW ══════════════ */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 400px; height: 400px; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(201,168,76,.08), transparent 60%);
  transform: translate(-50%, -50%); opacity: 0; transition: opacity .4s ease;
  will-change: transform; mix-blend-mode: screen;
}
@media (hover: hover) and (pointer: fine) {
  body:hover .cursor-glow { opacity: 1; }
}

/* ══════════════ MARQUEE BAND ══════════════ */
.marquee-band {
  overflow: hidden; padding: 28px 0;
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
  background: linear-gradient(90deg, rgba(6,10,20,.8), rgba(26,58,138,.08), rgba(6,10,20,.8));
  position: relative;
}
.marquee-band::before, .marquee-band::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 160px; z-index: 2; pointer-events: none;
}
.marquee-band::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.marquee-band::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.marquee-track {
  display: flex; align-items: center; gap: 48px; white-space: nowrap;
  width: max-content; animation: marquee 40s linear infinite;
  font-family: 'Barlow Condensed', sans-serif; font-size: 2.25rem;
  font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: .02em;
}
.marquee-track span { color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,.55); }
.marquee-track span:hover, .marquee-track span.hot { color: var(--gold); -webkit-text-stroke-width: 0; transition: color .3s; }
.marquee-track .dot { color: var(--gold); -webkit-text-stroke: 0; font-size: 1rem; opacity: .7; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-band:hover .marquee-track { animation-play-state: paused; }

/* ══════════════ TILT CARDS ══════════════ */
.service-card { transform-style: preserve-3d; transition: transform .2s ease-out; will-change: transform; }
.service-card .service-img img, .service-card .service-body { transform: translateZ(0); }
.service-card:hover .service-body h3 { transform: translateZ(20px); transition: transform .3s ease; }

/* ══════════════ BUTTON SHINE ══════════════ */
.btn-gold { position: relative; overflow: hidden; }
.btn-gold::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transition: left .7s ease;
}
.btn-gold:hover::after { left: 100%; }

/* ══════════════ CARD SPOTLIGHT (cursor-tracked) ══════════════ */
.service-card { position: relative; isolation: isolate; }
.service-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 3; opacity: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(201,168,76,.18), transparent 40%);
  transition: opacity .4s ease;
}
.service-card:hover::before { opacity: 1; }

/* ══════════════ ROTATING GOLD BORDER ══════════════ */
.service-card { --border-angle: 0deg; }
.service-card::after {
  content: ''; position: absolute; inset: -1px; z-index: -1; pointer-events: none; opacity: 0;
  background: conic-gradient(from var(--border-angle), transparent 0%, var(--gold) 20%, transparent 40%, transparent 60%, var(--royal-light) 80%, transparent 100%);
  transition: opacity .5s ease;
  animation: border-spin 4s linear infinite paused;
}
.service-card:hover::after { opacity: 1; animation-play-state: running; }
@property --border-angle { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
@keyframes border-spin { to { --border-angle: 360deg; } }

/* ══════════════ NAV LINK UNDERLINE WIPE ══════════════ */
.nav-link { position: relative; }
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .35s cubic-bezier(.7,0,.3,1);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ══════════════ SECTION LABEL GROW LINE ══════════════ */
.section-label { position: relative; display: inline-block; padding-left: 0; }
.section-label.with-line::before {
  content: ''; display: inline-block; width: 0; height: 1px; background: var(--gold);
  vertical-align: middle; margin-right: 10px; transition: width .6s ease;
}
.section-label.with-line.visible::before, .reveal.visible .section-label.with-line::before { width: 32px; }

/* ══════════════ SPLIT TEXT REVEAL ══════════════ */
.split-char {
  display: inline-block; opacity: 0; transform: translateY(.4em) rotate(4deg);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 22ms);
}
.reveal.visible .split-char, .split-ready.visible .split-char { opacity: 1; transform: translateY(0) rotate(0); }

/* ══════════════ CHECK-ITEM STAGGER SLIDE ══════════════ */
.check-item {
  opacity: 0; transform: translateX(-12px);
  transition: opacity .5s ease, transform .5s ease;
  transition-delay: calc(var(--i, 0) * 80ms + .1s);
}
.reveal.visible .check-item, .check-list.visible .check-item { opacity: 1; transform: translateX(0); }

/* ══════════════ MAGNETIC BUTTON ══════════════ */
.btn-gold, .btn-outline { transition: transform .35s cubic-bezier(.2,.7,.2,1), background .35s ease, color .35s ease; will-change: transform; }

/* ══════════════ STATS GLOW RING ══════════════ */
.stat { position: relative; }
.stat::before {
  content: ''; position: absolute; inset: -12px; border: 1px solid transparent; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.2), transparent 65%);
  opacity: 0; transition: opacity .5s ease;
}
.stats-bar:hover .stat::before { opacity: .6; }

/* ══════════════ REDUCED MOTION ══════════════ */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .scroll-progress { animation: none; transform: scaleX(0); }
  .cursor-glow { display: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
