:root {
  --bg: #eef8ff;
  --bg-strong: #dff2ff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --line: rgba(12, 74, 110, 0.12);
  --text: #0f2f44;
  --muted: #4b6b7d;
  --primary: #0ea5e9;
  --primary-deep: #0c84ba;
  --accent: #f97316;
  --accent-soft: #fff1e8;
  --shadow: 0 22px 50px rgba(17, 74, 108, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.14), transparent 28%),
    linear-gradient(180deg, #f8fcff 0%, var(--bg) 45%, #f6fbff 100%);
  line-height: 1.6;
}

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

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

.site-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(12, 74, 110, 0.08);
}

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

.brand img {
  width: 42px;
  height: 42px;
}

.nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 20px;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--primary-deep);
}

.section,
.section-small {
  padding: 88px 0 0;
}

.testimonials {
  padding-bottom: 28px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.benchmark-copy h2,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-heading h2,
.benchmark-copy h2,
.cta-panel h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.lede,
.section-heading p,
.benchmark-copy p,
.cta-panel p,
.footer p {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff9250);
  color: #fff;
  box-shadow: 0 16px 28px rgba(249, 115, 22, 0.24);
}

.btn-secondary {
  border: 1px solid rgba(14, 165, 233, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-deep);
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-visual {
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  border-bottom: 1px solid var(--line);
}

.hero-stats {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.hero-stats article,
.proof-card,
.service-card,
.case-card,
.metric,
.quote-card,
.cta-panel {
  transition:
    box-shadow 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.hero-stats article strong,
.proof-card strong,
.case-top strong,
.metric span,
.footer strong {
  display: block;
}

.hero-stats article strong {
  font-size: 1.25rem;
}

.hero-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

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

.proof-card,
.service-card,
.case-card,
.metric,
.quote-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 24px rgba(12, 74, 110, 0.06);
}

.proof-card span,
.case-top .tag,
.metric strong {
  color: var(--primary-deep);
  font-weight: 800;
}

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

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

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

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

.section-accent {
  position: relative;
}

.section-accent::before {
  content: "";
  position: absolute;
  inset: 40px -24px -24px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.06), rgba(255, 255, 255, 0.3));
  z-index: -1;
}

.case-card ul {
  padding-left: 18px;
  margin: 14px 0 0;
  color: var(--muted);
}

.case-top {
  margin-bottom: 10px;
}

.tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.1);
  font-size: 0.8rem;
}

.benchmark-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.grid-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.metric strong {
  font-size: 1.6rem;
  letter-spacing: -0.06em;
}

.benchmark-visual {
  padding: 18px;
}

.industry-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-row span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-weight: 600;
}

.quote-card p {
  margin-top: 0;
  font-size: 1rem;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(255, 255, 255, 0.92)),
    var(--surface-strong);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 56px 0 24px;
  color: var(--muted);
}

.proof-card:hover,
.service-card:hover,
.case-card:hover,
.metric:hover,
.quote-card:hover,
.cta-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 36px rgba(12, 74, 110, 0.12);
  border-color: rgba(14, 165, 233, 0.2);
}

@media (max-width: 1080px) {
  .hero,
  .benchmark-layout,
  .grid-three,
  .grid-two,
  .proof-strip,
  .grid-metrics,
  .cta-panel,
  .footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-strip {
    display: grid;
  }

  .footer {
    display: flex;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 14px;
  }

  .topbar {
    position: static;
    border-radius: 28px;
    padding: 16px;
  }

  .nav {
    gap: 12px 16px;
  }

  .section,
  .section-small {
    padding-top: 64px;
  }

  .testimonials {
    padding-bottom: 20px;
  }

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

  .section-heading h2,
  .benchmark-copy h2,
  .cta-panel h2 {
    font-size: 2rem;
  }

  .proof-card,
  .service-card,
  .case-card,
  .metric,
  .quote-card,
  .cta-panel {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
