:root {
  --blue: #263985;
  --blue-dark: #121d4f;
  --blue-ink: #0e173c;
  --orange: #f7941d;
  --red: #d61f2a;
  --ink: #172033;
  --muted: #667085;
  --line: #e3e8f2;
  --soft: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(13, 25, 68, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(227, 232, 242, 0.84);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1220px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 156px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2f3a54;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  padding: 11px 14px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--blue);
  background: rgba(38, 57, 133, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  background: var(--blue);
}

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

h1 {
  max-width: 840px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3.1rem, 7vw, 6.45rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: clamp(2.25rem, 4.6vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 1.25rem;
  line-height: 1.24;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.light {
  color: #ffbf62;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 86px 0 70px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(247, 148, 29, 0.28), transparent 25%),
    radial-gradient(circle at 12% 82%, rgba(214, 31, 42, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(18, 29, 79, 0.96), rgba(38, 57, 133, 0.96)),
    var(--blue-dark);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent);
}

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

.hero-text {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

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

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 18px 40px rgba(214, 31, 42, 0.28);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 780px;
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof span {
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-proof strong {
  color: #ffbf62;
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  position: absolute;
  inset: 30px 12px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  transform: rotate(-3deg);
}

.hero-visual img {
  position: relative;
  width: min(460px, 100%);
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-panel {
  position: absolute;
  width: min(230px, 56%);
  padding: 18px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(3, 8, 30, 0.22);
}

.visual-panel span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-panel strong {
  font-size: 1.08rem;
}

.panel-top {
  top: 58px;
  right: 0;
}

.panel-bottom {
  left: 0;
  bottom: 72px;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.trust-grid span {
  min-height: 88px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  border-left: 1px solid var(--line);
  font-weight: 900;
}

.trust-grid span:last-child {
  border-right: 1px solid var(--line);
}

.intro-section {
  padding: 76px 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 72px;
  align-items: end;
}

.intro-grid p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.section {
  padding: 104px 0;
}

.section-soft {
  background:
    linear-gradient(90deg, rgba(38, 57, 133, 0.06), transparent),
    var(--soft);
}

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

.section-heading.wide {
  max-width: 930px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.compact {
  margin-bottom: 0;
}

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

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

.card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(38, 57, 133, 0.045), transparent 42%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(22, 36, 93, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(247, 148, 29, 0.48);
  box-shadow: 0 28px 70px rgba(22, 36, 93, 0.14);
}

.card-number {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 62px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 900;
}

.card:nth-child(2) .card-number {
  background: var(--orange);
}

.card:nth-child(3) .card-number {
  background: var(--red);
}

.card p,
.step p,
.metric span,
.footer p,
.footer span {
  color: var(--muted);
}

.card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

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

.step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(22, 36, 93, 0.06);
}

.step > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 900;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.metric {
  min-height: 230px;
  padding: 28px;
  background: #fbfcff;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric::before {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 28px;
  content: "";
  background: var(--orange);
}

.metric:nth-child(even)::before {
  background: var(--red);
}

.metric strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 1.28rem;
}

.industries-section {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0%, rgba(247, 148, 29, 0.24), transparent 34%),
    linear-gradient(135deg, var(--blue-ink), var(--blue));
}

.industries-section h2 {
  color: var(--white);
}

.industries-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

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

.industry-list span {
  min-height: 84px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 900;
}

.cta-section {
  padding: 104px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 29, 79, 0.96), rgba(38, 57, 133, 0.92)),
    var(--blue);
}

.cta {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.cta h2 {
  color: var(--white);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(3, 8, 30, 0.24);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form label:nth-child(4),
.form-btn,
.form-status {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(247, 148, 29, 0.34);
}

.form-btn {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #ffe2b8;
  font-size: 0.92rem;
  font-weight: 800;
}

.footer {
  padding: 54px 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer-content {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer img {
  width: 140px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.footer p {
  max-width: 560px;
  margin-bottom: 0;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-meta a {
  color: var(--blue);
  font-weight: 800;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--red);
}

.page-hero {
  padding: 104px 0 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(247, 148, 29, 0.24), transparent 30%),
    linear-gradient(135deg, var(--blue-ink), var(--blue));
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.legal-section {
  padding-top: 72px;
}

.legal-content {
  max-width: 900px;
  padding-bottom: 24px;
}

.legal-content h2 {
  margin: 38px 0 12px;
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
  font-size: 1.04rem;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }

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

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

  .nav-links a {
    padding: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .intro-grid,
  .split,
  .industries-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 440px;
  }

  .three-cols,
  .outcome-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric {
    border-bottom: 1px solid var(--line);
  }

  .metric:nth-child(even) {
    border-right: 0;
  }

  .trust-grid {
    grid-template-columns: repeat(5, minmax(140px, 1fr));
    overflow-x: auto;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}

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

  .nav {
    width: min(100% - 24px, 1220px);
  }

  .brand img {
    width: 132px;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero {
    padding: 58px 0 54px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-proof,
  .three-cols,
  .outcome-grid,
  .industry-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-visual img {
    padding: 16px;
  }

  .visual-panel {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 12px;
  }

  .hero-visual::before,
  .panel-bottom {
    display: none;
  }

  .section,
  .cta-section {
    padding: 72px 0;
  }

  .intro-section {
    padding: 60px 0;
  }

  .card,
  .metric {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 42px;
  }

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