:root {
  --blue-950: #071a36;
  --blue-900: #0b2447;
  --blue-800: #0d3a72;
  --blue-700: #0758a8;
  --blue-100: #e8f2ff;
  --orange-600: #f47b20;
  --orange-500: #ff8a2a;
  --orange-100: #fff1e7;
  --white: #ffffff;
  --ink: #102033;
  --muted: #607087;
  --line: #d9e3ef;
  --shadow: 0 24px 70px rgba(7, 26, 54, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  display: block;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1160px, calc(100% - 32px));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(7, 26, 54, 0.14);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.brand img,
.site-footer img {
  width: 168px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #2d4361;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--orange-600);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: 800 0.9rem/1 Inter, system-ui, sans-serif;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--orange-600);
}

.button {
  padding: 0 22px;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-600), var(--orange-500));
  box-shadow: 0 14px 30px rgba(244, 123, 32, 0.28);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.09);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 142px 0 70px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(244, 123, 32, 0.35), transparent 28%),
    linear-gradient(135deg, var(--blue-950) 0%, var(--blue-900) 48%, #0f4e88 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5.35rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.trust-row span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.87rem;
  font-weight: 600;
}

.trust-row strong {
  color: var(--orange-500);
  font-size: 1.05rem;
}

.proof-band {
  padding: 30px 0;
  background: var(--blue-100);
}

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

.proof-grid div {
  padding: 18px 20px;
  border-left: 4px solid var(--orange-600);
  background: var(--white);
}

.proof-grid strong {
  display: block;
  color: var(--blue-900);
  font-size: 1.3rem;
  line-height: 1;
}

.proof-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.section {
  padding: 100px 0;
}

.split,
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.section h2,
.final-panel h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section p,
.final-panel p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.outcome-list {
  display: grid;
  gap: 18px;
}

.outcome-list article,
.pillar-grid article,
.steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.outcome-list article {
  position: relative;
  padding: 26px 26px 26px 82px;
  box-shadow: 0 16px 50px rgba(13, 58, 114, 0.08);
}

.outcome-list span {
  position: absolute;
  top: 26px;
  left: 26px;
  color: var(--orange-600);
  font-size: 1.05rem;
  font-weight: 800;
}

.outcome-list h3,
.pillar-grid h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: 1.18rem;
}

.outcome-list p,
.pillar-grid p {
  margin: 8px 0 0;
  font-size: 0.96rem;
}

.maturity {
  background:
    linear-gradient(180deg, #f6f9fd 0%, #ffffff 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

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

.pillar-grid article {
  padding: 24px;
  min-height: 238px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.pillar-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(13, 58, 114, 0.12);
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 8px;
  color: var(--orange-600);
  background: var(--orange-100);
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.process {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.process h2,
.process p {
  color: var(--white);
}

.process p {
  color: rgba(255, 255, 255, 0.78);
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  min-height: 86px;
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.steps strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--blue-950);
  background: var(--orange-500);
}

.steps span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.final-cta {
  padding: 94px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(244, 123, 32, 0.18), transparent 26%),
    var(--blue-100);
}

.final-panel {
  padding: 58px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
  box-shadow: var(--shadow);
}

.final-panel h2 {
  max-width: 860px;
  color: var(--white);
}

.final-panel p {
  max-width: 720px;
  margin: 20px 0 30px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 26px 0;
  background: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-weight: 700;
}

.footer-contact {
  text-align: right;
}

.footer-contact > span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-contact address {
  margin: 0;
  color: #718197;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.55;
}

.footer-contact a:hover {
  color: var(--orange-600);
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    top: 14px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 122px;
  }

  .hero-grid,
  .split,
  .process-grid {
    grid-template-columns: 1fr;
  }

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

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

  .site-header {
    width: calc(100% - 24px);
    padding: 12px;
  }

  .brand img {
    width: 142px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 0;
    padding: 112px 0 48px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-actions,
  .trust-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .final-panel {
    padding: 24px;
  }

  .proof-grid,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .outcome-list article {
    padding: 24px;
  }

  .outcome-list span {
    position: static;
    display: block;
    margin-bottom: 10px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-contact {
    text-align: left;
  }
}
