/* ============================================================
   CROWN MEDIA — Luxury Influencer Marketing Agency
   Golden · Black · White
   ============================================================ */

:root {
  --gold: #d4af37;
  --gold-light: #f0d98c;
  --gold-dark: #a8842c;
  --gold-gradient: linear-gradient(135deg, #f6e27a 0%, #d4af37 45%, #a8842c 100%);
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #181818;
  --white: #ffffff;
  --white-dim: rgba(255, 255, 255, 0.7);
  --white-faint: rgba(255, 255, 255, 0.45);
  --border: rgba(212, 175, 55, 0.25);
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.25);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--black-2);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold), var(--gold-dark));
  border-radius: 10px;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  animation: crownPulse 1.2s ease-in-out infinite;
}
@keyframes crownPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(212,175,55,0.4)); }
  50% { transform: scale(1.15); filter: drop-shadow(0 0 25px rgba(212,175,55,0.8)); }
}
.preloader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.preloader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold-gradient);
  animation: loadBar 1.4s ease forwards;
}
@keyframes loadBar {
  to { width: 100%; }
}

/* ============ CUSTOM CURSOR ============ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}
.cursor-ring.hovering {
  width: 60px;
  height: 60px;
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}
@media (hover: none), (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-container {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}
.logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(2);
  transition: filter 0.4s ease, transform 0.4s var(--ease);
}
.logo:hover .logo-img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.logo-text span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 34px;
}
.nav-link {
  position: relative;
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.35s var(--ease);
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-cta {
  padding: 10px 22px;
  font-size: 0.9rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.m-link {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}
.m-link:hover {
  color: var(--gold);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold-gradient);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(212, 175, 55, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.btn-block {
  width: 100%;
}

/* Shine effect */
.shine {
  position: relative;
  overflow: hidden;
}
.shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.shine:hover::before {
  left: 150%;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4), transparent 70%);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25), transparent 70%);
  bottom: -80px;
  left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(20px); }
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}
.hero-tag {
  display: inline-block;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 30px;
  background: rgba(212, 175, 55, 0.05);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line-1 {
  color: var(--white);
}
.hero-title .line-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.crown-symbol {
  font-size: 0.8em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: crownFloat 3s ease-in-out infinite;
}
@keyframes crownFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}
.shine-text {
  background: var(--gold-gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineMove 4s linear infinite;
}
@keyframes shineMove {
  to { background-position: 200% center; }
}
.hero-sub {
  color: var(--white-dim);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-plus,
.stat-percent {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}
.stat-label {
  display: block;
  color: var(--white-faint);
  font-size: 0.85rem;
  margin-top: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--border);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.wheel {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 4px;
  animation: wheel 1.6s ease infinite;
}
@keyframes wheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ============ SECTIONS ============ */
.section {
  padding: 110px 0;
  position: relative;
}
.section-head {
  text-align: center;
  margin-bottom: 70px;
}
.section-eyebrow {
  display: inline-block;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.section-eyebrow::before { right: calc(100% + 16px); }
.section-eyebrow::after { left: calc(100% + 16px); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
}
.section-sub {
  color: var(--white-dim);
  max-width: 600px;
  margin: 18px auto 0;
}

/* ============ ABOUT ============ */
.about {
  background: var(--black-2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-text p {
  color: var(--white-dim);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.about-text strong {
  color: var(--gold);
}
.about-points {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 500;
}
.check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.about-visual {
  position: relative;
}
.visual-card {
  background: linear-gradient(145deg, var(--black-3), var(--black));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}
.visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}
.visual-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}
.visual-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.visual-crown {
  font-size: 2.2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.visual-top h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
}
.visual-quote {
  color: var(--white-dim);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
.visual-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}
.visual-name {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}
.visual-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--black-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 60%;
  height: 60%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transform: skewX(-20deg);
  transition: top 0.6s ease, left 0.6s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--border);
  box-shadow: var(--shadow-gold);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover::after {
  top: 120%;
  left: 120%;
}
.service-icon {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.06);
  transition: transform 0.4s var(--ease), background 0.4s ease, color 0.4s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.08);
  background: var(--gold-gradient);
  color: var(--black);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 12px;
  position: relative;
}
.service-card p {
  color: var(--white-dim);
  font-size: 0.95rem;
  margin-bottom: 20px;
  position: relative;
}
.service-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  transition: letter-spacing 0.3s ease;
}
.service-link:hover {
  letter-spacing: 1px;
}

/* ============ WORK / BRAND MARQUEE ============ */
.work {
  background: var(--black-2);
  overflow: hidden;
}
.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--black-2), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--black-2), transparent);
}
.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand-card {
  width: 260px;
  height: 170px;
  flex-shrink: 0;
  background: transparent;
  border: none;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.brand-card:hover {
  transform: translateY(-6px);
}
.brand-card img {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}
.brand-card:hover img {
  transform: scale(1.08);
}
.brand-card .brand-placeholder {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white-faint);
  letter-spacing: 1px;
  text-align: center;
}

/* ============ CREATORS ============ */
.creators-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.creators-intro p {
  color: var(--white-dim);
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.creators-intro .btn {
  margin-top: 12px;
}
.creators-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.perk {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 24px;
  background: var(--black-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.perk::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold-gradient);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease);
}
.perk:hover {
  border-color: var(--border);
  transform: translateX(8px);
  box-shadow: var(--shadow-gold);
}
.perk:hover::before {
  transform: scaleY(1);
}
.perk-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  line-height: 1;
}
.perk h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.perk p {
  color: var(--white-dim);
  font-size: 0.95rem;
}

/* ============ CTA ============ */
.cta-box {
  background: linear-gradient(145deg, var(--black-3), var(--black));
  border: 1px solid var(--border);
  border-radius: 24px;
  text-align: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.15), transparent 60%);
}
.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  position: relative;
}
.cta-box p {
  color: var(--white-dim);
  margin-bottom: 36px;
  position: relative;
}

/* ============ CONTACT ============ */
.contact {
  background: var(--black-2);
}
.contact-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12), transparent 60%);
}
.contact-card-text {
  color: var(--white-dim);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  position: relative;
}
.contact-email {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
  position: relative;
}
.contact-email:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.contact-card-note {
  color: var(--white-faint);
  font-size: 0.9rem;
  margin-top: 24px;
  position: relative;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-links {
  display: flex;
  list-style: none;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 30px;
  color: var(--white-faint);
  font-size: 0.85rem;
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid,
  .creators-grid {
    grid-template-columns: 1fr;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 40px 24px;
  }
  .hero-stats {
    gap: 30px;
  }
  .stat-num {
    font-size: 2rem;
  }
  .brand-card {
    width: 160px;
    height: 100px;
  }
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}