/* ═══════════════════════════════════════════════════════════
   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: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  padding: 8rem 5vw 4rem;
  background:
    radial-gradient(circle at top right, rgba(255, 107, 26, 0.12), transparent 30%),
    radial-gradient(circle at bottom left, rgba(232, 25, 125, 0.08), transparent 30%),
    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: 720px;
}

.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.4rem, 4.5vw, 4.8rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 1.2rem;
  color: var(--white);
  max-width: 8ch;
}

/* 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 {
  max-width: 600px;
  font-size: 0.9rem;
  line-height: 2;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
}

/* 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;
  justify-content: center;
}

.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;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 720px;
}

.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 IMAGE SLIDER
══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════
   HERO STACK FADE SLIDER
══════════════════════════════════════════════════════════ */

.hero__model-stack {
  position: relative;
  width: 420px;
  height: 620px;
}

/* ALL IMAGES STACKED */

/* ══════════════════════════════════════════════════════════
   PREMIUM HERO STACK ANIMATION
══════════════════════════════════════════════════════════ */

.hero__stack {
  position: relative;
  width: 430px;
  height: 620px;

  perspective: 2000px;
}

/* ALL CARDS */

.hero-card {

  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 20px;

  opacity: 0;

  transform:
    translateX(80px) scale(0.88) rotateY(-10deg);

  transition:
    transform 1.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.2s ease;

  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* ACTIVE IMAGE */

.hero-card.active {

  opacity: 1;

  z-index: 5;

  transform:
    translateX(0) scale(1) rotateY(0deg);

  animation:
    floatingHero 7s ease-in-out infinite;
}

/* NEXT IMAGE BEHIND */

.hero-card.next {

  opacity: 0.45;

  z-index: 4;

  transform:
    translateX(60px) scale(0.92) rotateY(-8deg);
}

/* EXIT IMAGE */

.hero-card.exit {

  opacity: 0;

  z-index: 6;

  transform:
    translateX(-120px) scale(1.08) rotateY(10deg);
}

/* FLOATING MOTION */

@keyframes floatingHero {

  0%,
  100% {
    transform:
      translateY(0px) scale(1) rotateY(0deg);
  }

  50% {
    transform:
      translateY(-18px) scale(1.02) rotateY(1deg);
  }
}

@keyframes luxuryFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-18px);
  }
}

@keyframes modelFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-14px);
  }
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.18), transparent 70%);
  top: -120px;
  right: -120px;
  filter: blur(40px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 25, 125, 0.14), transparent 70%);
  bottom: -100px;
  left: -100px;
  filter: blur(50px);
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════
   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(--white);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.trusted__track-wrapper {
  overflow: hidden;
}

.trusted__track {
  display: flex;
  gap: 3rem;
  align-items: center;
  width: max-content;
  animation: marquee linear infinite;
}

.trusted__brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(255, 107, 26, 0.15);
  padding: 0.85rem 1.25rem;
  clip-path: polygon(0px 0px, calc(100% - 8px) 0px, 100% 8px, 100% 100%, 8px 100%, 0px calc(100% - 8px));
  opacity: 1;
  padding: 10px;
  aspect-ratio: 3 / 2;
  width: 90px;
  object-fit: contain;
  transition: opacity 0.3s, transform 0.3s;
  /* filter: grayscale(0%) brightness(1); */
}

.trusted__brand:hover {
  opacity: 1;
  transform: scale(1.05);
}

.trusted__brand img {
  /* height: 44px; */
  width: auto;
  max-width: 80px;
  object-fit: contain;
  border-radius: 0;
  /* filter: grayscale(100%) brightness(1.15); */
  transition: filter 0.3s;
}

.trusted__brand:hover img {
  filter: grayscale(0%) brightness(1);
}

@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 {
  aspect-ratio: 1/1;
  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__slider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.portfolio__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--dark2);
  color: var(--white);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: border-color 0.3s, background 0.3s, color 0.3s, opacity 0.3s, transform 0.3s;
}

.portfolio__arrow:hover:not(:disabled) {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 107, 26, 0.1);
  transform: scale(1.05);
}

.portfolio__arrow:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.portfolio__carousel {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding: 0.5rem 0;
  /* mask-image: linear-gradient(to right, transparent, #000 2%, #000 98%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 2%, #000 98%, transparent); */
}

.portfolio__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  flex: 0 0 calc(20% - 0.8rem);
  min-width: 200px;
  display: block;
  text-decoration: none;
  color: inherit;
}

.portfolio-item--hidden {
  display: none;
}

.portfolio-item__media {
  position: absolute;
  inset: 0;
  background: var(--dark3);
}

.portfolio-item__media img,
.portfolio-item__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.portfolio-item:hover .portfolio-item__media img,
.portfolio-item:hover .portfolio-item__media video {
  transform: scale(1.08);
}

.portfolio-item__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 107, 26, 0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  pointer-events: none;
  transition: transform 0.3s, background 0.3s;
}

.portfolio-item:hover .portfolio-item__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--orange);
}

.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);
  transition: color 0.3s;
}

.portfolio-item:hover .portfolio-item__overlay h4 {
  color: var(--orange);
}

.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__slider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.testimonials__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--dark2);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: border-color 0.3s, background 0.3s, color 0.3s, opacity 0.3s, transform 0.3s;
}

.testimonials__arrow:hover:not(:disabled) {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 107, 26, 0.1);
  transform: scale(1.05);
}

.testimonials__arrow:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.testimonials__carousel {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  margin: 0 -0.5rem;
  padding: 0.5rem 0;
  mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
}

.testimonials__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 300px;
  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;
}

.testimonials__actions {
  text-align: center;
  margin-top: 2.5rem;
}

.testimonials__more i {
  transition: transform 0.4s ease;
}

.testimonials__more:hover i {
  transform: translateX(4px);
}

.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;
  text-align: center;
  /* 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-item {
    flex: 0 0 calc(33.333% - 0.67rem);
    min-width: 180px;
  }

  .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);
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 2rem);
    min-width: 260px;
  }

  .nav {
    padding: 1rem;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }
  .footer .container{
    padding: 1rem;
  }
  .footer{
    padding: 2rem 0;
  }
  .footer__brand p{
    max-width: 100%;
  }
}

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

  .portfolio-item {
    flex: 0 0 calc(50% - 0.5rem);
    min-width: 150px;
  }

  .portfolio__arrow {
    width: 40px;
    height: 40px;
  }

  .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);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
══════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-item {
    flex: 0 0 calc(33.333% - 0.67rem);
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    min-width: 280px;
  }
}

/* ══════════════════════════════════════════════════════════
   PREMIUM MOBILE VERSION
══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {

  body {
    cursor: auto;
    overflow-x: hidden;
  }

  .cursor,
  .cursor-follower {
    display: none;
  }

  /* ══════════════════════════════════════════════════════════
   MOBILE NAVBAR
══════════════════════════════════════════════════════════ */

  @media (max-width: 900px) {

    .nav ,.nav.scrolled{
      padding: 1rem;
    }

    .nav__hamburger {
      display: flex;
      z-index: 1200;
    }

    .nav__links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;

      background: rgba(8, 8, 8, 0.98);
      backdrop-filter: blur(20px);

      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;

      gap: 2rem;

      transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);

      z-index: 1100;
    }

    .nav__links.mobile-open {
      right: 0;
    }

    .nav__link{
      font-size: 1.6rem;
      letter-spacing: 0.2em;
    }

    .nav__dropdown {
      width: 100%;
      text-align: center;
    }

    .nav__dropdown-toggle {
      font-size: 1.6rem;
      letter-spacing: 0.2em;
      justify-content: center;
      width: 100%;
    }

    .nav__dropdown-menu {
      position: static;
      transform: none;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      background: transparent;
      border: none;
      backdrop-filter: none;
      clip-path: none;
      padding: 0.75rem 0 0;
      min-width: 0;
      display: none;
    }

    .nav__dropdown.open .nav__dropdown-menu {
      display: block;
    }

    .nav__dropdown-menu li a {
      font-size: 0.85rem;
      padding: 0.5rem 0;
      text-align: center;
    }

    /* Hamburger Animation */

    .nav__hamburger.active span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }

    .nav__hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .nav__hamburger.active span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }

    body.menu-open {
      overflow: hidden;
    }
  }

  /* HERO */

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 6.5rem 1rem 2rem;
    min-height: auto;
    gap: 1.5rem;
  }

  .hero__content {
    order: 2;
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  /* MOBILE */

  @media (max-width: 900px) {

    .hero__stack {
      width: 280px;
      height: 420px;
    }

    .hero__models {
      min-height: 500px;
      margin-top: 0;
    }

    .hero__model-ring {
      width: 320px;
      height: 320px;
    }

    .hero__model-ring--2 {
      width: 240px;
      height: 240px;
    }
  }

  .hero__tagline {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.6rem;
  }

  .hero__headline {
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 1;
    margin-bottom: 1rem;
  }

  .hero__sub {
    font-size: 0.7rem;
    line-height: 1.75;
    letter-spacing: 0.06em;
    margin-bottom: 1.4rem;
  }

  /* STATS */

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .stat-card {
    padding: 0.7rem 0.4rem;
    flex-direction: column;
    text-align: center;
    gap: 0.35rem;
  }

  .stat-num {
    font-size: 1rem;
  }

  .stat-label {
    font-size: 0.5rem;
  }

  /* BUTTONS */

  .hero__cta {
    flex-direction: column;
    gap: 0.7rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  /* SERVICES */

  .services,
  .portfolio,
  .process,
  .testimonials,
  .cta-section {
    padding: 4rem 0;
  }

  .services .container,
  .portfolio .container,
  .process .container,
  .testimonials .container {
    padding: 0 1rem;
  }

  .services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .service-card__body {
    padding: 0.9rem;
  }

  .service-card__body h3 {
    font-size: 0.6rem;
  }

  .service-card__body p {
    font-size: 0.62rem;
    line-height: 1.5;
  }

  /* PORTFOLIO */

  .portfolio-item {
    flex: 0 0 calc(85% - 0.5rem);
    min-width: 0;
    border-radius: 10px;
  }

  .portfolio__slider {
    gap: 0.65rem;
  }

  .portfolio__arrow {
    display: flex;
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
  }

  .portfolio__carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--orange) var(--dark3);
    padding-bottom: 0.35rem;
    margin-top: 20px;
  }

  .portfolio__carousel::-webkit-scrollbar {
    height: 5px;
  }

  .portfolio__carousel::-webkit-scrollbar-track {
    background: var(--dark3);
    border-radius: 3px;
  }

  .portfolio__carousel::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 3px;
  }

  .portfolio__track {
    transform: none !important;
    transition: none;
  }

  .portfolio-item {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  /* PROCESS */

  .process__steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-step {
    padding: 1.2rem;
  }

  .process__steps::before {
    display: none;
  }

  /* TESTIMONIALS */

  .testimonials__slider {
    gap: 0.75rem;
  }

  .testimonials__arrow {
    width: 40px;
    height: 40px;
    font-size: 0.75rem;
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 1rem);
    min-width: 0;
  }

  .testimonial-card {
    padding: 1.3rem;
  }

  /* FOOTER */

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    margin-bottom: 1.5rem;
  }

  .container {
    padding-inline: 1rem;
  }

  .portfolio .container,
  .testimonials .container {
    padding-inline: 1rem;
  }

  .hero__models {
    order: 1;
    align-self: center;
    width: 100%;
  }

  .hero__content {
    order: 2;
  }

  .hero__headline {
    max-width: 100%;
  }

  .hero__bg-ring {
    width: min(700px, 140vw);
    height: min(700px, 140vw);
  }

  .hero__bg-ring--2 {
    width: min(900px, 180vw);
    height: min(900px, 180vw);
  }

  .portfolio__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: -1rem;
    padding-inline: 1rem;
    padding-bottom: 0.5rem;
  }

  .portfolio__tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .trusted {
    padding: 2.5rem 0;
  }

  .trusted__track {
    gap: 1.5rem;
  }

  .trusted__brand {
    width: 76px;
    padding: 8px;
  }

  .trusted__brand img {
    max-width: 64px;
  }

  .bts {
    min-height: 380px;
  }

  .bts__content {
    padding: 2.5rem 1rem;
  }

  .bts__content h2 {
    margin-bottom: 1.75rem;
  }

  .cta-section {
    padding: 5rem 1.25rem;
  }

  .logo-f360 {
    font-size: 1.25rem;
  }

  .modal__content {
    width: 95%;
  }

  .modal__close {
    top: 0.5rem;
    right: 0.5rem;
    z-index: 2;
  }

}

/* ══════════════════════════════════════════════════════════
   INNER PAGES
══════════════════════════════════════════════════════════ */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 9rem 5vw 4rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 107, 26, 0.15), transparent 35%),
    radial-gradient(circle at bottom left, rgba(232, 25, 125, 0.1), transparent 35%),
    var(--black);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--black) 100%);
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  margin: 0;
  /* max-width: 900px; */
}

.page-hero__breadcrumb {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.page-hero__breadcrumb a {
  color: rgba(245, 240, 235, 0.6);
  transition: color 0.3s;
}

.page-hero__breadcrumb a:hover {
  color: var(--orange);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(245, 240, 235, 0.7);
  /* max-width: 640px; */
  line-height: 1.7;
}

.page-section {
  padding: 5rem 0;
}

.page-section--animated {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 107, 26, 0.1), transparent 35%),
    radial-gradient(circle at bottom left, rgba(232, 25, 125, 0.08), transparent 35%),
    var(--black);
}

.page-section--animated::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.14), transparent 70%);
  top: -120px;
  right: -120px;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.page-section--animated::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 25, 125, 0.1), transparent 70%);
  bottom: -100px;
  left: -120px;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.section-bg .hero__bg-ring {
  top: 35%;
  left: auto;
  right: -8%;
}

.section-bg .hero__bg-ring--2 {
  top: 40%;
  left: auto;
  right: -12%;
}

.section-bg__visual {
  position: absolute;
  top: 50%;
  right: -4%;
  transform: translateY(-50%);
  opacity: 0.28;
  filter: saturate(0.85);
}

.section-bg__visual .hero__stack {
  width: 320px;
  height: 460px;
}

.section-bg__visual .hero__model-ring {
  width: 380px;
  height: 380px;
}

.section-bg__visual .hero__model-ring--2 {
  width: 300px;
  height: 300px;
}

.section-bg__content {
  position: relative;
  z-index: 2;
}

.page-section--dark {
  background: var(--dark);
}

.page-section--darker {
  background: var(--dark2);
}

.content-block {
  max-width: 800px;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.content-block h2 .text-orange {
  color: var(--orange);
}

.content-block p {
  color: rgba(245, 240, 235, 0.75);
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Service cards grid (listing pages) */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-list-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 107, 26, 0.12);
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.service-list-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 26, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-list-card__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.service-list-card__img img {
  transition: transform 0.6s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-list-card__img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-list-card:hover .service-list-card__img img {
  transform: scale(1.06);
}

.service-list-card__body {
  padding: 1.5rem;
}

.service-list-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.service-list-card__body p {
  font-size: 0.88rem;
  color: rgba(245, 240, 235, 0.65);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-list-card__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.service-list-card__actions .btn {
  padding: 0.7rem 1.25rem;
  font-size: 0.72rem;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}

.team-card:hover {
  border-color: rgba(255, 107, 26, 0.3);
  transform: translateY(-4px);
}

.team-card__img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 3px solid rgba(255, 107, 26, 0.3);
}

.team-card__img img {
  object-fit: cover;
  height: 100%;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.team-card__role {
  font-size: 0.8rem;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 0.88rem;
  color: rgba(245, 240, 235, 0.65);
  line-height: 1.6;
}

/* About split layout */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-split__img {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 26, 0.15);
  aspect-ratio: 3/4;
  max-height: 600px;
}

/* DM services grid */
.dm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.dm-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}

.dm-card:hover {
  border-color: rgba(255, 107, 26, 0.35);
  transform: translateY(-4px);
}

.dm-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 26, 0.12);
  color: var(--orange);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.dm-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.dm-card p {
  font-size: 0.9rem;
  color: rgba(245, 240, 235, 0.65);
  line-height: 1.65;
}

/* Service detail page */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.pricing-tier {
  background: var(--dark2);
  border: 1px solid rgba(255, 107, 26, 0.15);
  padding: 1.5rem;
  text-align: center;
}

.pricing-tier h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.pricing-tier .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.gallery-grid--deferred {
  min-height: 120px;
  place-items: center;
}

.gallery-grid__hint {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 2rem 1rem;
}

.gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.4s, opacity 0.4s;
  cursor: pointer;
}

.gallery-grid img.lazy-media--pending {
  background: linear-gradient(110deg, var(--dark2) 8%, var(--dark3) 18%, var(--dark2) 33%);
  background-size: 200% 100%;
  animation: galleryShimmer 1.4s ease-in-out infinite;
  opacity: 1;
  min-height: 260px;
}

@keyframes galleryShimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.gallery-grid img.lazy-media--loaded {
  opacity: 1;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

/* AI Fashion before / after pairs */
.ai-compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.ai-compare-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.75rem;
  border-radius: 8px;
}

.ai-compare-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--dark3);
}

.ai-compare-item img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s, opacity 0.4s;
}

.ai-compare-item img.lazy-media--pending {
  opacity: 0.5;
  min-height: 260px;
}

.ai-compare-item img.lazy-media--loaded {
  opacity: 1;
}

.ai-compare-item:hover img {
  transform: scale(1.03);
  opacity: 0.92;
}

.ai-compare-label {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 2px;
  pointer-events: none;
}

.ai-compare-item--before .ai-compare-label {
  background: rgba(8, 8, 8, 0.75);
  color: var(--gray);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ai-compare-item--after .ai-compare-label {
  background: rgba(255, 107, 26, 0.9);
  color: #fff;
}

@media (max-width: 640px) {
  .ai-compare-grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
}

.lightbox__panel {
  position: relative;
  z-index: 2;
  width: min(92vw, 960px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lightbox__figure {
  margin: 0;
  width: 100%;
  max-height: calc(90vh - 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark2);
  border: 1px solid rgba(255, 107, 26, 0.2);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  overflow: hidden;
}

.lightbox__img {
  max-width: 100%;
  max-height: calc(90vh - 4rem);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.lightbox__caption {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(245, 240, 235, 0.75);
  letter-spacing: 0.06em;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 3;
  background: rgba(15, 15, 15, 0.85);
  border: 1px solid rgba(255, 107, 26, 0.35);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.lightbox__close {
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 1rem;
}

.lightbox__nav--prev {
  left: 1.25rem;
}

.lightbox__nav--next {
  right: 1.25rem;
}

.lightbox__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 640px) {
  .lightbox__nav--prev {
    left: 0.5rem;
  }

  .lightbox__nav--next {
    right: 0.5rem;
  }

  .lightbox__close {
    top: 0.75rem;
    right: 0.75rem;
  }
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1rem;
  transition: border-color 0.3s;
}

.contact-info-card:hover {
  border-color: rgba(255, 107, 26, 0.3);
}

.contact-info-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 26, 0.12);
  color: var(--orange);
  font-size: 1.1rem;
}

.contact-info-card h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9rem;
  color: rgba(245, 240, 235, 0.7);
}

.contact-form {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* Footer subscribe */
.footer__subscribe {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 0;
  margin-top: 2rem;
  text-align: center;
}

.footer__subscribe h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer__subscribe h4 i {
  color: var(--orange);
  margin-right: 0.5rem;
}

.footer__subscribe p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.subscribe-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.subscribe-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1rem;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--orange);
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.footer__contact i {
  color: var(--orange);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer__socials a i {
  font-size: 1rem;
}

.nav__search i {
  font-size: 1.1rem;
}

/* Nav dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 235, 0.65);
  padding: 0;
}

.nav__dropdown-toggle i {
  font-size: 0.55rem;
  transition: transform 0.3s ease;
}

.nav__dropdown:hover .nav__dropdown-toggle,
.nav__dropdown.open .nav__dropdown-toggle,
.nav__dropdown-toggle.active {
  color: var(--orange);
}

.nav__dropdown:hover .nav__dropdown-toggle i,
.nav__dropdown.open .nav__dropdown-toggle i {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: rgba(15, 15, 15, 0.98);
  border: 1px solid rgba(255, 107, 26, 0.2);
  backdrop-filter: blur(16px);
  padding: 0.5rem 0;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1100;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

/* Invisible bridge so the menu stays open while moving the cursor down */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: -1rem;
  right: -1rem;
  height: 1.25rem;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-menu li a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(245, 240, 235, 0.75);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.04em;
}

.nav__dropdown-menu li a:hover {
  color: var(--orange);
  background: rgba(255, 107, 26, 0.08);
}

.nav__dropdown-divider {
  height: 1px;
  margin: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.08);
}

/* Service detail — category enquire row (no pricing) */
.service-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.service-category-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Videography embed */
.video-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.video-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.video-card__frame {
  aspect-ratio: 16/9;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 3rem;
}

.video-card__frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card__body {
  padding: 1.25rem;
}

.video-card__body h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {

  .about-split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-hero {
    padding: 8rem 1.5rem 3rem;
    min-height: auto;
  }

  .page-section {
    padding: 3.5rem 0;
  }

  .section-bg__visual {
    display: none;
  }

  .section-bg .hero__bg-ring,
  .section-bg .hero__bg-ring--2 {
    right: -25%;
  }
}

/* Coming soon page */
.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 107, 26, 0.15), transparent 40%),
    radial-gradient(circle at bottom left, rgba(232, 25, 125, 0.12), transparent 40%),
    var(--black);
  text-align: center;
}

.coming-soon__ring {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 26, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 4s ease-in-out infinite;
  pointer-events: none;
}

.coming-soon__ring--2 {
  width: 700px;
  height: 700px;
  border-color: rgba(232, 25, 125, 0.08);
  animation-delay: 2s;
}

.coming-soon__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.coming-soon__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 26, 0.12);
  color: var(--orange);
  font-size: 2rem;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.coming-soon h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.coming-soon p {
  font-size: 1.05rem;
  color: rgba(245, 240, 235, 0.7);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.coming-soon__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   SMALL PHONES (≤640px)
══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .nav,
  .nav.scrolled {
    padding: 0.85rem 1rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .hero {
    padding: 5.5rem 1rem 2rem;
    gap: 1rem;
  }

  .hero__stack {
    width: min(280px, 78vw);
    height: min(420px, 115vw);
  }

  .hero__models {
    min-height: min(460px, 120vw);
  }

  .hero__model-ring {
    width: min(320px, 88vw);
    height: min(320px, 88vw);
  }

  .hero__model-ring--2 {
    width: min(240px, 66vw);
    height: min(240px, 66vw);
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .stat-card {
    flex-direction: row;
    text-align: left;
    padding: 0.75rem 1rem;
  }

  .stat-num {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.6rem;
  }
/* 
  .services__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  } */

  .service-card__body h3 {
    font-size: 0.75rem;
  }

  .service-card__body p {
    font-size: 0.78rem;
  }

  .portfolio-item {
    flex: 0 0 calc(88% - 0.5rem);
  }

  .testimonials__slider {
    gap: 0.5rem;
  }

  .testimonials__arrow {
    width: 36px;
    height: 36px;
    font-size: 0.7rem;
  }

  .testimonial-card {
    padding: 1.15rem;
  }

  .testimonial-card p {
    font-size: 0.88rem;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__contact li {
    font-size: 0.82rem;
    word-break: break-word;
  }

  .page-hero {
    padding: 7rem 1rem 2.5rem;
  }

  .page-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .page-hero p {
    font-size: 0.92rem;
  }

  .contact-grid {
    gap: 1.5rem;
  }

  .video-showcase {
    grid-template-columns: 1fr;
  }

  .service-categories {
    gap: 0.65rem;
  }

  .service-category-btn {
    font-size: 0.68rem;
    padding: 0.55rem 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .ai-compare-grid {
    gap: 0.75rem;
  }

  .play-btn {
    width: 64px;
    height: 64px;
  }

  .play-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 768px) {
  .nav__dropdown-toggle{
    font-size: 1.6rem;
  }
  .page-hero h1 {
    font-size: 26px;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 2fr));
  gap: 1rem;
}
.service-list-card__body {
  padding: 10px;
}
.page-hero {
  padding: 7rem 0 2.5rem;
}
}
.page-hero__breadcrumb {
  display: none !important;
}