/* ══════════════════════════════════════════
   CAMLEBRITY STUDIOS — MASTER STYLESHEET
   ══════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --cyan: #00e5ff;
  --aqua: #00bcd4;
  --magenta: #ff2d87;
  --hot-pink: #ff4da6;
  --gold: #ffb800;
  --orange: #ff6b35;
  --navy: #0a0e27;
  --navy-light: #141938;
  --purple: #a855f7;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-bg-hover: rgba(255, 255, 255, 0.08);
  --text-primary: #f0f0f5;
  --text-secondary: rgba(240, 240, 245, 0.6);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan) var(--navy)
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity .3s;
  opacity: 0
}

/* ── PARTICLE CANVAS ── */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none
}

/* ── AMBIENT BACKGROUND ── */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
  will-change: transform
}

.ambient-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--magenta), transparent);
  top: -10%;
  left: -10%;
  animation: orbFloat1 20s ease-in-out infinite
}

.ambient-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--cyan), transparent);
  bottom: -5%;
  right: -10%;
  animation: orbFloat2 25s ease-in-out infinite
}

.ambient-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--purple), transparent);
  top: 40%;
  left: 50%;
  animation: orbFloat3 22s ease-in-out infinite
}

.ambient-orb-4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--gold), transparent);
  top: 20%;
  right: 20%;
  opacity: .15;
  animation: orbFloat4 28s ease-in-out infinite
}

@keyframes orbFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(80px, 60px) scale(1.15)
  }
}

@keyframes orbFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(-70px, -50px) scale(1.1)
  }
}

@keyframes orbFloat3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(60px, -80px) scale(1.2)
  }
}

@keyframes orbFloat4 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(-50px, 70px) scale(1.1)
  }
}

/* ── FLOATING STARS ── */
.floating-stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden
}

.star-element {
  position: absolute;
  will-change: transform;
  opacity: 0;
  animation: starFloat 12s ease-in-out infinite
}

.star-element svg {
  filter: drop-shadow(0 0 8px var(--cyan)) drop-shadow(0 0 20px rgba(0, 229, 255, 0.3))
}

@keyframes starFloat {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0
  }

  10% {
    opacity: .6
  }

  50% {
    transform: translateY(-40px) rotate(180deg);
    opacity: .8
  }

  90% {
    opacity: .6
  }

  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0
  }
}

/* ── LIGHT STREAKS ── */
.light-streaks {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden
}

.light-streak {
  position: absolute;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--magenta), transparent);
  opacity: 0;
  transform: rotate(-35deg)
}

.streak-1 {
  top: 20%;
  left: -50%;
  animation: streakPass 8s ease-in-out infinite 0s
}

.streak-2 {
  top: 50%;
  left: -50%;
  animation: streakPass 10s ease-in-out infinite 3s
}

.streak-3 {
  top: 75%;
  left: -50%;
  animation: streakPass 12s ease-in-out infinite 6s
}

@keyframes streakPass {
  0% {
    transform: translateX(-100%) rotate(-35deg);
    opacity: 0
  }

  5% {
    opacity: .3
  }

  50% {
    opacity: .15
  }

  95% {
    opacity: .3
  }

  100% {
    transform: translateX(100%) rotate(-35deg);
    opacity: 0
  }
}

/* ══════════════ NAVIGATION ══════════════ */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 10px 40px;
  transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.nav-bar.scrolled {
  padding: 8px 40px;
  background: rgba(10, 14, 39, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border)
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-logo img {
  height: 25px;
  object-fit: contain;
  transition: transform .3s
}

.nav-logo:hover img {
  transform: scale(1.05)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: all .3s;
  position: relative
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  transition: width .3s
}

.nav-link:hover {
  color: var(--white)
}

.nav-link:hover::after {
  width: 100%
}

.nav-link-cta {
  color: var(--navy);
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: .05em
}

.nav-link-cta::after {
  display: none
}

.nav-link-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.4)
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110
}

.nav-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
  border-radius: 2px
}

.nav-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.nav-menu-btn.active span:nth-child(2) {
  opacity: 0
}

.nav-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(30px);
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: all .3s
}

.mobile-link:hover {
  color: var(--white)
}

/* ══════════════ HERO ══════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  padding-top: 60px
}

.hero-models {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none
}

.hero-model {
  position: absolute;
  opacity: .15;
  transition: transform .1s linear
}

.hero-model img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-model-left {
  left: -5%;
  top: 10%;
  width: 35%;
  height: 80%;
  mask-image: linear-gradient(to right, transparent, black 30%, black 70%, transparent)
}

.hero-model-right {
  right: -5%;
  top: 5%;
  width: 35%;
  height: 85%;
  mask-image: linear-gradient(to left, transparent, black 30%, black 70%, transparent)
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 24px;
  max-width: 900px
}

.hero-logo {
  margin: 0 auto 20px;
  position: relative;
  width: 380px
}

.hero-logo img {
  width: 80%;
  margin: 0 auto;
  filter: drop-shadow(0 0 40px rgba(0, 229, 255, 0.3)) drop-shadow(0 0 80px rgba(255, 45, 135, 0.2));
  animation: logoPulse 4s ease-in-out infinite
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, rgba(255, 45, 135, 0.05) 40%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite
}

@keyframes logoPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 40px rgba(0, 229, 255, 0.3)) drop-shadow(0 0 80px rgba(255, 45, 135, 0.2))
  }

  50% {
    filter: drop-shadow(0 0 60px rgba(0, 229, 255, 0.5)) drop-shadow(0 0 100px rgba(255, 45, 135, 0.3))
  }
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: .6;
    transform: translate(-50%, -50%) scale(1)
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1)
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .04em;
  margin-bottom: 16px
}

.headline-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp .8s cubic-bezier(.4, 0, .2, 1) forwards
}

.headline-line-1 {
  animation-delay: .3s
}

.headline-line-2 {
  animation-delay: .5s;
  background: linear-gradient(135deg, var(--white) 0%, var(--cyan) 40%, var(--magenta) 70%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.headline-line-2 em {
  font-style: normal;
  -webkit-text-fill-color: var(--cyan);
  text-shadow: 0 0 30px rgba(0, 229, 255, 0.5)
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-subtext {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp .8s cubic-bezier(.4, 0, .2, 1) .7s forwards
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s cubic-bezier(.4, 0, .2, 1) .9s forwards
}

/* ── BUTTONS ── */
.btn {
  position: relative;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  overflow: hidden;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: var(--navy);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.3), 0 0 60px rgba(255, 45, 135, 0.15)
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.5), 0 0 80px rgba(255, 45, 135, 0.25)
}

.btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity .4s
}

.btn-primary:hover .btn-glow {
  opacity: 1
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px)
}

.btn-secondary:hover {
  border-color: var(--cyan);
  background: rgba(0, 229, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2)
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left .6s
}

.btn-secondary:hover .btn-shine {
  left: 100%
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp .8s cubic-bezier(.4, 0, .2, 1) 1.2s forwards
}

.scroll-indicator span {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-secondary)
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(.6)
  }

  50% {
    opacity: 1;
    transform: scaleY(1)
  }
}

/* ══════════════ SECTIONS (SHARED) ══════════════ */
.section {
  position: relative;
  z-index: 2;
  padding: 140px 40px;
  overflow: hidden
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative
}

.section-inner-full {
  max-width: 1400px;
  margin: 0 auto;
  position: relative
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px
}

.label-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta))
}

.label-text {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan)
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 48px;
  letter-spacing: -.01em
}

.section-title-center {
  text-align: center
}

.section-title-center .section-label {
  justify-content: center
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyan), var(--magenta), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.gradient-text-alt {
  background: linear-gradient(135deg, var(--magenta), var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* ── GLASS PANELS ── */
.glass-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent)
}

.glass-panel p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.05rem
}

.glass-panel p:last-child {
  margin-bottom: 0
}

.glass-panel .highlight-text {
  color: var(--text-primary);
  font-weight: 500
}

.glass-panel .accent-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 24px
}

/* ── GLASS FRAMES (MODEL IMAGES) ── */
.glass-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4)
}

.frame-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(.4, 0, .2, 1)
}

.glass-frame:hover .frame-image {
  transform: scale(1.05)
}

.frame-glow {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.3), rgba(255, 45, 135, 0.3));
  z-index: -1;
  filter: blur(20px);
  opacity: .5;
  animation: frameGlow 4s ease-in-out infinite
}

.frame-glow-magenta {
  background: linear-gradient(135deg, rgba(255, 45, 135, 0.4), rgba(168, 85, 247, 0.3))
}

.frame-reflection {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none
}

@keyframes frameGlow {

  0%,
  100% {
    opacity: .4;
    filter: blur(20px)
  }

  50% {
    opacity: .7;
    filter: blur(30px)
  }
}

/* ══════════════ ABOUT SECTION ══════════════ */
.about-section .section-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center
}

.about-model-frame {
  position: relative
}

.about-model-frame .glass-frame {
  height: 550px
}

.about-panel {
  max-width: 600px
}

/* ══════════════ SERVICES SECTION ══════════════ */
.services-section {
  background: linear-gradient(180deg, transparent 0%, rgba(168, 85, 247, 0.03) 50%, transparent 100%)
}

.services-section .section-label {
  justify-content: center
}

.services-model-strip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 60%;
  opacity: .06;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse, black 30%, transparent 70%)
}

.strip-model {
  width: 100%;
  height: 100%
}

.strip-model img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
  margin-top: 60px
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all .5s cubic-bezier(.4, 0, .2, 1);
  cursor: default
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent)
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  transform: translateY(-8px);
  border-color: rgba(0, 229, 255, 0.2)
}

.card-glow {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity .5s;
  filter: blur(40px)
}

.glass-card:hover .card-glow {
  opacity: 1
}

.card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all .4s
}

.card-icon svg {
  width: 40px;
  height: 40px
}

.glass-card:hover .card-icon {
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.2);
  transform: scale(1.1)
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white)
}

.card-desc {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.65
}

/* ══════════════ POSITIONING SECTION ══════════════ */
.positioning-section {
  background: linear-gradient(180deg, transparent, rgba(10, 14, 39, 0.8), transparent)
}

.positioning-section .section-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center
}

.positioning-panel .positioning-intro {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 28px
}

.positioning-lines {
  margin-bottom: 28px
}

.pos-line {
  color: var(--text-secondary);
  line-height: 2;
  font-size: 1.05rem;
  padding-left: 20px;
  position: relative
}

.pos-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--cyan)
}

.positioning-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--magenta), transparent);
  margin: 28px 0
}

.pos-contrast {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 8px
}

.pos-highlight {
  color: var(--cyan);
  font-weight: 600;
  font-size: 1.1rem
}

.positioning-model .glass-frame {
  height: 500px;
  width: 100%
}

/* ══════════════ CLOSING SECTION ══════════════ */
.closing-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative
}

.closing-models {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none
}

.closing-model {
  position: absolute;
  opacity: .18
}

.closing-model img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.7)
}

.closing-model-1 {
  left: 0;
  top: 0;
  width: 45%;
  height: 100%;
  mask-image: linear-gradient(to right, black, transparent)
}

.closing-model-2 {
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  mask-image: linear-gradient(to left, black, transparent)
}

.closing-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10, 14, 39, 0.6), rgba(10, 14, 39, 0.9));
  z-index: 1
}

.closing-content {
  position: relative;
  z-index: 5;
  padding: 0 24px
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 60px
}

.closing-line-1 {
  display: block;
  color: var(--text-secondary);
  margin-bottom: 12px
}

.closing-line-2 {
  display: block;
  background: linear-gradient(135deg, var(--cyan), var(--magenta), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.closing-line-2 em {
  font-style: normal
}

.closing-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px
}

.closing-logo {
  width: 200px;
  filter: drop-shadow(0 0 40px rgba(0, 229, 255, 0.4)) drop-shadow(0 0 80px rgba(255, 45, 135, 0.2));
  animation: logoPulse 4s ease-in-out infinite
}

.closing-tag {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.4)
}

/* ══════════════ FOOTER ══════════════ */
.footer {
  position: relative;
  z-index: 2;
  padding: 60px 40px 40px;
  border-top: 1px solid var(--glass-border)
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center
}

.footer-logo {
  height: 28px;
  margin: 0 auto 20px;
  opacity: .5;
  object-fit: contain
}

.footer-division {
  font-size: .85rem;
  color: var(--text-secondary);
  margin-bottom: 8px
}

.footer-email {
  font-size: .9rem;
  color: var(--cyan);
  transition: all .3s;
  display: inline-block
}

.footer-email:hover {
  color: var(--magenta);
  text-shadow: 0 0 10px rgba(255, 45, 135, 0.3)
}

.footer-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin: 24px auto
}

.footer-copy {
  font-size: .75rem;
  color: rgba(240, 240, 245, 0.3)
}

/* ══════════════ REVEAL ANIMATION ══════════════ */
.reveal-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1)
}

.reveal-element.revealed {
  opacity: 1;
  transform: translateY(0)
}

/* ══════════════ RESPONSIVE ══════════════ */
@media(max-width:1024px) {
  .about-section .section-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .about-model-frame {
    order: -1
  }

  .about-model-frame .glass-frame {
    height: 400px
  }

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

  .positioning-section .section-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .positioning-model {
    order: -1
  }

  .positioning-model .glass-frame {
    height: 400px
  }

  .hero-model {
    display: none
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .nav-menu-btn {
    display: flex
  }

  .nav-bar {
    padding: 10px 20px
  }

  .section {
    padding: 100px 20px
  }

  .nav-logo img {
    height: 60px
  }

  .hero-logo {
    width: 380px;
    margin-top: 100px
  }

  .glass-panel {
    padding: 32px 24px
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .closing-model {
    display: none
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center
  }

  .btn {
    width: 100%;
    max-width: 280px
  }
}