:root {
  --ink: #213343;
  --muted: #516474;
  --cream: #fff4e6;
  --cream-strong: #ffead4;
  --coral: #ff5c35;
  --coral-dark: #d44325;
  --teal: #00a4bd;
  --yellow: #f5c26b;
  --white: #ffffff;
  --line: #d9cbbd;
  --shadow: 0 24px 60px rgba(33, 51, 67, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

a {
  color: inherit;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 244, 230, 0.94);
  border-bottom: 1px solid rgba(217, 203, 189, 0.8);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(33, 51, 67, 0.14);
}

.btn-primary {
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral-dark);
}

.btn-primary:hover {
  background: var(--coral-dark);
}

.btn-secondary {
  color: var(--ink);
  background: var(--white);
}

.btn-outline {
  color: var(--ink);
  background: transparent;
}

.hero {
  overflow: hidden;
  padding: 72px 0 84px;
  background:
    radial-gradient(circle at 85% 8%, rgba(0, 164, 189, 0.16), transparent 24%),
    linear-gradient(180deg, var(--cream) 0%, #fffaf4 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.8vw, 5.8rem);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.lead {
  max-width: 600px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-row span {
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: 10% -8% -8% 8%;
  z-index: 0;
  content: "";
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 28px;
  transform: rotate(3deg);
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 28px 40px rgba(33, 51, 67, 0.2));
}

.customer-strip {
  padding: 34px 0;
  background: var(--ink);
  color: var(--white);
}

.customer-strip .container {
  display: grid;
  gap: 18px;
  text-align: center;
}

.customer-strip p {
  color: #dbe6ee;
  font-weight: 700;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.logo-row span {
  min-width: 130px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  font-weight: 900;
}

.section {
  padding: 92px 0;
}

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

.section-heading p,
.body-copy,
.contact-box p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading.compact {
  max-width: 690px;
}

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

.product-card {
  min-height: 320px;
  padding: 30px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 10px 10px 0 var(--cream-strong);
}

.product-card.accent {
  background: #e5f8fb;
  box-shadow: 10px 10px 0 rgba(0, 164, 189, 0.18);
}

.product-card p {
  color: var(--muted);
}

.icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--coral-dark);
  background: #ffe3d9;
  border-radius: 14px;
}

.icon svg,
.mini-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.warm-band {
  background: var(--cream-strong);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.feature-list > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(33, 51, 67, 0.16);
  border-radius: 10px;
}

.feature-list p {
  color: var(--muted);
}

.mini-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--teal);
  background: var(--white);
  border-radius: 10px;
}

.image-card {
  padding: 18px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

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

.steps article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

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

.proof-band {
  color: var(--white);
  background: var(--ink);
}

.proof-band .eyebrow,
.proof-band h2 {
  color: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 26px;
  align-items: end;
}

.metric {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1;
}

.metric span {
  color: #dbe6ee;
}

.contact-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  padding: 42px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 12px 12px 0 var(--cream-strong);
}

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

.form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.form .full,
.form .btn {
  grid-column: 1 / -1;
}

.input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fffaf4;
  border: 1px solid #b9a99a;
  border-radius: 8px;
  font: inherit;
}

.input:focus {
  outline: 3px solid rgba(0, 164, 189, 0.24);
  border-color: var(--teal);
}

.textarea {
  min-height: 124px;
  resize: vertical;
}

.footer {
  padding: 34px 0;
  background: #fffaf4;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .split,
  .contact-box,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

  .product-grid,
  .steps {
    grid-template-columns: 1fr;
  }
}

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

  .nav {
    min-height: 68px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 48px 0 58px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .btn,
  .cta {
    width: 100%;
  }

  .product-card,
  .contact-box {
    padding: 24px;
  }

  .form {
    grid-template-columns: 1fr;
  }

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