:root {
  --ink: #111827;
  --muted: #5b6472;
  --line: #d9e0e8;
  --panel: #f5f7fa;
  --white: #ffffff;
  --navy: #17324d;
  --blue: #0f6fb4;
  --yellow: #f4b942;
  --green: #167a5a;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(6, 12, 20, 0.36);
  backdrop-filter: blur(8px);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.1);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 158px;
}

.brand-logo {
  width: 138px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.26));
}

.brand:has(.brand-logo) .brand-mark {
  display: none;
}

.brand:has(.brand-logo) .brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid currentColor;
  font-weight: 800;
}

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

.brand strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  font-size: 11px;
  opacity: 0.76;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  opacity: 0.88;
}

.nav a:hover {
  opacity: 1;
}

.header-call {
  border: 1px solid currentColor;
  padding: 10px 15px;
  font-weight: 800;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

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

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 19, 31, 0.9) 0%, rgba(9, 19, 31, 0.72) 42%, rgba(9, 19, 31, 0.2) 74%, rgba(9, 19, 31, 0.06) 100%),
    linear-gradient(180deg, rgba(9, 19, 31, 0.42) 0%, rgba(9, 19, 31, 0.04) 34%, rgba(9, 19, 31, 0.48) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(700px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 92px;
}

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: 0;
}

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

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

.hero-copy {
  width: min(590px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.btn.primary {
  background: var(--yellow);
  color: #17202c;
}

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

.trust-row {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
}

.trust-row span {
  border-left: 3px solid var(--yellow);
  padding-left: 10px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.metrics div {
  min-height: 156px;
  padding: 30px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
}

.metrics span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.section,
.split-section,
.contact-section,
.cta-band {
  padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.split-section p,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
}

.featured-offer {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: stretch;
  margin-bottom: 24px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(15, 111, 180, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: var(--shadow);
}

.featured-offer h3 {
  margin-bottom: 10px;
  font-size: clamp(34px, 4vw, 52px);
}

.featured-offer p {
  margin-bottom: 0;
  color: var(--muted);
}

.offer-subhead {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-price {
  margin-bottom: 22px;
  padding: 18px;
  border-left: 4px solid var(--yellow);
  background: var(--panel);
  color: var(--ink);
}

.offer-price span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-price strong {
  display: block;
  margin-top: 6px;
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
}

.offer-includes {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.offer-includes h4 {
  margin: 0 0 12px;
  font-size: 15px;
  text-transform: uppercase;
}

.offer-includes ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 700;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}

.plan-card-pro {
  border-color: rgba(15, 111, 180, 0.34);
  box-shadow: var(--shadow);
}

.plan-header p:not(.eyebrow) {
  color: var(--muted);
}

.plan-price {
  margin: 18px 0 22px;
  padding: 18px;
  border-left: 4px solid var(--yellow);
  background: var(--panel);
}

.plan-price span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-price strong {
  display: block;
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
}

.plan-price strong span {
  display: inline;
  color: var(--muted);
  font-size: 16px;
}

.plan-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 700;
}

.plan-fit {
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.enterprise-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding: 18px 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
}

.enterprise-note strong {
  color: var(--yellow);
}

.scope-panel {
  margin-top: 24px;
  padding: 26px 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.scope-panel h3 {
  margin-bottom: 18px;
}

.scope-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.scope-list span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  background: var(--panel);
  font-size: 14px;
  font-weight: 800;
}

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

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  background: var(--panel);
}

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

.industry-list span {
  padding: 18px;
  border-left: 4px solid var(--blue);
  background: var(--white);
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.05);
}

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

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

.steps article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: var(--navy);
}

.cta-band h2 {
  width: min(780px, 100%);
  margin-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 80px);
  background: var(--panel);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  font-weight: 800;
}

.contact-details a {
  color: var(--blue);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(15, 111, 180, 0.18);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #0d1724;
  color: var(--white);
}

.footer p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav,
  .header-call {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(9, 19, 31, 0.9), rgba(9, 19, 31, 0.56));
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 118px;
  }

  .metrics,
  .featured-offer,
  .plan-grid,
  .steps,
  .split-section,
  .contact-section,
  .industry-list {
    grid-template-columns: 1fr;
  }

  .metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cta-band,
  .enterprise-note,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 13px;
  }

  h1 {
    font-size: 37px;
  }

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

  .btn {
    width: 100%;
  }

  .steps article,
  .contact-form {
    padding: 22px;
  }
}
