:root {
  --navy-900: #060c18;
  --navy-800: #0a1830;
  --navy-700: #0d1e3d;
  --navy-600: #132a4f;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f5f7fb;
  --muted: #9aa7c2;
  --gold: #f2b01b;
  --gold-light: #f7c752;
  --gold-dark: #c88a0f;
  --radius: 18px;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--navy-800);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* Top banner */
.top-banner {
  background: var(--gold);
  color: var(--navy-900);
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.65rem 0;
  text-align: center;
  flex-wrap: wrap;
}

.banner-inner p {
  margin: 0;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}

.btn-banner {
  background: var(--navy-900);
  color: var(--gold-light);
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(6, 12, 24, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
  color: var(--text);
}

.brand strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.brand span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
  white-space: nowrap;
}

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

.nav-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--gold-dark);
  color: var(--gold-light);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  color: var(--text);
  cursor: pointer;
}

/* Nav dropdowns */
.nav-item.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.7rem;
  padding: 0.2rem 0.1rem;
  line-height: 1;
}

.dropdown-toggle:hover {
  color: var(--text);
}

.dropdown-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  background: var(--navy-900, #0b1220);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 0.5rem 0.5rem;
  margin-top: 0.6rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  z-index: 40;
}

/* Invisible bridge so the pointer never leaves a hoverable box while
   crossing from the nav link down into the menu (avoids the classic
   dropdown flicker-close bug). */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.6rem;
  left: 0;
  right: 0;
  height: 0.6rem;
}

.dropdown-menu a {
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  font-size: 0.88rem;
  white-space: normal;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.dropdown-menu a.dropdown-all {
  font-weight: 700;
  color: var(--gold-light);
  border-bottom: 1px solid var(--border);
  border-radius: 8px 8px 0 0;
  margin-bottom: 0.3rem;
}

@media (min-width: 961px) {
  .nav-item.dropdown:hover .dropdown-menu,
  .nav-item.dropdown.open .dropdown-menu {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 10px;
  padding: 0.9rem 1.6rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-900);
  box-shadow: 0 12px 30px rgba(242, 176, 27, 0.25);
}

.btn-secondary {
  background: var(--surface-strong);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-block {
  width: 100%;
}

/* Page hero (sub-pages) */
.page-hero {
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(circle at top left, rgba(242, 176, 27, 0.08), transparent 45%);
}

.eyebrow {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
}

.eyebrow a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Home hero */
.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.hero-copy h1 .accent {
  color: var(--gold);
}

.hero-text {
  max-width: 560px;
  margin: 1.3rem 0 1.8rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-note {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

.hero-visual {
  position: relative;
}

.portrait-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--navy-600), var(--navy-900));
}

.portrait-avatar {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-avatar .monogram {
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--navy-900);
}

.portrait-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(6, 12, 24, 0.82);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(6px);
}

.portrait-caption .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #35d07f;
  flex-shrink: 0;
}

.portrait-caption strong {
  display: block;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.portrait-caption span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Alert strip */
.alert-strip {
  background: var(--gold);
  color: var(--navy-900);
  text-align: center;
  padding: 0.7rem 0;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-highlight {
  background: var(--navy-700);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  max-width: 760px;
  margin: 0 0 2.5rem;
}

.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h2 {
  margin-top: 0.75rem;
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  line-height: 1.15;
}

.section-header p {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

/* Numbered problem cards */
.numbered-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.numbered-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.numbered-card .num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.numbered-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.numbered-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

/* Card grids (services, differentiators, etc.) */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.info-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

a.info-card {
  display: block;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

a.info-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-dark);
}

.info-card .icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: rgba(242, 176, 27, 0.14);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  margin-bottom: 1.1rem;
}

.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.info-card p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  font-size: 0.95rem;
}

/* Stats */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.stat-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}

.stat-card strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

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

/* Ordered steps (audit readiness / process) */
.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.step-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  align-items: flex-start;
}

.step-list .step-num {
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(242, 176, 27, 0.16);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
}

.step-list div strong {
  display: block;
  margin-bottom: 0.2rem;
}

.step-list div span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Tagline / pull quote */
.tagline {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--gold-light);
  font-size: 1.15rem;
  text-align: center;
  margin: 0;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.bullet-list li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.bullet-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* Testimonials */
.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  color: var(--text);
  line-height: 1.8;
  margin: 0;
  font-size: 1rem;
}

.testimonial-card strong {
  display: block;
  margin-top: 1.5rem;
  color: var(--gold-light);
  font-size: 0.9rem;
}

/* Pricing */
.pricing-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(242, 176, 27, 0.14), rgba(242, 176, 27, 0.03));
  border-color: rgba(242, 176, 27, 0.35);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -0.7rem;
  left: 2rem;
  background: var(--gold);
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-card h3 {
  font-size: 1.2rem;
}

.price {
  margin: 1rem 0;
  font-family: 'Poppins', sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
}

.price span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.3rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  color: var(--muted);
  display: grid;
  gap: 0.75rem;
  flex-grow: 1;
}

.pricing-card li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.pricing-card li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* CTA band */
.cta-band {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
  border: 1px solid var(--border);
}

.cta-band h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  margin-bottom: 0.8rem;
}

.cta-band p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-info-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-card .icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 10px;
  background: rgba(242, 176, 27, 0.14);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
}

.contact-info-card strong {
  display: block;
  margin-bottom: 0.2rem;
}

.contact-info-card span,
.contact-info-card a {
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

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

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

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

.payment-form {
  display: grid;
  gap: 1rem;
}

.payment-status {
  font-size: 0.9rem;
  color: var(--gold-light);
  min-height: 1.2em;
  margin: 0;
}

/* Footer */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--navy-900);
}

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

.footer-grid h4 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.footer-grid p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

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

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .split-grid,
  .contact-layout,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .cols-3, .cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .numbered-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-900);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.5rem;
    gap: 1rem;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-badge {
    display: none;
  }

  .nav-item.dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .nav-item.dropdown .nav-link-main {
    width: 100%;
  }

  .dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.4rem 0.6rem;
    font-size: 0.95rem;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    max-height: none;
    overflow-y: visible;
    border: none;
    box-shadow: none;
    padding: 0.25rem 0 0.25rem 1rem;
    margin-top: 0.5rem;
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-item.dropdown.open .dropdown-menu {
    display: flex;
  }
}

@media (max-width: 640px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 2.1rem; }
  .cta-band { padding: 2rem 1.5rem; }
  .btn { width: 100%; }
  .hero-actions .btn,
  .cta-actions .btn { width: 100%; }
}
