/* ==========================================================================
   NOTHING MEDIA — LUXURY MINIMAL DESIGN SYSTEM
   Theme: Obsidian Black (#050505), Pure White (#FFFFFF), Metallic Gold (#D4AF37)
   Typography: Space Grotesk (Headings), Inter (Body), JetBrains Mono (Accents)
   ========================================================================== */

/* ===== CSS RESET & VARIABLES ===== */
:root {
  --bg: #050505;
  --bg-subtle: #0c0c0e;
  --bg-card: rgba(18, 18, 20, 0.65);
  --bg-card-hover: rgba(26, 26, 30, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-heavy: rgba(10, 10, 12, 0.85);

  --text: #ffffff;
  --text-muted: #94949e;
  --text-dim: #60606a;

  --gold: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #997D20;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --gold-glow-intense: rgba(212, 175, 55, 0.45);

  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.22);
  --border-gold-hover: rgba(212, 175, 55, 0.55);

  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.3);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg);
  color: var(--text);
}

/* Lenis smooth scrolling compatibility */
html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

::selection {
  background-color: var(--gold);
  color: #000000;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #252528;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

p {
  color: var(--text-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.mono {
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--gold-light) 40%, var(--gold) 80%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.white-gradient-text {
  background: linear-gradient(180deg, #FFFFFF 20%, #A0A0A8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Subtle luxury grain texture overlay */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container--narrow {
  max-width: 880px;
}

.container--wide {
  max-width: 1440px;
}

.section {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
  position: relative;
}

.section--sm {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.center {
  text-align: center;
}

/* ===== BADGES & TAGS ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  margin-bottom: 1.25rem;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.badge--glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  display: inline-block;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  animation: pulsePing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulsePing {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: #d1d1d8;
}

.pill--sm {
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
}

.pill--gold {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--border-gold);
  color: var(--gold-light);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.925rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}

.btn--sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.825rem;
}

.btn--lg {
  padding: 1.05rem 2.25rem;
  font-size: 1.025rem;
}

.btn--block {
  width: 100%;
}

/* Primary Luxury Gold Button */
.btn--primary {
  background: linear-gradient(135deg, #E6C762 0%, var(--gold) 50%, #B89228 100%);
  color: #000000;
  box-shadow: 0 8px 25px -6px rgba(212, 175, 55, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -4px rgba(212, 175, 55, 0.65);
  color: #000000;
  background: linear-gradient(135deg, #FFFFFF 0%, #E6C762 40%, var(--gold) 100%);
}

/* Frosted Glass Button */
.btn--glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--border-gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* Gold Outline Button */
.btn--outline {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
}

.btn--outline:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn--glow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.btn--glow:hover::before {
  opacity: 1;
}

/* Arrow link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.link-arrow:hover {
  gap: 0.85rem;
  color: var(--gold-light);
}

/* ===== GLASSMORPHISM CARDS ===== */
.card {
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.card--glass {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.card--glass:hover {
  border-color: var(--border-gold-hover);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 30px -5px rgba(212, 175, 55, 0.12);
}

.card--gold-glow {
  border-color: var(--border-gold);
  box-shadow: 0 0 35px -5px rgba(212, 175, 55, 0.2);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  margin-bottom: 3.5rem;
}

.section-header.center {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.section-desc {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.6;
}

.section-header--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.section-header--split > div:first-child {
  max-width: 650px;
}

.section-header__action {
  max-width: 380px;
}

.section-header__action p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* ===== LOADING SCREEN ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
  width: 280px;
}

.loader__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.loader__ring {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-top-color: var(--gold);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader__brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.loader__brand--accent {
  color: var(--gold);
  font-weight: 400;
}

.loader__bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.loader__fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), #FFFFFF);
  transition: width 0.2s ease-out;
}

.loader__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 9999;
  box-shadow: 0 0 10px var(--gold-glow);
  pointer-events: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  box-shadow: 0 0 10px var(--gold);
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out;
}

@media (max-width: 1024px) {
  .cursor-dot, .cursor-glow {
    display: none !important;
  }
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: padding 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  padding: 0.85rem 0;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.nav__logo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulsePing 2.5s infinite;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #FFFFFF;
}

.nav__logo-sub {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.35rem 0.5rem;
  position: relative;
  transition: color var(--transition-fast);
}

.nav__link:hover, .nav__link.active {
  color: #FFFFFF;
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--gold);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.nav__toggle-bar {
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #09090b;
  border-left: 1px solid var(--border-gold);
  padding: 2.5rem 2rem;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.9);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu__tag {
  font-size: 0.75rem;
  color: var(--gold);
}

.mobile-menu__loc {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.mobile-menu__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0;
  overflow-y: auto;
  max-height: 55vh;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.mobile-menu__link span {
  font-size: 0.8rem;
  color: var(--gold);
}

.mobile-menu__link:hover, .mobile-menu__link.active {
  color: #FFFFFF;
  transform: translateX(8px);
}

.mobile-menu__footer {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

.mobile-backdrop.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1024px) {
  .nav__menu, .nav__cta {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 8.5rem;
  padding-bottom: 5rem;
}

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

.hero__gradient {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.03) 45%, transparent 70%);
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

.hero__radial {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1050px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold);
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.hero__title {
  font-size: clamp(2.5rem, 6.2vw, 5.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 1.75rem;
}

.hero__title-line {
  display: block;
}

.hero__title-brand {
  font-size: clamp(1rem, 2.5vw, 1.75rem);
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hero__title-glow {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--gold-light) 40%, var(--gold) 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: #b0b0bb;
  max-width: 820px;
  margin-bottom: 2.75rem;
  line-height: 1.6;
  font-weight: 400;
}

.hero__subheadline-tags {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(18, 18, 20, 0.6);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.hero__avatars {
  display: flex;
  align-items: center;
}

.hero__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: hsl(var(--hue, 200), 50%, 25%);
  border: 2px solid #050505;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
}
.hero__avatar:first-child {
  margin-left: 0;
}

.hero__avatar--count {
  background: var(--gold);
  color: #000;
  font-weight: 800;
}

.hero__proof-text {
  text-align: left;
  font-size: 0.8rem;
}

.hero__proof-text strong {
  color: #FFFFFF;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.hero__fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 3;
}

/* ===== MARQUEE ===== */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 12, 0.5);
}

.marquee__label {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  letter-spacing: 0.15em;
}

.marquee__track-wrap {
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  white-space: nowrap;
  animation: scrollMarquee 35s linear infinite;
  flex-shrink: 0;
}

.marquee__track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #888894;
  transition: color var(--transition-fast);
}

.marquee__item:hover {
  color: var(--gold-light);
}

.marquee__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===== STATS SECTION ===== */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stats__card {
  padding: 2.25rem 1.75rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.stats__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.stats__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.stats__value {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stats__suffix, .stats__prefix {
  color: var(--gold);
}

.stats__label {
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.stats__detail {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SERVICES GRID ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  position: relative;
  transition: all var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.service-card__tag {
  font-size: 0.7rem;
  color: var(--gold-light);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
}

.service-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: #FFFFFF;
}

.service-card__desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-card__features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card__features li {
  font-size: 0.85rem;
  color: #b8b8c2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.service-card__features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
}

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

/* ===== AI AUTOMATION WORKFLOW PIPELINE ===== */
.workflow-section {
  position: relative;
  overflow: hidden;
}

.workflow-pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}

.workflow-node {
  padding: 2.25rem 1.5rem;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition-smooth);
}

.workflow-node.active, .workflow-node:hover {
  border-color: var(--border-gold-hover);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.22);
  transform: translateY(-4px);
}

.workflow-node__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

.workflow-node__step {
  font-size: 0.7rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.workflow-node__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.workflow-node__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.workflow-node__badge {
  margin-top: 1rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--gold-light);
}

.workflow-node:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: bold;
  z-index: 5;
  filter: drop-shadow(0 0 8px var(--gold));
  animation: pulseArrow 1.5s infinite alternate;
}

@keyframes pulseArrow {
  0% { transform: translateY(-50%) translateX(0); opacity: 0.5; }
  100% { transform: translateY(-50%) translateX(5px); opacity: 1; }
}

@media (max-width: 900px) {
  .workflow-pipeline {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .workflow-node:not(:last-child)::after {
    content: '↓';
    right: 50%;
    bottom: -1.75rem;
    top: auto;
    transform: translateX(50%);
  }
}

/* ===== BENTO ADVANTAGE GRID ===== */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bento__item {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento__item--wide {
  grid-column: span 2;
}

.bento__title {
  font-size: 1.45rem;
  font-weight: 700;
  margin-top: 0.75rem;
  margin-bottom: 0.85rem;
  color: #FFFFFF;
}

.bento__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bento__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .bento {
    grid-template-columns: 1fr;
  }
  .bento__item--wide {
    grid-column: span 1;
  }
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.portfolio-card {
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  transition: all var(--transition-smooth);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
}

.portfolio-card__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #101014;
}

.portfolio-card__mock {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-card__mock {
  transform: scale(1.05);
}

.portfolio-card__mock--cafe {
  background: linear-gradient(135deg, rgba(20, 16, 12, 0.9), rgba(45, 30, 15, 0.8));
}
.portfolio-card__mock--jewellery {
  background: linear-gradient(135deg, rgba(25, 20, 10, 0.9), rgba(50, 40, 15, 0.85));
}
.portfolio-card__mock--hospital {
  background: linear-gradient(135deg, rgba(10, 20, 30, 0.9), rgba(15, 35, 55, 0.85));
}
.portfolio-card__mock--realestate {
  background: linear-gradient(135deg, rgba(20, 25, 25, 0.9), rgba(30, 45, 45, 0.85));
}
.portfolio-card__mock--gym {
  background: linear-gradient(135deg, rgba(25, 15, 20, 0.9), rgba(45, 20, 30, 0.85));
}
.portfolio-card__mock--salon {
  background: linear-gradient(135deg, rgba(30, 15, 35, 0.9), rgba(50, 20, 55, 0.85));
}

.portfolio-card__badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 0.7rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  backdrop-filter: blur(8px);
}

.portfolio-card__play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.85);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  padding-left: 3px;
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.6);
  transition: all var(--transition-smooth);
}

.portfolio-card:hover .portfolio-card__play {
  transform: scale(1.18);
  background: #FFFFFF;
}

.portfolio-card__overlay {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.portfolio-card__body {
  padding: 1.75rem;
}

.portfolio-card__body span.mono {
  font-size: 0.75rem;
  color: var(--gold);
}

.portfolio-card__body h3 {
  font-size: 1.35rem;
  margin: 0.5rem 0 0.65rem 0;
  color: #FFFFFF;
}

.portfolio-card__body p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.portfolio-card__metrics {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

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

/* ===== VIDEO MODAL POPUP ===== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10005;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal__content {
  width: 100%;
  max-width: 900px;
  background: #0d0d10;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 50px rgba(212, 175, 55, 0.2);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active .video-modal__content {
  transform: scale(1);
}

.video-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border);
}

.video-modal__title {
  font-size: 1.15rem;
  color: #FFFFFF;
}

.video-modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.video-modal__close:hover {
  background: var(--gold);
  color: #000;
}

.video-modal__player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal__reel-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 1.25rem;
}

.video-modal__pulse-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 0 35px var(--gold);
  animation: pulsePing 2s infinite;
}

.video-modal__footer {
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

/* ===== CASE STUDIES SECTION & CARDS ===== */
.case-studies__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.case-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.case-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.case-card__brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
}

.case-card__growth-badge {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
}

.case-card__before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  margin: 1.5rem 0;
}

.case-card__metric-box {
  display: flex;
  flex-direction: column;
}

.case-card__metric-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.35rem;
}

.case-card__metric-val {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #FFFFFF;
}

.case-card__metric-val--after {
  color: var(--gold);
}

@media (max-width: 800px) {
  .case-studies__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PRICING SECTION ===== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition-smooth);
}

.pricing-card--popular {
  border-color: var(--gold);
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.25);
  transform: translateY(-8px);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #E6C762, var(--gold));
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.pricing-card__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.pricing-card__subtitle {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1.75rem;
}

.pricing-card__price {
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.pricing-card__amount {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 3.5vw, 3.25rem);
  font-weight: 800;
  color: #FFFFFF;
}

.pricing-card__period {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.pricing-card__features li {
  font-size: 0.9rem;
  color: #d1d1dc;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pricing-card__features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 3px;
}

@media (max-width: 1024px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card--popular {
    transform: none;
  }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 3px;
  margin-bottom: 1.25rem;
}

.testimonial-card__quote {
  font-size: 0.975rem;
  line-height: 1.7;
  color: #d4d4df;
  margin-bottom: 1.75rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.95rem;
  color: #FFFFFF;
}

.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

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

/* ===== FAQ SECTION ===== */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq__item.active {
  border-color: var(--border-gold);
}

.faq__question {
  width: 100%;
  padding: 1.35rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  transition: color var(--transition-fast);
}

.faq__item.active .faq__question,
.faq__question:hover {
  color: var(--gold-light);
}

.faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 1.75rem 1.5rem 1.75rem;
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq__answer a {
  color: var(--gold);
  text-decoration: underline;
}

/* ===== CTA BANNER ===== */
.cta__card {
  padding: 5rem 2.5rem;
  position: relative;
  overflow: hidden;
  border-color: var(--border-gold);
}

.cta__glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.cta__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.cta__title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.cta__desc {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.cta__fine {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ===== NEWSLETTER ===== */
.newsletter__card {
  padding: 2.5rem;
  background: rgba(18, 18, 22, 0.8);
}

.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.newsletter__text {
  max-width: 420px;
}

.newsletter__title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.newsletter__desc {
  font-size: 0.875rem;
}

.newsletter__form {
  flex: 1;
  min-width: 300px;
}

.input-group {
  display: flex;
  gap: 0.5rem;
}

.input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: #FFFFFF;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.newsletter__feedback {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--gold);
}

/* ===== CONTACT PAGE FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
}

.contact-info__card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-channel__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-channel h4 {
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.contact-channel p, .contact-channel a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-channel a:hover {
  color: var(--gold);
}

.contact-form__card {
  padding: 3rem;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #d8d8e2;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: #FFFFFF;
  font-family: inherit;
  font-size: 0.925rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #020202;
  border-top: 1px solid var(--border);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer__logo {
  margin-bottom: 1.25rem;
}

.footer__tagline {
  font-size: 0.95rem;
  color: #b0b0bc;
  margin-bottom: 1.5rem;
  max-width: 320px;
  font-style: italic;
}

.footer__address {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.footer__address a:hover {
  color: var(--gold);
}

.footer__status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--gold-light);
}

.footer__heading {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer__links a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__bottom-links a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 550px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}

/* ===== FLOATING ACTION BUTTONS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}

.whatsapp-float__badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #050505;
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(10, 10, 12, 0.9);
  border: 1px solid var(--border-gold);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(20, 20, 24, 0.85);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* ===== GSAP & REVEAL HELPER STYLES ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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