:root {
  --ink: #101112;
  --muted: #5f6569;
  --soft: #f1efe8;
  --paper: #f8f7f2;
  --surface: #fffdf7;
  --line: #ded9cc;
  --green: #2563eb;
  --green-dark: #1d4ed8;
  --cyan: #b8c9ff;
  --blue: #c8d6ff;
  --blue-ink: #111214;
  --eyebrow-light: #1d4ed8;
  --eyebrow-dark: #c8d6ff;
  --violet: #d9ddf7;
  --amber: #f4df86;
  --dark: #090d0f;
  --dark-2: #171a1d;
  --radius: 26px;
  --shadow: 0 20px 55px rgba(24, 24, 24, 0.08);
  --shadow-dark: 0 24px 70px rgba(0, 0, 0, 0.24);
  --bold-font: Oswald, Manrope, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border: 0;
  background: transparent;
  transform: translateX(-50%);
}

.header-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 7px 8px 7px 16px;
  border: 1px solid rgba(16, 17, 18, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 18px 48px rgba(10, 10, 10, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-name {
  font-size: clamp(18px, 2vw, 24px);
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.primary-nav a {
  padding: 10px 12px;
  color: #4f5558;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--ink);
  background: #efede6;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--blue);
  box-shadow: 0 14px 36px rgba(115, 134, 185, 0.34);
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: #b9caff;
  box-shadow: 0 18px 42px rgba(115, 134, 185, 0.4);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: var(--dark);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: #ffffff;
}

.hero,
.page-hero,
.final-cta {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: var(--dark);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(9, 13, 15, 0.68);
  z-index: 0;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image: url("/assets/audit-team.jpg");
  background-position: center;
  background-size: cover;
  filter: saturate(85%);
  opacity: 0.32;
  transform: scale(1.02);
  z-index: 0;
}

.page-hero::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 920px);
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 118px 0 88px;
  text-align: center;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--eyebrow-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.final-cta .eyebrow,
.section.dark .eyebrow,
.challenge-section .eyebrow,
.offer-band .eyebrow,
.card.featured .eyebrow {
  color: var(--eyebrow-dark);
}

.hero h1,
.page-hero h1 {
  margin: 0 auto;
  max-width: 860px;
  font-size: clamp(46px, 6.8vw, 86px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 span,
.page-hero h1 span,
.accent {
  color: var(--blue);
}

.lead {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 21px);
  line-height: 1.65;
  text-align: center;
}

.hero .lead,
.page-hero .lead,
.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: var(--blue-ink);
  background: var(--blue);
  box-shadow: 0 18px 48px rgba(115, 134, 185, 0.36);
}

.btn-primary::after {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--dark);
  content: "→";
  font-size: 18px;
  line-height: 1;
}

.btn-dark {
  color: #ffffff;
  background: var(--ink);
}

.btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.btn-outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.trust-list span {
  padding: 11px 15px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.stat-cards-section {
  padding: 112px 0;
  scroll-margin-top: 112px;
  color: var(--ink);
  background: #f1cfa8;
}

.stat-cards-section .eyebrow {
  color: var(--ink);
}

.stat-cards {
  max-width: 1060px;
}

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

.stat-header h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(38px, 5vw, 64px);
}

.stat-header .lead {
  max-width: 680px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
  gap: 18px;
}

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

.stat-card {
  position: relative;
  display: flex;
  min-height: 0;
  aspect-ratio: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 16px;
  background: var(--surface);
  text-align: left;
}

.stat-card::before {
  position: absolute;
  inset: -1px auto -1px -1px;
  width: 16px;
  border-radius: 16px 0 0 16px;
  content: "";
  background: var(--blue);
}

.stat-card-green::before {
  background: #1e6b52;
}

.stat-card-pink::before {
  background: #f0a1f4;
}

.stat-card-blue::before {
  background: #a9c9ff;
}

.stat-card-yellow::before {
  background: #f7df72;
}

.stat-value {
  display: block;
  color: var(--ink);
  font-size: clamp(44px, 5vw, 62px);
  font-weight: 500;
  line-height: 0.98;
}

.stat-metric {
  max-width: 220px;
  margin: 0;
  color: #3b4144;
  font-size: 15px;
  line-height: 1.35;
}

.visual-offers-section {
  padding: 112px 0;
  background: var(--surface);
}

.visual-offers-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.visual-card-grid {
  display: grid;
  max-width: 980px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.visual-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--dark);
  isolation: isolate;
}

.visual-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(10, 12, 14, 0.48);
  box-shadow: inset 0 -180px 120px rgba(10, 12, 14, 0.38);
  z-index: -1;
}

.visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  transform: scale(1.06);
  z-index: -2;
}

.visual-card-alt img {
  object-position: 18% center;
}

.visual-card-deep img {
  object-position: 78% center;
}

.visual-card-content {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 10px;
  padding: 28px 28px 74px;
  color: #ffffff;
  text-align: left;
}

.visual-card-content h3 {
  color: #ffffff;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 500;
}

.visual-card-content p {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.35;
}

.round-action {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--dark);
  font-size: 18px;
}

.challenge-section {
  padding: 112px 0;
  color: #ffffff;
  background: #352a34;
}

.challenge-header {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.challenge-header h2 {
  color: #ffffff;
}

.challenge-header .lead {
  color: rgba(255, 255, 255, 0.72);
}

.challenge-layout {
  display: grid;
  max-width: 1080px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: center;
  margin: 0 auto;
}

.challenge-showcase {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--dark);
  box-shadow: var(--shadow-dark);
}

.challenge-showcase img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center 18%;
}

.chat-card {
  position: absolute;
  top: 30px;
  right: 30px;
  width: min(420px, calc(100% - 60px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.78);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-align: left;
}

.chat-card strong {
  display: block;
  font-size: 14px;
}

.chat-card p {
  margin-top: 8px;
  color: #3b4144;
  font-size: 14px;
  line-height: 1.35;
}

.challenge-insights {
  display: grid;
  gap: 14px;
}

.challenge-insight {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 8px 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
}

.challenge-insight span {
  grid-row: span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--blue);
}

.challenge-insight h3 {
  color: #ffffff;
}

.challenge-insight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.challenge-insights .btn {
  width: fit-content;
  margin-top: 8px;
}

.section {
  padding: 104px 0;
  scroll-margin-top: 112px;
}

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

.section.dark {
  color: #ffffff;
  background: var(--dark);
}

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

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.8vw, 64px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.dark h2 {
  color: #ffffff;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.18;
}

p {
  margin: 12px 0 0;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: none;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: #c8c1b1;
  box-shadow: var(--shadow);
}

.card.featured {
  color: #ffffff;
  border: 0;
  background: var(--dark-2);
}

.card.featured h3,
.card.featured p {
  color: #ffffff;
}

.icon-box {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--blue);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 56px;
  text-align: center;
}

.image-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: none;
}

.image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  margin: 22px auto 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  color: #314046;
  text-align: left;
}

.check-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin: 7px 0 0 3px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 6px var(--blue);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
}

.timeline-item span {
  color: var(--ink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offer-band {
  border: 1px solid rgba(16, 17, 18, 0.1);
  border-radius: 38px;
  padding: 56px;
  color: #ffffff;
  background: var(--dark-2);
  box-shadow: var(--shadow-dark);
  text-align: center;
}

.offer-band h2 {
  color: #ffffff;
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  overflow: hidden;
}

.faq-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.faq-panel {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
  text-align: center;
}

.faq-item.open .faq-panel {
  display: block;
}

.page-hero .container {
  position: relative;
  padding: 144px 0 116px;
  text-align: center;
  z-index: 1;
}

.page-hero .lead {
  max-width: 820px;
  margin: 22px auto 0;
}

.form-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: none;
  text-align: center;
}

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

.form-field.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 7px;
  font-weight: 750;
  text-align: left;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffefa;
  font: inherit;
  text-align: left;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.hidden {
  display: none;
}

.form-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

.site-footer {
  padding: 58px 0 30px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 34px;
  text-align: center;
}

.site-footer .lead {
  margin-top: 0;
}

.footer-brand {
  justify-content: center;
  margin-top: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  color: #58666e;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #7a878e;
  font-size: 14px;
  text-align: center;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 18px;
}

h1,
h2,
h3,
.hero h1,
.page-hero h1,
.visual-card-content h3,
strong,
b,
label,
.brand-name,
.primary-nav a,
.header-cta,
.btn,
.eyebrow,
.icon-box,
.stat-value,
.timeline-item span,
.faq-button,
.footer-grid strong,
.trust-list span,
.challenge-insight span,
.chat-card strong,
.round-action {
  font-family: var(--bold-font);
  font-weight: 400;
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    inset: auto 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  body.nav-open .primary-nav {
    display: flex;
  }

  .hero-grid,
  .split,
  .grid-2,
  .grid-3,
  .grid-4,
  .stat-grid,
  .visual-card-grid,
  .challenge-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 128px 0 64px;
  }

  .page-hero .container {
    padding: 132px 0 84px;
  }

  .stat-grid {
    max-width: 620px;
    margin: 0 auto;
  }

  .stat-card {
    aspect-ratio: auto;
    min-height: 220px;
  }

  .visual-card-grid,
  .challenge-layout {
    max-width: 620px;
    margin: 0 auto;
  }

  .visual-card {
    min-height: 390px;
  }

  .challenge-insights .btn {
    margin-left: auto;
    margin-right: auto;
  }
}

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

  .brand-name {
    font-size: 17px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 46px;
  }

  .section {
    padding: 72px 0;
  }

  .stat-cards-section {
    padding: 82px 0;
  }

  .visual-offers-section,
  .challenge-section {
    padding: 82px 0;
  }

  .stat-card {
    min-height: 190px;
    padding: 28px;
  }

  .visual-card,
  .challenge-showcase,
  .challenge-showcase img {
    min-height: 360px;
  }

  .chat-card {
    top: 28px;
    right: 18px;
    width: min(300px, calc(100% - 36px));
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}
