/* ============================================================
   KROGROUP.CO — Master Design System
   Premium Global Brand Holding
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  /* Colors — Dark (near-black forest green) */
  --void:        #040C08;
  --dark:        #081410;
  --surface:     #0E1E17;
  --surface-2:   #14281F;
  --border:      #1C3228;
  --border-light: #243D32;
  
  /* Colors — Light sections */
  --light:       #F7F6F3;
  --light-2:     #EDECEA;
  --light-surface: #FFFFFF;
  --light-border: #E0DDD8;
  --light-text:  #1A1F1C;
  --light-text-2: #5A5F5C;
  
  --text-primary:   #EAE8E2;
  --text-secondary: #8A9490;
  --text-muted:     #556158;
  
  --gold:        #C9A96E;
  --gold-light:  #E2C07A;
  --gold-pale:   rgba(201, 169, 110, 0.12);
  --gold-glow:   rgba(201, 169, 110, 0.25);
  
  --petroleum:   #1A3A2A;
  --accent:      #1D3530;
  
  --white:       #FFFFFF;
  --cream:       #F5F2ED;
  
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  
  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  2rem;
  --space-xl:  4rem;
  --space-2xl: 8rem;
  --space-3xl: 12rem;
  
  /* Border Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  
  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in:     cubic-bezier(0.4, 0.0, 1, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --dur-fast:   150ms;
  --dur-normal: 300ms;
  --dur-slow:   600ms;
  --dur-slower: 1000ms;
  
  /* Layout */
  --container-max:  1400px;
  --container-wide: 1200px;
  --container-mid:  900px;
  --container-slim: 680px;
  
  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(4,12,8,0.3);
  --shadow-md:  0 8px 32px rgba(4,12,8,0.4);
  --shadow-lg:  0 24px 64px rgba(4,12,8,0.5);
  --shadow-gold: 0 0 40px rgba(201,169,110,0.15);
  
  /* Z-Index */
  --z-below:   -1;
  --z-normal:   1;
  --z-float:    10;
  --z-nav:      100;
  --z-modal:    200;
  --z-toast:    300;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

/* RTL Support */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--void);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* ---- Selection ---- */
::selection {
  background: var(--gold-glow);
  color: var(--gold-light);
}

/* ---- Typography ---- */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
}

.heading-lg {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.heading-md {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.body-lg {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 300;
  line-height: 1.75;
}

.body-md {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

.body-sm {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
}

.label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.gold { color: var(--gold); }
.muted { color: var(--text-muted); }
.secondary { color: var(--text-secondary); }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

.container-slim {
  width: 100%;
  max-width: var(--container-slim);
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-lg {
  padding: calc(var(--space-3xl) * 1.5) 0;
  position: relative;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 1.5rem 0;
  transition: all var(--dur-slow) var(--ease-smooth);
}

.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,7,13,0.9) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--dur-slow);
  backdrop-filter: blur(0px);
}

.nav.scrolled::before {
  opacity: 1;
  backdrop-filter: blur(20px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  position: relative;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

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

.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-secondary);
  transition: color var(--dur-normal) var(--ease-smooth);
  position: relative;
}

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

.nav-link:hover {
  color: var(--text-primary);
}

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

.nav-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  padding: 0.625rem 1.25rem;
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: var(--radius-sm);
  transition: all var(--dur-normal) var(--ease-smooth);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem 0;
  transition: color var(--dur-normal);
}

.lang-btn:hover { color: var(--text-primary); }

.lang-btn .flag { font-size: 1rem; }

.lang-btn .chevron {
  width: 10px;
  height: 6px;
  transition: transform var(--dur-normal);
}

.lang-switcher.open .chevron { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--dur-normal) var(--ease-smooth);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.lang-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0.5rem;
  gap: 0.125rem;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.625rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--dur-fast);
  white-space: nowrap;
}

.lang-option:hover {
  background: var(--border);
  color: var(--text-primary);
}

.lang-option.active {
  color: var(--gold);
  background: var(--gold-pale);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.25rem;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-secondary);
  transition: all var(--dur-normal);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--dur-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--dur-normal);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}

.btn-gold::before {
  background: rgba(255,255,255,0.15);
}

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

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding-left: 0;
  padding-right: 0;
  letter-spacing: 0.08em;
}

.btn-ghost::after {
  content: '→';
  transition: transform var(--dur-normal);
}

.btn-ghost:hover::after {
  transform: translateX(4px);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap var(--dur-normal) var(--ease-spring);
}

.btn-arrow:hover { gap: 1rem; }

.btn-arrow .arrow {
  display: inline-block;
  transition: transform var(--dur-normal) var(--ease-spring);
}

.btn-arrow:hover .arrow { transform: translateX(4px); }

/* ---- Decorative Elements ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

.divider-gold {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

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

/* Noise texture overlay */
.noise-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--void);
}

.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#hero-globe-canvas {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 700px;
  height: auto;
  aspect-ratio: 1;
  max-height: 90%;
  opacity: 0.85;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 80% at -10% 50%, rgba(14,42,28,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 110% 50%, rgba(201,169,110,0.06) 0%, transparent 70%),
    linear-gradient(135deg, var(--void) 0%, rgba(4,12,8,0.7) 50%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 6rem;
  max-width: 55%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-smooth) 0.3s forwards;
}

.hero-tag-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-tag-text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-smooth) 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.9s var(--ease-smooth) 0.7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-smooth) 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease-smooth) 1.5s forwards;
}

.hero-scroll-text {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ---- Stats Strip ---- */
.stats-strip {
  position: relative;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 0 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat-item:first-child { border-left: 1px solid var(--border); }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ---- About Section ---- */
.about-section {
  background: var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
}

.about-frame {
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}

.about-frame-inner {
  position: absolute;
  inset: 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.pillar-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: all var(--dur-slow) var(--ease-smooth);
  cursor: default;
}

.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-pale), transparent);
  opacity: 0;
  transition: opacity var(--dur-slow);
}

.pillar-card:hover::before { opacity: 1; }

.pillar-card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  position: relative;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.pillar-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---- Globe Section ---- */
.globe-section {
  background: var(--void);
  overflow: hidden;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.globe-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(14,42,28,0.2) 0%, transparent 70%);
}

.globe-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.globe-canvas-wrap {
  position: relative;
  aspect-ratio: 1;
}

#section-globe-canvas {
  width: 100%;
  height: 100%;
}

.globe-cities {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 2rem;
}

.city-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: all var(--dur-normal) var(--ease-smooth);
  cursor: default;
}

.city-item:hover {
  background: var(--surface);
  border-color: var(--border);
}

.city-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--gold-glow);
}

.city-pulse {
  position: relative;
}

.city-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0;
  animation: cityPulse 2s ease-out infinite;
}

.city-flag { font-size: 1rem; }

.city-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

.city-country {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: auto;
}

/* ---- Brands / Solar System Section ---- */
.brands-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.constellation-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 500px;
}

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

/* ---- 3D Brand Carousel ---- */
.brands-carousel-wrap {
  position: relative;
  margin-top: 2.5rem;
  padding-bottom: 1rem;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.brands-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2rem 3rem 2rem;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  perspective: 900px;
}
.brands-carousel::-webkit-scrollbar { display: none; }
.brands-carousel:active { cursor: grabbing; }

/* ---- 3D Card ---- */
.brand-card-3d {
  flex: 0 0 320px;
  scroll-snap-align: center;
  perspective: 800px;
  text-decoration: none;
  display: block;
  opacity: 0;
  transform: translateY(30px) rotateY(-8deg);
  animation: cardEnter 0.7s var(--ease-smooth) forwards;
  animation-delay: calc(var(--i, 0) * 0.1s);
}

@keyframes cardEnter {
  to {
    opacity: 1;
    transform: translateY(0) rotateY(0);
  }
}

.brand-card-inner {
  position: relative;
  padding: 2rem 2rem 1.5rem;
  border-radius: 16px;
  background: linear-gradient(
    145deg,
    rgba(20, 40, 31, 0.85),
    rgba(14, 30, 23, 0.95)
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth), border-color 0.4s;
  transform-style: preserve-3d;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.brand-card-3d:hover .brand-card-inner {
  border-color: color-mix(in srgb, var(--brand-color, var(--gold)) 40%, transparent);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.3),
    0 0 40px color-mix(in srgb, var(--brand-color, var(--gold)) 15%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Brand color glow */
.brand-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    ellipse at 50% 0%,
    color-mix(in srgb, var(--brand-color, var(--gold)) 12%, transparent),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.brand-card-3d:hover .brand-card-glow { opacity: 1; }

/* Logo */
.brand-card-logo {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  position: relative;
  z-index: 1;
  transition: border-color 0.4s, background 0.4s;
}
.brand-card-3d:hover .brand-card-logo {
  border-color: color-mix(in srgb, var(--brand-color, var(--gold)) 30%, transparent);
  background: color-mix(in srgb, var(--brand-color, var(--gold)) 8%, transparent);
}
.brand-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.brand-card-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-color, var(--gold));
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.brand-card-tag::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
}

.brand-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 0.625rem;
  position: relative;
  z-index: 1;
}

.brand-card-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.brand-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
}

.brand-card-sector {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.brand-card-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.35s var(--ease-smooth);
}

.brand-card-3d:hover .brand-card-arrow {
  border-color: var(--brand-color, var(--gold));
  color: var(--brand-color, var(--gold));
  transform: rotate(45deg);
  box-shadow: 0 0 12px color-mix(in srgb, var(--brand-color, var(--gold)) 25%, transparent);
}

/* Responsive */
@media (max-width: 768px) {
  .brand-card-3d { flex: 0 0 280px; }
  .brands-carousel { padding: 1.5rem 1.5rem; gap: 1rem; }
}

/* ---- Carousel Scroll Hint ---- */
.carousel-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0 0;
  opacity: 0.4;
}

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

.scroll-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---- Brand Stats Strip ---- */
.brands-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.brand-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0 2.5rem;
}

.brand-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.brand-stat-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.brand-stat-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(201,169,110,0.25), transparent);
}

@media (max-width: 768px) {
  .brands-stats-strip { flex-wrap: wrap; gap: 1rem; }
  .brand-stat-item { padding: 0.5rem 1.5rem; }
  .brand-stat-divider { display: none; }
}

/* ---- Investment Vision ---- */
.vision-section {
  background: var(--void);
  position: relative;
  overflow: hidden;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 4rem;
}

.vision-item {
  background: var(--surface);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--dur-slow);
}

.vision-item:hover {
  background: var(--surface-2);
}

.vision-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--border-light);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
  transition: color var(--dur-slow);
}

.vision-item:hover .vision-num {
  color: rgba(201,169,110,0.2);
}

.vision-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.vision-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- Capabilities ---- */
.capabilities-section {
  background: var(--dark);
}

.cap-list {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
}

.cap-item {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  position: relative;
  transition: all var(--dur-slow);
  cursor: default;
}

.cap-item:last-child { border-bottom: 1px solid var(--border); }

.cap-item::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-smooth);
}

.cap-item:hover::before { transform: scaleX(1); }

.cap-num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  padding-top: 0.25rem;
}

.cap-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  transition: color var(--dur-normal);
}

.cap-item:hover .cap-title { color: var(--gold-light); }

.cap-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---- Timeline ---- */
.timeline-section {
  background: var(--void);
  overflow: hidden;
}

.timeline-track {
  position: relative;
  margin-top: 4rem;
  display: flex;
  gap: 3rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2rem;
  scroll-snap-type: x mandatory;
}

.timeline-track::-webkit-scrollbar { display: none; }

.timeline-item {
  flex: 0 0 320px;
  scroll-snap-align: start;
  position: relative;
  padding-top: 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.timeline-item.active::before {
  background: var(--gold);
}

.timeline-dot {
  position: absolute;
  top: calc(1rem - 4px);
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border-light);
  border: 1px solid var(--border);
}

.timeline-item.active .timeline-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--border-light);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color var(--dur-slow);
}

.timeline-item.active .timeline-year,
.timeline-item:hover .timeline-year {
  color: var(--gold);
}

.timeline-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

.timeline-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- Metrics / Numbers ---- */
.numbers-section {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.numbers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
}

.number-item {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  text-align: center;
  position: relative;
}

.number-item:last-child { border-right: none; }

.number-value {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}

.number-value em {
  color: var(--gold);
  font-style: normal;
}

.number-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}

.number-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- Insights ---- */
.insights-section {
  background: var(--dark);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 3rem;
}

.insight-card {
  background: var(--surface);
  text-decoration: none;
  display: block;
  overflow: hidden;
  transition: background var(--dur-slow);
}

.insight-card:hover { background: var(--surface-2); }

.insight-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}

.insight-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
}

.insight-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-smooth);
}

.insight-card:hover .insight-thumb img { transform: scale(1.04); }

.insight-body {
  padding: 2rem;
}

.insight-cat {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
}

.insight-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  transition: color var(--dur-normal);
}

.insight-card:hover .insight-title { color: var(--gold-light); }

.insight-excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.insight-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ---- Contact Section ---- */
.contact-section {
  background: var(--void);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input, .form-textarea, .form-select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-primary);
  transition: all var(--dur-normal);
  appearance: none;
  width: 100%;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: rgba(201,169,110,0.5);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.06);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%238A8F9E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: var(--surface);
  color: var(--text-primary);
}

/* ---- Contact Info ---- */
.contact-info {
  padding-top: 1rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:first-child { border-top: 1px solid var(--border); }

.contact-detail-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-detail-value {
  font-size: 1rem;
  color: var(--text-primary);
}

/* ---- Footer ---- */
.footer {
  background: var(--void);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-col-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--dur-normal);
}

.footer-links a:hover { color: var(--text-primary); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--dur-normal);
  text-decoration: none;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

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

.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--dur-normal);
}

.footer-legal a:hover { color: var(--text-secondary); }

/* ---- Mobile Nav ---- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) - 1);
  background: var(--dark);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  padding: 8rem 2rem 3rem;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-smooth);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--dur-normal);
}

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

/* ---- Page Hero ---- */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--void);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ---- Brand Detail Page ---- */
.brand-hero {
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.brand-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, var(--brand-color, var(--gold)), transparent);
}

.brand-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 2rem;
}

.brand-cap-item {
  background: var(--surface);
  padding: 1.5rem 2rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-cap-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-color, var(--gold));
  flex-shrink: 0;
}

.brand-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.brand-metric {
  background: var(--surface);
  padding: 1.5rem 2rem;
  text-align: center;
}

.brand-metric-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.brand-metric-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---- Tags ---- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.tag-gold {
  border-color: rgba(201,169,110,0.3);
  color: var(--gold);
  background: var(--gold-pale);
}

/* ---- Animations ---- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%   { transform: scaleY(1); opacity: 1; }
  50%  { transform: scaleY(0.6); opacity: 0.4; }
  100% { transform: scaleY(1); opacity: 1; }
}

@keyframes cityPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

@keyframes breathe {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.8; transform: scale(1.05); }
}

/* Scroll-reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--dur-slower) var(--ease-smooth),
              transform var(--dur-slower) var(--ease-smooth);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity var(--dur-slower) var(--ease-smooth),
              transform var(--dur-slower) var(--ease-smooth);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .about-grid        { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual      { display: none; }
  .brands-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-main       { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .numbers-grid      { grid-template-columns: repeat(2, 1fr); }
  .number-item:nth-child(2) { border-right: none; }
  .vision-grid       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-menu      { display: none; }
  .nav-cta       { display: none; }
  .nav-hamburger { display: flex; }
  
  .hero-content    { max-width: 100%; }
  #hero-globe-canvas { width: 100%; opacity: 0.2; right: 0; }
  
  .globe-content      { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .brands-grid        { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .cap-item           { grid-template-columns: 50px 1fr; gap: 1.5rem; }
  .cap-desc           { grid-column: 1 / -1; padding-left: calc(50px + 1.5rem); }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .brand-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-capabilities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .section          { padding: var(--space-2xl) 0; }
  .vision-grid      { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: 1fr 1fr; }
  .numbers-grid     { grid-template-columns: 1fr 1fr; }
  .insights-grid    { grid-template-columns: 1fr; }
  .footer-main      { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom    { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-actions     { flex-direction: column; align-items: flex-start; }
  .timeline-item    { flex: 0 0 260px; }
}

/* ---- Full-width Scroll-revealed Banner Placeholder ---- */
.full-width-banner {
  width: 100%;
  height: 40vh;
  position: relative;
  overflow: hidden;
  background: var(--void);
}

.full-width-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38; /* Keep it dark for maximum text readability */
  filter: brightness(0.65) contrast(1.1) grayscale(0.2);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s;
  pointer-events: none;
  z-index: 1;
}

.full-width-banner:hover img {
  transform: scale(1.05);
  opacity: 0.48;
}

.banner-bg-placeholder {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 27, 0.72); /* Dark semi-transparent overlay */
  border-top: 1px solid #43484C;
  border-bottom: 1px solid #43484C;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  color: #a0a6ab;
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 2;
}

/* Diagonal dashed stripes background for structure */
.banner-bg-placeholder::before {
  content: '';
  position: absolute;
  inset: -100px;
  background-image: 
    repeating-linear-gradient(45deg, 
      transparent, 
      transparent 40px, 
      rgba(255, 255, 255, 0.03) 40px, 
      rgba(255, 255, 255, 0.03) 80px
    ),
    repeating-linear-gradient(-45deg, 
      transparent, 
      transparent 40px, 
      rgba(0, 0, 0, 0.15) 40px, 
      rgba(0, 0, 0, 0.15) 80px
    );
  opacity: 0.85;
  pointer-events: none;
}

@supports (animation-timeline: scroll()) {
  .banner-bg-placeholder::before {
    animation: parallax-scroll linear;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  
  @keyframes parallax-scroll {
    from { transform: translateY(-50px); }
    to { transform: translateY(50px); }
  }
}

.banner-bg-placeholder svg {
  transition: transform 0.3s var(--ease-smooth);
}

.full-width-banner:hover .banner-bg-placeholder svg {
  transform: scale(1.1) rotate(2deg);
  color: var(--gold);
}

/* ---- Visual Mockup Placeholder Box ---- */
.visual-placeholder {
  background: #24282B !important;
  border: 1px solid #43484C !important;
  color: #a0a6ab !important;
}

.visual-placeholder svg {
  color: #a0a6ab !important;
}

/* ---- Print ---- */
@media print {
  .nav, .hero-scroll, .lang-switcher { display: none; }
  body { background: white; color: black; }
}
