:root {
  --ink: #222426;
  --muted: #626a70;
  --line: #dfe3e6;
  --surface: #f5f6f3;
  --soft: #eef2ee;
  --white: #ffffff;
  --accent: #527c6d;
  --accent-dark: #263f38;
  --warm: #d8b15f;
  --blue: #506a8f;
  --rose: #ad6b5f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand img {
  display: block;
  width: 82px;
  height: auto;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

nav a,
.button,
address a {
  text-decoration: none;
}

nav a:hover,
address a:hover {
  color: var(--accent-dark);
}

.hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 7vw, 86px) clamp(22px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(238, 242, 238, 0.72)),
    var(--surface);
}

.hero-content {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(520px, 720px) minmax(320px, 420px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(36px, 6vw, 78px);
}

.hero-copy {
  min-width: 0;
  max-width: 720px;
}

.hero-panel {
  width: 100%;
  max-width: 420px;
  padding: clamp(24px, 3vw, 34px);
  color: var(--white);
  background: var(--accent-dark);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.hero-logo {
  display: block;
  width: min(190px, 70%);
  height: auto;
  margin: 0 auto 24px;
  filter: invert(1);
}

.hero-metric {
  padding: 20px;
  margin-bottom: 14px;
  color: var(--ink);
  background: var(--warm);
  border-radius: 8px;
}

.hero-metric strong,
.hero-metric span {
  display: block;
}

.hero-metric strong {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.hero-metric span {
  margin-top: 6px;
  font-weight: 700;
}

.outcome-stack {
  display: grid;
  gap: 10px;
}

.outcome-stack span {
  display: block;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--warm);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(44px, 4.6vw, 64px);
  line-height: 1.04;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
}

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

.lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 700;
}

.button.primary {
  color: var(--white);
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
}

.section {
  padding: clamp(48px, 8vw, 92px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 30px;
}

.section-heading p,
.bubble p,
.plan p,
.privacy p,
.contact p,
.step p {
  color: var(--muted);
}

.problem-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 28px;
}

.problem-strip span {
  padding: 10px 14px;
  color: var(--accent-dark);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
}

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

.bubble,
.plan,
.step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.bubble {
  min-height: 176px;
  padding: 24px;
  border-top: 5px solid var(--accent);
}

.bubble:nth-child(2),
.bubble:nth-child(5) {
  background: var(--soft);
}

.bubble:nth-child(3),
.bubble:nth-child(6) {
  border-top-color: var(--rose);
}

.bubble:nth-child(4) {
  border-top-color: var(--warm);
}

.flow {
  background: var(--accent-dark);
  color: var(--white);
}

.flow .eyebrow,
.flow .section-heading p,
.flow .step p {
  color: rgba(255, 255, 255, 0.78);
}

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

.step {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--warm);
  font-weight: 700;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.result-grid span {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  text-align: center;
}

.plans {
  background: var(--surface);
}

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

.plan {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 26px;
}

.plan.featured {
  border-color: var(--accent);
  background: var(--soft);
}

.plan-name {
  margin: 0 0 10px;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
}

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

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

.wide {
  max-width: 920px;
  min-height: auto;
  background: var(--accent-dark);
  color: var(--white);
}

.wide .eyebrow,
.wide p {
  color: rgba(255, 255, 255, 0.78);
}

.privacy {
  background: var(--surface);
}

.privacy p {
  max-width: 860px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 6vw, 84px);
}

address {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-style: normal;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 920px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .hero-content,
  .contact,
  .bubble-grid,
  .steps,
  .plan-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .hero-panel {
    max-width: 420px;
  }

  .plan {
    min-height: auto;
  }
}

@media (min-width: 921px) and (max-width: 1180px) {
  .hero-content {
    grid-template-columns: minmax(460px, 1fr) minmax(300px, 360px);
  }

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