/* ==========================================================================
   PERFECT LOGIC VENTURES CORPORATION (PLVC) - OFFICIAL CONGLOMERATE STYLESHEET
   Aesthetic: Elite Corporate Holding Group • Analytical Rigor • Global Stature
   System: Mixed Light / Dark Alternating Rhythm (60% Light / 40% Dark)
   Corporate Colors: Deep Navy (#061426) & Corporate Gold (#D5B15E)
   Tech/Radar Accent: Technology Cyan (#00BFD8)
   ========================================================================== */

:root {
  /* Corporate Holding Palette */
  --navy-darkest: #040d1a;
  --navy-primary: #061426;
  --navy-secondary: #0D2340;
  --navy-light: #17375E;

  /* Sovereign Corporate Gold */
  --gold-primary: #D5B15E;
  --gold-soft: #E4CA87;
  --gold-dark: #967634;
  --gold-border: rgba(213, 177, 94, 0.3);
  --gold-glow: rgba(213, 177, 94, 0.18);

  /* Technology & Radar Cyan (Strictly for Tech/Radar sections) */
  --tech-cyan: #00BFD8;
  --tech-cyan-glow: rgba(0, 191, 216, 0.25);
  --accent-cyan: #00BFD8; /* Alias for radar engine compatibility */

  /* Light & Tinted Surfaces */
  --bg-light-warm: #F4F3EF;
  --bg-light-tint: #E9EEF3;
  --surface-white: #ffffff;
  --surface-card-light: #ffffff;

  /* Text Colors for Light Surfaces */
  --text-dark-primary: #172333;
  --text-dark-secondary: #647286;
  --text-dark-muted: #8b9bb0;

  /* Text Colors for Dark Surfaces */
  --text-light-primary: #f8fafc;
  --text-light-secondary: #94a3b8;
  --text-light-muted: #64748b;
  --text-gold: #E4CA87;

  /* Gradients */
  --gradient-gold-text: linear-gradient(135deg, #ffffff 20%, #E4CA87 60%, #D5B15E 100%);
  --gradient-card-dark: linear-gradient(150deg, rgba(13, 35, 64, 0.85) 0%, rgba(6, 20, 38, 0.95) 100%);
  --gradient-hero: radial-gradient(circle at 50% 15%, rgba(13, 35, 64, 0.9) 0%, var(--navy-primary) 70%, var(--navy-darkest) 100%);

  /* Borders */
  --border-light: rgba(6, 20, 38, 0.08);
  --border-light-hover: rgba(213, 177, 94, 0.45);
  --border-dark-subtle: rgba(255, 255, 255, 0.08);
  --border-dark-gold: rgba(213, 177, 94, 0.25);

  /* Layout & Sizing */
  --container-max: 1240px;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--navy-primary);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--navy-primary);
  color: var(--text-dark-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* Prevent horizontal overflow on Android and iOS */
h1, h2, h3, h4, h5, p, span, a, div {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

section {
  scroll-margin-top: 80px;
}

/* Ambient Background Layers (Visible primarily behind dark sections) */
.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 20% 15%, rgba(13, 35, 64, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(213, 177, 94, 0.05) 0%, transparent 45%),
    linear-gradient(180deg, var(--navy-primary) 0%, #040d1a 100%);
}

.ambient-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 56px 56px;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.75rem;
  position: relative;
  z-index: 2;
}

/* Typography Helpers */
h1, h2, h3, h4, .font-heading {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.font-serif {
  font-family: 'Cinzel', Georgia, serif;
}

.font-mono {
  font-family: 'Space Grotesk', monospace;
}

.text-gold { color: var(--gold-primary); }
.text-cyan { color: var(--tech-cyan); }
.text-dark { color: var(--text-dark-primary); }
.text-muted { color: var(--text-dark-muted); }

.text-gradient-gold {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section Rhythm Utility Framework */
.section-light {
  position: relative;
  z-index: 1;
  background-color: var(--bg-light-warm);
  color: var(--text-dark-primary);
  padding: 100px 0;
}

.section-light-tint {
  position: relative;
  z-index: 1;
  background-color: var(--bg-light-tint);
  color: var(--text-dark-primary);
  padding: 100px 0;
}

.section-dark {
  position: relative;
  z-index: 1;
  background-color: var(--navy-primary);
  color: var(--text-light-primary);
  padding: 100px 0;
}

.section-medium-dark {
  position: relative;
  z-index: 1;
  background-color: var(--navy-secondary);
  color: var(--text-light-primary);
  padding: 100px 0;
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 3.75rem;
}

.section-header .section-title {
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  margin-top: 0.85rem;
  margin-bottom: 1.15rem;
}

.section-light .section-header .section-title,
.section-light-tint .section-header .section-title {
  color: var(--navy-primary);
}

.section-dark .section-header .section-title,
.section-medium-dark .section-header .section-title {
  color: var(--text-light-primary);
}

.section-header .section-subtitle {
  font-size: 1.125rem;
  line-height: 1.65;
}

.section-light .section-header .section-subtitle,
.section-light-tint .section-header .section-subtitle {
  color: var(--text-dark-secondary);
}

.section-dark .section-header .section-subtitle,
.section-medium-dark .section-header .section-subtitle {
  color: var(--text-light-secondary);
}

/* Corporate Badges */
.badge-conglomerate {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: rgba(213, 177, 94, 0.12);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
}

.badge-conglomerate::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-primary);
}

.badge-tech-announcement {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tech-cyan);
  background: rgba(0, 191, 216, 0.1);
  border: 1px solid rgba(0, 191, 216, 0.35);
  border-radius: var(--radius-full);
}

.badge-tech-announcement::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--tech-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--tech-cyan);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.75rem;
  font-size: 0.925rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-xs);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
  border: 1px solid transparent;
}

.btn-primary-gold {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold-primary) 100%);
  color: var(--navy-primary);
  box-shadow: 0 4px 18px rgba(213, 177, 94, 0.28);
  font-weight: 700;
}

.btn-primary-gold:hover {
  box-shadow: 0 6px 26px rgba(213, 177, 94, 0.45);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

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

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 20, 38, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s var(--ease-smooth);
}

.site-header.scrolled {
  background: rgba(4, 13, 26, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(213, 177, 94, 0.25);
}

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

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Enlarged Logo Display (20-25% larger wordmark legibility) */
.logo-badge {
  background: #ffffff;
  padding: 5px 14px;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.logo-badge:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

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

.nav-link {
  color: var(--text-light-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.2s ease;
}

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

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

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-light-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   1. EXECUTIVE CONGLOMERATE HERO SECTION (DARK NAVY)
   ========================================================================== */
.hero-conglomerate {
  padding-top: 155px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-conglomerate-inner {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.hero-badges-wrapper {
  margin-bottom: 1.75rem;
}

.hero-main-title {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-light-secondary);
  max-width: 840px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-lead strong {
  color: #ffffff;
  font-weight: 600;
}

.hero-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.75rem;
  flex-wrap: wrap;
}

/* Flagship Art-Directed Responsive Corporate Banner Showcase */
.hero-banner-showcase {
  position: relative;
  margin: 0 auto 2rem;
  max-width: 1140px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(213, 177, 94, 0.4);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.75), 0 0 40px rgba(213, 177, 94, 0.15);
  background: #020712;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}

.hero-banner-showcase:hover {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.85), 0 0 50px rgba(213, 177, 94, 0.22);
}

.hero-banner-picture {
  display: block;
  width: 100%;
  line-height: 0;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.hero-banner-showcase:hover .hero-banner-img {
  transform: scale(1.012);
}

.banner-caption-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.6rem;
  background: rgba(6, 20, 38, 0.95);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(213, 177, 94, 0.25);
  font-size: 0.85rem;
  color: var(--text-light-secondary);
  line-height: 1.4;
}

.caption-tag {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.caption-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 6px var(--gold-primary);
}

.caption-motto {
  color: #e2e8f0;
  font-weight: 500;
  font-size: 0.825rem;
  letter-spacing: 0.02em;
}

/* Banner 6-Division Interactive Quick Pills */
.banner-division-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 auto 3.25rem;
  max-width: 1100px;
}

.banner-pill-btn {
  background: rgba(13, 35, 64, 0.7);
  border: 1px solid rgba(213, 177, 94, 0.3);
  color: var(--gold-soft);
  padding: 0.45rem 1.05rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(8px);
  transition: all 0.25s var(--ease-smooth);
}

.banner-pill-btn:hover {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold-primary) 100%);
  color: var(--navy-primary);
  border-color: var(--gold-primary);
  box-shadow: 0 4px 14px rgba(213, 177, 94, 0.35);
  transform: translateY(-2px);
}

/* Strategic Expansion Announcement Banner */
.strategic-announcement-banner {
  background: rgba(13, 35, 64, 0.7);
  border: 1px solid rgba(213, 177, 94, 0.35);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  margin-bottom: 3.5rem;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.announcement-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 191, 216, 0.12);
  color: var(--tech-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.announcement-text h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tech-cyan);
  margin-bottom: 0.25rem;
}

.announcement-text p {
  font-size: 0.95rem;
  color: var(--text-light-secondary);
  line-height: 1.5;
}

.announcement-text strong {
  color: #ffffff;
}

.announcement-action a {
  display: inline-flex;
  align-items: center;
  color: var(--gold-soft);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, transform 0.2s;
}

.announcement-action a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* Conglomerate Key Stats Ticker (6 | 1 | PH | Makati) */
.conglomerate-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-box {
  text-align: left;
}

.stat-big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-light-secondary);
  line-height: 1.4;
}

/* ==========================================================================
   2. CORPORATE OVERVIEW, MISSION & VISION (WARM OFF-WHITE / LIGHT)
   ========================================================================== */
.overview-section {
  background-color: var(--bg-light-warm);
}

.overview-card-main {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3.25rem;
  margin-bottom: 3.5rem;
  box-shadow: 0 12px 36px rgba(6, 20, 38, 0.05);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.overview-text h2 {
  font-size: 2.2rem;
  color: var(--navy-primary);
  margin-bottom: 1.25rem;
}

.overview-text p {
  color: var(--text-dark-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* Contrast Corporate Facts Dossier (Deep Navy Institutional Card) */
.corporate-meta-dossier {
  background: var(--navy-primary);
  border: 1px solid var(--border-dark-gold);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(6, 20, 38, 0.25);
  color: var(--text-light-primary);
}

.dossier-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.925rem;
}

.dossier-row:last-child {
  border-bottom: none;
}

.dossier-label {
  color: var(--text-light-muted);
  font-size: 0.85rem;
}

.dossier-val {
  color: var(--text-light-primary);
  text-align: right;
  font-weight: 500;
}

.dossier-val.text-gold {
  color: var(--gold-soft);
  font-weight: 600;
}

/* Mission & Vision Section Grid (Elevated White Cards) */
.mv-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.mv-card-box {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: 0 8px 24px rgba(6, 20, 38, 0.04);
}

.mv-header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.mv-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(213, 177, 94, 0.12);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mv-box-title {
  font-size: 1.45rem;
  color: var(--navy-primary);
}

.mv-card-box p {
  color: var(--text-dark-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* 4 Pillars of Integrated Value Proposition */
.value-pillars-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 20px rgba(6, 20, 38, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(6, 20, 38, 0.07);
}

.value-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.value-card-title {
  font-size: 1.15rem;
  color: var(--navy-primary);
  margin-bottom: 0.75rem;
}

.value-card-desc {
  font-size: 0.9rem;
  color: var(--text-dark-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   3. THE 6 PILLARS OF INDUSTRY: CORE DIVISIONS (LIGHT BLUE-GRAY TINT)
   ========================================================================== */
.divisions-conglomerate-section {
  background-color: var(--bg-light-tint);
}

.divisions-six-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.division-item-card {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(6, 20, 38, 0.03);
  transition: all 0.25s var(--ease-smooth);
  position: relative;
}

.division-item-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-light-hover);
  box-shadow: 0 14px 34px rgba(6, 20, 38, 0.08);
}

.div-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(213, 177, 94, 0.12);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.div-card-title {
  font-size: 1.3rem;
  color: var(--navy-primary);
  margin-bottom: 0.75rem;
}

.div-card-summary {
  font-size: 0.95rem;
  color: var(--text-dark-secondary);
  line-height: 1.65;
  margin-bottom: 1.35rem;
  flex-grow: 1;
}

/* Streamlined Tag Strip */
.div-tags-strip {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
}

.div-tag-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark-primary);
}

.div-tag-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-primary);
  flex-shrink: 0;
}

.btn-open-division {
  align-self: flex-start;
  background: transparent;
  border: none;
  padding: 0;
  color: var(--navy-primary);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s, gap 0.2s;
}

.btn-open-division:hover {
  color: var(--gold-primary);
  gap: 0.65rem;
}

/* Technology Milestone Card */
.division-item-card.has-tech-milestone {
  border-color: rgba(0, 191, 216, 0.35);
}

.milestone-ribbon {
  align-self: flex-start;
  background: var(--navy-primary);
  color: var(--tech-cyan);
  border: 1px solid rgba(0, 191, 216, 0.35);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

/* ==========================================================================
   4. STRATEGIC MILESTONE: RADAR & DEFENSE INITIATIVE (DARK NAVY / CYAN)
   ========================================================================== */
.radar-spotlight-section {
  background: linear-gradient(180deg, var(--navy-primary) 0%, var(--navy-secondary) 50%, var(--navy-primary) 100%);
  position: relative;
  z-index: 1;
}

.radar-spotlight-box {
  background: rgba(4, 13, 26, 0.95);
  border: 1px solid rgba(0, 191, 216, 0.25);
  border-radius: var(--radius-lg);
  padding: 3.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 191, 216, 0.06);
}

.radar-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.radar-narrative-col h3 {
  font-size: 2.1rem;
  color: #ffffff;
  margin: 0.5rem 0 1.25rem;
}

.radar-narrative-col p {
  color: var(--text-light-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.radar-narrative-col strong {
  color: #ffffff;
}

.radar-tech-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.tech-pillar-item {
  background: rgba(6, 20, 38, 0.75);
  border: 1px solid rgba(0, 191, 216, 0.15);
  border-left: 3px solid var(--tech-cyan);
  border-radius: var(--radius-xs);
  padding: 1.1rem;
}

.pillar-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.pillar-item-desc {
  font-size: 0.825rem;
  color: var(--text-light-secondary);
  line-height: 1.45;
}

/* Radar Canvas Simulation Frame */
.radar-interactive-widget {
  background: #020712;
  border: 1px solid rgba(0, 191, 216, 0.35);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), inset 0 0 20px rgba(0, 191, 216, 0.08);
}

.widget-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 191, 216, 0.15);
}

.widget-title {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--tech-cyan);
  letter-spacing: 0.1em;
}

.widget-mode-buttons {
  display: flex;
  gap: 0.4rem;
}

.mode-btn {
  background: transparent;
  border: 1px solid rgba(0, 191, 216, 0.25);
  color: var(--text-light-secondary);
  font-size: 0.7rem;
  font-family: 'Space Grotesk', monospace;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: all 0.2s;
}

.mode-btn:hover {
  border-color: var(--tech-cyan);
  color: var(--tech-cyan);
}

.mode-btn.active {
  background: var(--tech-cyan);
  color: #020712;
  border-color: var(--tech-cyan);
  font-weight: 700;
}

.widget-canvas-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 380px;
  margin: 0 auto;
  background: #04101e;
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 191, 216, 0.15);
}

#radarPreviewCanvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
}

.widget-telemetry-bar {
  margin-top: 1rem;
  background: rgba(6, 20, 38, 0.9);
  border: 1px solid rgba(0, 191, 216, 0.15);
  border-radius: var(--radius-xs);
  padding: 0.75rem 1rem;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  color: var(--text-light-secondary);
}

.widget-telemetry-bar strong {
  color: var(--tech-cyan);
}

/* ==========================================================================
   5. THE LOGIC METHODOLOGY (WARM OFF-WHITE / LIGHT)
   ========================================================================== */
.logic-methodology-section {
  background-color: var(--bg-light-warm);
}

.logic-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.logic-step-card {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.35rem;
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
  box-shadow: 0 4px 16px rgba(6, 20, 38, 0.03);
  text-align: left;
}

.logic-step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(6, 20, 38, 0.06);
  border-color: rgba(213, 177, 94, 0.4);
}

.logic-letter {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.logic-step-card h4 {
  font-size: 1rem;
  color: var(--navy-primary);
  margin-bottom: 0.4rem;
}

.logic-step-card p {
  font-size: 0.85rem;
  color: var(--text-dark-secondary);
  line-height: 1.45;
}

/* Selected Step: Deep Navy Contrast */
.logic-step-card.active {
  background: var(--navy-primary);
  border-color: var(--gold-primary);
  box-shadow: 0 10px 28px rgba(6, 20, 38, 0.2);
  transform: translateY(-4px);
}

.logic-step-card.active .logic-letter {
  color: var(--gold-soft);
  text-shadow: 0 0 12px rgba(213, 177, 94, 0.4);
}

.logic-step-card.active h4 {
  color: #ffffff;
}

.logic-step-card.active p {
  color: var(--text-light-secondary);
}

/* Dynamic Parameter Panel */
.logic-dynamic-panel {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 2.25rem 2.5rem;
  box-shadow: 0 6px 20px rgba(6, 20, 38, 0.03);
}

.panel-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.panel-title {
  font-size: 1.4rem;
  color: var(--navy-primary);
}

.panel-phase-badge {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  background: rgba(213, 177, 94, 0.12);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.panel-narrative {
  color: var(--text-dark-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.deliverables-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-primary);
  margin-bottom: 0.75rem;
}

.deliverables-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.deliverable-item {
  background: var(--bg-light-warm);
  border: 1px solid var(--border-light);
  color: var(--navy-primary);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-xs);
}

/* ==========================================================================
   6. WHY PARTNER WITH US (MEDIUM NAVY CONTRAST)
   ========================================================================== */
.why-partner-section {
  background-color: var(--navy-secondary);
}

.why-partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.why-card {
  background: rgba(6, 20, 38, 0.75);
  border: 1px solid var(--border-dark-gold);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-soft);
}

.why-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(213, 177, 94, 0.15);
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-card h4 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.925rem;
  color: var(--text-light-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   7. EXECUTIVE CORPORATE SECRETARIAT / CONTACT (WARM OFF-WHITE / LIGHT)
   ========================================================================== */
.contact-section {
  background-color: var(--bg-light-warm);
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

/* Institutional Secretariat Card */
.secretariat-dossier-card {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: 0 10px 30px rgba(6, 20, 38, 0.04);
}

.secretariat-dossier-card h3 {
  font-size: 1.6rem;
  color: var(--navy-primary);
  margin-bottom: 0.75rem;
}

.secretariat-lead {
  font-size: 0.95rem;
  color: var(--text-dark-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.secretariat-meta-row {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.secretariat-meta-row:last-child {
  border-bottom: none;
}

.secretariat-meta-icon {
  width: 22px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.secretariat-meta-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark-muted);
  margin-bottom: 0.25rem;
}

.secretariat-meta-val {
  font-size: 0.925rem;
  color: var(--navy-primary);
  font-weight: 600;
  line-height: 1.45;
}

.secretariat-meta-val.text-gold {
  color: var(--gold-primary);
}

/* Executive Inquiry Form Card */
.inquiry-form-card {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: 0 10px 30px rgba(6, 20, 38, 0.04);
}

.inquiry-form-card h3 {
  font-size: 1.6rem;
  color: var(--navy-primary);
  margin-bottom: 0.5rem;
}

.inquiry-form-card .form-subtitle {
  font-size: 0.925rem;
  color: var(--text-dark-secondary);
  margin-bottom: 1.75rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-primary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #f8fafc;
  border: 1px solid rgba(6, 20, 38, 0.12);
  border-radius: var(--radius-xs);
  padding: 0.85rem 1rem;
  font-size: 0.925rem;
  font-family: inherit;
  color: var(--text-dark-primary);
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(213, 177, 94, 0.18);
}

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

.btn-submit-inquiry {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold-primary) 100%);
  color: var(--navy-primary);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  padding: 0.95rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(213, 177, 94, 0.28);
  transition: all 0.25s ease;
}

.btn-submit-inquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(213, 177, 94, 0.45);
}

.form-feedback {
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: var(--radius-xs);
  font-size: 0.875rem;
  display: none;
}

.form-feedback.success {
  display: block;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #065f46;
}

.form-feedback.error {
  display: block;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #991b1b;
}

/* ==========================================================================
   8. CORPORATE FOOTER (DARK NAVY)
   ========================================================================== */
.site-footer {
  background: var(--navy-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px 0 35px;
  color: var(--text-light-secondary);
  position: relative;
  z-index: 1;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand h4 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.925rem;
  line-height: 1.7;
  max-width: 420px;
}

.footer-col h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
  margin-bottom: 1.25rem;
}

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

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

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
  color: var(--text-light-muted);
}

/* ==========================================================================
   9. DIVISION DEEP DIVE MODAL DRAWER
   ========================================================================== */
.division-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 13, 26, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.division-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  padding: 2.75rem;
  transform: translateY(20px);
  transition: transform 0.3s var(--ease-smooth);
}

.division-modal.open .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(6, 20, 38, 0.06);
  border: none;
  color: var(--text-dark-secondary);
  font-size: 1.35rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--navy-primary);
  color: #ffffff;
}

.modal-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  display: block;
}

.modal-title {
  font-size: 1.75rem;
  color: var(--navy-primary);
  margin-bottom: 1.25rem;
}

.modal-body p {
  color: var(--text-dark-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.modal-charter-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-charter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.modal-charter-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--text-dark-primary);
  line-height: 1.55;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.modal-charter-list li:last-child {
  border-bottom: none;
}

.modal-charter-list li::before {
  content: '▸';
  color: var(--gold-primary);
  font-weight: 700;
}

/* ==========================================================================
   10. PARALLAX SCROLLING & SCROLL-DRIVEN MOTION
   ========================================================================== */
.parallax-orb, .parallax-ring {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

.parallax-orb.orb-1 {
  top: 12%;
  left: 5%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(13, 35, 64, 0.45) 0%, transparent 70%);
  filter: blur(40px);
}

.parallax-orb.orb-2 {
  top: 55%;
  right: 5%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(213, 177, 94, 0.08) 0%, transparent 70%);
  filter: blur(50px);
}

.parallax-orb.orb-3 {
  top: 80%;
  left: 20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(13, 35, 64, 0.35) 0%, transparent 70%);
  filter: blur(40px);
}

.parallax-ring.ring-1 {
  top: 25%;
  right: 12%;
  width: 180px;
  height: 180px;
  border: 1px dashed rgba(213, 177, 94, 0.14);
}

.parallax-ring.ring-2 {
  top: 68%;
  left: 8%;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(0, 191, 216, 0.12);
}

/* GPU-Accelerated Parallax Elements */
[data-parallax] {
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.1s linear;
}

/* IntersectionObserver Scroll Reveals */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease-smooth), transform 0.75s var(--ease-smooth);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.97) translateY(18px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  [data-parallax] {
    transform: none !important;
  }
}

/* ==========================================================================
   11. RESPONSIVE DESIGN & MOBILE OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 1080px) {
  .overview-grid,
  .radar-showcase-grid,
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .divisions-six-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logic-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Hide fixed parallax ornaments on mobile to prevent WebKit viewport overflow */
  .parallax-orb, .parallax-ring {
    display: none !important;
  }

  /* Container & Section Layout */
  .container {
    padding: 0 1.15rem !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .section-light,
  .section-light-tint,
  .section-dark,
  .section-medium-dark {
    padding: 55px 0 !important;
    overflow: hidden !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .section-header {
    margin-bottom: 2.5rem !important;
  }

  .section-header .section-title {
    font-size: clamp(1.6rem, 6.5vw, 2.1rem) !important;
  }

  .section-header .section-subtitle {
    font-size: 0.975rem !important;
    line-height: 1.55 !important;
  }

  /* Navigation on Mobile */
  .site-header {
    height: 70px !important;
  }

  .nav-container {
    height: 70px !important;
    padding: 0 1rem !important;
  }

  .logo-badge {
    padding: 4px 10px !important;
  }

  .logo-img {
    height: 36px !important;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    height: calc(100vh - 70px);
    background: rgba(4, 13, 26, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(213, 177, 94, 0.25);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: block;
  }

  .nav-actions .btn {
    display: none;
  }

  /* Hero Adjustments */
  .hero-conglomerate {
    padding-top: 115px;
    padding-bottom: 50px;
    min-height: auto;
    overflow: hidden;
  }

  .hero-main-title {
    font-size: clamp(1.85rem, 7.5vw, 2.35rem);
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .hero-lead {
    font-size: 0.975rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
    margin-bottom: 2rem;
  }

  .hero-cta-buttons .btn {
    width: 100%;
  }

  /* Responsive Hero Banner Showcase on Mobile */
  .hero-banner-showcase {
    margin: 0 auto 1.35rem;
    border-radius: var(--radius-md);
    max-width: 100%;
    box-sizing: border-box;
  }

  .banner-caption-bar {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
    padding: 0.75rem 1rem;
  }

  .caption-motto {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .banner-division-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    margin-bottom: 2rem;
  }

  .banner-pill-btn {
    font-size: 0.75rem;
    padding: 0.38rem 0.75rem;
    flex: 0 1 auto;
    width: auto;
    max-width: 100%;
  }

  .strategic-announcement-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.15rem 1rem;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .announcement-left {
    align-items: flex-start;
    gap: 0.85rem;
  }

  .announcement-icon-box {
    width: 38px;
    height: 38px;
  }

  .announcement-text p {
    font-size: 0.875rem;
  }

  /* 2x2 Stats Grid on Mobile */
  .conglomerate-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding-top: 1.75rem;
  }

  .stat-big {
    font-size: 1.85rem;
  }

  .stat-desc {
    font-size: 0.78rem;
  }

  /* Overview Section Mobile Formatting */
  .overview-card-main {
    padding: 1.5rem 1rem !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 2.5rem !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .overview-text h2 {
    font-size: clamp(1.4rem, 5.5vw, 1.85rem) !important;
    line-height: 1.25 !important;
  }

  .overview-text p {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
  }

  .corporate-meta-dossier {
    padding: 1.25rem 1rem !important;
    border-radius: var(--radius-sm) !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .dossier-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.2rem !important;
    padding: 0.65rem 0 !important;
  }

  .dossier-val {
    text-align: left !important;
    font-size: 0.875rem !important;
  }

  .mv-section-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .mv-card-box {
    padding: 1.5rem 1.15rem !important;
    border-radius: var(--radius-md) !important;
  }

  .mv-box-title {
    font-size: 1.25rem !important;
  }

  .mv-card-box p {
    font-size: 0.925rem !important;
  }

  .value-pillars-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .value-card {
    padding: 1.35rem 1.15rem !important;
  }

  /* Single Column Divisions */
  .divisions-six-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .division-item-card {
    padding: 1.6rem 1.25rem !important;
    border-radius: var(--radius-md) !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* RADAR SECTION MOBILE RECTIFICATION (Solves overflow shown in screenshot) */
  .radar-spotlight-box {
    padding: 1.5rem 1rem !important;
    border-radius: var(--radius-md) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6) !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .radar-narrative-col h3 {
    font-size: clamp(1.4rem, 5.2vw, 1.85rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 1rem !important;
    word-break: break-word !important;
  }

  .radar-narrative-col p {
    font-size: 0.925rem !important;
    line-height: 1.6 !important;
    word-break: break-word !important;
  }

  .radar-tech-pillars {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .tech-pillar-item {
    padding: 0.9rem 1rem !important;
  }

  .radar-interactive-widget {
    padding: 1rem 0.75rem !important;
    border-radius: var(--radius-md) !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .widget-top-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.65rem !important;
    padding-bottom: 0.65rem !important;
  }

  .widget-title {
    font-size: 0.68rem !important;
    letter-spacing: 0.05em !important;
    white-space: normal !important;
  }

  .widget-mode-buttons {
    width: 100% !important;
    display: flex !important;
    gap: 0.35rem !important;
  }

  .mode-btn {
    flex: 1 !important;
    text-align: center !important;
    padding: 0.4rem 0.2rem !important;
    font-size: 0.68rem !important;
  }

  .widget-canvas-frame {
    width: 100% !important;
    max-width: min(100%, 280px) !important;
    margin: 0.5rem auto !important;
  }

  .widget-telemetry-bar {
    flex-direction: column !important;
    gap: 0.35rem !important;
    font-size: 0.7rem !important;
    padding: 0.6rem 0.75rem !important;
  }

  /* LOGIC Framework Mobile */
  .logic-steps-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .logic-step-card {
    padding: 1.25rem 1rem !important;
    border-radius: var(--radius-sm) !important;
  }

  .logic-letter {
    font-size: 1.85rem !important;
  }

  .logic-dynamic-panel {
    padding: 1.35rem 1rem !important;
    border-radius: var(--radius-md) !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .panel-header-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.4rem !important;
  }

  .panel-title {
    font-size: 1.2rem !important;
  }

  .panel-narrative {
    font-size: 0.925rem !important;
  }

  .deliverables-grid {
    flex-direction: column !important;
    gap: 0.45rem !important;
  }

  /* Why Partner Cards */
  .why-partner-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .why-card {
    padding: 1.6rem 1.25rem !important;
    border-radius: var(--radius-md) !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Contact & Secretariat */
  .contact-layout-grid {
    gap: 2rem;
  }

  .secretariat-dossier-card,
  .inquiry-form-card {
    padding: 1.5rem 1.15rem !important;
    border-radius: var(--radius-md) !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .secretariat-dossier-card h3,
  .inquiry-form-card h3 {
    font-size: clamp(1.35rem, 5vw, 1.6rem) !important;
  }

  .secretariat-lead,
  .inquiry-form-card .form-subtitle {
    font-size: 0.875rem !important;
  }

  .secretariat-meta-row {
    gap: 0.75rem !important;
    padding: 0.85rem 0 !important;
  }

  .secretariat-meta-val {
    font-size: 0.875rem !important;
  }

  /* Footer */
  .site-footer {
    padding: 50px 0 25px !important;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.85rem;
    text-align: center;
  }

  .modal-content {
    padding: 1.5rem 1.15rem !important;
    width: calc(100% - 1.5rem) !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    max-height: 88vh !important;
  }
}
