/* ================================================================
   LAMBADI BUSINESS GROUP — Master-Class Stylesheet
   Design System: Deep Charcoal · Burnished Gold · Slate
   Architecture: Mobile-First · CSS Custom Properties · Glassmorphism
   ================================================================ */

/* ── 1. CSS CUSTOM PROPERTIES (Design Tokens) ── */
:root {
  /* Color Palette */
  --clr-void:        #080808;
  --clr-charcoal:    #0d0d0d;
  --clr-charcoal-2:  #131313;
  --clr-charcoal-3:  #1a1a1a;
  --clr-charcoal-4:  #222222;
  --clr-slate:       #2a2f3a;
  --clr-slate-2:     #353c4a;
  --clr-slate-3:     #4a5568;

  --clr-gold:        #c9a84c;
  --clr-gold-light:  #e8c56d;
  --clr-gold-dark:   #b8902a;
  --clr-gold-dim:    rgba(201, 168, 76, 0.15);
  --clr-gold-glow:   rgba(201, 168, 76, 0.25);

  --clr-white:       #ffffff;
  --clr-off-white:   #f5f0e8;
  --clr-text-main:   #e0d5c5;
  --clr-text-muted:  #8a8070;
  --clr-text-faint:  #5a5248;

  /* Typography */
  --font-display:    'Playfair Display', Georgia, serif;
  --font-body:       'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:       'Orbitron', 'Courier New', monospace;

  /* Spacing Scale */
  --sp-xs:  0.25rem;
  --sp-sm:  0.5rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 6rem;
  --sp-5xl: 8rem;

  /* Layout */
  --max-width:       1280px;
  --header-height:   80px;
  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --radius-xl:       32px;

  /* Transitions */
  --ease-out:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:     cubic-bezier(0.45, 0, 0.55, 1);
  --dur-fast:        0.2s;
  --dur-mid:         0.4s;
  --dur-slow:        0.7s;
  --dur-xslow:       1.2s;

  /* Shadows */
  --shadow-gold:     0 0 40px rgba(201, 168, 76, 0.2);
  --shadow-card:     0 8px 40px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-glow:     0 0 80px rgba(201, 168, 76, 0.15), 0 0 160px rgba(201, 168, 76, 0.08);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-charcoal);
  color: var(--clr-text-main);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none; /* Use custom cursor on desktop */
}

@media (max-width: 768px) {
  body { cursor: auto; }
}

/* Scrollbar Styling */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-charcoal); }
::-webkit-scrollbar-thumb { background: var(--clr-gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-gold); }

/* Selection */
::selection {
  background: rgba(201, 168, 76, 0.3);
  color: var(--clr-white);
}

/* Focus Visibility */
:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img, video, canvas { display: block; max-width: 100%; }
input, textarea, select, button { font-family: inherit; }

/* ── 3. LAYOUT UTILITIES ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--sp-xl);
}

@media (max-width: 768px) {
  .container { padding-inline: var(--sp-md); }
}

/* ── 4. TYPOGRAPHY ── */
.text-gold { color: var(--clr-gold-light); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-md);
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--clr-gold-dark);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-off-white);
  margin-bottom: var(--sp-lg);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  line-height: 1.75;
}

.section-header {
  margin-bottom: var(--sp-3xl);
}

/* ── 5. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: all var(--dur-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity var(--dur-fast);
}

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

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
  border-radius: var(--radius-md);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* Gold/Primary Button */
.btn-gold {
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 50%, var(--clr-gold-dark) 100%);
  color: var(--clr-charcoal);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35), 0 1px 3px rgba(0,0,0,0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5), 0 2px 6px rgba(0,0,0,0.4);
}

.btn-gold:active { transform: translateY(0); }

/* Outline Button */
.btn-outline {
  background: transparent;
  color: var(--clr-gold-light);
  border: 1.5px solid rgba(201, 168, 76, 0.45);
}

.btn-outline:hover {
  background: var(--clr-gold-dim);
  border-color: var(--clr-gold);
  transform: translateY(-2px);
}

/* ── 6. CUSTOM CURSOR ── */
#cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear;
  will-change: transform;
}

#cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clr-gold);
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.8), 0 0 4px var(--clr-gold-light);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s linear, width 0.2s, height 0.2s, opacity 0.2s;
  will-change: transform;
}

#cursor-dot.cursor-hover {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  #cursor-glow, #cursor-dot { display: none; }
}

/* ── 7. NAVIGATION ── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--dur-mid) var(--ease-out),
              backdrop-filter var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out),
              padding var(--dur-mid) var(--ease-out);
  height: var(--header-height);
  display: flex;
  flex-direction: column;
}

/* Scrolled state — glassmorphism activated */
#site-header.scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15), 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding-inline: var(--sp-xl);
  max-width: 100%;
  position: relative;
  z-index: 2;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-off-white);
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  list-style: none;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  position: relative;
  transition: color var(--dur-fast);
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-gold);
  transition: width var(--dur-mid) var(--ease-out);
}

.nav-link:hover {
  color: var(--clr-gold-light);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: var(--clr-charcoal-3);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0 8px;
  transition: background var(--dur-fast), border-color var(--dur-fast);
  z-index: 1001;
}

.hamburger:hover {
  background: var(--clr-charcoal-4);
  border-color: var(--clr-gold);
}

.ham-line {
  display: block;
  height: 2px;
  background: var(--clr-gold-light);
  transition: transform var(--dur-mid) var(--ease-out), opacity var(--dur-fast), width var(--dur-mid) var(--ease-out);
  transform-origin: center;
}

.hamburger[aria-expanded="true"] .ham-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .ham-line:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger[aria-expanded="true"] .ham-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Fullscreen Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1; /* Below nav-container inside header */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--sp-3xl) var(--sp-xl);
  opacity: 0;
  visibility: hidden;
  clip-path: circle(0% at 90% 10%);
  transition: opacity var(--dur-mid), visibility var(--dur-mid), clip-path 0.5s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  clip-path: circle(150% at 90% 10%);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2xl);
  width: 100%;
}

.mobile-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.5rem);
  font-weight: 700;
  color: var(--clr-off-white);
  padding: var(--sp-sm);
  transition: color var(--dur-fast), transform var(--dur-mid);
  text-align: center;
}

.mobile-link:hover {
  color: var(--clr-gold-light);
  transform: scale(1.05);
}

.mobile-cta {
  margin-top: var(--sp-3xl);
  width: auto;
  min-width: 250px;
}

@media (max-width: 900px) {
  .nav-links, #nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/* ── 8. HERO SECTION ── */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--clr-void);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  opacity: 0.5;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(8,8,8,0.95) 0%, transparent 60%),
    linear-gradient(180deg, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.1) 40%, rgba(8,8,8,0.7) 80%, var(--clr-void) 100%);
  z-index: 2;
}

/* Geometric Floating Accents */
.hero-geo {
  position: absolute;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  z-index: 2;
  animation: geoFloat 8s ease-in-out infinite;
}

.geo-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.geo-2 {
  width: 300px;
  height: 300px;
  bottom: 100px;
  left: -80px;
  border-color: rgba(201, 168, 76, 0.08);
  animation-delay: 3s;
  animation-duration: 10s;
}

.geo-3 {
  width: 180px;
  height: 180px;
  top: 30%;
  right: 15%;
  border-color: rgba(201, 168, 76, 0.06);
  animation-delay: 1.5s;
  animation-duration: 12s;
}

@keyframes geoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: calc(var(--header-height) + var(--sp-4xl)) var(--sp-xl) var(--sp-5xl);
  max-width: 900px;
}

/* Hero Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-xl);
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold-dark));
}

.eyebrow-text { white-space: nowrap; }

/* Hero Title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--clr-off-white);
  margin-bottom: var(--sp-xl);
  letter-spacing: -0.02em;
}

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

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--clr-text-muted);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--sp-2xl);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-3xl);
}

/* Scroll Indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--clr-gold);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  61% { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Hero Stats Strip */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(13,13,13,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding: var(--sp-lg) var(--sp-xl);
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--sp-sm) var(--sp-xl);
  text-align: center;
}

.stat-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--clr-gold-light);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-gold);
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.15);
}

@media (max-width: 600px) {
  .hero-stat-divider { display: none; }
  .hero-stat { min-width: 50%; padding: var(--sp-sm); }
}

/* Back-to-Top Button */
.back-to-top {
  position: fixed;
  bottom: var(--sp-xl);
  right: var(--sp-xl);
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold-dark));
  color: var(--clr-charcoal);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: opacity var(--dur-mid) var(--ease-out),
              transform var(--dur-mid) var(--ease-out);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.55);
}

/* ── 9. REVEAL ANIMATIONS ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity var(--dur-slow) var(--ease-out) var(--delay, 0s),
    transform var(--dur-slow) var(--ease-out) var(--delay, 0s);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity var(--dur-slow) var(--ease-out) var(--delay, 0s),
    transform var(--dur-slow) var(--ease-out) var(--delay, 0s);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  transition:
    opacity var(--dur-slow) var(--ease-out) var(--card-delay, 0s),
    transform var(--dur-slow) var(--ease-out) var(--card-delay, 0s);
}

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ── 10. SECTORS SECTION ── */
.sectors-section {
  padding: var(--sp-5xl) 0;
  background: var(--clr-charcoal-2);
  position: relative;
  overflow: hidden;
}

.sectors-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.3) 30%, rgba(201,168,76,0.3) 70%, transparent 100%);
}

.sectors-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.2) 30%, rgba(201,168,76,0.2) 70%, transparent 100%);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xl);
}

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

.sector-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--clr-charcoal-3) 0%, var(--clr-charcoal-4) 100%);
  border: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out);
  transform-style: preserve-3d;
  will-change: transform;
}

@media (max-width: 768px) {
  .sector-card {
    aspect-ratio: 4 / 5;
  }
}

.sector-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-card), 0 0 40px rgba(201, 168, 76, 0.1);
}

.card-inner {
  position: relative;
  padding: var(--sp-2xl);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 400px;
}

@media (max-width: 600px) {
  .card-inner {
    min-height: 340px;
    padding: var(--sp-xl);
  }
}

/* Card Glow Effect (appears on hover) */
.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity var(--dur-mid);
  transform: translate(var(--mx, 0), var(--my, 0));
}

.sector-card:hover .card-glow { opacity: 1; }

/* SVG Background Art */
.card-bg-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
  transition: opacity var(--dur-mid);
}

.card-img-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-svg-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-lg);
  transition: background var(--dur-mid), border-color var(--dur-mid), transform var(--dur-mid);
}

.sector-card:hover .card-icon {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.35);
  transform: scale(1.05);
}

.card-content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.card-sector-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-sm);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-off-white);
  margin-bottom: var(--sp-md);
  line-height: 1.25;
}

.card-description {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.card-features li {
  font-size: 0.82rem;
  color: var(--clr-text-faint);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.card-features li::before {
  content: '◆';
  font-size: 0.45rem;
  color: var(--clr-gold-dark);
  flex-shrink: 0;
}

.card-footer {
  position: relative;
  z-index: 1;
  margin-top: var(--sp-xl);
  padding-top: var(--sp-lg);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  transition: color var(--dur-fast), gap var(--dur-fast);
}

.card-link:hover {
  color: var(--clr-gold-light);
  gap: var(--sp-md);
}

/* ── 11. STATS SECTION ── */
.stats-section {
  padding: var(--sp-5xl) 0;
  background: var(--clr-charcoal);
  position: relative;
  overflow: hidden;
}

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

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
}

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

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

.stat-card {
  background: linear-gradient(145deg, var(--clr-charcoal-3), var(--clr-charcoal-4));
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-xs);
  transition: border-color var(--dur-mid), box-shadow var(--dur-mid), transform var(--dur-mid);
}

.stat-card:hover {
  border-color: rgba(201, 168, 76, 0.22);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 20px rgba(201,168,76,0.07);
  transform: translateY(-4px);
}

.stat-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
}

.counter {
  font-family: var(--font-mono);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--clr-gold-light);
  line-height: 1;
}

.stat-card-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-off-white);
  letter-spacing: 0.03em;
}

.stat-card-sub {
  font-size: 0.75rem;
  color: var(--clr-text-faint);
}

/* ── 12. PARTNER SECTION ── */
.partner-section {
  padding: var(--sp-5xl) 0;
  background: var(--clr-charcoal-2);
  position: relative;
  overflow: hidden;
}

#partner-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.partner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.partner-container {
  position: relative;
  z-index: 1;
}

.partner-content {
  max-width: 900px;
  margin-inline: auto;
}

.partner-desc {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sp-2xl);
  text-align: center;
}

/* Benefits */
.partner-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
  margin-bottom: var(--sp-2xl);
}

@media (max-width: 600px) {
  .partner-benefits { grid-template-columns: 1fr; }
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--radius-md);
  padding: var(--sp-md) var(--sp-lg);
  transition: background var(--dur-fast), border-color var(--dur-fast);
}

.benefit-item:hover {
  background: rgba(201, 168, 76, 0.07);
  border-color: rgba(201, 168, 76, 0.15);
}

.benefit-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Partner Form */
.partner-form {
  background: linear-gradient(145deg, rgba(26,26,26,0.9), rgba(13,13,13,0.9));
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-xl);
  padding: var(--sp-2xl) var(--sp-3xl);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 600px) {
  .partner-form { padding: var(--sp-xl) var(--sp-lg); }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.form-group-full {
  margin-bottom: var(--sp-lg);
}

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
}

.form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-sm);
  color: var(--clr-text-main);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast);
  width: 100%;
}

.form-input::placeholder { color: var(--clr-text-faint); }

.form-input:focus {
  outline: none;
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.03);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.06);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6'%3E%3Cpath d='M0 0l6 6 6-6z' fill='%23c9a84c'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: var(--clr-charcoal-3);
  color: var(--clr-text-main);
}

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

.form-submit {
  width: 100%;
  margin-top: var(--sp-sm);
  font-size: 1rem;
  padding: 1rem;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: var(--sp-3xl) var(--sp-xl);
  animation: fadeInUp 0.6s var(--ease-out);
}

.success-icon { margin-bottom: var(--sp-md); display: flex; justify-content: center; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--clr-off-white);
  margin-bottom: var(--sp-md);
}
.form-success p { color: var(--clr-text-muted); font-size: 1rem; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── 13. TESTIMONIALS ── */
.testimonials-section {
  padding: var(--sp-5xl) 0;
  background: var(--clr-charcoal);
  overflow: hidden;
}

.testimonials-track {
  overflow: hidden;
  margin-top: var(--sp-2xl);
}

.testimonials-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
}

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

.testimonial-card {
  background: linear-gradient(145deg, var(--clr-charcoal-3), var(--clr-charcoal-4));
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl);
  transition: border-color var(--dur-mid), box-shadow var(--dur-mid);
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  color: var(--clr-gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-lg);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-xl);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-off-white);
  font-style: normal;
}

.author-title {
  display: block;
  font-size: 0.75rem;
  color: var(--clr-text-faint);
  margin-top: 2px;
}

/* ── 14. FOOTER ── */
.site-footer {
  background: var(--clr-void);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: var(--sp-5xl) 0 0;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--sp-3xl);
  padding-bottom: var(--sp-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-2xl); }
}

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

.footer-logo { margin-bottom: var(--sp-lg); }

.footer-tagline {
  font-size: 0.88rem;
  color: var(--clr-text-faint);
  line-height: 1.7;
  margin-bottom: var(--sp-xl);
}

.footer-socials {
  display: flex;
  gap: var(--sp-sm);
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-faint);
  transition: all var(--dur-fast);
}

.social-link:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--clr-gold);
  color: var(--clr-gold-light);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-lg);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.footer-link {
  font-size: 0.88rem;
  color: var(--clr-text-faint);
  transition: color var(--dur-fast), padding-left var(--dur-fast);
  display: inline-block;
}

.footer-link:hover {
  color: var(--clr-gold-light);
  padding-left: 4px;
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  font-style: normal;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  font-size: 0.85rem;
  color: var(--clr-text-faint);
}

.contact-item svg { flex-shrink: 0; margin-top: 2px; }

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-xl) 0;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--clr-text-faint);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 0.75rem;
  color: var(--clr-text-faint);
}

.footer-link-sm {
  font-size: 0.75rem;
  color: var(--clr-text-faint);
  transition: color var(--dur-fast);
}

.footer-link-sm:hover { color: var(--clr-gold-light); }

/* ── 15. REDUCED MOTION SUPPORT ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  html { scroll-behavior: auto; }

  .reveal-up,
  .reveal-left,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}
