:root {
  --navy: #0b1730;
  --navy-deep: #060d1c;
  --cream: #faf8f4;
  --cream-warm: #f2ede2;
  --ink: #14213d;
  --muted: #5a6272;
  --amber: #f0b429;
  --amber-deep: #d99a12;
  --border: #e6e1d6;
  --white: #ffffff;
  --radius-lg: 10px;
  --radius-md: 6px;
  --radius-sm: 4px;
  --header-h: 88px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--font-sans); font-weight: 700; color: var(--navy); text-wrap: balance; letter-spacing: -0.02em; }
p { text-wrap: pretty; }

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

section[id] { scroll-margin-top: var(--header-h); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease-out, background-color 0.18s ease-out, box-shadow 0.18s ease-out, color 0.18s ease-out, border-color 0.18s ease-out;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--amber); color: var(--navy); }
.btn-primary:hover { background: var(--amber-deep); box-shadow: 0 10px 24px rgba(240,180,41,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-sm { padding: 12px 22px; font-size: 14px; }
.btn-lg { padding: 18px 38px; font-size: 16px; }
.btn-arrow { display: inline-block; transition: transform 0.18s ease-out; }
.btn:hover .btn-arrow { transform: translate(2px, -2px); }

/* ---------- EYEBROW (plain text, no box) ---------- */
.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow-dark { color: var(--amber-deep); }
.eyebrow-light { color: var(--amber); }

/* ---------- HEADER (floating pill over hero) ---------- */
.header-wrap {
  position: sticky;
  top: 16px;
  z-index: 100;
  padding: 0 16px;
}
.site-header {
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 12px 32px rgba(11,23,48,0.14);
  height: 72px;
  display: flex;
  align-items: center;
}
.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 12px 0 20px;
}
.logo {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--amber);
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
}
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink); transition: color 0.15s; }
.nav-links a:hover { color: var(--amber-deep); }
.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 0 auto; transition: transform 0.2s, opacity 0.2s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO (full-bleed photo) ---------- */
.hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: flex-end;
  margin-top: -88px;
  padding-top: 88px;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,13,28,0.78) 0%, rgba(6,13,28,0.55) 40%, rgba(6,13,28,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 100px;
}
.hero-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 48px;
}
.hero-copy-block {
  max-width: 620px;
  flex-shrink: 0;
}
.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
  max-width: 18ch;
  font-weight: 800;
}
.accent-underline {
  font-style: normal;
  color: var(--amber);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  text-decoration-color: var(--amber-deep);
}
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.82); max-width: 48ch; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  max-width: 280px;
  flex-shrink: 0;
  box-shadow: 0 24px 48px rgba(0,0,0,0.28);
}
.hero-card-label { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.hero-card-title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.hero-card-sub { font-size: 14px; color: var(--muted); }

/* ---------- TRUST STRIP ---------- */
.trust-strip { background: var(--navy-deep); padding: 20px 0; }
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.75);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
}
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }

/* ---------- SECTION GENERIC ---------- */
.section { padding: 96px 0; }
.section-title { font-size: clamp(1.9rem, 3.2vw, 2.6rem); line-height: 1.16; margin-bottom: 48px; max-width: 22ch; }

/* ---------- PROBLEM ---------- */
.problem { background: var(--cream); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform 0.22s ease-out, box-shadow 0.22s ease-out;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(11,23,48,0.08); }
.problem-num { font-size: 14px; color: var(--amber-deep); font-weight: 800; }
.problem-card h3 { font-size: 20px; margin: 12px 0 10px; }
.problem-card p { color: var(--muted); font-size: 15px; }

/* ---------- SERVICES ---------- */
.services { background: var(--cream-warm); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform 0.22s ease-out, box-shadow 0.22s ease-out;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(11,23,48,0.08); }
.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--cream-warm);
  color: var(--amber-deep);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}
.service-card h3 { font-size: 19px; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 14.5px; }

/* ---------- INDUSTRIES ---------- */
.industries { background: var(--cream); }
.industries-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.industries-sub { color: var(--muted); font-size: 17px; margin-bottom: 28px; max-width: 46ch; }
.industries-media img { border-radius: var(--radius-lg); aspect-ratio: 4/3; object-fit: cover; height: auto; }

/* ---------- CHECK LIST ---------- */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  padding-left: 30px;
  position: relative;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--amber);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(-45deg);
}

/* ---------- ABOUT ---------- */
.about { background: var(--cream-warm); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.about-media img { border-radius: var(--radius-lg); aspect-ratio: 4/3; object-fit: cover; height: auto; }
.about-copy p { color: var(--muted); font-size: 17px; margin-bottom: 18px; max-width: 54ch; }

/* ---------- WHY US ---------- */
.why-us { background: var(--navy); }
.why-us .eyebrow-dark { color: var(--amber); }
.why-us .section-title { color: var(--white); margin-bottom: 20px; }
.why-us-sub { color: rgba(255,255,255,0.75); font-size: 17px; max-width: 40ch; }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.check-list-lg li { color: var(--white); font-size: 18px; }
.check-list-lg li::before { background: var(--amber); }

/* ---------- HOW IT WORKS ---------- */
.how-it-works { background: var(--cream); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card { padding: 28px 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); transition: transform 0.22s ease-out, box-shadow 0.22s ease-out; }
.step-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(11,23,48,0.08); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 18px; margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: 14.5px; }

/* ---------- FAQ ---------- */
.faq { background: var(--cream-warm); }
.faq-container { max-width: 820px; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:first-child { border-top: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  min-height: 48px;
}
.accordion-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.accordion-icon::before, .accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--navy);
  transition: transform 0.2s ease-out;
}
.accordion-icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.accordion-icon::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.accordion-trigger[aria-expanded="true"] .accordion-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.accordion-panel { padding: 0 4px 22px; color: var(--muted); font-size: 15.5px; max-width: 65ch; }

/* ---------- FINAL CTA ---------- */
.final-cta { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); text-align: center; }
.final-cta-inner { display: flex; flex-direction: column; align-items: center; }
.final-cta-title { color: var(--white); font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.02; margin-bottom: 16px; max-width: 18ch; }
.final-cta-sub { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 46ch; margin-bottom: 32px; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--navy-deep); padding: 40px 0; }
.footer-inner { display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; }
.footer-brand { font-size: 17px; font-weight: 700; color: var(--white); }
.footer-meta { font-size: 13.5px; color: rgba(255,255,255,0.55); }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.65); text-decoration: underline; }
.footer-links a:hover { color: var(--white); }

/* ---------- SCROLL REVEAL ---------- */
.pre-reveal { opacity: 0; transform: translateY(18px); }
.is-visible { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
@media (prefers-reduced-motion: reduce) {
  .pre-reveal { opacity: 1; transform: none; }
}

/* ---------- HERO ENTRANCE ---------- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-copy-block { animation: heroFadeUp 0.7s ease-out both; }
.hero-card { animation: heroFadeUp 0.7s ease-out 0.15s both; }
.header-wrap { animation: heroFadeUp 0.5s ease-out both; }
@media (prefers-reduced-motion: reduce) {
  .hero-copy-block, .hero-card, .header-wrap { animation: none; }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .industries-media { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .why-us-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 720px; }
  .hero-row { flex-direction: column; align-items: flex-start; gap: 32px; }
  .hero-card { max-width: 100%; width: 100%; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }
  .header-wrap { top: 12px; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 84px;
    left: 12px;
    right: 12px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 32px rgba(11,23,48,0.18);
    padding: 16px 24px 24px;
    gap: 4px;
  }
  .nav-links.is-open a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.is-open .btn { width: 100%; margin-top: 12px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { min-height: 640px; margin-top: -88px; }
  .hero-content { padding-top: 120px; padding-bottom: 80px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(6,13,28,0.88) 0%, rgba(6,13,28,0.72) 40%, rgba(6,13,28,0.96) 100%); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .btn { width: 100%; }
  .final-cta .btn { width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { gap: 10px; font-size: 12px; }
  .hero-card { max-width: 100%; }
}
