* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f6f2;
  --ink: #1f2a2e;
  --muted: #5c6b73;
  --brand: #2b5c66;
  --brand-light: #cde2e6;
  --accent: #d08b4a;
  --panel: #ffffff;
  --shadow: 0 18px 45px rgba(31, 42, 46, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: var(--brand);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 18px;
  gap: 24px;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-cta {
  padding: 10px 18px;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 58px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.split-text h1,
.split-text h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 16px;
}

.split-text p {
  color: var(--muted);
  margin-bottom: 16px;
}

.section {
  border-top: 1px solid rgba(31, 42, 46, 0.08);
}

.section.alt {
  background: #ffffff;
}

.section.deep {
  background: #edf3f4;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.pill {
  background: var(--brand-light);
  color: var(--brand);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.primary {
  background: var(--brand);
  color: #fff;
}

.btn.outline {
  border-color: var(--brand);
  color: var(--brand);
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--panel);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.card img {
  width: 64px;
  height: 64px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  gap: 12px;
}

.price-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.highlight {
  font-weight: 700;
  font-size: 1.1rem;
}

.form-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(31, 42, 46, 0.2);
  font-family: inherit;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 10;
}

.footer {
  border-top: 1px solid rgba(31, 42, 46, 0.15);
  padding: 36px 0 48px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}

.banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 90px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.banner-actions {
  display: flex;
  gap: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  margin-bottom: 14px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.split-media img,
.split-media svg {
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
}

@media (max-width: 760px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .banner {
    bottom: 80px;
  }
}
