:root {
  --ink: #10202f;
  --muted: #5a6874;
  --paper: #fbfcf7;
  --surface: #ffffff;
  --coral: #ff6b4a;
  --cyan: #10c7cf;
  --lime: #cce600;
  --violet: #6c63ff;
  --line: rgba(16, 32, 47, 0.12);
  --shadow: 0 24px 70px rgba(16, 32, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 18px 20px auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(16, 32, 47, 0.12);
  backdrop-filter: blur(20px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-4px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--surface);
  background: linear-gradient(135deg, var(--coral), var(--violet));
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(16, 32, 47, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(16, 32, 47, 0.07);
  color: var(--ink);
}

.site-nav .nav-cta {
  color: var(--surface);
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--surface);
  transition: transform 0.2s ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 252, 247, 0.98) 0%, rgba(251, 252, 247, 0.88) 36%, rgba(251, 252, 247, 0.24) 67%, rgba(251, 252, 247, 0.02) 100%),
    linear-gradient(180deg, rgba(251, 252, 247, 0.3), rgba(251, 252, 247, 0.92));
}

.hero-content {
  padding: 160px 0 76px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  color: var(--surface);
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(16, 32, 47, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 32, 47, 0.14);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 56px;
}

.hero-stats div {
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(16, 32, 47, 0.09);
  backdrop-filter: blur(16px);
}

.hero-stats strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 104px 0;
}

.intro-band {
  background: var(--ink);
  color: var(--surface);
}

.intro-band .eyebrow {
  color: var(--lime);
}

.intro-grid,
.split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: start;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.intro-band .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  display: block;
  max-width: 860px;
  margin-bottom: 38px;
}

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

.service-card,
.proof-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(16, 32, 47, 0.06);
}

.service-card {
  min-height: 286px;
  padding: 26px;
}

.service-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 48px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-weight: 800;
}

.service-card:nth-child(2) .icon {
  background: #8df0f3;
}

.service-card:nth-child(3) .icon {
  color: var(--surface);
  background: var(--coral);
}

.service-card:nth-child(4) .icon {
  color: var(--surface);
  background: var(--violet);
}

.service-card p,
.proof-card p,
.timeline-item p,
.testimonial span,
.site-footer p {
  color: var(--muted);
}

.process-section {
  background: #edf9f8;
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(16, 32, 47, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.timeline-item span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--surface);
  background: var(--ink);
  font-weight: 800;
}

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

.industry-pill {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 22px;
  border-radius: 8px;
  color: var(--surface);
  background: var(--ink);
  font-size: 24px;
  font-weight: 800;
}

.industry-pill:nth-child(2n) {
  color: var(--ink);
  background: var(--lime);
}

.industry-pill:nth-child(3n) {
  background: var(--coral);
}

.industry-pill:nth-child(4n) {
  background: var(--cyan);
}

.proof-section {
  background: var(--ink);
}

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

.proof-card {
  min-height: 280px;
  padding: 28px;
}

.proof-card.accent {
  grid-column: span 2;
  color: var(--surface);
  background: linear-gradient(135deg, #1d3145, #263c8f);
}

.proof-card.accent .eyebrow {
  color: var(--lime);
}

.testimonial-section {
  background: #fff5ef;
}

.testimonial {
  max-width: 920px;
}

.testimonial p {
  margin: 0 0 28px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 800;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.contact-section {
  background: var(--paper);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink);
  background: #f7f9f2;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(16, 199, 207, 0.14);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 34px 0;
  color: var(--surface);
  background: var(--ink);
}

.footer-stack {
  display: grid;
  gap: 26px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer a:last-child,
.footer-links a {
  color: var(--lime);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
}

.footer-legal-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-legal-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.45;
}

.footer-legal-info p:last-child {
  grid-column: 1 / -1;
}

.legal-page {
  background: #f7f9f2;
}

.legal-hero {
  padding: 148px 0 52px;
  color: var(--surface);
  background: var(--ink);
}

.legal-hero h1 {
  max-width: 980px;
  margin-top: 28px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 800;
}

.legal-section {
  padding: 56px 0 96px;
}

.legal-document {
  max-width: 920px;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(16, 32, 47, 0.06);
}

.legal-document h2 {
  margin: 36px 0 14px;
  font-size: 22px;
  line-height: 1.2;
}

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

.legal-document p {
  margin: 0 0 14px;
  color: #344555;
  font-size: 16px;
}

.legal-pretext {
  white-space: pre-wrap;
  color: #344555;
  font-size: 16px;
  line-height: 1.7;
}

.legal-offer-document {
  max-width: 980px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 980px) {
  .site-header {
    inset: 12px 14px auto;
    width: calc(100% - 28px);
    border-radius: 24px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(251, 252, 247, 0.98) 0%, rgba(251, 252, 247, 0.9) 48%, rgba(251, 252, 247, 0.24) 100%);
  }

  .hero-image {
    object-position: 63% center;
  }

  .intro-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

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

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

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding: 136px 0 40px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-copy,
  .section-lead {
    font-size: 17px;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .hero-stats,
  .service-grid,
  .proof-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: 92px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 28px;
  }

  .service-card {
    min-height: auto;
  }

  .service-card .icon {
    margin-bottom: 34px;
  }

  .proof-card.accent {
    grid-column: auto;
  }

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

  .industry-pill {
    min-height: 78px;
    font-size: 22px;
  }

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

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

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

  .footer-legal-info p:last-child {
    grid-column: auto;
  }

  .legal-hero {
    padding-top: 126px;
  }

  .legal-document {
    padding: 28px 18px;
  }
}
