/* =============================================
   ONE DAY GLOBAL HOLDINGS — DESIGN SYSTEM
   ============================================= */

:root {
  --bg: #0B0B0B;
  --bg-mid: #121212;
  --bg-card: #181818;
  --gold: #C8A24A;
  --gold-light: #d9b76a;
  --text: #FFFFFF;
  --text-secondary: #A0A0A0;
  --border: rgba(200, 162, 74, 0.15);
  --font-head: 'Montserrat', 'Inter', sans-serif;
  --font-body: 'Inter', 'Open Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }

p { color: var(--text-secondary); }

.gold { color: var(--gold); }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.body-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.max-700 { max-width: 700px; margin: 0 auto; }
.max-600 { max-width: 600px; margin: 0.75rem auto 0; }

blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--text);
  max-width: 800px;
  margin: 1.5rem auto 0;
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 2rem;
  text-align: left;
}

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 11, 11, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex: 0 1 auto;
  min-width: 0;
}

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

.nav-logo-text {
  font-family: var(--font-head);
  font-size: clamp(0.68rem, 1vw, 0.82rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--gold);
  line-height: 1.2;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  gap: clamp(0.9rem, 2vw, 2.1rem);
  flex: 1 1 auto;
  min-width: 0;
}

.nav-links a {
  font-size: clamp(0.68rem, 0.9vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown::after {
  content: '';
  position: absolute;
  left: -1rem;
  right: -1rem;
  top: 100%;
  height: 18px;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}
.nav-dropdown > a::after {
  content: '▾';
  font-size: 0.65rem;
  opacity: 0.7;
  margin-top: 1px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11,11,11,0.98);
  border: 1px solid var(--border);
  border-radius: 4px;
  min-width: 190px;
  padding: 0.5rem 0;
  z-index: 200;
  backdrop-filter: blur(12px);
}
.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.dropdown-menu a:hover,
.dropdown-menu a.active {
  color: var(--gold);
  background: rgba(200,162,74,0.07);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  display: block;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* =============================================
   SECTIONS
   ============================================= */

.section {
  padding: 8rem 2rem;
}

.section-dark { background: var(--bg); }
.section-mid { background: var(--bg-mid); }

.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-top: 0.5rem;
}

/* =============================================
   HERO
   ============================================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 2rem 6rem;
  position: relative;
  background: var(--bg);
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(200,162,74,0.08) 0%, transparent 65%);
  pointer-events: none;
}

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

.hero-logo {
  width: min(420px, 88vw);
  height: auto;
  max-height: 220px;
  object-fit: contain;
  margin: 0 auto 2rem;
  display: block;
  filter: drop-shadow(0 0 28px rgba(200,162,74,0.25));
}

/* OD Mobile hero logo — larger, no gold tint */
.od-hero-logo {
  width: 220px;
  height: 220px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.7));
}

/* Portfolio company logo mark */
.portfolio-co-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-headline {
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: #0B0B0B;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* =============================================
   TWO COLUMN
   ============================================= */

.two-col {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.two-col-text h2 {
  margin: 0.5rem 0 1.5rem;
}

.abstract-block {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a1a1a 0%, #222 40%, #181818 100%);
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.abstract-block::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(200,162,74,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.abstract-block::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(200,162,74,0.07) 0%, transparent 70%);
  border-radius: 50%;
}

/* =============================================
   THREE COLUMNS / PILLARS
   ============================================= */

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pillar {
  padding: 3rem 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
  transition: border-color 0.2s;
}

.pillar:hover { border-color: var(--gold); }

.pillar-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.pillar h3 { color: var(--text); margin-bottom: 1rem; }
.pillar p { font-size: 0.95rem; color: var(--text-secondary); }

/* =============================================
   CARDS
   ============================================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  transition: border-color 0.2s, transform 0.2s;
}

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

.card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.card h3 { color: var(--text); margin-bottom: 0.75rem; }
.card p { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 1.5rem; }

.card-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.card-link:hover { opacity: 0.75; }

/* =============================================
   PHILOSOPHY
   ============================================= */

.philosophy {
  background: var(--bg-mid) !important;
}

/* =============================================
   CTA SECTION
   ============================================= */

.section-cta {
  background: var(--bg);
}

.section-cta h2 { margin-bottom: 1rem; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */

.page-hero {
  padding: 12rem 2rem 6rem;
  text-align: center;
  background: var(--bg);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(200,162,74,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 { position: relative; }
.page-hero p {
  position: relative;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1.5rem auto 0;
  color: var(--text-secondary);
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.pillars-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillars-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.pillars-list li::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

/* =============================================
   OD MOBILE PAGE
   ============================================= */

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.cap-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  transition: border-color 0.2s;
}

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

.cap-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.cap-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.cap-number {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  display: block;
}

/* =============================================
   APPROACH PAGE
   ============================================= */

.approach-steps {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.approach-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  align-items: start;
}

.step-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}

.approach-step h3 { color: var(--text); margin-bottom: 0.5rem; }
.approach-step p { font-size: 0.95rem; }

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

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

.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}

.contact-info h3 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.contact-info-item span:first-child {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-info-item span:last-child {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  opacity: 0.9;
}

.footer-logo-text {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.75rem;
  color: #555;
}

/* =============================================
   DIVIDER LINE
   ============================================= */

.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.centered .gold-line {
  margin: 1.5rem auto;
}

/* =============================================
   DASHBOARD MOCKUP
   ============================================= */

.dashboard-mockup {
  background: #0f0f0f;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.dash-topbar {
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dash-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dash-dot.red { background: #ff5f57; }
.dash-dot.yellow { background: #febc2e; }
.dash-dot.green { background: #28c840; }

.dash-title {
  margin-left: 0.75rem;
  font-size: 0.75rem;
  color: #555;
  letter-spacing: 0.08em;
  font-family: var(--font-head);
  font-weight: 600;
}

.dash-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 380px;
}

.dash-sidebar {
  background: #111;
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dash-nav-item {
  padding: 0.6rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.06em;
  cursor: default;
  transition: color 0.2s;
}

.dash-nav-item.active-nav {
  color: var(--gold);
  background: rgba(200,162,74,0.07);
  border-left: 2px solid var(--gold);
}

.dash-main {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

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

.dash-stat {
  background: #161616;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  padding: 1rem 1.25rem;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.stat-value.gold { color: var(--gold); }

.dash-jobs {
  background: #161616;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
}

.dash-job-row {
  display: grid;
  grid-template-columns: 60px 1fr 1.2fr 80px 90px;
  padding: 0.7rem 1.25rem;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-secondary);
  align-items: center;
}

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

.header-row {
  background: #111;
  color: #444;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.job-id { color: var(--gold); font-weight: 600; }

.status-complete { color: #28c840; font-weight: 600; font-size: 0.72rem; }
.status-active { color: var(--gold); font-weight: 600; font-size: 0.72rem; }
.status-pending { color: #888; font-weight: 600; font-size: 0.72rem; }

/* =============================================
   STATUS BADGES
   ============================================= */

.status-badges {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.6rem 1.25rem;
  border-radius: 2px;
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #28c840;
  box-shadow: 0 0 6px rgba(40,200,64,0.5);
  flex-shrink: 0;
}

/* =============================================
   INTEGRATION TAGS
   ============================================= */

.integration-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.int-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.45rem 1rem;
  border-radius: 2px;
  background: rgba(200,162,74,0.05);
}

/* =============================================
   FOUR PILLARS (APPROACH)
   ============================================= */

.four-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pillar-large {
  padding: 3rem 2rem 2.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s;
}

.pillar-large:hover { border-color: var(--gold); }

.pillar-num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.pillar-large h3 {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.pillar-large p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1100px) {
  .nav-inner { padding: 0 1.25rem; gap: 1rem; }
  .nav-logo-img { width: 42px; height: 42px; }
  .nav-logo-text { letter-spacing: 0.08em; }
  .four-pillars { grid-template-columns: repeat(2, 1fr); }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-body { grid-template-columns: 140px 1fr; }
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .three-col { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .capabilities-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .approach-step { grid-template-columns: 40px 1fr; }
  .four-pillars { grid-template-columns: 1fr 1fr; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-job-row { grid-template-columns: 60px 1fr 90px; }
  .dash-job-row span:nth-child(3),
  .dash-job-row span:nth-child(4) { display: none; }
}

@media (max-width: 768px) {
  .nav-inner { min-height: 70px; }
  .nav-logo-img { width: 40px; height: 40px; }
  .nav-logo-text { white-space: nowrap; max-width: none; font-size: 0.7rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: rgba(11,11,11,0.98);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle { display: block; flex-shrink: 0; }
  .dropdown-menu {
    position: static;
    transform: none;
    border: none;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 1rem;
    margin-top: 0.25rem;
  }
  .nav-dropdown::after { display: none; }
  .nav-dropdown > a::after { display: none; }
  .section { padding: 5rem 1.5rem; }
  .hero { padding: 8rem 1.5rem 5rem; }
  blockquote { padding-left: 1.25rem; font-size: 1rem; }
  .capabilities-grid { grid-template-columns: 1fr; }
}

/* Full horizontal ODG logo update — 2026-05-05 */
.nav-logo { gap: 0; flex-shrink: 0; }
.nav-logo-full {
  width: clamp(170px, 22vw, 300px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
  border-radius: 0;
}
.hero-logo-full {
  width: min(720px, 92vw);
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 0;
  margin-bottom: 2rem;
}
.footer-logo-full {
  width: min(340px, 86vw);
  height: auto;
  object-fit: contain;
  border-radius: 0;
}
.footer-logo-text { display: none; }
@media (max-width: 1100px) {
  .nav-logo-full { width: clamp(150px, 24vw, 240px); }
  .nav-links { gap: 1.1rem; }
}
@media (max-width: 900px) {
  .nav-logo-full { width: clamp(135px, 28vw, 205px); max-height: 50px; }
  .nav-links { gap: 0.75rem; }
  .nav-links a { font-size: 0.82rem; }
}
@media (max-width: 768px) {
  .nav-logo-full { width: min(58vw, 240px); max-height: 52px; }
}
@media (max-width: 420px) {
  .nav-logo-full { width: min(62vw, 220px); }
}

/* Full horizontal ODG logo sizing refinement — 2026-05-05 */
.nav-logo-full {
  width: clamp(210px, 26vw, 330px);
  max-height: 62px;
}
.hero-logo-full {
  display: block;
  width: min(820px, 96vw);
  max-height: 46vh;
  object-fit: contain;
}
@media (max-width: 768px) {
  .nav-logo-full { width: min(42vw, 165px); max-height: 52px; }
  .hero-logo-full { width: 100vw; max-width: none; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
}
@media (max-width: 420px) {
  .nav-logo-full { width: min(44vw, 155px); }
}

/* Emergency visual cleanup: remove boxed logo look — 2026-05-05 */
.nav-logo {
  gap: 0 !important;
  flex-shrink: 0;
  align-items: center;
}
.nav-logo-full {
  display: block !important;
  width: clamp(240px, 22vw, 360px) !important;
  height: auto !important;
  max-height: 72px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.hero-logo-full {
  display: block !important;
  width: min(390px, 68vw) !important;
  height: auto !important;
  max-height: 135px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  margin: 0 auto 1.5rem !important;
  filter: drop-shadow(0 14px 28px rgba(200, 162, 74, 0.12));
}
.footer-logo-full {
  display: block !important;
  width: min(260px, 72vw) !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
.footer-logo-text,
.nav-logo-text { display: none !important; }
@media (max-width: 1100px) {
  .nav-logo-full { width: clamp(200px, 20vw, 300px) !important; max-height: 62px !important; }
  .nav-links { gap: 0.95rem !important; }
}
@media (max-width: 900px) {
  .nav-logo-full { width: 200px !important; max-height: 58px !important; }
  .nav-links { gap: 0.65rem !important; }
  .nav-links a { font-size: 0.78rem !important; }
}
@media (max-width: 768px) {
  .nav-logo-full { width: min(52vw, 210px) !important; max-height: 54px !important; }
  .hero-logo-full { width: min(320px, 78vw) !important; margin-bottom: 1.2rem !important; }
}
@media (max-width: 420px) {
  .nav-logo-full { width: min(50vw, 180px) !important; max-height: 48px !important; }
  .hero-logo-full { width: min(285px, 80vw) !important; }
}

/* Hero ODG shield treatment — isolated emblem with gold backing, 2026-05-05 */
.hero-emblem-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(520px, 84vw);
  margin: 0 auto 1.65rem;
  isolation: isolate;
}
.hero-emblem-wrap::before {
  content: "";
  position: absolute;
  inset: 8% 4% 2%;
  z-index: -2;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 215, 88, 0.46) 0%, rgba(200, 162, 74, 0.30) 24%, rgba(200, 162, 74, 0.10) 48%, rgba(200, 162, 74, 0) 72%);
  filter: blur(20px);
  transform: scale(1.12);
}
.hero-emblem-wrap::after {
  content: "";
  position: absolute;
  inset: 24% 20%;
  z-index: -1;
  border-radius: 999px;
  background: rgba(200, 162, 74, 0.18);
  filter: blur(34px);
}
.hero-emblem {
  display: block !important;
  width: min(430px, 78vw) !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  filter:
    drop-shadow(0 0 10px rgba(255, 217, 92, 0.33))
    drop-shadow(0 18px 40px rgba(0, 0, 0, 0.58));
}
@media (max-width: 768px) {
  .hero-emblem-wrap {
    width: min(390px, 86vw);
    margin-bottom: 1.3rem;
  }
  .hero-emblem {
    width: min(330px, 82vw) !important;
  }
  .hero-emblem-wrap::before {
    filter: blur(16px);
    transform: scale(1.06);
  }
}
@media (max-width: 420px) {
  .hero-emblem-wrap { width: min(330px, 88vw); }
  .hero-emblem { width: min(290px, 84vw) !important; }
}

/* Hero shield cutout: no black rectangle, gold glow backing — 2026-05-05 */
.hero-emblem-wrap {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: min(430px, 82vw) !important;
  margin: 0 auto 1.5rem !important;
  isolation: isolate !important;
  background: transparent !important;
}
.hero-emblem-wrap::before {
  content: "" !important;
  position: absolute !important;
  z-index: -2 !important;
  left: 50% !important;
  top: 52% !important;
  width: 96% !important;
  height: 80% !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 999px !important;
  background: radial-gradient(circle at 50% 50%, rgba(255, 218, 73, 0.55) 0%, rgba(205, 157, 42, 0.34) 30%, rgba(205, 157, 42, 0.13) 58%, rgba(205, 157, 42, 0) 78%) !important;
  filter: blur(24px) !important;
}
.hero-emblem-wrap::after {
  content: "" !important;
  position: absolute !important;
  z-index: -1 !important;
  left: 50% !important;
  top: 54% !important;
  width: 62% !important;
  height: 42% !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 999px !important;
  background: rgba(230, 181, 54, 0.18) !important;
  filter: blur(36px) !important;
}
.hero-emblem {
  display: block !important;
  width: min(350px, 74vw) !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  filter: drop-shadow(0 0 8px rgba(255, 222, 91, 0.36)) drop-shadow(0 18px 34px rgba(0,0,0,0.56)) !important;
}
@media (max-width: 768px) {
  .hero-emblem-wrap { width: min(350px, 86vw) !important; margin-bottom: 1.2rem !important; }
  .hero-emblem { width: min(285px, 76vw) !important; }
  .hero-emblem-wrap::before { filter: blur(18px) !important; }
}
@media (max-width: 420px) {
  .hero-emblem-wrap { width: min(310px, 88vw) !important; }
  .hero-emblem { width: min(255px, 78vw) !important; }
}

/* Corrected hero shield asset with preserved gold ODG details — 2026-05-05 */
.hero-emblem-wrap {
  width: min(440px, 82vw) !important;
  margin: 0 auto 1.5rem !important;
}
.hero-emblem {
  width: min(360px, 74vw) !important;
  filter: drop-shadow(0 0 11px rgba(255, 222, 91, 0.44)) drop-shadow(0 18px 34px rgba(0,0,0,0.58)) !important;
}
@media (max-width: 768px) {
  .hero-emblem { width: min(295px, 76vw) !important; }
}
@media (max-width: 420px) {
  .hero-emblem { width: min(260px, 78vw) !important; }
}

/* Final hero emblem: shield cutout, preserved gold details, yellow backing — 2026-05-05 */
.hero-emblem-wrap {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: min(455px, 84vw) !important;
  margin: 0 auto 1.55rem !important;
  isolation: isolate !important;
  background: transparent !important;
}
.hero-emblem-wrap::before {
  content: "" !important;
  position: absolute !important;
  z-index: -2 !important;
  left: 50% !important;
  top: 52% !important;
  width: 98% !important;
  height: 82% !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 999px !important;
  background: radial-gradient(circle at 50% 50%, rgba(255, 218, 73, 0.56) 0%, rgba(205, 157, 42, 0.36) 30%, rgba(205, 157, 42, 0.14) 58%, rgba(205, 157, 42, 0) 80%) !important;
  filter: blur(25px) !important;
}
.hero-emblem-wrap::after {
  content: "" !important;
  position: absolute !important;
  z-index: -1 !important;
  left: 50% !important;
  top: 54% !important;
  width: 62% !important;
  height: 42% !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 999px !important;
  background: rgba(230, 181, 54, 0.20) !important;
  filter: blur(36px) !important;
}
.hero-emblem {
  display: block !important;
  width: min(365px, 76vw) !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  filter: drop-shadow(0 0 10px rgba(255, 222, 91, 0.40)) drop-shadow(0 18px 34px rgba(0,0,0,0.58)) !important;
}
@media (max-width: 768px) {
  .hero-emblem-wrap { width: min(360px, 86vw) !important; margin-bottom: 1.2rem !important; }
  .hero-emblem { width: min(300px, 77vw) !important; }
  .hero-emblem-wrap::before { filter: blur(19px) !important; }
}
@media (max-width: 420px) {
  .hero-emblem-wrap { width: min(315px, 88vw) !important; }
  .hero-emblem { width: min(265px, 79vw) !important; }
}

/* Fixed hero ODG treatment: transparent outside shield + yellow backing — 2026-05-05 */
.hero-emblem-wrap {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: min(455px, 84vw) !important;
  margin: 0 auto 1.55rem !important;
  isolation: isolate !important;
  background: transparent !important;
}
.hero-emblem-wrap::before {
  content: "" !important;
  position: absolute !important;
  z-index: -2 !important;
  left: 50% !important;
  top: 52% !important;
  width: 100% !important;
  height: 82% !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 999px !important;
  background: radial-gradient(circle at 50% 50%, rgba(255, 218, 73, 0.58) 0%, rgba(205, 157, 42, 0.38) 30%, rgba(205, 157, 42, 0.15) 58%, rgba(205, 157, 42, 0) 80%) !important;
  filter: blur(25px) !important;
}
.hero-emblem-wrap::after {
  content: "" !important;
  position: absolute !important;
  z-index: -1 !important;
  left: 50% !important;
  top: 54% !important;
  width: 62% !important;
  height: 42% !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 999px !important;
  background: rgba(230, 181, 54, 0.22) !important;
  filter: blur(36px) !important;
}
.hero-emblem {
  display: block !important;
  width: min(365px, 76vw) !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  filter: drop-shadow(0 0 10px rgba(255, 222, 91, 0.44)) drop-shadow(0 18px 34px rgba(0,0,0,0.58)) !important;
}
@media (max-width: 768px) {
  .hero-emblem-wrap { width: min(360px, 86vw) !important; margin-bottom: 1.2rem !important; }
  .hero-emblem { width: min(300px, 77vw) !important; }
  .hero-emblem-wrap::before { filter: blur(19px) !important; }
}
@media (max-width: 420px) {
  .hero-emblem-wrap { width: min(315px, 88vw) !important; }
  .hero-emblem { width: min(265px, 79vw) !important; }
}

/* Hero ODG shield live fix: full-color shield cutout with yellow backing — 2026-05-05 */
.hero-emblem-wrap {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: min(455px, 84vw) !important;
  margin: 0 auto 1.55rem !important;
  isolation: isolate !important;
  background: transparent !important;
}
.hero-emblem-wrap::before {
  content: "" !important;
  position: absolute !important;
  z-index: -2 !important;
  left: 50% !important;
  top: 52% !important;
  width: 110% !important;
  height: 86% !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 999px !important;
  background: radial-gradient(circle at 50% 50%, rgba(255, 218, 73, 0.60) 0%, rgba(205, 157, 42, 0.40) 30%, rgba(205, 157, 42, 0.16) 58%, rgba(205, 157, 42, 0) 80%) !important;
  filter: blur(25px) !important;
}
.hero-emblem-wrap::after {
  content: "" !important;
  position: absolute !important;
  z-index: -1 !important;
  left: 50% !important;
  top: 54% !important;
  width: 64% !important;
  height: 44% !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 999px !important;
  background: rgba(230, 181, 54, 0.24) !important;
  filter: blur(36px) !important;
}
.hero-emblem {
  display: block !important;
  width: min(365px, 76vw) !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  filter: drop-shadow(0 0 10px rgba(255, 222, 91, 0.44)) drop-shadow(0 18px 34px rgba(0,0,0,0.58)) !important;
}
@media (max-width: 768px) {
  .hero-emblem-wrap { width: min(360px, 86vw) !important; margin-bottom: 1.2rem !important; }
  .hero-emblem { width: min(300px, 77vw) !important; }
  .hero-emblem-wrap::before { filter: blur(19px) !important; }
}
@media (max-width: 420px) {
  .hero-emblem-wrap { width: min(315px, 88vw) !important; }
  .hero-emblem { width: min(265px, 79vw) !important; }
}

/* Restore hero to full ODG wordmark; remove duplicate brand line — 2026-05-05 */
.hero-logo-full {
  display: block !important;
  width: min(520px, 86vw) !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  margin: 0 auto 1.45rem !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 0 12px rgba(200, 162, 74, 0.22)) drop-shadow(0 16px 30px rgba(0,0,0,0.42)) !important;
}
@media (max-width: 768px) {
  .hero-logo-full { width: min(360px, 82vw) !important; margin-bottom: 1.25rem !important; }
}
@media (max-width: 420px) {
  .hero-logo-full { width: min(315px, 82vw) !important; }
}
