@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0B1C2D;
  --navy-mid: #122236;
  --navy-light: #1A3350;
  --gold: #B8952A;
  --gold-light: #D4AE4A;
  --gold-pale: #F5EDD6;
  --slate: #4A5C6E;
  --slate-light: #8A9BAD;
  --off-white: #F7F5F0;
  --white: #FFFFFF;
  --text-dark: #0B1C2D;
  --text-body: #2C3E4F;
  --text-muted: #5A6E7F;
  --border: rgba(11,28,45,0.1);
  --border-gold: rgba(184,149,42,0.3);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  line-height: 1.25;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== NAV (Mobile First) ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11,28,45,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,149,42,0.2);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.25rem; height: 65px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; color: var(--navy);
  font-family: 'Playfair Display', serif;
}
.nav-links {
  display: none;
}
.hamburger {
  display: flex; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--white);
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  background: var(--navy);
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid rgba(184,149,42,0.2);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .m-cta {
  display: block;
  margin-top: 1rem;
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.85rem 1.5rem;
  text-align: center;
  font-weight: 600;
  border-bottom: none !important;
  letter-spacing: 0.06em;
}

/* ===== LAYOUT (Mobile First) ===== */
.container { 
  max-width: 1280px; 
  margin: 0 auto; 
  padding: 0 1.25rem; 
}
.container-narrow { 
  max-width: 860px; 
  margin: 0 auto; 
  padding: 0 1.25rem; 
}
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.grid-2-col-wide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-outline, .btn-outline-dark {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-align: center;
  width: 100%;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.8); }
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* ===== SECTION UTILITIES ===== */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-tag::before { content: '— '; color: var(--gold); }
.divider-gold { width: 48px; height: 2px; background: var(--gold); margin: 1.5rem 0; }
.divider-gold.center { margin-left: auto; margin-right: auto; }

/* ===== VISUAL SPINE (Mobile First) ===== */
.spine {
  display: flex; flex-direction: column;
  gap: 0; margin: 2rem 0;
}
.spine-step { 
  display: flex; 
  flex-direction: column;
  width: 100%;
}
.spine-box {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.25rem;
  text-align: center;
}
.spine-box .spine-num {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 0.35rem;
}
.spine-box .spine-label {
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.9); line-height: 1.35;
}
.spine-arrow {
  width: 0; height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid var(--navy);
  margin: 0 auto;
}

/* ===== HERO (Mobile First) ===== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  padding-top: 65px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(184,149,42,0.03) 0px, rgba(184,149,42,0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(0deg, rgba(184,149,42,0.03) 0px, rgba(184,149,42,0.03) 1px, transparent 1px, transparent 40px);
  z-index: 1;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(184,149,42,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700; color: var(--white);
  line-height: 1.1; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  margin-bottom: 2rem; line-height: 1.7;
}
.hero-actions { 
  display: flex; 
  flex-direction: column;
  gap: 1rem; 
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,149,42,0.25);
  padding: 0.5rem 1rem; border-radius: 2px;
  font-size: 0.7rem; color: rgba(255,255,255,0.55);
  font-weight: 500; letter-spacing: 0.04em;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem; }

/* ===== SECTIONS (Mobile First) ===== */
.section { padding: 3rem 0; }
.section-sm { padding: 2rem 0; }
.section-dark { background: var(--navy); }
.section-off { background: var(--off-white); }
.section-mid { background: var(--navy-mid); }
.section-header { margin-bottom: 2rem; }
.section-header.center { text-align: center; }
.section-header h2 {
  font-size: 1.75rem;
  font-weight: 700; line-height: 1.2; margin-bottom: 1rem;
}
.section-header p {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.7;
}
.section-header.center p { margin: 0 auto; }
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: rgba(255,255,255,0.6); }
.section-mid .section-header h2 { color: var(--white); }
.section-mid .section-header p { color: rgba(255,255,255,0.6); }

/* ===== CARDS (Mobile First) ===== */
.card, .card-dark {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 1.5rem;
  height: 100%;
  margin-bottom: 1rem;
}
.card-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--gold);
}
.card h3, .card-dark h3 { 
  font-size: 1.15rem; 
  font-weight: 700; 
  margin-bottom: 0.75rem; 
}
.card-dark h3 { color: var(--white); }
.card p { 
  font-size: 0.88rem; 
  color: var(--text-muted); 
  line-height: 1.65; 
}
.card-dark p { color: rgba(255,255,255,0.6); }
.card-num {
  font-size: 1.75rem; font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--gold); margin-bottom: 0.5rem;
}
.grid-2, .grid-3, .grid-4 { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 1rem; 
}

/* ===== SOLUTION BLOCKS (Mobile First) ===== */
.solution-block {
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.solution-block:last-child { border-bottom: none; }
.solution-label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.solution-block h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; }
.solution-block .what-solves {
  font-size: 0.95rem; color: var(--text-muted);
  margin-bottom: 1.5rem; font-style: italic;
}
.bullet-list { list-style: none; margin-bottom: 1.5rem; }
.bullet-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.88rem; color: var(--text-body);
  padding: 0.5rem 0; border-bottom: 1px solid rgba(11,28,45,0.06);
}
.bullet-list li:last-child { border-bottom: none; }
.bullet-list li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  flex-shrink: 0; margin-top: 0.55rem;
}
.outcome-box {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 1rem;
  font-size: 0.88rem; color: var(--text-body);
  margin-bottom: 1.5rem;
}
.outcome-box strong { color: var(--navy); }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  padding: 1.25rem;
  margin: 1.5rem 0;
}
.highlight-box p {
  font-size: 0.95rem; font-style: italic;
  color: var(--navy); line-height: 1.7;
}

/* ===== FORM (Mobile First) ===== */
.form-section {
  background: var(--off-white);
  padding: 2rem 1.25rem;
  border-top: 4px solid var(--gold);
  max-width: 100%;
  margin: 0 auto;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--white);
  border: 1px solid var(--border); border-radius: 2px;
  padding: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; color: var(--text-dark);
  transition: border-color var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.75rem; color: var(--text-muted);
  margin-top: 0.75rem; font-style: italic;
}
.form-success {
  display: none; background: var(--navy);
  color: var(--white); padding: 1.5rem; text-align: center;
}
.form-success h3 { color: var(--gold); margin-bottom: 0.75rem; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--navy); 
  padding: 3rem 1.25rem;
  text-align: center; 
  position: relative; 
  overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 300px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-band h2 { 
  color: var(--white); 
  margin-bottom: 1rem;
  font-size: 1.75rem;
}
.cta-band p {
  color: rgba(255,255,255,0.6); 
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* ===== LOGO ROW ===== */
.logo-row {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 1.5rem;
}
.logo-placeholder {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--slate-light); opacity: 0.6;
}

/* ===== STEPS (Mobile First) ===== */
.steps {
  display: grid; 
  grid-template-columns: 1fr;
  gap: 0; 
  position: relative;
}
.step { 
  padding: 1rem; 
  text-align: center; 
  position: relative; 
  z-index: 1; 
}
.step-num {
  width: 48px; height: 48px;
  background: var(--navy); border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--gold);
  margin: 0 auto 1rem;
}
.step h4 { 
  font-size: 0.9rem; 
  font-weight: 600; 
  margin-bottom: 0.5rem; 
  color: var(--navy); 
}
.step p { 
  font-size: 0.8rem; 
  color: var(--text-muted); 
  line-height: 1.6; 
}
.step-dark .step-num { background: rgba(184,149,42,0.1); }
.step-dark h4 { color: var(--white); }
.step-dark p { color: rgba(255,255,255,0.55); }

/* ===== INSIGHTS ===== */
.insight-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 1.5rem; display: flex; flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
  cursor: pointer;
  margin-bottom: 1rem;
}
.insight-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.insight-tag {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-pale);
  padding: 0.25rem 0.6rem;
  display: inline-block; margin-bottom: 0.75rem; align-self: flex-start;
}
.insight-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; line-height: 1.35; }
.insight-card p { font-size: 0.85rem; color: var(--text-muted); flex: 1; line-height: 1.6; }
.insight-read {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); margin-top: 1rem;
}

/* ===== ABOUT ===== */
.principle {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.principle:last-child { border-bottom: none; }
.principle-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; font-weight: 700; color: var(--gold);
  line-height: 1; flex-shrink: 0; width: 35px;
}
.principle h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--navy); }
.principle p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== QUALIFICATION BOX ===== */
.qual-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
.qual-box { padding: 1.5rem; border: 1px solid var(--border); margin-bottom: 1rem; }
.qual-box h4 {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.qual-box.ideal h4 { color: var(--gold); }
.qual-box.not-for h4 { color: var(--slate); }
.qual-box ul { list-style: none; }
.qual-box ul li {
  font-size: 0.85rem; color: var(--text-body);
  padding: 0.35rem 0; display: flex; align-items: flex-start; gap: 0.6rem;
}
.qual-box ul li::before { margin-top: 0.55rem; flex-shrink: 0; }
.qual-box.ideal ul li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.qual-box.not-for ul li::before { content: ''; width: 6px; height: 6px; background: var(--slate-light); border-radius: 50%; }

/* ===== DELIVERABLE CARDS ===== */
.deliverable-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.deliverable-card:last-child { border-bottom: none; }
.del-icon, .del-icon-dark {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--navy);
}
.del-icon-dark {
  background: rgba(184,149,42,0.15);
  border: 1px solid rgba(184,149,42,0.3);
  color: var(--gold);
}
.deliverable-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; }
.deliverable-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== CONTACT ===== */
.contact-path {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  padding: 1.5rem; 
  text-align: center; 
  height: 100%;
  margin-bottom: 1rem;
}
.contact-path h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.contact-path p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.contact-path.secondary { border-top-color: var(--slate); }
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 0.75rem 0; border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 32px; height: 32px; background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.9rem;
}
.contact-detail h4 {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.2rem;
}
.contact-detail p { font-size: 0.85rem; color: var(--text-dark); }

/* ===== INCIDENT ===== */
.incident-banner {
  background: var(--navy-mid);
  border: 1px solid rgba(184,149,42,0.2);
  padding: 1rem 1.25rem;
  display: flex; flex-direction: column;
  gap: 1rem;
}
.incident-banner-dot {
  display: inline-block; width: 10px; height: 10px;
  background: #E74C3C; border-radius: 50%;
  animation: pulse 1.5s infinite; margin-right: 0.5rem;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ===== CERT BADGES ===== */
.cert-badge {
  background: var(--white); border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.8rem; font-weight: 600; color: var(--navy);
  margin-bottom: 0.5rem;
}
.cert-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== FOOTER (Mobile First) ===== */
footer {
  background: #07111B;
  border-top: 1px solid rgba(184,149,42,0.15);
  padding: 3rem 0 1.5rem;
  color: rgba(255,255,255,0.55);
}
.footer-inner {
  display: grid; 
  grid-template-columns: 1fr;
  gap: 2rem; 
  margin-bottom: 2rem;
}
.footer-brand .nav-logo { margin-bottom: 0.75rem; }
.footer-tagline {
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  line-height: 1.6; max-width: 100%; margin-bottom: 1rem;
}
.footer-contact-item { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 0.35rem; }
.footer-col h5 {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col .footer-snapshot-link { color: var(--gold-light) !important; font-weight: 600; }
.footer-bottom {
  display: flex; flex-direction: column;
  gap: 0.5rem; text-align: center;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.7rem; color: rgba(255,255,255,0.3);
}

/* ===== INDUSTRIES ===== */
.industry-segment { padding: 2rem 0; border-bottom: 1px solid var(--border); }
.industry-segment:last-child { border-bottom: none; }

/* ===== SOLUTIONS FLOW ===== */
.solutions-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}
.solutions-flow-step {
  flex: 1;
  min-width: 160px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.solutions-flow-arrow {
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 16px solid;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .solutions-flow {
    flex-direction: row;
    align-items: center;
  }
  .solutions-flow-arrow {
    border-left: 18px solid;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-right: none;
    margin: 0;
    width: auto;
    height: auto;
  }
}

/* ===== RESPONSIVE (Tablet) ===== */
@media (min-width: 768px) {
  /* Navigation */
  .nav-inner { padding: 0 2rem; height: 70px; }
  .nav-logo { font-size: 1.15rem; gap: 10px; }
  .nav-logo-mark { width: 36px; height: 36px; font-size: 1rem; }
  .nav-links { 
    display: flex; 
    align-items: center; 
    gap: 0.25rem;
    list-style: none;
  }
  .nav-links li a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    padding: 0.5rem 0.85rem;
    border-radius: 2px;
    transition: color var(--transition);
  }
  .nav-links li a:hover { color: var(--white); }
  .nav-cta-btn {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 0.5rem 1.1rem !important;
    font-weight: 600 !important;
  }
  .nav-cta-btn:hover { background: var(--gold-light) !important; }
  .nav-incident {
    font-size: 0.75rem !important;
    color: rgba(255,255,255,0.45) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
  }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }

  /* Layout */
  .container { padding: 0 2rem; }
  .container-narrow { padding: 0 2rem; }

  /* Buttons */
  .btn-primary, .btn-outline, .btn-outline-dark {
    font-size: 0.82rem;
    padding: 0.9rem 2.2rem;
    width: auto;
  }

  /* Hero */
  .hero h1 { font-size: 2.5rem; }
  .hero-actions { flex-direction: row; }
  .hero-badges { margin-top: 3.5rem; }

  /* Sections */
  .section { padding: 5rem 0; }
  .section-header h2 { font-size: 2rem; }
  .section-header p { font-size: 1rem; }

  /* Cards */
  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .card, .card-dark { padding: 1.75rem; margin-bottom: 0; }

  /* Visual Spine */
  .spine { flex-direction: row; }
  .spine-step { flex-direction: row; }
  .spine-arrow {
    border-left: 18px solid var(--navy);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin: 0;
  }

  /* Solution Blocks */
  .solution-block { grid-template-columns: 1fr 2fr; gap: 3rem; padding: 3.5rem 0; }

  /* Steps */
  .steps { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .step { padding: 1.5rem; }

  /* Qualification */
  .qual-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .qual-box { margin-bottom: 0; }

  /* Form */
  .form-section { padding: 3rem; max-width: 680px; }

  /* Footer */
  .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }

  /* Incident */
  .incident-banner { flex-direction: row; justify-content: space-between; }
}

/* ===== RESPONSIVE (Desktop) ===== */
@media (min-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .grid-4 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .steps { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 10%; right: 10%; height: 1px;
    background: var(--border-gold); z-index: 0;
  }
  .step { padding: 0 1.5rem; }
  .step-num { width: 56px; height: 56px; font-size: 1.25rem; margin: 0 auto 1.25rem; }
  .step h4 { font-size: 0.95rem; }
  .step p { font-size: 0.82rem; }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
  .grid-2-col { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .grid-2-col-wide { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .about-layout { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

@media (min-width: 1280px) {
  .hero h1 { font-size: 3.5rem; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .grid-2-col { gap: 4rem; }
  .section { padding: 6rem 0; }
  .section-sm { padding: 3rem 0; }
  .section-header h2 { font-size: 2.25rem; }
  .section-header p { font-size: 1.05rem; }
  .hero-badges { margin-top: 4rem; }
  .footer-inner { gap: 4rem; }
 