/* === LUX CAPITAL — SHARED STYLES === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg: #0a0a0a;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --bg-footer: #0d0d0d;
  --gold: #f5a623;
  --gold-dark: #d48c1a;
  --text: #ffffff;
  --text-gray: #999999;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --nav-bg: rgba(10,10,10,0.95);
  --border-color: rgba(245,166,35,0.15);
}

[data-theme="light"] {
  --bg: #f5f5f5;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f0f0;
  --bg-footer: #e8e8e8;
  --text: #111111;
  --text-gray: #555555;
  --nav-bg: rgba(245,245,245,0.95);
  --border-color: rgba(245,166,35,0.25);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* === NAVIGATION === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold);
  padding: 0 2rem;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand-icon {
  width: 40px; height: 40px; background: var(--gold);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name {
  font-family: var(--font-heading); font-weight: 700;
  color: var(--gold); font-size: 1.25rem; line-height: 1.2;
}
.nav-brand-sub { font-size: 0.7rem; color: var(--gold); opacity: 0.8; letter-spacing: 0.5px; }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  padding: 8px 14px; font-size: 0.875rem; font-weight: 500;
  color: var(--text-gray); border-radius: 8px; transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(245,166,35,0.08); }
.theme-toggle {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1);
  background: transparent; color: var(--text); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
  margin-left: 8px;
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); }
.hamburger {
  display: none; width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1); background: transparent;
  color: var(--text); font-size: 20px; cursor: pointer;
  align-items: center; justify-content: center; margin-left: 8px;
}
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--nav-bg); backdrop-filter: blur(20px);
  flex-direction: column; padding: 2rem; z-index: 999;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  padding: 16px 0; font-size: 1.1rem; color: var(--text-gray);
  border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* === SECTION CONTAINERS === */
.section { padding: 100px 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading); font-size: 2.8rem;
  font-weight: 700; line-height: 1.2; margin-bottom: 16px;
}
.section-title .gold { color: var(--gold); }
.section-sub {
  font-size: 1.1rem; color: var(--text-gray); max-width: 600px;
  margin-bottom: 48px; line-height: 1.7;
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 12px; font-size: 0.95rem;
  font-weight: 600; cursor: pointer; transition: all 0.3s; border: none;
  font-family: var(--font-body);
}
.btn-gold {
  background: var(--gold); color: #000;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.3); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* === CARDS === */
.card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 16px; padding: 32px; transition: all 0.3s;
}
.card:hover { background: var(--bg-card-hover); transform: translateY(-4px); border-color: rgba(245,166,35,0.3); }
.card-icon { font-size: 2rem; margin-bottom: 16px; }
.card h3 { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 12px; color: var(--text); }
.card p { font-size: 0.95rem; color: var(--text-gray); line-height: 1.7; }

/* === CARD DETAILS TOGGLE === */
.card-toggle {
  background: none; border: none; cursor: pointer; padding: 0;
  font-size: 0.9rem; color: #e8900a; font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 4px; transition: opacity 0.2s;
}
.card-toggle:hover { opacity: 0.8; }
.card-toggle-arrow {
  font-size: 0.7rem; display: inline-block;
  transition: transform 0.3s ease;
}
.card.details-open .card-toggle-arrow {
  transform: rotate(180deg);
}
.card-details {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.card.details-open .card-details {
  grid-template-rows: 1fr;
}
.card-details > p {
  overflow: hidden;
  margin: 0;
}
.card.details-open .card-details > p {
  padding-top: 8px;
}

/* === GRIDS === */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* === STAT BOXES === */
.stat-box {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 16px; padding: 32px; text-align: center;
}
.stat-box .stat-value {
  font-family: var(--font-heading); font-size: 2rem;
  font-weight: 700; color: var(--gold); margin-bottom: 8px;
}
.stat-box .stat-label { font-size: 0.9rem; color: var(--text-gray); }

/* === FAQ ACCORDION === */
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 12px; margin-bottom: 12px; overflow: hidden;
}
.faq-question {
  width: 100%; padding: 20px 24px; display: flex; justify-content: space-between;
  align-items: center; background: transparent; border: none;
  color: var(--text); font-size: 1rem; font-weight: 500; cursor: pointer;
  font-family: var(--font-body); text-align: left;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { font-size: 1.2rem; transition: transform 0.3s; color: var(--gold); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-gray); font-size: 0.95rem; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 300px; }

/* === CTA SECTION === */
.cta-section {
  padding: 100px 2rem; text-align: center;
  background: radial-gradient(ellipse at center, rgba(245,166,35,0.12) 0%, transparent 70%);
}
.cta-section .section-title { margin-left: auto; margin-right: auto; }
.cta-section .section-sub { margin-left: auto; margin-right: auto; text-align: center; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
.footer { background: var(--bg-footer); padding: 64px 2rem 0; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
}
.footer-brand-icon { font-size: 2rem; margin-bottom: 12px; }
.footer-brand-name {
  font-family: var(--font-heading); color: var(--gold);
  font-size: 1.25rem; font-weight: 700; margin-bottom: 8px;
}
.footer-brand-desc { font-size: 0.9rem; color: var(--text-gray); margin-bottom: 8px; line-height: 1.6; }
.footer-brand-legal { font-size: 0.8rem; color: var(--text-gray); opacity: 0.7; margin-bottom: 4px; }
.footer h4 {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  margin-bottom: 20px; color: var(--text);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; color: var(--text-gray); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-gray); opacity: 0.7; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; color: var(--text-gray); opacity: 0.7; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* === HERO SHARED === */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 2rem 80px;
}
.hero .container { width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border: 1px solid rgba(245,166,35,0.3);
  border-radius: 100px; font-size: 0.85rem; color: var(--gold);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-heading); font-size: 4.5rem;
  font-weight: 700; line-height: 1.1; margin-bottom: 24px;
}
.hero h1 .gold { color: var(--gold); }
.hero-sub {
  font-size: 1.15rem; color: var(--text-gray); max-width: 540px;
  line-height: 1.7; margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* === 3D CUBE === */
.cube-container {
  width: 100%; height: 100%; min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  perspective: 800px;
}
.cube-scene { width: 200px; height: 200px; position: relative; transform-style: preserve-3d; animation: rotateCube 20s linear infinite; }
.cube-face {
  position: absolute; width: 200px; height: 200px;
  border: 2px solid var(--gold); background: rgba(245,166,35,0.03);
  opacity: 0.7;
}
.cube-face.front  { transform: translateZ(100px); }
.cube-face.back   { transform: translateZ(-100px) rotateY(180deg); }
.cube-face.right  { transform: translateX(100px) rotateY(90deg); }
.cube-face.left   { transform: translateX(-100px) rotateY(-90deg); }
.cube-face.top    { transform: translateY(-100px) rotateX(90deg); }
.cube-face.bottom { transform: translateY(100px) rotateX(-90deg); }
@keyframes rotateCube {
  0%   { transform: rotateX(-20deg) rotateY(0deg); }
  100% { transform: rotateX(-20deg) rotateY(360deg); }
}

/* === ABOUT PAGE HERO === */
.hero-about .hero-paras { max-width: 700px; }
.hero-about .hero-paras p {
  font-size: 1.05rem; color: var(--text-gray); line-height: 1.8; margin-bottom: 16px;
}

/* === PHILOSOPHY PAGE — QUOTE === */
.quote-section {
  padding: 80px 2rem; background: var(--bg-card);
  border-left: 4px solid var(--gold);
}
.quote-section .container { max-width: 900px; }
.quote-big {
  font-family: var(--font-heading); font-size: 1.8rem;
  font-weight: 700; line-height: 1.4; margin-bottom: 16px; color: var(--text);
}
.quote-sub { font-size: 1.1rem; color: var(--gold); margin-bottom: 24px; font-style: italic; }
.quote-body { font-size: 1rem; color: var(--text-gray); line-height: 1.8; }

/* === PHILOSOPHY — NUMBERED CARDS === */
.numbered-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 16px; padding: 40px; transition: all 0.3s;
}
.numbered-card:hover { background: var(--bg-card-hover); transform: translateY(-4px); }
.numbered-card .number {
  font-family: var(--font-heading); font-size: 0.9rem;
  color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; font-weight: 700;
}
.numbered-card h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 12px; }
.numbered-card p { font-size: 0.95rem; color: var(--text-gray); line-height: 1.7; }

/* === PHILOSOPHY — ADVISORY CARDS === */
.advisory-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-top: 3px solid var(--gold); border-radius: 16px; padding: 32px;
  transition: all 0.3s;
}
.advisory-card:hover { background: var(--bg-card-hover); transform: translateY(-4px); }
.advisory-card h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 16px; }
.advisory-card ul { list-style: none; }
.advisory-card ul li {
  padding: 8px 0; font-size: 0.95rem; color: var(--text-gray);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-left: 16px; position: relative;
}
.advisory-card ul li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); transform: translateY(-50%);
}
.advisory-card ul li:last-child { border-bottom: none; }

/* === SCROLL PROGRESS BAR === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: #e8900a;
  z-index: 9999;
  transition: none;
}

/* === NAVBAR SCROLL EFFECT === */
.nav.scrolled {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--gold);
  box-shadow: 0 2px 20px rgba(232, 144, 10, 0.15);
}

/* === SCROLL ANIMATIONS === */

/* Fade-in + Slide-up (default) */
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-up.animate-in {
  opacity: 1;
  transform: none;
}

/* Fade-in + Slide-left */
.anim-fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-left.animate-in {
  opacity: 1;
  transform: none;
}

/* Fade-in + Slide-right */
.anim-fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-right.animate-in {
  opacity: 1;
  transform: translateY(var(--parallax-y, 0px));
}
.anim-fade-right.parallax-active {
  transition: none;
}

/* Staggered animation delay support */
.anim-stagger { transition-delay: var(--stagger-delay, 0s); }

/* === FUTURISTIC VISUAL ENHANCEMENTS === */

/* --- Keyframe Animations --- */
@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(232,144,10,0.5), 0 0 40px rgba(232,144,10,0.2), 0 0 80px rgba(232,144,10,0.1); }
  50% { text-shadow: 0 0 20px rgba(232,144,10,0.8), 0 0 60px rgba(232,144,10,0.4), 0 0 100px rgba(232,144,10,0.15); }
}

@keyframes gridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}

@keyframes scanlineMove {
  0% { background-position: 0 0; }
  100% { background-position: 0 40px; }
}

@keyframes cubeRingPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(232,144,10,0.2), 0 0 60px rgba(232,144,10,0.08); border-color: rgba(232,144,10,0.3); }
  50% { box-shadow: 0 0 40px rgba(232,144,10,0.4), 0 0 100px rgba(232,144,10,0.15); border-color: rgba(232,144,10,0.6); }
}

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

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(232,144,10,0.4), 0 0 30px rgba(232,144,10,0.2); }
  50% { box-shadow: 0 0 25px rgba(232,144,10,0.6), 0 0 50px rgba(232,144,10,0.3); }
}

@keyframes shimmerSweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.4; box-shadow: 0 0 6px rgba(232,144,10,0.3); }
  50% { opacity: 1; box-shadow: 0 0 12px rgba(232,144,10,0.6); }
}

@keyframes sectionGridDrift {
  0% { background-position: 0 0; }
  100% { background-position: 30px 30px; }
}

/* --- 1. HERO ENHANCEMENTS --- */
.hero {
  position: relative;
  overflow: hidden;
}
.hero > .container {
  position: relative;
  z-index: 1;
}

/* Animated dot grid background */
.hero::before {
  content: '';
  position: absolute;
  top: -40px; left: -40px; right: -40px; bottom: -40px;
  background-image: radial-gradient(circle, rgba(232,144,10,0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridDrift 8s linear infinite;
  pointer-events: none;
}

/* Scanline overlay */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(232,144,10,0.015) 2px,
    rgba(232,144,10,0.015) 4px
  );
  background-size: 100% 40px;
  animation: scanlineMove 3s linear infinite;
  pointer-events: none;
}

/* Neon glow on 'Lux Capital' */
.hero h1 .gold {
  animation: neonPulse 3s ease-in-out infinite;
}

/* Glowing animated ring around cube */
.cube-container {
  position: relative;
}
.cube-container::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1.5px solid rgba(232,144,10,0.3);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: cubeRingPulse 3s ease-in-out infinite;
  pointer-events: none;
}

/* --- 2. NAVIGATION GLASSMORPHISM ENHANCEMENT --- */
.nav {
  background: rgba(10,10,10,0.5);
  border-bottom: 1px solid rgba(232,144,10,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
}
.nav.scrolled {
  background: rgba(10,10,10,0.7);
  box-shadow: 0 2px 20px rgba(232,144,10,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
}
[data-theme="light"] .nav {
  background: rgba(245,245,245,0.5);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.5);
}
[data-theme="light"] .nav.scrolled {
  background: rgba(245,245,245,0.7);
}

/* Active nav animated gradient underline */
.nav-links a {
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: linear-gradient(90deg, #e8900a, #f5a623, #e8900a);
  background-size: 200% 100%;
  animation: gradientSlide 2s linear infinite;
  border-radius: 2px;
}

/* --- 3. CARD ENHANCEMENTS --- */
.card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(232,144,10,0.02) 100%);
}
.card:hover {
  box-shadow: 0 0 20px rgba(232,144,10,0.25), 0 0 40px rgba(232,144,10,0.1);
  background: linear-gradient(145deg, var(--bg-card-hover) 0%, rgba(232,144,10,0.05) 100%);
}

/* Top-left corner accent lines */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 2px;
  background: linear-gradient(90deg, #e8900a, transparent);
  transition: width 0.3s;
  z-index: 1;
}
.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 40px;
  background: linear-gradient(180deg, #e8900a, transparent);
  transition: height 0.3s;
  z-index: 1;
}
.card:hover::before { width: 60px; }
.card:hover::after { height: 60px; }

/* --- 4. SECTION HEADER ENHANCEMENTS --- */
.section-title {
  background: linear-gradient(135deg, var(--text) 30%, #e8900a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 60px; height: 2px;
  background: #e8900a;
  box-shadow: 0 0 10px rgba(232,144,10,0.5), 0 0 20px rgba(232,144,10,0.3);
  border-radius: 2px;
}
.cta-section .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* --- 5. BUTTON ENHANCEMENTS --- */
.btn-gold {
  position: relative;
  overflow: hidden;
}
.hero .btn-gold {
  animation: glowPulse 2s ease-in-out infinite;
}
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  pointer-events: none;
}
.btn-gold:hover::after {
  animation: shimmerSweep 0.6s ease-in-out;
}

/* --- 6. OVERALL ENHANCEMENTS --- */

/* Subtle animated grid mesh on sections */
.section {
  position: relative;
  overflow: hidden;
}
.section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(232,144,10,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,144,10,0.025) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: sectionGridDrift 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.section > .container {
  position: relative;
  z-index: 1;
}
[data-theme="light"] .section::before {
  background-image:
    linear-gradient(rgba(232,144,10,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,144,10,0.015) 1px, transparent 1px);
}

/* Dramatic typography for badges/labels */
.hero-badge {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}
.section-label {
  letter-spacing: 4px;
  font-size: 0.72rem;
}

/* Glowing dot separators between sections */
.section-dot-separator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.section-dot-separator::before,
.section-dot-separator span,
.section-dot-separator::after {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #e8900a;
  box-shadow: 0 0 6px rgba(232,144,10,0.5);
  animation: dotPulse 2s ease-in-out infinite;
}
.section-dot-separator span {
  display: block;
  width: 6px; height: 6px;
  animation-delay: 0.3s;
}
.section-dot-separator::after {
  animation-delay: 0.6s;
}

/* === RESPONSIVE === */

/* Tablet landscape */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 3.5rem; }
  .section-title { font-size: 2.4rem; }
  .quote-big { font-size: 1.6rem; }
}

/* Tablet portrait / mobile landscape */
@media (max-width: 768px) {
  .nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hamburger.active { color: var(--gold); border-color: var(--gold); }
  .hero h1 { font-size: 2.8rem; }
  .hero-sub { font-size: 1rem; }
  .section-title { font-size: 2rem; }
  .section-sub { font-size: 1rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-grid-2 { grid-template-columns: 1fr !important; gap: 24px !important; }
  .cube-container { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 60px 1rem; }
  .cta-section { padding: 60px 1rem; }
  .hero { padding: 100px 1rem 60px; min-height: auto; }
  .quote-section { padding: 48px 1rem; }
  .quote-big { font-size: 1.4rem; }
  .card { padding: 24px; }
  .numbered-card { padding: 28px; }
  .advisory-card { padding: 24px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { width: 100%; justify-content: center; text-align: center; }
  .footer { padding: 48px 1rem 0; }
  .faq-question { padding: 16px; font-size: 0.95rem; }
  .faq-answer-inner { padding: 0 16px 16px; }
  .hero-badge { font-size: 0.75rem; padding: 6px 14px; }
  .hero-about .hero-paras p { font-size: 0.95rem; }
}

/* Small mobile */
@media (max-width: 480px) {
  .nav { padding: 0 0.75rem; height: 64px; }
  .mobile-menu { top: 64px; }
  .nav-brand-name { font-size: 1.1rem; }
  .nav-brand-icon { width: 36px; height: 36px; font-size: 18px; }
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .hero { padding: 84px 1rem 48px; }
  .section { padding: 48px 1rem; }
  .cta-section { padding: 48px 1rem; }
  .quote-section { padding: 36px 1rem; }
  .quote-big { font-size: 1.2rem; }
  .quote-sub { font-size: 0.95rem; }
  .card { padding: 20px; }
  .card h3 { font-size: 1.1rem; }
  .card p { font-size: 0.9rem; }
  .numbered-card { padding: 24px; }
  .numbered-card h3 { font-size: 1.15rem; }
  .advisory-card { padding: 20px; }
  .advisory-card h3 { font-size: 1.05rem; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
  .footer-grid { gap: 24px; }
  .footer-bottom-links { gap: 16px; }
}
