:root {
  --navy: #071b33;
  --navy-2: #0b2748;
  --navy-3: #050f1e;
  --charcoal: #17202a;
  --steel: #5f6f80;
  --steel-light: #d8dee6;
  --off-white: #f4f6f8;
  --white: #ffffff;
  --gold: #c9a24a;
  --gold-dark: #a98532;
  --border: #d8e0ea;
  --text: #17202a;
  --muted: #5f6f80;
  --shadow: 0 18px 45px rgba(7, 27, 51, 0.11);
  --shadow-soft: 0 10px 28px rgba(7, 27, 51, 0.07);
  --radius: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin-top: 0;
}

.container {
  width: min(100% - 44px, var(--max-width));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav-container {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 420px;
  height: 88px;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 10px;
  font-weight: 900;
}

.logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--charcoal);
}

.nav-links a {
  transition: color 0.2s ease;
}

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

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 11px 16px;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--navy-2);
}

.mobile-menu-button {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
}

/* Hero and Page Intros */

.hero,
.quote-hero,
.page-intro {
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 162, 74, 0.25), transparent 31%),
    linear-gradient(135deg, var(--navy-3), var(--navy) 48%, #0d2e52);
  color: var(--white);
}

.hero {
  padding: 108px 0 92px;
}

.quote-hero {
  padding: 88px 0;
}

.page-intro {
  padding: 82px 0 72px;
}

.page-intro-compact {
  padding: 82px 0 72px;
}

.page-intro-process {
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 162, 74, 0.22), transparent 31%),
    linear-gradient(135deg, #050f1e, #071b33 46%, #102f4d);
}

.page-intro-capabilities {
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 162, 74, 0.22), transparent 31%),
    linear-gradient(135deg, #061426, #071b33 50%, #123b66);
}

.page-intro h1 {
  max-width: 980px;
}

.page-intro-text {
  max-width: 800px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.hero-grid,
.quote-hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 58px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--steel);
}

.section-kicker-light {
  color: var(--gold);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.08;
  color: inherit;
}

h1 {
  max-width: 880px;
  font-size: clamp(2.75rem, 5.6vw, 5.65rem);
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  letter-spacing: -0.055em;
}

h3 {
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}

.hero-subtext {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--navy);
}

.button-primary:hover {
  background: #d8b65e;
}

.button-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  background: var(--navy);
  color: var(--white);
}

.button-dark:hover {
  background: var(--navy-2);
}

.section-action {
  margin-top: 34px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.panel-card,
.quote-summary-card {
  background: rgba(255, 255, 255, 0.105);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.panel-card h2,
.quote-summary-card h2 {
  font-size: 1.58rem;
  margin-bottom: 16px;
}

.panel-label {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  margin-bottom: 10px;
}

.panel-card ul,
.quote-summary-card ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.84);
}

.panel-card li,
.quote-summary-card li {
  margin: 8px 0;
}

.panel-card-secondary p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

/* Brand marquee */

.brand-marquee-section {
  padding: 28px 0;
  background: var(--navy-3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.marquee-label {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-marquee {
  overflow: hidden;
  width: 100%;
}

.brand-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marquee 32s linear infinite;
}

.brand-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.brand-marquee:hover .brand-track {
  animation-play-state: paused;
}

.brand-marquee-light {
  padding: 6px 0 2px;
}

.brand-marquee-light .brand-track span {
  color: var(--navy);
  background: var(--white);
  border-color: var(--border);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Sections */

.section {
  padding: 110px 0;
}

.section-white {
  background: var(--white);
}

.section-gray {
  background:
    radial-gradient(circle at top right, rgba(201, 162, 74, 0.08), transparent 32%),
    linear-gradient(180deg, #eef2f6 0%, #e8edf3 100%);
}

.section-navy {
  background:
    radial-gradient(circle at top right, rgba(201, 162, 74, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy-3), var(--navy));
  color: var(--white);
}

.section-divider {
  border-top: 1px solid #d3dbe5;
  border-bottom: 1px solid #d3dbe5;
  box-shadow: inset 0 22px 38px rgba(7, 27, 51, 0.035);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 44px;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 44px;
  align-items: start;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.light-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.cards {
  display: grid;
  gap: 22px;
}

.four-column {
  grid-template-columns: repeat(4, 1fr);
}

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

.product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.process-step,
.sidebar-card,
.quote-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.card h3,
.process-step h3,
.sidebar-card h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.card p,
.process-step p,
.sidebar-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.product-card-featured {
  border-top: 4px solid var(--gold);
}

.dark-cards .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.dark-cards .card h3 {
  color: var(--white);
}

.dark-cards .card p {
  color: rgba(255, 255, 255, 0.7);
}

.section-note {
  margin-top: 22px;
  padding: 12px 16px;
  border-left: 3px solid var(--gold);
  background: #fff8e7;
  color: #6f5623;
  border-radius: 10px;
  font-size: 0.78rem;
  line-height: 1.45;
  max-width: 920px;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-list span {
  padding: 12px 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 900;
  color: var(--navy);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 12px;
  font-weight: 900;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
}

.about-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.mini-cards div {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.mini-cards h3 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1rem;
}

.mini-cards p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Capabilities page */

.capability-matrix {
  display: grid;
  gap: 18px;
}

.capability-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.capability-row h3 {
  color: var(--navy);
  margin-top: 10px;
}

.capability-row p {
  color: var(--muted);
  margin: 0;
}

.capability-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 12px;
  font-weight: 900;
}

.fit-card {
  min-height: 190px;
}

/* Process page */

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  align-items: start;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.timeline-number {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 14px;
  font-weight: 900;
}

.timeline-content h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--muted);
  margin: 0;
}

.quality-card {
  border-top: 4px solid var(--steel-light);
}

.quality-strong {
  border-top-color: #2f8f5b;
}

.quality-reviewable {
  border-top-color: var(--gold);
}

.quality-weak {
  border-top-color: #b94b4b;
}

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

.checklist-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.checklist-card h3 {
  color: var(--navy);
  margin-bottom: 16px;
}

.checklist-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.checklist-card li {
  margin: 8px 0;
}

/* Quote page */

.quote-page {
  padding: 82px 0 96px;
  background:
    radial-gradient(circle at top left, rgba(201, 162, 74, 0.10), transparent 30%),
    linear-gradient(180deg, #f7f9fc 0%, #eef2f6 100%);
}

.quote-page-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: start;
}

.quote-intro-panel {
  position: sticky;
  top: 122px;
  background:
    radial-gradient(circle at top right, rgba(201, 162, 74, 0.20), transparent 34%),
    linear-gradient(135deg, var(--navy-3), var(--navy));
  color: var(--white);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.quote-intro-panel h1 {
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  letter-spacing: -0.055em;
}

.quote-intro-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-intro-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.quote-intro-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.quote-intro-list span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.10);
  color: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  font-weight: 900;
}

.quote-intro-list p {
  margin: 3px 0 0;
}

.quote-direct-email {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.quote-direct-email h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.quote-direct-email a {
  color: var(--gold);
  font-weight: 900;
}

.quote-form-card-main {
  border-top: 5px solid var(--gold);
}

.quote-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: start;
}

.quote-form-card h2 {
  color: var(--navy);
  margin-bottom: 10px;
}

.quote-form-card > p {
  color: var(--muted);
  margin-bottom: 26px;
}

.quote-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

label {
  color: var(--navy);
  font-weight: 900;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(201, 162, 74, 0.25);
  border-color: var(--gold);
}

textarea {
  resize: vertical;
}

.form-notice {
  padding: 14px 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.form-notice p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-sidebar {
  display: grid;
  gap: 18px;
}

.check-list,
.number-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.check-list li,
.number-list li {
  margin: 9px 0;
}

.muted-card {
  background: var(--off-white);
}

/* CTA and footer */

.cta-section {
  padding: 92px 0;
  background: var(--navy);
}

.cta-box {
  background:
    radial-gradient(circle at top right, rgba(201, 162, 74, 0.22), transparent 30%),
    var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-radius: 30px;
  padding: 50px;
  text-align: center;
}

.cta-box p {
  max-width: 720px;
  margin: 18px auto 28px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  background: #050f1e;
  color: var(--white);
  padding: 56px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 38px;
}

.footer-logo-image {
  display: block;
  width: 340px;
  height: 90px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 18px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 14px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

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

.footer-email-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 900;
}

.footer-email-button:hover {
  background: #d8b65e;
  color: var(--navy) !important;
}

.footer-contact-text {
  margin-top: 12px;
  font-size: 0.88rem;
  line-height: 1.4;
  word-break: break-word;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Responsive */

@media (max-width: 1180px) {
  .logo {
    width: 350px;
    height: 82px;
  }

  .nav-links {
    gap: 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 1050px) {
  .four-column,
  .product-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .three-column,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .quote-hero-grid,
  .quote-layout,
  .about-grid,
  .split-heading,
  .quote-page-grid,
  .capability-row {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 640px;
  }

  .quote-intro-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .nav-container {
    min-height: 76px;
  }

  .logo {
    width: 270px;
    height: 64px;
  }

  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

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

  .nav-cta {
    text-align: center;
  }

  .hero,
  .quote-hero,
  .page-intro,
  .quote-page {
    padding: 68px 0;
  }

  h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .hero-subtext,
  .page-intro-text {
    font-size: 1rem;
  }

  .section {
    padding: 74px 0;
  }

  .cards,
  .four-column,
  .three-column,
  .product-grid,
  .process-grid,
  .mini-cards,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 34px 22px;
  }

  .button {
    width: 100%;
  }

  .hero-buttons {
    width: 100%;
  }

  .brand-track span {
    min-width: 132px;
  }

  .quote-intro-panel {
    padding: 28px;
  }
}

@media (max-width: 440px) {
  .logo {
    width: 230px;
    height: 58px;
  }

  .logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .footer-logo-image {
    width: 240px;
    height: 68px;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
  }

  .panel-card,
  .quote-summary-card,
  .card,
  .process-step,
  .sidebar-card,
  .quote-form-card,
  .timeline-item,
  .checklist-card,
  .capability-row {
    padding: 20px;
  }
}
