/* ═══════════════════════════════════════════════════════════
   F360 FASHION 360 — STYLES
   Dark editorial theme · Orange/Magenta accents · Clash Display
═══════════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #080808;
  --dark:     #0f0f0f;
  --dark2:    #161616;
  --dark3:    #1e1e1e;
  --orange:   #ff6b1a;
  --orange2:  #ff8c42;
  --magenta:  #e8197d;
  --pink:     #ff3cac;
  --white:    #f5f0eb;
  --gray:     #888;
  --gray2:    #555;
  --font-display: 'Syne', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.text-orange { color: var(--orange); }

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,107,26,0.6);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
}
body:hover .cursor-follower { border-color: var(--orange); }

/* ── SCROLL REVEAL ── */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal-up.visible, .reveal-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.35s; }
.delay-4 { transition-delay: 0.5s; }

/* ── SECTION LABELS ── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  color: var(--white);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none; cursor: pointer;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,107,26,0.4); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 1rem 2.5rem;
}
.btn--outline:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
}
.btn--whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,0.35); }

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  padding: 0.85rem 3rem;
  border-bottom: 1px solid rgba(255,107,26,0.1);
}
.nav__logo { display: flex; align-items: baseline; gap: 0.4rem; cursor: pointer; }
.logo-f360 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; color: var(--white);
}
.nav__links { display: flex; align-items: center; gap: 2.5rem; }
.nav__link {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; color: rgba(245,240,235,0.65);
  transition: color 0.3s;
  position: relative;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link.active { color: var(--orange); }
.nav__search {
  background: none; border: none; color: rgba(245,240,235,0.65);
  cursor: pointer; transition: color 0.3s; padding: 0.25rem;
}
.nav__search:hover { color: var(--orange); }
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.25rem;
}
.nav__hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); transition: var(--transition);
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 8rem 3rem 4rem;
  background: var(--black);
}

/* Animated background ring */
.hero__bg-ring {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255,107,26,0.12);
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  animation: ringPulse 4s ease-in-out infinite;
}
.hero__bg-ring--2 {
  width: 900px; height: 900px;
  border-color: rgba(232,25,125,0.06);
  animation-delay: 2s;
}
@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.04); opacity: 1; }
}

/* Particles */
.hero__particles {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--orange);
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero__content {
  position: relative; z-index: 2;
  max-width: 600px;
  flex: 1;
}
.hero__tagline {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.3em; color: var(--gray);
  text-transform: uppercase; margin-bottom: 1.25rem;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--white);
}

/* Glitch effect on ELEVATING */
.glitch {
  position: relative; display: inline-block;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  color: var(--orange);
}
.glitch::before {
  animation: glitch1 3.5s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  transform: translate(-2px, -2px);
  opacity: 0;
}
.glitch::after {
  animation: glitch2 3.5s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  transform: translate(2px, 2px);
  opacity: 0;
}
@keyframes glitch1 {
  0%, 90%, 100% { opacity: 0; transform: translate(-2px,-2px); }
  92% { opacity: 0.8; transform: translate(-4px, 0); }
  94% { opacity: 0; transform: translate(2px, -2px); }
  96% { opacity: 0.6; transform: translate(-2px, 2px); }
}
@keyframes glitch2 {
  0%, 90%, 100% { opacity: 0; transform: translate(2px,2px); }
  93% { opacity: 0.7; transform: translate(4px, 0); }
  95% { opacity: 0; transform: translate(-2px, 2px); }
  97% { opacity: 0.5; transform: translate(2px, -2px); }
}

.hero__sub {
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.12em; color: var(--gray);
  line-height: 2; margin-bottom: 2.5rem;
  text-transform: uppercase;
}

/* Stats */
.hero__stats {
  display: flex; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.stat-card {
  display: flex; align-items: center; gap: 0.85rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,107,26,0.15);
  padding: 0.85rem 1.25rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: border-color 0.3s, background 0.3s;
}
.stat-card:hover {
  border-color: var(--orange);
  background: rgba(255,107,26,0.08);
}
.stat-icon { color: var(--orange); flex-shrink: 0; }
.stat-row { display: flex; align-items: baseline; gap: 1px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800;
  color: var(--white); line-height: 1;
}
.stat-plus { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--orange); }
.stat-label { font-size: 0.68rem; letter-spacing: 0.08em; color: var(--gray); text-transform: uppercase; margin-top: 2px; }

.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero models */
.hero__models {
  position: relative; z-index: 2;
  flex: 1; display: flex; justify-content: center; align-items: center;
  min-height: 600px;
}
.hero__model-ring {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,107,26,0.35);
  animation: modelRingSpin 20s linear infinite;
}
.hero__model-ring--2 {
  width: 420px; height: 420px;
  border-color: rgba(232,25,125,0.2);
  animation-direction: reverse;
  animation-duration: 15s;
}
@keyframes modelRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
/* Dashed segments on ring */
.hero__model-ring::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 50%;
  border: 1px dashed rgba(255,107,26,0.15);
}

.hero__model-imgs {
  position: relative; width: 420px; height: 560px;
}
.model {
  position: absolute;
  border-radius: 4px;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
  transition: transform 0.6s ease;
}
.model--female {
  width: 260px; height: 420px;
  bottom: 0; left: 20px;
  z-index: 2;
  animation: modelFloat 6s ease-in-out infinite;
}
.model--male {
  width: 220px; height: 360px;
  bottom: 30px; right: 0;
  z-index: 1;
  animation: modelFloat 6s ease-in-out infinite 1.5s;
  filter: contrast(1.05) saturate(0.85) brightness(0.85);
}
@keyframes modelFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

/* ══════════════════════════════════════════════════════════
   TRUSTED BY
══════════════════════════════════════════════════════════ */
.trusted {
  background: var(--dark2);
  border-top: 1px solid rgba(255,107,26,0.1);
  border-bottom: 1px solid rgba(255,107,26,0.1);
  padding: 1.5rem 0;
  overflow: hidden;
}
.trusted__label {
  text-align: center;
  font-size: 0.65rem; letter-spacing: 0.3em;
  color: var(--gray2); text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.trusted__track-wrapper { overflow: hidden; }
.trusted__track {
  display: flex; gap: 4rem; align-items: center;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.trusted__track span {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.2em; color: rgba(245,240,235,0.3);
  white-space: nowrap; text-transform: uppercase;
  transition: color 0.3s;
}
.trusted__track span:hover { color: var(--orange); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════ */
.services {
  padding: 7rem 0;
  background: var(--black);
}
.services .container { max-width: 1280px; margin: 0 auto; padding: 0 3rem; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,107,26,0.4);
}
.service-card__img {
  height: 260px; position: relative; overflow: hidden;
}
.service-card__img img {
  transition: transform 0.6s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.08); }
.service-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.8) 0%, transparent 60%);
}
.service-card__body { padding: 1.5rem; }
.service-card__body h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.1em; margin-bottom: 0.5rem;
  color: var(--white);
}
.service-card__body p {
  font-size: 0.82rem; color: var(--gray); line-height: 1.6; margin-bottom: 1rem;
}
.service-link {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; color: var(--orange);
  transition: letter-spacing 0.3s;
}
.service-link:hover { letter-spacing: 0.2em; }

/* ══════════════════════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════════════════════ */
.portfolio {
  padding: 7rem 0;
  background: var(--dark);
}
.portfolio .container { max-width: 1280px; margin: 0 auto; padding: 0 3rem; }
.portfolio__tabs {
  display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.tab-btn {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--gray);
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: all 0.3s;
}
.tab-btn:hover { border-color: var(--orange); color: var(--white); }
.tab-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.portfolio-item {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.portfolio-item img {
  transition: transform 0.6s ease;
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0; transition: opacity 0.4s;
}
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }
.portfolio-item__overlay span {
  font-size: 0.65rem; letter-spacing: 0.2em;
  color: var(--orange); text-transform: uppercase; margin-bottom: 0.25rem;
}
.portfolio-item__overlay h4 {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700; color: var(--white);
}
.portfolio-item.hidden { display: none; }
.portfolio__cta { text-align: center; }

/* ══════════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════════ */
.process {
  padding: 7rem 0;
  background: var(--black);
  position: relative; overflow: hidden;
}
.process::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.process .container { max-width: 1280px; margin: 0 auto; padding: 0 3rem; }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute; top: 2.5rem; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), rgba(255,107,26,0.1));
  z-index: 0;
}
.process-step {
  position: relative; z-index: 1;
  padding: 2rem 1.5rem;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.4s, transform 0.4s;
}
.process-step:hover {
  border-color: rgba(255,107,26,0.4);
  transform: translateY(-6px);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 800;
  color: rgba(255,107,26,0.12);
  line-height: 1; margin-bottom: 1rem;
  transition: color 0.4s;
}
.process-step:hover .step-num { color: rgba(255,107,26,0.3); }
.step-icon {
  color: var(--orange); margin-bottom: 1rem;
  transition: transform 0.4s;
}
.process-step:hover .step-icon { transform: scale(1.15); }
.process-step h3 {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.1em; margin-bottom: 0.75rem;
  color: var(--white);
}
.process-step p { font-size: 0.82rem; color: var(--gray); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   BEHIND THE SCENES
══════════════════════════════════════════════════════════ */
.bts {
  position: relative; min-height: 520px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.bts__bg {
  position: absolute; inset: 0;
}
.bts__bg img { filter: brightness(0.3) saturate(0.5); }
.bts__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.7), rgba(255,107,26,0.08));
}
.bts__content {
  position: relative; z-index: 2;
  text-align: center; padding: 3rem;
}
.bts__sub {
  font-size: 0.72rem; letter-spacing: 0.3em;
  color: var(--orange); text-transform: uppercase; margin-bottom: 1.25rem;
}
.bts__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 2.5rem; color: var(--white);
}

/* Play button */
.play-btn {
  position: relative;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  border: none; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.play-btn:hover { transform: scale(1.1); box-shadow: 0 0 50px rgba(255,107,26,0.5); }
.play-btn__ring {
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255,107,26,0.4);
  animation: playRingPulse 2s ease-in-out infinite;
}
@keyframes playRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials {
  padding: 7rem 0;
  background: var(--dark);
}
.testimonials .container { max-width: 1280px; margin: 0 auto; padding: 0 3rem; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.4s, transform 0.4s;
}
.testimonial-card:hover {
  border-color: rgba(255,107,26,0.3);
  transform: translateY(-6px);
}
.quote-icon {
  font-family: Georgia, serif;
  font-size: 5rem; line-height: 0.5;
  color: var(--orange); opacity: 0.3;
  margin-bottom: 1.5rem;
}
.testimonial-card p {
  font-size: 0.9rem; color: rgba(245,240,235,0.8);
  line-height: 1.8; margin-bottom: 2rem;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 1rem;
}
.testimonial-author img {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid rgba(255,107,26,0.3);
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 700; color: var(--white);
}
.testimonial-author span {
  font-size: 0.72rem; color: var(--gray); letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════════ */
.cta-section {
  padding: 8rem 3rem;
  background: var(--black);
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-section__ring {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(255,107,26,0.1);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 5s ease-in-out infinite;
}
.cta-section__ring::before {
  content: '';
  position: absolute; inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(232,25,125,0.08);
}
.cta-section__content { position: relative; z-index: 2; }
.cta-section__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 1.25rem; color: var(--white);
}
.cta-section__content p {
  font-size: 0.9rem; color: var(--gray);
  margin-bottom: 2.5rem; letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,107,26,0.1);
  padding: 5rem 0 2rem;
}
.footer .container { max-width: 1280px; margin: 0 auto; padding: 0 3rem; }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem; margin-bottom: 4rem;
}
.footer__brand p {
  font-size: 0.82rem; color: var(--gray);
  line-height: 1.7; margin: 1rem 0 1.5rem;
  max-width: 260px;
}
.footer__logo { margin-bottom: 0.5rem; }
.footer__socials { display: flex; gap: 1rem; }
.footer__socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.footer__socials a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,107,26,0.08);
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--white);
  margin-bottom: 1.5rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__col ul li a {
  font-size: 0.82rem; color: var(--gray);
  transition: color 0.3s;
}
.footer__col ul li a:hover { color: var(--orange); }
.footer__contact li {
  font-size: 0.82rem; color: var(--gray); line-height: 1.6;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer__bottom p {
  font-size: 0.72rem; color: var(--gray2); letter-spacing: 0.08em;
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a {
  font-size: 0.72rem; color: var(--gray2);
  transition: color 0.3s;
}
.footer__legal a:hover { color: var(--orange); }

/* ══════════════════════════════════════════════════════════
   VIDEO MODAL
══════════════════════════════════════════════════════════ */
.modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.modal.open { opacity: 1; pointer-events: all; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
}
.modal__content {
  position: relative; z-index: 1;
  width: 90%; max-width: 900px;
  background: var(--dark2);
  border: 1px solid rgba(255,107,26,0.2);
}
.modal__close {
  position: absolute; top: -2.5rem; right: 0;
  background: none; border: none;
  color: var(--white); font-size: 1.2rem;
  cursor: pointer; transition: color 0.3s;
}
.modal__close:hover { color: var(--orange); }
.modal__video {
  aspect-ratio: 16/9;
  background: var(--dark3);
  display: flex; align-items: center; justify-content: center;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 7rem 2rem 4rem; text-align: center; }
  .hero__content { max-width: 100%; }
  .hero__stats { justify-content: center; }
  .hero__cta { justify-content: center; }
  .hero__models { min-height: 400px; width: 100%; }
  .hero__model-imgs { width: 320px; height: 420px; }
  .model--female { width: 200px; height: 320px; }
  .model--male { width: 170px; height: 280px; }
  .hero__model-ring { width: 380px; height: 380px; }
  .hero__model-ring--2 { width: 300px; height: 300px; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .nav { padding: 1rem 1.5rem; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .hero__headline { font-size: 2.4rem; }
  .cta-section { padding: 5rem 1.5rem; }
  .hero { padding: 6rem 1.5rem 3rem; }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ── SELECTION ── */
::selection { background: rgba(255,107,26,0.3); color: var(--white); }