/* ═══════════════════════════════════════════════
   BBB FITNESS — Built By Bishoy
   Style Sheet
   ═══════════════════════════════════════════════ */

:root {
  --gold: #F5A623;
  --gold-light: #FFD166;
  --dark: #080808;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #b0b0b0;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.gold { color: var(--gold); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

/* ──────────── BUTTONS ──────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .08em;
  padding: 16px 40px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,166,35,.4);
}

.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,.3);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: .06em;
  padding: 14px 36px;
  border-radius: 4px;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pulse {
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,166,35,.5); }
  50%      { box-shadow: 0 0 0 18px rgba(245,166,35,0); }
}

/* ──────────── SECTION HEADERS ──────────── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  font-family: var(--font-head);
  font-size: .8rem;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}
.section-sub {
  margin-top: 16px;
  color: var(--gray-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-cta { text-align: center; margin-top: 60px; }

/* ──────────── SCROLL REVEAL ──────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════
   NAV
   ══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background .4s ease, backdrop-filter .4s ease, box-shadow .4s ease;
}
#navbar.scrolled {
  background: rgba(8,8,8,.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--white);
  margin-right: auto;
}
.logo span { color: var(--gold); margin-left: 4px; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: .3s;
}

.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(8,8,8,.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 20px 24px 32px;
  gap: 4px;
  z-index: 999;
  transform: translateY(-110%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu.open { transform: translateY(0); }
.mob-link {
  font-family: var(--font-head);
  font-size: 1.2rem;
  letter-spacing: .1em;
  color: var(--gray-light);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.mob-link:hover { color: var(--gold); }
.mob-cta {
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: .12em;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 24px;
  border-radius: 4px;
  text-align: center;
  font-weight: 700;
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  animation: slowZoom 12s ease-in-out infinite alternate;
  position: relative;
  z-index: 1;
}
@keyframes slowZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-video-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1205 50%, #0d0d0d 100%);
  position: absolute;
  inset: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.85) 0%,
    rgba(0,0,0,.6) 50%,
    rgba(0,0,0,.3) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 120px;
  padding-bottom: 80px;
  width: 100%;
}
.badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  letter-spacing: .3em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 720px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-light);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.stat { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  width: 100%;
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--gray-light);
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(12px); opacity: 0.3; }
}

/* ══════════════════════════════════════════
   TICKER
   ══════════════════════════════════════════ */
.ticker-section {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-track { overflow: hidden; }
.ticker-inner {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-inner span {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--dark);
  text-transform: uppercase;
  padding: 0 48px;
  white-space: nowrap;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   RESULTS / TRANSFORMATIONS
   ══════════════════════════════════════════ */
.results-section { background: var(--dark-2); }

.transformations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.transform-card {
  background: var(--dark-3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.transform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.featured-card {
  border-color: rgba(245,166,35,.3);
  box-shadow: 0 0 0 1px rgba(245,166,35,.15);
}
.featured-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 2px;
  z-index: 2;
}

.transform-images {
  display: flex;
  align-items: stretch;
  height: 500px;
  position: relative;
}
.transform-side {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.transform-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .4s ease;
}
.transform-card:hover .transform-side img { transform: scale(1.05); }

.transform-side.no-img {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
}
.transform-side.no-img::after {
  content: '📸';
  font-size: 2rem;
  opacity: .3;
}

.transform-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: var(--font-head);
  font-size: .7rem;
  letter-spacing: .15em;
  background: rgba(0,0,0,.7);
  padding: 3px 10px;
  border-radius: 2px;
  color: var(--gray-light);
}
.after-label { background: rgba(245,166,35,.85); color: var(--dark); }

.transform-divider {
  width: 36px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.transform-arrow {
  font-size: 1rem;
  color: var(--gold);
  font-family: var(--font-head);
}

/* Single combined before/after image card */
.transform-image-single {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.transform-image-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .4s ease;
}
.transform-card:hover .transform-image-single img { transform: scale(1.05); }
.transform-badge-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-head);
  font-size: .7rem;
  letter-spacing: .15em;
  background: rgba(245,166,35,.85);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 2px;
  font-weight: 600;
}

.transform-info {
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.transform-name {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.transform-result {
  font-size: .9rem;
  color: var(--gray-light);
  margin-top: 4px;
}

/* Photo Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  animation: fadeInUp .5s ease both;
  animation-delay: var(--delay);
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center center;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.tall img { height: 572px; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.wide img { height: 280px; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245,166,35,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.gallery-overlay span {
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { background: rgba(245,166,35,.7); }
.gallery-item:hover .gallery-overlay span { opacity: 1; }

.gallery-item.empty-gallery {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item.empty-gallery::after {
  content: '📸 Add Photo';
  font-family: var(--font-head);
  color: rgba(255,255,255,.2);
  font-size: .85rem;
  letter-spacing: .1em;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════════
   VIDEO SECTION
   ══════════════════════════════════════════ */
.video-section {
  background: var(--dark-3);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.video-bg-text {
  position: absolute;
  font-family: var(--font-head);
  font-size: clamp(6rem, 20vw, 18rem);
  font-weight: 700;
  color: rgba(255,255,255,.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: .1em;
}

.video-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}
.video-grid.single-video {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}
.video-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.video-card { position: relative; }
.video-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-4);
}
.video-thumb img,
.video-thumb video {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
}
.main-video .video-thumb img,
.main-video .video-thumb video { height: 380px; }
.video-stack .video-thumb img,
.video-stack .video-thumb video { height: 170px; }

.video-thumb.no-thumb {
  background: linear-gradient(135deg, #1a1a1a, #252525);
}
.video-thumb.no-thumb::after {
  content: '🎥';
  font-size: 2.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .2;
}
.main-video .video-thumb.no-thumb { height: 380px; }
.video-stack .video-thumb.no-thumb { height: 170px; }

.video-thumb:hover img,
.video-thumb:hover video { transform: scale(1.04); }

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, background .2s ease;
  z-index: 2;
}
.play-btn svg {
  width: 26px;
  height: 26px;
  fill: var(--dark);
  margin-left: 4px;
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); background: var(--gold-light); }
.play-btn.small-play { width: 52px; height: 52px; }
.play-btn.small-play svg { width: 18px; height: 18px; }

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,.75);
  font-size: .78rem;
  padding: 3px 8px;
  border-radius: 3px;
  font-family: var(--font-body);
  letter-spacing: .05em;
}
.video-caption {
  margin-top: 12px;
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .08em;
  color: var(--gray-light);
  text-transform: uppercase;
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.video-modal.open { opacity: 1; pointer-events: all; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.92);
  cursor: pointer;
}
.modal-content {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 900px;
  background: var(--dark-3);
  border-radius: var(--radius);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.video-modal.open .modal-content { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 2;
  transition: color .2s;
}
.modal-close:hover { color: var(--gold); }
.modal-video { aspect-ratio: 16/9; }
.modal-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
#testimonials { background: var(--dark-2); }

.testimonials-wrapper { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  cursor: grab;
}
.testimonials-track:active { cursor: grabbing; }

.testimonial-card {
  min-width: calc(100% / 3);
  padding: 0 12px;
  flex-shrink: 0;
}
.testimonial-card > * {
  background: var(--dark-3);
  border-radius: var(--radius);
  padding: 36px;
  height: 100%;
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .3s;
}
.testimonial-card:hover > * { border-color: rgba(245,166,35,.25); }

/* Flatten the structure a bit */
.testimonial-card { display: flex; flex-direction: column; }
.testimonial-card .stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-card .quote {
  font-size: .95rem;
  color: var(--gray-light);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--dark-4);
  border: 2px solid var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: .85rem;
  color: var(--gold);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author strong {
  display: block;
  font-family: var(--font-head);
  font-size: .95rem;
  letter-spacing: .06em;
}
.testimonial-author span {
  font-size: .78rem;
  color: var(--gray);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.tnav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.15);
  background: none;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tnav-btn:hover { border-color: var(--gold); color: var(--gold); }

.testimonial-dots { display: flex; gap: 8px; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.dot.active { background: var(--gold); transform: scale(1.2); }

/* v2 testimonial grid — simple side-by-side cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card-v2 {
  background: var(--dark-3);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .3s;
  display: flex;
  flex-direction: column;
}
.testimonial-card-v2:hover { border-color: rgba(245,166,35,.25); }
.testimonial-card-v2 .stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-card-v2 .quote {
  font-size: .95rem;
  color: var(--gray-light);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
}
.testimonial-card-v2 .testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card-v2 .testimonial-author strong {
  display: block;
  font-family: var(--font-head);
  font-size: .95rem;
  letter-spacing: .06em;
}
.testimonial-card-v2 .testimonial-author span {
  font-size: .78rem;
  color: var(--gray);
}

/* ══════════════════════════════════════════
   PROCESS
   ══════════════════════════════════════════ */
.process-section {
  background: var(--dark);
  position: relative;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.process-step {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  text-align: center;
  padding: 0 16px;
  animation-delay: var(--delay);
  transition-delay: var(--delay);
}
.step-number {
  font-family: var(--font-head);
  font-size: .75rem;
  letter-spacing: .25em;
  color: var(--gold);
  margin-bottom: 16px;
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.process-step h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.process-step p { font-size: .9rem; color: var(--gray-light); line-height: 1.7; }

.process-connector {
  display: flex;
  align-items: center;
  padding-top: 48px;
  flex-shrink: 0;
  animation-delay: var(--delay);
  transition-delay: var(--delay);
}
.connector-arrow {
  color: var(--gold);
  font-size: 1.5rem;
  opacity: .6;
}

/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about-section { background: var(--dark-2); }
.about-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-image { position: relative; }
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img-wrapper img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top;
}
.about-img-wrapper.no-about-img {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-wrapper.no-about-img::after {
  content: '👤 Add Your Photo';
  font-family: var(--font-head);
  color: rgba(255,255,255,.2);
  font-size: 1rem;
  letter-spacing: .1em;
}

.about-img-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: .4;
}

.about-imgs-row {
  display: flex;
  flex-direction: row !important;
  gap: 12px;
}
.about-imgs-row .about-img-wrapper {
  width: calc(50% - 6px) !important;
  flex-shrink: 0;
}
.about-imgs-row .about-img-wrapper img {
  height: 420px !important;
  width: 100%;
}

.about-badge-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-content { }
.about-content .section-tag { text-align: left; margin-bottom: 8px; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }
.about-para {
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: .98rem;
}
.about-para strong { color: var(--white); }
.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0 36px;
}
.credential {
  font-family: var(--font-head);
  font-size: .9rem;
  letter-spacing: .06em;
  color: var(--gray-light);
}

/* ══════════════════════════════════════════
   APPLY
   ══════════════════════════════════════════ */
.apply-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.apply-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(245,166,35,.08) 0%, transparent 60%);
  pointer-events: none;
}
.apply-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.apply-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}
.apply-sub {
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 36px;
  font-size: .98rem;
}
.apply-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.apply-feat {
  font-family: var(--font-head);
  font-size: .9rem;
  letter-spacing: .06em;
  color: var(--gray-light);
}
.urgency-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,166,35,.1);
  border: 1px solid rgba(245,166,35,.3);
  border-radius: 4px;
  padding: 12px 20px;
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .08em;
  color: var(--gold);
}
.urgency-icon { font-size: 1rem; animation: flicker 1.5s ease-in-out infinite; }
@keyframes flicker {
  0%,100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* FORM */
.apply-form-wrap {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 48px 40px;
}
.form-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-sub {
  font-size: .85rem;
  color: var(--gray);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group select option { background: var(--dark-4); }
.form-group textarea { resize: vertical; min-height: 80px; }

.form-submit {
  width: 100%;
  font-size: 1rem;
  padding: 18px;
  margin-top: 8px;
}
.form-disclaimer {
  text-align: center;
  font-size: .78rem;
  color: var(--gray);
  margin-top: 12px;
}
.form-status {
  min-height: 20px;
  margin-top: 12px;
  text-align: center;
  font-size: .86rem;
  line-height: 1.5;
}
.form-status.error { color: #ff6b6b; }

.form-success {
  text-align: center;
  padding: 60px 20px;
}
.success-icon { font-size: 4rem; margin-bottom: 20px; }
.form-success h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.form-success p { color: var(--gray-light); line-height: 1.7; }
.success-calendly {
  display: inline-flex;
  margin-top: 24px;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 60px 0 40px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: .9rem;
  color: var(--gray);
  letter-spacing: .05em;
}
.footer-social {
  display: flex;
  gap: 20px;
  margin: 8px 0;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  transition: var(--transition);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.25); }

/* ══════════════════════════════════════════
   FLOATING CTA
   ══════════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: none;
  pointer-events: all;
}
.floating-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  animation: pulse 2.5s ease-in-out infinite;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .transformations-grid { grid-template-columns: 1fr; }
  .about-container { grid-template-columns: 1fr; gap: 60px; }
  .about-image { margin: 0 auto; }
  .apply-wrapper { grid-template-columns: 1fr; gap: 60px; }
  .video-grid { grid-template-columns: 1fr; }
  .video-stack { display: grid; grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: clamp(2rem, 11vw, 3rem); }
  .section-sub { font-size: .98rem; }

  #navbar { padding: 0 18px; }
  .nav-inner { height: 64px; }
  .logo { font-size: 1.18rem; }
  .mobile-menu {
    top: 64px;
    padding: 14px 20px 24px;
  }
  .mob-link { padding: 14px 0; }

  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  #hero {
    min-height: 100svh;
    align-items: flex-end;
  }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,.25) 0%,
      rgba(0,0,0,.55) 35%,
      rgba(0,0,0,.92) 100%
    );
  }
  .hero-img { object-position: 58% top; }
  .hero-content {
    padding: 104px 18px 46px;
  }
  .badge {
    max-width: 100%;
    font-size: .66rem;
    letter-spacing: .2em;
    white-space: normal;
  }
  .hero-title {
    font-size: clamp(3rem, 15vw, 4.2rem);
    max-width: 100%;
    margin-bottom: 18px;
  }
  .hero-sub {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 28px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 34px;
    width: 100%;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    text-align: center;
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
  }
  .stat-num { font-size: 1.9rem; }
  .stat-label {
    font-size: .66rem;
    letter-spacing: .07em;
  }
  .scroll-indicator { display: none; }

  .ticker-section { padding: 10px 0; }
  .ticker-inner span {
    font-size: .78rem;
    padding: 0 28px;
  }

  .transformations-grid { grid-template-columns: 1fr; }
  .transformations-grid { gap: 20px; }
  .transform-images,
  .transform-image-single { height: 360px; }
  .transform-divider { width: 28px; }
  .featured-badge {
    font-size: .62rem;
    padding: 4px 8px;
  }
  .transform-info { padding: 14px; }

  .process-steps { flex-direction: column; align-items: center; }
  .process-step {
    max-width: 360px;
    padding: 0;
  }
  .process-connector {
    transform: none;
    padding-top: 0;
    padding-left: 0;
    width: 100%;
    justify-content: center;
    margin: 4px 0 10px;
  }
  .process-connector .connector-arrow {
    transform: rotate(90deg);
    line-height: 1;
  }

  .testimonial-card { min-width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card-v2 { padding: 26px 22px; }

  .about-container { gap: 36px; }
  .about-imgs-row {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .about-imgs-row .about-img-wrapper {
    width: 100% !important;
  }
  .about-img-wrapper img,
  .about-imgs-row .about-img-wrapper img {
    height: auto !important;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }
  .about-content .section-tag,
  .about-content .section-title {
    text-align: center;
  }
  .about-credentials { margin: 22px 0 28px; }
  .about-content .btn-primary {
    width: 100%;
    text-align: center;
  }

  .apply-wrapper { gap: 36px; }
  .apply-title {
    font-size: clamp(2.5rem, 13vw, 3.4rem);
    text-align: center;
  }
  .apply-sub { text-align: center; margin-bottom: 26px; }
  .apply-features { gap: 9px; margin-bottom: 24px; }
  .urgency-bar {
    width: 100%;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
  }
  .apply-form-wrap {
    padding: 28px 20px;
    border-radius: 12px;
  }
  .form-row { grid-template-columns: 1fr; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 48px;
    font-size: 16px;
  }
  .form-submit { min-height: 54px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall, .gallery-item.wide { grid-column: span 1; grid-row: span 1; }
  .gallery-item.tall img, .gallery-item.wide img, .gallery-item img { height: 150px; }

  .video-section { padding: 64px 0; }
  .video-stack { grid-template-columns: 1fr; }
  .main-video .video-thumb img,
  .main-video .video-thumb video,
  .video-stack .video-thumb img,
  .video-stack .video-thumb video {
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .video-caption { text-align: center; }
  .modal-content { width: calc(100% - 24px); }

  .hero-stats .stat-divider { display: none; }
  .floating-cta {
    left: 14px;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom));
  }
  .floating-btn {
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    letter-spacing: .07em;
  }
  .footer { padding-bottom: 88px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn-primary,
  .btn-ghost {
    font-size: .9rem;
    letter-spacing: .06em;
    padding: 14px 18px;
  }
  .hero-content { padding-left: 16px; padding-right: 16px; }
  .hero-title { font-size: clamp(2.65rem, 15vw, 3.45rem); }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .stat {
    justify-content: center;
    text-align: center;
  }
  .stat-label { font-size: .72rem; }
  .transform-images,
  .transform-image-single { height: 300px; }
  .gallery-grid { gap: 8px; }
  .gallery-item.tall img,
  .gallery-item.wide img,
  .gallery-item img { height: 132px; }
  .apply-form-wrap { padding: 24px 16px; }
  .form-title { font-size: 1.35rem; }
  .about-badge-card {
    position: relative;
    bottom: auto;
    right: auto;
    display: block;
    margin-top: 14px;
  }
}

@media (max-width: 360px) {
  .logo { font-size: 1.02rem; }
  .hero-title { font-size: 2.42rem; }
  .badge { letter-spacing: .14em; }
  .transform-images,
  .transform-image-single { height: 270px; }
  .gallery-item.tall img,
  .gallery-item.wide img,
  .gallery-item img { height: 118px; }
}
