:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #dfe5ef;
  --blue: #1d4ed8;
  --blue-dark: #153eaa;
  --green: #16a34a;
  --cyan: #0891b2;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

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

a {
  color: inherit;
}

[id] {
  scroll-margin-top: 118px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(223, 229, 239, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.button-row,
.panel-top,
.site-footer,
.contact-note {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 118px;
  height: auto;
}

.nav-links {
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a,
.header-cta {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 700;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 90px);
  min-height: calc(100svh - 90px);
  padding-top: 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.hero-copy,
.section-heading p,
.split-section p,
.contact-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-copy {
  margin-bottom: 14px;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.company-line {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.company-line a,
.site-footer a {
  color: var(--blue);
  font-weight: 800;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(29, 78, 216, 0.24);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.button-secondary:hover {
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.hero-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  box-shadow: var(--shadow);
}

.panel-top {
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.panel-logo {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.offer-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #ffffff;
}

.offer-card p,
.offer-card strong {
  display: block;
  margin: 0;
}

.offer-card p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.offer-card strong {
  margin-top: 8px;
  font-size: 1.05rem;
}

.offer-card.featured {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  border-color: rgba(29, 78, 216, 0.28);
  background: var(--surface-soft);
}

.offer-card.featured span {
  align-self: flex-start;
  white-space: nowrap;
  border-radius: 999px;
  padding: 7px 10px;
  background: #ffffff;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.pipeline-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.pipeline-preview div {
  min-height: 84px;
  border-radius: var(--radius);
  padding: 14px;
  background: #111827;
  color: #ffffff;
}

.pipeline-preview span,
.pipeline-preview strong {
  display: block;
}

.pipeline-preview span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.pipeline-preview strong {
  margin-top: 9px;
  font-size: 1.5rem;
}

.split-section,
.contact-section,
.why-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.split-section {
  border-top: 1px solid var(--line);
}

.feature-list,
.service-grid,
.process-grid,
.why-list {
  display: grid;
  gap: 14px;
}

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

.feature-item,
.why-list div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #ffffff;
  font-weight: 800;
}

.feature-item::before,
.why-list div::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--cyan);
  vertical-align: 1px;
}

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

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

.service-card,
.process-step,
.contact-card,
.why-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.service-card {
  min-height: 220px;
  padding: 24px;
}

.service-card p,
.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.card-icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
}

.process-section {
  border-top: 1px solid var(--line);
}

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

.process-step {
  padding: 22px;
}

.process-step span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--blue);
  font-weight: 800;
}

.why-section {
  align-items: stretch;
}

.why-card {
  padding: 28px;
  background: var(--ink);
  color: #ffffff;
}

.why-logo {
  display: block;
  width: 128px;
  height: auto;
  margin-bottom: 34px;
}

.why-card .eyebrow {
  color: #8dd7ff;
}

.why-card h2 {
  margin-bottom: 0;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.contact-section {
  align-items: start;
}

.contact-note {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
  color: var(--muted);
}

.contact-note a {
  color: var(--blue);
  font-weight: 800;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.contact-card h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.contact-card p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.contact-logo {
  display: block;
  width: 134px;
  height: auto;
}

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

.site-footer {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-logo {
  display: block;
  width: 104px;
  height: auto;
}

@media (max-width: 900px) {
  .site-header {
    border-radius: 16px;
    gap: 16px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split-section,
  .contact-section,
  .why-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 60px;
  }

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

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: min(100% - 20px, 1160px);
    margin-top: 10px;
    padding: 9px 10px;
  }

  .header-cta {
    display: none;
  }

  .brand-logo {
    width: 104px;
  }

  .section {
    width: min(100% - 28px, 1160px);
    padding: 58px 0;
  }

  .hero {
    gap: 36px;
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

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

  .offer-grid,
  .pipeline-preview,
  .feature-list,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .offer-card.featured {
    display: block;
  }

  .offer-card.featured span {
    display: inline-flex;
    margin-top: 14px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    width: min(100% - 28px, 1160px);
  }
}

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

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