/* ==========================================================================
   AGHORAM MEDIA & DIGITECH SOLUTION — PREMIUM GOLD DYNAMIC THEME
   "FROM SHADOW TO SPOTLIGHT"
   ========================================================================== */

/* --- 01. DESIGN TOKENS & CSS VARIABLES --- */
:root {
  /* Color Palette */
  --color-black: #050505;
  --color-dark-surface: #0b0b0b;
  --color-dark-card: #111111;
  --color-dark-border: #221c12;
  --color-charcoal: #2a2a2a;
  
  /* Metallic Liquid Gold Palette */
  --gold-dark: #8a5a12;
  --gold-base: #c9972e;
  --gold-mid: #d4a83a;
  --gold-light: #f2d477;
  --gold-pale: #fdf0cd;
  --gold-foil: #b77a18;

  /* Gradients */
  --grad-gold-metallic: linear-gradient(135deg, #8a5a12 0%, #d4a83a 28%, #fdf0cd 50%, #f0c75e 72%, #a87516 100%);
  --grad-gold-reflect: linear-gradient(90deg, #8a5a12 0%, #f2d477 50%, #8a5a12 100%);
  --grad-gold-linear: linear-gradient(180deg, #fdf0cd 0%, #c9972e 100%);
  --grad-gold-dark: linear-gradient(135deg, #1f180c 0%, #0d0b06 100%);
  --grad-dark-surface: linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
  --grad-champagne-light: linear-gradient(180deg, #f7f2e8 0%, #e8dec8 100%);

  /* Supporting Tones */
  --color-champagne: #f7f2e8;
  --color-champagne-dark: #e8dec8;
  --color-text-white: #ffffff;
  --color-text-muted: #9e9a93;
  --color-text-dim: #66625c;
  
  /* Controlled Gold Glow & Lighting Tokens (CONTROLLED GLOW > EVERYWHERE GLOW) */
  --glow-gold-subtle: 0 2px 12px rgba(201, 151, 46, 0.18);
  --glow-gold-btn: 0 4px 20px rgba(201, 151, 46, 0.28);
  --glow-gold-focus: 0 0 0 3px rgba(242, 212, 119, 0.45);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.55);
  --shadow-gold-card: 0 12px 36px rgba(138, 90, 18, 0.18);
  --border-gold-subtle: rgba(201, 151, 46, 0.22);
  --border-gold-active: rgba(242, 212, 119, 0.55);

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  /* Layout & Transitions */
  --container-max: 1320px;
  --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);

  /* Mouse coordinates for spotlight */
  --mouse-x: 50vw;
  --mouse-y: 50vh;
}

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

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

body {
  overflow-x: hidden;
  background-color: var(--color-black);
  min-height: 100vh;
  position: relative;
  line-height: 1.65;
}

body.modal-open,
body.menu-locked {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

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

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

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

/* --- 03. CUSTOM CURSOR & SPOTLIGHT EFFECT --- */
#cursor-spotlight {
  position: fixed;
  top: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(242, 212, 119, 0.08) 0%, rgba(201, 151, 46, 0.03) 40%, rgba(0, 0, 0, 0) 70%);
  z-index: 9998;
  transform: translate3d(0, 0, 0);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  mix-blend-mode: screen;
}

#cursor-dot {
  position: fixed;
  top: -4px;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px var(--gold-light), 0 0 20px var(--gold-base);
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(0, 0, 0);
  transition: transform 0.05s linear, width 0.2s, height 0.2s;
}

body.cursor-hover #cursor-spotlight {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242, 212, 119, 0.14) 0%, rgba(201, 151, 46, 0.05) 50%, rgba(0, 0, 0, 0) 70%);
}

body.cursor-hover #cursor-dot {
  width: 14px;
  height: 14px;
  top: -7px;
  left: -7px;
  background: #ffffff;
}

/* --- 04. CINEMATIC PRELOADER / INTRO OVERLAY --- */
#cinematic-intro {
  position: fixed;
  inset: 0;
  background-color: var(--color-black);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s;
}

#cinematic-intro.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#intro-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intro-ui-layer {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.intro-tagline {
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-mid);
  opacity: 0.8;
  font-weight: 600;
}

.skip-intro-btn {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid rgba(212, 168, 58, 0.25);
  padding: 6px 16px;
  border-radius: 20px;
  transition: all var(--transition-fast);
}

.skip-intro-btn:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  background: rgba(242, 212, 119, 0.08);
}

/* --- 05. TYPOGRAPHY & GOLD TEXT UTILITIES --- */
.gold-gradient-text {
  background: var(--grad-gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-sweep-text {
  background: linear-gradient(90deg, #8a5a12 0%, #fdf0cd 50%, #8a5a12 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldSweep 4s linear infinite;
  display: inline-block;
}

@keyframes goldSweep {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 16px;
  padding: 4px 14px;
  background: rgba(201, 151, 46, 0.08);
  border: 1px solid rgba(212, 168, 58, 0.2);
  border-radius: 30px;
}

.section-heading {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text-white);
  margin-bottom: 18px;
}

.section-subheading {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--color-text-muted);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.sample-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(138, 90, 18, 0.4);
  border: 1px solid rgba(242, 212, 119, 0.4);
  padding: 3px 10px;
  border-radius: 12px;
}

/* --- 06. BUTTONS & UI COMPONENTS --- */
.gold-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  background: var(--grad-gold-metallic);
  color: #080808;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 4px;
  box-shadow: var(--glow-gold-btn);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.gold-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: left 0.7s ease;
}

.gold-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(242, 212, 119, 0.4);
  filter: brightness(1.06);
  color: #080808;
}

.gold-btn:hover::after {
  left: 140%;
}

.outline-btn,
.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 4px;
  border: 1px solid rgba(212, 168, 58, 0.35);
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.outline-btn:hover,
.btn-secondary-outline:hover {
  background: rgba(212, 168, 58, 0.12);
  border-color: var(--gold-light);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--glow-gold-subtle);
}

.text-link-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
  position: relative;
  transition: color var(--transition-fast);
}

.text-link-gold::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-light);
  transition: width var(--transition-fast);
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- 07. STICKY HEADER NAVIGATION --- */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 85px;
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: background var(--transition-smooth), height var(--transition-smooth), border var(--transition-smooth);
}

#main-nav.scrolled {
  height: 70px;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 168, 58, 0.15);
}

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

.nav-logo-link {
  display: flex;
  align-items: center;
  height: 48px;
}

.nav-logo-svg {
  height: 100%;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-champagne);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--grad-gold-reflect);
  transition: width var(--transition-fast);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sound-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 58, 0.3);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.sound-toggle-btn:hover {
  background: rgba(242, 212, 119, 0.15);
  border-color: var(--gold-light);
  box-shadow: var(--glow-gold-sm);
}

.sound-toggle-btn.sound-on {
  background: rgba(201, 151, 46, 0.25);
  border-color: var(--gold-light);
}

.nav-admin-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 58, 0.3);
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  background: transparent;
}

.nav-admin-btn:hover {
  background: rgba(242, 212, 119, 0.15);
  border-color: var(--gold-light);
  box-shadow: var(--glow-gold-sm);
  color: #ffffff;
  transform: translateY(-2px);
}

.nav-cta-btn {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  transition: all var(--transition-fast);
}

/* --- 08. HERO SECTION --- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 24px 70px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 38%, #141009 0%, #050505 75%);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201, 151, 46, 0.08);
  border: 1px solid rgba(242, 212, 119, 0.22);
  padding: 7px 18px;
  border-radius: 24px;
  margin-bottom: 24px;
  box-shadow: var(--glow-gold-subtle);
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-word-from {
  color: #8c8c8c;
}

.hero-word-shadow {
  color: #383838;
  transition: color 1s ease;
}

.hero-title.animated .hero-word-shadow {
  color: #4a4a4a;
}

.hero-word-to {
  color: #8c8c8c;
}

.hero-word-spotlight {
  display: inline-block;
  background: var(--grad-gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px rgba(242, 212, 119, 0.28));
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 400;
  line-height: 1.65;
  color: #e2dacd;
  max-width: 720px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold-mid);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.65;
}

.mouse-scroll-icon {
  width: 20px;
  height: 32px;
  border: 1.5px solid var(--gold-mid);
  border-radius: 12px;
  position: relative;
}

.mouse-wheel {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: mouseScroll 1.8s infinite;
}

@keyframes mouseScroll {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 14px); opacity: 0; }
}

/* --- 09. SECTION TRANSITION: ENTER THE WORLD OF AGHORAM --- */
#section-story-transition {
  position: relative;
  padding: 140px 24px;
  background: linear-gradient(180deg, #050505 0%, #15120c 40%, #1a160d 60%, #050505 100%);
  text-align: center;
  overflow: hidden;
}

.story-line-tracker {
  width: 2px;
  height: 100px;
  background: var(--grad-gold-reflect);
  margin: 0 auto 36px;
  box-shadow: var(--glow-gold-md);
}

.story-phrase-1 {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: 2px;
  color: #777777;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.story-phrase-2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.story-concept-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.concept-pill {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-light);
  border: 1px solid rgba(212, 168, 58, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(201, 151, 46, 0.06);
}

/* --- 10. BUSINESS TRANSFORMATION (6 STAGES) --- */
#transformation {
  padding: 120px 0;
  background: var(--color-black);
  position: relative;
}

.trans-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.trans-nav-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(212, 168, 58, 0.2);
  background: rgba(20, 16, 10, 0.6);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  transition: all var(--transition-fast);
}

.trans-nav-dot span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(212, 168, 58, 0.2);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.trans-nav-dot.active {
  background: rgba(201, 151, 46, 0.2);
  border-color: var(--gold-light);
  color: var(--color-text-white);
  box-shadow: var(--glow-gold-sm);
}

.trans-nav-dot.active span {
  background: var(--gold-light);
  color: #050505;
}

.trans-track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.trans-card {
  border-radius: 20px;
  padding: 36px 30px;
  border: 1px solid rgba(212, 168, 58, 0.25);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.trans-card:hover, .trans-card.active {
  transform: translateY(-6px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold-card);
}

.trans-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.trans-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.trans-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-pale);
  background: rgba(201, 151, 46, 0.2);
  padding: 4px 12px;
  border-radius: 12px;
}

.trans-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-text-white);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.trans-tagline {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.trans-desc {
  font-size: 0.95rem;
  color: var(--color-champagne);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.trans-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(212, 168, 58, 0.2);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-mid);
}

/* --- 11. "WHAT WE DO" SECTION & MAGNETIC SERVICE CARDS --- */
#services {
  padding: 120px 0;
  background: radial-gradient(circle at 50% 20%, #16120b 0%, #050505 80%);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.service-card {
  background: rgba(14, 14, 14, 0.8);
  border: 1px solid rgba(212, 168, 58, 0.18);
  border-radius: 20px;
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
}

.service-card:hover {
  border-color: var(--gold-light);
  background: rgba(22, 18, 11, 0.95);
  box-shadow: 0 16px 40px rgba(138, 90, 18, 0.25), inset 0 0 20px rgba(242, 212, 119, 0.05);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-light);
  transition: transform var(--transition-fast), font-size var(--transition-fast);
}

.service-card:hover .service-number {
  transform: scale(1.15);
  color: #ffffff;
}

.service-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-mid);
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-wrap {
  background: var(--gold-light);
  color: #050505;
  border-color: var(--gold-light);
}

.service-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text-white);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.service-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-mid);
  margin-bottom: 14px;
  line-height: 1.4;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(212, 168, 58, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-turnaround {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-explore-btn {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.service-explore-btn:hover {
  gap: 10px;
  color: #ffffff;
}

/* --- 12. "THE AGHORAM METHOD" ORBIT SYSTEM --- */
#method {
  padding: 120px 0;
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}

.method-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.method-canvas-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#method-orbit-container {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#method-orbit-canvas {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.method-info-col {
  display: flex;
  flex-direction: column;
}

.method-active-detail-card {
  background: rgba(18, 14, 9, 0.85);
  border: 1px solid rgba(242, 212, 119, 0.35);
  border-radius: 20px;
  padding: 36px 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-gold-card);
  backdrop-filter: blur(14px);
}

.method-detail-badge {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.method-detail-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-text-white);
  margin-bottom: 12px;
}

.method-detail-desc {
  font-size: 0.95rem;
  color: var(--color-champagne);
  line-height: 1.65;
}

.method-nodes-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.method-node-item {
  background: rgba(12, 12, 12, 0.8);
  border: 1px solid rgba(212, 168, 58, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.method-node-item:hover, .method-node-item.active {
  border-color: var(--gold-light);
  background: rgba(28, 20, 10, 0.7);
  box-shadow: var(--glow-gold-sm);
}

.method-node-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.method-node-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.method-node-sub {
  font-size: 0.7rem;
  color: var(--color-text-dim);
}

.method-node-desc {
  display: none;
}

/* --- 13. "WHY AGHORAM" SECTION --- */
#why-aghoram {
  padding: 120px 0;
  background: radial-gradient(circle at 50% 50%, #151109 0%, #050505 80%);
}

.why-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.why-pillar-card {
  background: rgba(15, 15, 15, 0.75);
  border: 1px solid rgba(212, 168, 58, 0.2);
  border-radius: 18px;
  padding: 32px 24px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.why-pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold-card);
}

.why-pillar-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold-mid);
  margin-bottom: 12px;
}

.why-pillar-key {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-text-white);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.why-pillar-tagline {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.why-pillar-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* --- 14. INDUSTRIES INTERACTIVE SHOWCASE --- */
#industries {
  padding: 120px 0;
  background: var(--color-black);
}

.industry-tabs-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: 36px;
  scrollbar-width: thin;
}

.industry-tab-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid rgba(212, 168, 58, 0.25);
  background: rgba(16, 16, 16, 0.7);
  color: var(--color-champagne);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.industry-tab-btn:hover, .industry-tab-btn.active {
  background: var(--grad-gold-metallic);
  color: #050505;
  border-color: var(--gold-light);
  box-shadow: 0 4px 16px rgba(201, 151, 46, 0.35);
}

.industry-display-card {
  background: rgba(18, 14, 9, 0.85);
  border: 1px solid rgba(242, 212, 119, 0.3);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: var(--shadow-gold-card);
  backdrop-filter: blur(14px);
}

.industry-badge {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.industry-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-text-white);
  margin-bottom: 16px;
}

.industry-desc {
  font-size: 1.05rem;
  color: var(--color-champagne);
  max-width: 800px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.industry-metric-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(242, 212, 119, 0.08);
  border: 1px solid rgba(242, 212, 119, 0.25);
  padding: 16px 24px;
  border-radius: 14px;
  margin-bottom: 24px;
}

.industry-metric-highlight i {
  font-size: 1.6rem;
  color: var(--gold-light);
}

.industry-services-tags {
  margin-bottom: 28px;
}

.industry-services-tags strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gold-mid);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-pill {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 168, 58, 0.2);
  padding: 5px 14px;
  border-radius: 20px;
}

.industry-sample-project {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 168, 58, 0.18);
}

.sample-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-mid);
}

.sample-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold-light);
}

/* --- 15. PORTFOLIO — "THE SPOTLIGHT" --- */
#portfolio {
  padding: 120px 0;
  background: radial-gradient(circle at 50% 30%, #151108 0%, #050505 85%);
  position: relative;
  overflow: hidden;
}

.portfolio-track-wrapper {
  overflow-x: auto;
  padding: 20px 0 40px;
  cursor: grab;
  scrollbar-width: thin;
}

.portfolio-track-wrapper:active {
  cursor: grabbing;
}

.portfolio-track {
  display: flex;
  gap: 28px;
  width: max-content;
}

.portfolio-card {
  width: 380px;
  background: rgba(14, 14, 14, 0.85);
  border: 1px solid rgba(212, 168, 58, 0.2);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

.portfolio-card-inner {
  display: flex;
  flex-direction: column;
}

.portfolio-header {
  padding: 20px 24px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio-ind {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-mid);
  letter-spacing: 1px;
}

.portfolio-visual {
  height: 200px;
  background: radial-gradient(circle, #241c0e 0%, #0c0a06 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 168, 58, 0.15);
  border-bottom: 1px solid rgba(212, 168, 58, 0.15);
}

.portfolio-visual-title {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-top: 12px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.portfolio-body {
  padding: 24px;
}

.portfolio-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-text-white);
  margin-bottom: 6px;
}

.portfolio-services {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-mid);
  margin-bottom: 14px;
}

.portfolio-summary {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.portfolio-case-btn {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-fast);
}

.portfolio-case-btn:hover {
  gap: 12px;
  color: #ffffff;
}

/* --- 16. RESULTS / IMPACT METRICS --- */
#results {
  padding: 100px 0;
  background: var(--color-black);
  border-top: 1px solid rgba(212, 168, 58, 0.15);
  border-bottom: 1px solid rgba(212, 168, 58, 0.15);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.metric-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(14, 14, 14, 0.6);
  border: 1px solid rgba(212, 168, 58, 0.15);
  border-radius: 18px;
}

.metric-number-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.counter-number {
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.counter-suffix {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold-mid);
}

.metric-label {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text-white);
  margin-bottom: 6px;
}

.metric-desc {
  font-size: 0.85rem;
  color: var(--color-text-dim);
}

.results-sample-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gold-dark);
  letter-spacing: 1px;
  margin-top: 36px;
  text-transform: uppercase;
}

/* --- 17. ABOUT AGHORAM & GIANT TYPOGRAPHY --- */
#about {
  padding: 140px 0;
  background: radial-gradient(circle at 50% 50%, #151108 0%, #050505 85%);
  text-align: center;
}

.about-giant-headline {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 900;
  color: var(--color-text-white);
  max-width: 1000px;
  margin: 0 auto 30px;
  line-height: 1.2;
}

.about-editorial-text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-champagne);
  max-width: 860px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.giant-typography-composition {
  font-size: clamp(1.8rem, 4.5vw, 4rem);
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--grad-gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 24px 0;
  border-top: 1px solid rgba(212, 168, 58, 0.2);
  border-bottom: 1px solid rgba(212, 168, 58, 0.2);
  margin: 40px auto;
  max-width: 1100px;
}

.about-pillars-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
  text-align: left;
}

.about-pillar-box {
  background: rgba(14, 14, 14, 0.7);
  border: 1px solid rgba(212, 168, 58, 0.2);
  border-radius: 16px;
  padding: 28px;
}

.about-pillar-box h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.about-pillar-box p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- 18. TEAM SECTION --- */
#team {
  padding: 120px 0;
  background: var(--color-black);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.team-card {
  background: rgba(14, 14, 14, 0.8);
  border: 1px solid rgba(212, 168, 58, 0.18);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold-card);
}

.team-avatar-placeholder {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-text-white);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.team-area {
  font-size: 0.78rem;
  color: var(--gold-mid);
  margin-bottom: 14px;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- 19. PRICING SECTION & ESTIMATOR --- */
#pricing {
  padding: 120px 0;
  background: radial-gradient(circle at 50% 20%, #17120a 0%, #050505 85%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

.pricing-card {
  background: rgba(14, 14, 14, 0.85);
  border: 1px solid rgba(212, 168, 58, 0.2);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold-card);
}

.pricing-card.popular {
  border: 2px solid var(--gold-light);
  background: rgba(24, 18, 10, 0.9);
  box-shadow: 0 16px 48px rgba(201, 151, 46, 0.35);
  transform: scale(1.03);
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-gold-metallic);
  color: #050505;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 5px 16px;
  border-radius: 20px;
}

.pricing-tier-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-text-white);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-light);
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--color-text-dim);
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 28px;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  flex-grow: 1;
}

.pricing-features-list li {
  font-size: 0.88rem;
  color: var(--color-champagne);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.pricing-features-list li i {
  color: var(--gold-light);
  margin-top: 3px;
  font-size: 0.8rem;
}

.pricing-cta-btn {
  width: 100%;
}

/* Cost Estimator Box */
.cost-estimator-box {
  background: rgba(18, 14, 9, 0.8);
  border: 1px solid rgba(212, 168, 58, 0.3);
  border-radius: 20px;
  padding: 36px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.estimator-header {
  text-align: center;
  margin-bottom: 28px;
}

.estimator-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-text-white);
  margin-bottom: 6px;
}

.estimator-header p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.estimator-controls {
  display: grid;
  grid-template-columns: 1fr 2fr 1.2fr;
  gap: 24px;
  align-items: center;
}

.estimator-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-mid);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.estimator-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  background: #0d0d0d;
  border: 1px solid rgba(212, 168, 58, 0.3);
  color: var(--color-text-white);
  font-family: inherit;
  font-size: 0.9rem;
}

.addons-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.addon-label {
  font-size: 0.85rem;
  color: var(--color-champagne);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.estimator-total-box {
  text-align: center;
  background: rgba(242, 212, 119, 0.08);
  border: 1px solid rgba(242, 212, 119, 0.25);
  border-radius: 14px;
  padding: 20px;
}

.calc-total-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-mid);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.calc-total-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold-light);
}

/* --- 20. TESTIMONIALS SLIDER --- */
#testimonials {
  padding: 120px 0;
  background: var(--color-black);
}

.testimonials-slider-wrap {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.testimonial-card {
  background: rgba(16, 13, 8, 0.85);
  border: 1px solid rgba(212, 168, 58, 0.3);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: var(--shadow-gold-card);
  backdrop-filter: blur(12px);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.testimonial-ind {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-mid);
}

.testimonial-quote {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--color-text-white);
  margin-bottom: 32px;
}

.testimonial-author-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar-crest {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad-gold-metallic);
  color: #050505;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text-white);
}

.author-role {
  font-size: 0.85rem;
  color: var(--gold-light);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.test-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--gold-mid);
  background: transparent;
  transition: all var(--transition-fast);
}

.test-dot.active {
  background: var(--gold-light);
  box-shadow: var(--glow-gold-sm);
  transform: scale(1.25);
}

/* --- 21. INSIGHTS / EDITORIAL ARTICLES --- */
#insights {
  padding: 120px 0;
  background: radial-gradient(circle at 50% 50%, #151108 0%, #050505 85%);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.insight-card {
  background: rgba(14, 14, 14, 0.8);
  border: 1px solid rgba(212, 168, 58, 0.18);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.insight-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold-card);
}

.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.insight-cat {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201, 151, 46, 0.15);
  padding: 4px 12px;
  border-radius: 12px;
}

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

.insight-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text-white);
  line-height: 1.4;
  margin-bottom: 12px;
}

.insight-excerpt {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.insight-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(212, 168, 58, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.insight-date {
  font-size: 0.78rem;
  color: var(--color-text-dim);
}

.insight-read-btn {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.insight-read-btn:hover {
  gap: 10px;
  color: #ffffff;
}

/* --- 22. FINAL CTA — THE SPOTLIGHT --- */
#final-cta {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
  background-color: #050505;
  overflow: hidden;
}

#final-spotlight-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.final-cta-title {
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  font-weight: 900;
  color: var(--color-text-white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.final-cta-subtitle {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--gold-light);
  margin-bottom: 44px;
  font-weight: 600;
}

/* --- 23. FOOTER (COMPREHENSIVE FOR ALL PAGES) --- */
#footer,
#main-footer {
  background-color: #030303;
  border-top: 1px solid rgba(212, 168, 58, 0.2);
  padding: 80px 0 40px;
  position: relative;
  z-index: 10;
}

.footer-top-grid,
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-block,
.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo-svg {
  height: 48px;
  width: auto;
  max-width: 180px;
  display: block;
}

.footer-brand-tagline {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--gold-mid);
  text-transform: uppercase;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 360px;
}

.footer-badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212, 168, 58, 0.08);
  border: 1px solid rgba(212, 168, 58, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  width: fit-content;
}

.footer-col-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-white);
  margin-bottom: 20px;
}

/* Strict elimination of all bullet points on all footer lists */
#footer ul,
#main-footer ul,
.footer-col ul,
.footer-nav-column ul,
.footer-links-list {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#footer ul li,
#main-footer ul li,
.footer-col ul li,
.footer-nav-column ul li,
.footer-links-list li {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#footer ul li a,
#main-footer ul li a,
.footer-col ul a,
.footer-nav-column ul a,
.footer-links-list a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
}

#footer ul li a:hover,
#main-footer ul li a:hover,
.footer-col ul a:hover,
.footer-nav-column ul a:hover,
.footer-links-list a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-contact-info,
.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.footer-contact-info p,
.footer-contact-block p {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-info i,
.footer-contact-block i {
  color: var(--gold-mid);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-info a,
.footer-contact-block a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact-info a:hover,
.footer-contact-block a:hover {
  color: var(--gold-light);
}

.footer-socials-row,
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.footer-social-btn,
.footer-social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 58, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.02);
  transition: all var(--transition-fast);
}

.footer-social-btn:hover,
.footer-social-row a:hover {
  background: var(--gold-light);
  color: #050505;
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.footer-bottom,
.footer-bottom-container {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--color-text-dim);
}

.footer-bottom p,
.footer-bottom-container p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-admin-link {
  color: var(--gold-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.footer-admin-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-sep {
  color: rgba(255, 255, 255, 0.2);
}

/* --- 24. MODALS & DRAWERS (COMPREHENSIVE FOR ALL PAGES) --- */
.modal-overlay,
.modal-wrapper {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.88) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  z-index: 100005 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
  box-sizing: border-box !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.modal-overlay.active,
.modal-wrapper.active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.modal-backdrop,
.modal-backdrop-close {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}

.modal-card,
.modal-window {
  background: #0d0d0d;
  border: 1px solid rgba(242, 212, 119, 0.35);
  border-radius: 24px;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95), 0 0 40px rgba(201, 151, 46, 0.2);
  transform: scale(0.95);
  transition: transform var(--transition-smooth);
  padding: 40px 36px;
  box-sizing: border-box;
}

.modal-window-large {
  max-width: 900px !important;
}

.modal-overlay.active .modal-card,
.modal-wrapper.active .modal-window {
  transform: scale(1);
}

.modal-close-btn,
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 58, 0.3);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 10;
  background: rgba(14, 14, 14, 0.85);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover,
.modal-close:hover {
  background: var(--gold-light);
  color: #050505;
  border-color: var(--gold-light);
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 24px;
  text-align: left;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-text-white);
  margin: 12px 0 8px;
  letter-spacing: -0.5px;
}

.modal-sub {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.modal-body {
  padding: 0;
}

/* Case Study Modal Specifics */
.case-modal-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-text-white);
  margin: 10px 0;
}

.case-modal-services {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.case-modal-lead {
  font-size: 1.05rem;
  color: var(--color-champagne);
  line-height: 1.6;
  margin-bottom: 28px;
}

.case-modal-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.case-stat-box {
  background: rgba(242, 212, 119, 0.08);
  border: 1px solid rgba(242, 212, 119, 0.25);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.case-stat-val {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold-light);
}

.case-stat-lbl {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.case-stages-flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.case-stage-item {
  background: rgba(18, 18, 18, 0.6);
  border-left: 3px solid var(--gold-mid);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
}

.case-stage-item.highlight-result {
  border-left-color: #ffffff;
  background: rgba(242, 212, 119, 0.12);
}

.case-stage-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.case-stage-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-text-white);
  margin-bottom: 8px;
}

.case-stage-text {
  font-size: 0.92rem;
  color: var(--color-champagne);
  line-height: 1.6;
}

.case-modal-cta {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 168, 58, 0.2);
}

.case-modal-cta h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text-white);
  margin-bottom: 16px;
}

/* Insight Modal Specifics */
.insight-modal-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-text-white);
  margin: 12px 0 16px;
  line-height: 1.25;
}

.insight-modal-excerpt {
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 24px;
  font-weight: 600;
  line-height: 1.5;
}

.insight-modal-content {
  font-size: 0.95rem;
  color: var(--color-champagne);
  line-height: 1.7;
}

.insight-modal-content h4 {
  color: var(--gold-light);
  font-size: 1.2rem;
  margin: 20px 0 8px;
}

.insight-modal-content ul, .insight-modal-content ol {
  padding-left: 20px;
  margin: 14px 0;
}

.insight-modal-content li {
  margin-bottom: 8px;
}

.insight-modal-footer {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 168, 58, 0.2);
  text-align: center;
}

.insight-modal-footer p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

/* Brief Modal Form Styles (Harmonized) */
.brief-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.form-row,
.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group,
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-group label,
.form-field label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-light);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea,
.form-field input,
.form-field select,
.form-field textarea {
  background: #070707;
  border: 1px solid rgba(212, 168, 58, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--color-text-white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  box-sizing: border-box;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-light);
  box-shadow: var(--glow-gold-sm);
  outline: none;
}

.brief-submit-btn {
  margin-top: 10px;
  width: 100%;
}

/* --- 25. MOBILE DRAWER --- */
#mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
  overflow-y: auto;
}

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

.mobile-drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(242, 212, 119, 0.3);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: rgba(20, 20, 20, 0.6);
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10001;
}

.mobile-drawer-close:hover {
  background: rgba(242, 212, 119, 0.2);
  border-color: var(--gold-light);
  transform: scale(1.05);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin-bottom: 32px;
  width: 100%;
  max-width: 320px;
}

.mobile-nav-links li {
  width: 100%;
  text-align: center;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 24px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-white);
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--gold-light);
  background: rgba(201, 151, 46, 0.1);
}

/* --- 28. DEDICATED ABOUT PAGE & DETAILED TEAM STYLES --- */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 70px;
  background: radial-gradient(circle at 50% 30%, #17120a 0%, #050505 85%);
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.page-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 20px;
  padding: 5px 16px;
  background: rgba(201, 151, 46, 0.08);
  border: 1px solid rgba(212, 168, 58, 0.25);
  border-radius: 20px;
}

.page-breadcrumbs a {
  color: var(--color-champagne);
  transition: color var(--transition-fast);
}

.page-breadcrumbs a:hover {
  color: var(--gold-light);
}

.page-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-text-white);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.page-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--color-champagne);
  line-height: 1.65;
  max-width: 780px;
  margin: 0 auto 36px;
}

.hero-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(212, 168, 58, 0.2);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
}

.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-dim);
}

/* Detailed Team Grid */
.team-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}

.team-detailed-card {
  background: rgba(14, 14, 14, 0.85);
  border: 1px solid rgba(212, 168, 58, 0.22);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  backdrop-filter: blur(14px);
}

.team-detailed-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold-card);
  background: rgba(22, 18, 11, 0.95);
}

.team-detailed-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.team-detailed-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: radial-gradient(circle, #241c0e 0%, #0d0b06 100%);
  border: 2px solid var(--gold-mid);
  box-shadow: var(--glow-gold-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-light);
  flex-shrink: 0;
}

.team-detailed-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-detailed-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-text-white);
}

.team-detailed-role {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-light);
}

.team-detailed-area {
  font-size: 0.78rem;
  color: var(--color-text-dim);
}

.team-quote-box {
  background: rgba(242, 212, 119, 0.06);
  border-left: 3px solid var(--gold-light);
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--color-champagne);
  line-height: 1.5;
  margin-bottom: 20px;
}

.team-detailed-bio {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.team-superpowers-block {
  margin-bottom: 24px;
}

.team-superpowers-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 10px;
  display: block;
}

.superpowers-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.superpower-pill {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 168, 58, 0.2);
  padding: 4px 12px;
  border-radius: 16px;
}

.team-skills-block {
  margin-bottom: 24px;
}

.skill-row {
  margin-bottom: 12px;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-champagne);
  margin-bottom: 5px;
}

.skill-bar-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  background: var(--grad-gold-metallic);
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(242, 212, 119, 0.4);
}

.team-card-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(212, 168, 58, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team-socials-row {
  display: flex;
  gap: 10px;
}

.team-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 58, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.team-social-link:hover {
  background: var(--gold-light);
  color: #050505;
  border-color: var(--gold-light);
}

/* Studio Culture Grid */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.culture-card {
  background: rgba(16, 13, 8, 0.8);
  border: 1px solid rgba(212, 168, 58, 0.2);
  border-radius: 20px;
  padding: 34px 28px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.culture-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold-card);
}

.culture-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.culture-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-text-white);
  margin-bottom: 10px;
}

.culture-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Story Milestones Section */
.story-milestones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.story-milestone-card {
  background: rgba(12, 12, 12, 0.7);
  border: 1px solid rgba(212, 168, 58, 0.18);
  border-radius: 16px;
  padding: 26px 22px;
}

.milestone-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
  display: block;
}

.milestone-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text-white);
  margin-bottom: 8px;
}

.milestone-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Founder's Letter Card */
.founder-letter-card {
  background: radial-gradient(circle at 50% 20%, #1c150c 0%, #0c0a06 100%);
  border: 1px solid rgba(242, 212, 119, 0.35);
  border-radius: 24px;
  padding: 48px 40px;
  margin-bottom: 0;
  box-shadow: var(--shadow-gold-card);
  position: relative;
  overflow: hidden;
}

.founder-letter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold-metallic);
}

.founder-letter-header {
  margin-bottom: 24px;
}

.founder-letter-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--color-text-white);
  margin: 10px 0 6px;
}

.founder-letter-greeting {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
}

.founder-letter-body {
  font-size: 1rem;
  color: var(--color-champagne);
  line-height: 1.75;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.founder-letter-footer {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 168, 58, 0.2);
  flex-wrap: wrap;
}

.founder-signatory {
  display: flex;
  flex-direction: column;
}

.founder-sign-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gold-light);
  font-family: var(--font-serif);
}

.founder-sign-role {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 1px;
}

/* Department Filter Buttons */
.team-dept-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.team-dept-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid rgba(212, 168, 58, 0.25);
  background: rgba(16, 16, 16, 0.7);
  color: var(--color-champagne);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition-fast);
}

.team-dept-btn:hover, .team-dept-btn.active {
  background: var(--grad-gold-metallic);
  color: #050505;
  border-color: var(--gold-light);
  box-shadow: 0 4px 16px rgba(201, 151, 46, 0.35);
}

/* Member Experience Badge */
.team-exp-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(242, 212, 119, 0.1);
  border: 1px solid rgba(242, 212, 119, 0.25);
  padding: 2px 10px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Member Personal Intro Statement */
.team-intro-statement {
  background: rgba(242, 212, 119, 0.07);
  border-left: 3px solid var(--gold-light);
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--color-text-white);
  line-height: 1.55;
  margin-bottom: 20px;
}

/* Member Sub-Tabs */
.member-sub-tabs {
  display: flex;
  border-bottom: 1px solid rgba(212, 168, 58, 0.2);
  margin-bottom: 18px;
  gap: 8px;
}

.member-tab-btn {
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
}

.member-tab-btn:hover {
  color: var(--gold-light);
}

.member-tab-btn.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

/* Member Projects List */
.member-projects-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.member-prj-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-champagne);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(212, 168, 58, 0.15);
}

.member-prj-item i {
  color: var(--gold-light);
  font-size: 0.8rem;
}

.team-strategy-btn {
  padding: 10px 20px;
  font-size: 0.78rem;
}

/* Collaboration Steps Grid */
.collab-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.collab-step-card {
  background: rgba(16, 13, 8, 0.8);
  border: 1px solid rgba(212, 168, 58, 0.2);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.collab-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold-card);
}

.collab-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.collab-step-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-light);
}

.collab-step-icon {
  font-size: 1.5rem;
  color: var(--gold-mid);
}

.collab-step-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-text-white);
  margin-bottom: 10px;
}

.collab-step-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Active navigation link */
.nav-link.active {
  color: var(--gold-light);
}

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

/* --- 26. RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
  .method-layout {
    grid-template-columns: 1fr;
  }
  .estimator-controls {
    grid-template-columns: 1fr;
  }
  .footer-top-grid,
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-menu, .nav-actions .nav-cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .form-row,
  .form-group-row {
    grid-template-columns: 1fr !important;
  }
  .footer-top-grid,
  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .portfolio-card {
    width: 300px;
  }
  .team-detailed-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats-strip {
    gap: 20px;
  }
  .modal-body {
    padding: 0;
  }
  .modal-card,
  .modal-window {
    padding: 30px 20px !important;
    max-height: 92vh !important;
  }
  .footer-bottom,
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .footer-bottom-links {
    justify-content: center;
  }
}

/* --- 27. ACCESSIBILITY / REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  #cursor-spotlight, #cursor-dot {
    display: none !important;
  }
}

