/* ==========================================================================
   ARGC B2B Enterprise — Clean Campaign Monitor Conversion Framework
   Aesthetic: Crisp Pure White (#FFFFFF), Deep Slate (#0F172A), Charcoal (#334155),
   Corporate Navy (#0A192F), High-Contrast Amber (#D97706 / #EA580C)
   ========================================================================== */

:root {
  --bg-pure-white: #FFFFFF;
  --bg-light-neutral: #F8FAFC;
  --bg-soft-gray: #F1F5F9;
  --bg-card: #FFFFFF;
  
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  --navy-brand: #0A192F;
  --navy-dark: #030712;
  --navy-surface: #112240;
  
  --amber-primary: #D97706;
  --amber-hover: #B45309;
  --amber-light: #FEF3C7;
  --amber-accent: #EA580C;
  --amber-glow: rgba(217, 119, 6, 0.18);
  
  --blue-badge-bg: #EFF6FF;
  --blue-badge-border: #BFDBFE;
  --blue-badge-text: #1D4ED8;
  
  --green-badge-bg: #F0FDF4;
  --green-badge-border: #BBF7D0;
  --green-badge-text: #15803D;

  --border-light: #E2E8F0;
  --border-subtle: #CBD5E1;
  --border-focus: #D97706;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-floating: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);

  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-pure-white);
  color: var(--text-body);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.b2b-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   1. Micro-Header (Top Authority Bar - Pure White Uniform Typography)
   -------------------------------------------------------------------------- */
.b2b-topbar {
  background: var(--navy-brand);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0;
  font-size: 12.5px;
  color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-weight: 600;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-lic {
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.topbar-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #FFFFFF;
}

.topbar-contacts a, .topbar-contacts span {
  color: #FFFFFF !important;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}

.topbar-contacts a:hover {
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   2. Main Sticky Navigation (Clean Pure White Header with ARGC EST 1974 Logo)
   -------------------------------------------------------------------------- */
.b2b-nav {
  background: var(--bg-pure-white);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
  position: relative;
  z-index: 999;
}

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

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

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-brand {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 900;
  color: #0A192F;
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo-est {
  font-family: var(--font-main);
  font-size: 9px;
  font-weight: 900;
  background: #FF6B00;
  color: #FFFFFF;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.logo-sub {
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 800;
  color: #D97706;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 3px;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-links a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-links a:hover {
  color: var(--navy-brand);
  background: var(--bg-light-neutral);
}

.nav-links a.active {
  color: var(--navy-brand);
  background: var(--bg-soft-gray);
  font-weight: 700;
}

/* Button System */
.btn-primary {
  background: var(--amber-primary);
  color: #FFFFFF;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--amber-glow);
}

.btn-primary:hover {
  background: var(--amber-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.3);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--navy-brand);
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  border: 1px solid var(--border-subtle);
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-light-neutral);
  border-color: var(--navy-brand);
  color: var(--navy-brand);
}

/* --------------------------------------------------------------------------
   3. Hero Section (Campaign Monitor Sunrise Backgrounds & Gradient Mask)
   -------------------------------------------------------------------------- */
.b2b-hero {
  position: relative;
  background-color: #FFFFFF;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 56px 0 64px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

/* Page-specific background assignments with seamless left-to-right white gradient mask */
.hero-oil-gas {
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.84) 45%,
    rgba(255, 255, 255, 0.28) 75%,
    rgba(255, 255, 255, 0.08) 100%
  ), url('/hire/assets/images/hero-oil-gas-sunrise.webp?v=20260823_1');
}

.hero-shipyard {
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.84) 45%,
    rgba(255, 255, 255, 0.28) 75%,
    rgba(255, 255, 255, 0.08) 100%
  ), url('/hire/assets/images/hero-shipyard-sunrise.webp?v=20260823_1');
}

.hero-civil {
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.84) 45%,
    rgba(255, 255, 255, 0.28) 75%,
    rgba(255, 255, 255, 0.08) 100%
  ), url('/hire/assets/images/hero-civil-sunrise.webp?v=20260823_1');
}

.hero-europe {
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.84) 45%,
    rgba(255, 255, 255, 0.28) 75%,
    rgba(255, 255, 255, 0.08) 100%
  ), url('/hire/assets/images/hero-europe-sunrise.webp?v=20260823_1');
}

.hero-rfq {
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.84) 45%,
    rgba(255, 255, 255, 0.28) 75%,
    rgba(255, 255, 255, 0.08) 100%
  ), url('/hire/assets/images/hero-rfq-sunrise.webp?v=20260823_1');
}

.hero-russia {
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.86) 45%,
    rgba(255, 255, 255, 0.28) 75%,
    rgba(255, 255, 255, 0.08) 100%
  ), url('/hire/assets/images/hero-russia-sunrise.webp?v=20260823_1');
}

/* Language Switcher Pill */
.lang-switcher-wrap {
  display: inline-flex;
  align-items: center;
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  border-radius: 20px;
  padding: 2px;
  gap: 2px;
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  color: #64748B;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.lang-btn.active {
  background: #0A192F;
  color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(10, 25, 47, 0.2);
}

.lang-btn:hover:not(.active) {
  color: #0A192F;
  background: rgba(255, 255, 255, 0.6);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-badge-text);
  background: var(--blue-badge-bg);
  border: 1px solid var(--blue-badge-border);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 42px;
  line-height: 1.18;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}

.hero-title .highlight {
  color: var(--amber-primary);
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Campaign Monitor Style Value Checklist (Left Column) */
.value-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.value-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.5;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: #DCFCE7;
  border: 1px solid #86EFAC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16A34A;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* --------------------------------------------------------------------------
   4. Elevated White RFQ Form Card (Right Column)
   -------------------------------------------------------------------------- */
.rfq-card-elevated, .rfq-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 35px -10px rgba(10, 25, 47, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
  position: relative;
}

.rfq-card-header {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 14px;
}

.rfq-card-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.015em;
}

.rfq-card-header p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 11px 14px;
  color: var(--text-dark);
  font-family: var(--font-main);
  font-size: 14px;
  transition: all 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--amber-primary);
  box-shadow: 0 0 0 3px var(--amber-glow);
}

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

/* Drag-and-Drop Minimal Clean Dropzone */
.dropzone {
  border: 2px dashed var(--border-subtle);
  border-radius: 8px;
  background: var(--bg-light-neutral);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 16px;
}

.dropzone:hover, .dropzone.dragover {
  border-color: var(--amber-primary);
  background: #FFFBEB;
}

.dropzone-icon {
  font-size: 24px;
  margin-bottom: 4px;
  color: var(--amber-primary);
}

.dropzone-text {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 700;
}

.dropzone-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.file-preview {
  display: none;
  background: #FFFBEB;
  border: 1px solid var(--amber-primary);
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--amber-primary);
  font-weight: 700;
  align-items: center;
  justify-content: space-between;
}

.rfq-submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 15px;
}

.trust-micro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px;
  font-size: 11.5px;
  color: #64748B;
  margin-top: 14px;
  white-space: nowrap;
  font-weight: 500;
}

.trust-micro span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* --------------------------------------------------------------------------
   5. Trust Strip (Directly Below Hero)
   -------------------------------------------------------------------------- */
.trust-strip-section {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}

.trust-strip-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.trust-badge-item .badge-icon {
  width: 32px;
  height: 32px;
  background: var(--bg-soft-gray);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   6. 3-Column Clean Capability Matrix
   -------------------------------------------------------------------------- */
.capability-section {
  background: var(--bg-light-neutral);
  padding: 64px 0;
  border-bottom: 1px solid var(--border-light);
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 44px auto;
}

.section-tag {
  color: var(--amber-primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 10px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.capability-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.capability-card:hover {
  border-color: var(--amber-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cap-icon {
  width: 48px;
  height: 48px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--amber-primary);
  margin-bottom: 18px;
}

.capability-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.capability-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   7. Interactive 14M Talent Repository Explorer (Light Theme)
   -------------------------------------------------------------------------- */
.explorer-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px;
  margin: 36px 0;
  box-shadow: var(--shadow-md);
}

.explorer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.talent-counter-box {
  background: var(--navy-brand);
  border-radius: 10px;
  padding: 26px;
  text-align: center;
  color: #FFFFFF;
}

.talent-count-num {
  font-size: 44px;
  font-weight: 900;
  color: #FDE68A;
  font-family: var(--font-mono);
  line-height: 1;
}

.talent-count-lbl {
  font-size: 13px;
  color: #CBD5E1;
  text-transform: uppercase;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   8. Sector-Specific Trades Matrix Grid (Light Theme)
   -------------------------------------------------------------------------- */
.trades-section {
  padding: 64px 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
}

.trades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 22px;
}

.trade-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.trade-card:hover {
  border-color: var(--amber-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.trade-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
}

.trade-card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
}

.trade-cert-badge {
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  background: var(--blue-badge-bg);
  color: var(--blue-badge-text);
  border: 1px solid var(--blue-badge-border);
  padding: 3px 8px;
  border-radius: 4px;
}

.trade-card ul {
  list-style: none;
  margin-top: 10px;
}

.trade-card ul li {
  font-size: 14px;
  color: var(--text-body);
  padding: 4px 0;
  position: relative;
  padding-left: 20px;
}

.trade-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber-primary);
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   9. Proof & Case Study Showcase (Light Theme)
   -------------------------------------------------------------------------- */
.proof-section {
  padding: 64px 0;
  background: var(--bg-light-neutral);
  border-bottom: 1px solid var(--border-light);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.proof-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.proof-item {
  display: flex;
  gap: 16px;
}

.proof-icon {
  width: 44px;
  height: 44px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-primary);
  font-size: 18px;
  flex-shrink: 0;
}

.proof-text h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.proof-text p {
  font-size: 14px;
  color: var(--text-body);
}

/* --------------------------------------------------------------------------
   Hubs Strip (Pan-India 14+ Certified Testing Centers)
   -------------------------------------------------------------------------- */
.hubs-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.hub-region-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.hub-region-card:hover {
  border-color: var(--amber-primary);
  transform: translateY(-2px);
}

.hub-region-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy-brand);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hub-city-list {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
  font-weight: 500;
}

.proof-visual-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 28px;
  border-left: 4px solid var(--amber-primary);
  box-shadow: var(--shadow-md);
}

.proof-visual-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.stat-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
}

.stat-table th, .stat-table td {
  padding: 9px 12px;
  text-align: left;
  font-size: 13px;
  border-bottom: 1px solid var(--border-light);
}

.stat-table th {
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

.stat-table td {
  color: var(--text-dark);
}

/* --------------------------------------------------------------------------
   9b. Pan-India Testing Infrastructure Grid (4-Card Hub Layout)
   -------------------------------------------------------------------------- */
.testing-infrastructure-container {
  max-width: 1200px;
  margin: 36px auto 0 auto;
  padding: 0 16px;
}

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

.hub-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px -5px rgba(0,0,0,0.08);
}

/* --------------------------------------------------------------------------
   10. Bottom Direct Engagement Callout
   -------------------------------------------------------------------------- */
.bottom-cta-section {
  background: var(--navy-brand);
  color: #FFFFFF;
  padding: 64px 0;
  text-align: center;
}

.bottom-cta-section h2 {
  font-size: 34px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.bottom-cta-section p {
  font-size: 17px;
  color: #CBD5E1;
  max-width: 700px;
  margin: 0 auto 28px auto;
}

/* --------------------------------------------------------------------------
   11. Executive Footer
   -------------------------------------------------------------------------- */
.b2b-footer {
  background: var(--navy-dark);
  color: #94A3B8;
  padding: 48px 0 28px 0;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-brand h4 {
  color: #FFFFFF;
  font-size: 17px;
  margin-bottom: 10px;
}

.footer-col h5 {
  color: #FFFFFF;
  font-size: 14px;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: #64748B;
}

/* --------------------------------------------------------------------------
   12. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .hero-oil-gas, .hero-shipyard, .hero-civil, .hero-europe, .hero-rfq {
    background-image: none !important;
    background-color: #FFFFFF !important;
  }
  .hero-grid, .proof-grid, .footer-grid, .explorer-grid, .capability-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-title {
    font-size: 32px;
  }
  .nav-links {
    display: none;
  }
  .trust-strip-grid {
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .topbar-contacts {
    display: none;
  }
}
