:root {
  --navy: #0b2f55;
  --navy-2: #061b31;
  --blue: #1264d8;
  --blue-soft: #e9f2ff;
  --yellow: #f7c948;
  --yellow-2: #e3aa16;
  --ink: #152536;
  --muted: #607286;
  --line: #dce7f2;
  --surface: #f6f9fc;
  --white: #ffffff;
  --shadow-sm: 0 8px 22px rgba(11, 47, 85, 0.08);
  --shadow-md: 0 18px 48px rgba(11, 47, 85, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 30;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 12px;
}

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

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

.brand {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 850;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #34495f;
  font-size: 15px;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.nav-links a:hover {
  color: var(--blue);
  border-color: var(--yellow);
}

.nav-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 780;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button.primary {
  color: var(--navy-2);
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(247, 201, 72, 0.24);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.button.light.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.56);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button:focus-visible,
.nav-cta:focus-visible,
.nav a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(18, 100, 216, 0.25);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100dvh - 72px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-2);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 27, 49, 0.92) 0%, rgba(9, 47, 86, 0.78) 46%, rgba(9, 47, 86, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 27, 49, 0.22), rgba(6, 27, 49, 0.04));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 88px 48px;
  animation: fade-up 720ms ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 730px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-text {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-bar {
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 72px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.trust-bar div {
  padding: 18px;
  background: rgba(6, 27, 49, 0.62);
}

.trust-bar dt {
  color: var(--white);
  font-size: 22px;
  font-weight: 850;
}

.trust-bar dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding-block: 88px;
}

.intro,
.process,
.faq {
  background: var(--surface);
}

.split,
.proof-layout,
.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.split p:last-child,
.media-copy p,
.visual-layout p {
  color: var(--muted);
  font-size: 19px;
}

.media-copy,
.proof-media {
  display: grid;
  gap: 22px;
}

.image-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 600ms ease;
}

.image-panel:hover img {
  transform: scale(1.04);
}

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

.section-heading.compact {
  max-width: 640px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

.card {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 100, 216, 0.32);
  box-shadow: var(--shadow-md);
}

.card p,
.steps p,
.faq p {
  color: var(--muted);
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--navy);
  background: var(--blue-soft);
  border-radius: 8px;
  font-weight: 900;
  font-size: 22px;
}

.visual-band {
  background: var(--white);
}

.visual-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.steps span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--blue);
  font-weight: 900;
}

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

.proof p {
  color: rgba(255, 255, 255, 0.84);
}

.proof .image-panel {
  border-color: rgba(255, 255, 255, 0.18);
}

.proof-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

details[open] {
  border-color: rgba(18, 100, 216, 0.32);
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 800;
}

details p {
  padding: 0 20px 20px;
}

.contact {
  padding-block: 64px;
  background: var(--white);
}

.contact-panel {
  padding: 42px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: var(--shadow-md);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer {
  padding-block: 28px;
  color: #c9d8e8;
  background: var(--navy-2);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer p {
  margin: 0;
}

.reveal,
.reveal-item {
  opacity: 1;
  transform: none;
}

.js .reveal,
.js .reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js .fx-slide-left,
.js .fx-slide-right,
.js .fx-zoom {
  transform: translateY(26px);
}

.js .reveal.is-visible,
.js .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item {
  transition-delay: 70ms;
}

.cards .reveal-item:nth-child(2) {
  transition-delay: 120ms;
}

.cards .reveal-item:nth-child(3) {
  transition-delay: 170ms;
}

.cards .reveal-item:nth-child(4) {
  transition-delay: 220ms;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

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

  .split,
  .proof-layout,
  .contact-panel,
  .visual-layout {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

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

  .nav {
    min-height: 68px;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: calc(100dvh - 68px);
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(6, 27, 49, 0.96) 0%, rgba(9, 47, 86, 0.84) 100%);
  }

  .hero-content {
    padding-block: 64px 28px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero-text,
  .split p:last-child {
    font-size: 18px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-bar,
  .cards,
  .steps {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    margin-top: 46px;
  }

  .section {
    padding-block: 64px;
  }

  .card,
  .steps li {
    min-height: auto;
  }

  .contact-panel {
    padding: 28px 18px;
  }

  .image-panel img {
    aspect-ratio: 4 / 3;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .js .reveal,
  .js .reveal-item {
    opacity: 1;
    transform: none;
  }
}
