* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1b17;
  --muted: #6b6158;
  --cream: #f7f2ee;
  --sand: #efe4da;
  --terracotta: #b86a4b;
  --forest: #2f3a31;
  --accent: #b33c2f;
  --line: rgba(31, 27, 23, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

main {
  overflow: hidden;
}

.shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 0 70px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--sand);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(31, 27, 23, 0.12);
}

.hero-card h1 {
  font-size: 40px;
  line-height: 1.15;
}

.hero-card p {
  margin-top: 16px;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--ink);
  color: #fff;
}

.btn.ghost {
  border-color: transparent;
  background: rgba(31, 27, 23, 0.08);
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.floating-label {
  position: absolute;
  bottom: -24px;
  right: 20px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(31, 27, 23, 0.2);
}

.section {
  padding: 70px 0;
  position: relative;
}

.section.light {
  background: #fff;
}

.section.dark {
  background: var(--forest);
  color: #fff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offset {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offset .panel {
  background: var(--sand);
  padding: 24px;
  border-radius: 20px;
  transform: translateX(0);
}

.offset .panel.highlight {
  background: #fff;
  border: 1px solid var(--line);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.price-item span {
  font-weight: 600;
  font-size: 18px;
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.testimonial {
  background: rgba(255, 255, 255, 0.12);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-band {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-band img {
  border-radius: 26px;
}

.form-wrap {
  background: #fff;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 50px 0 70px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(179, 60, 47, 0.3);
  font-size: 14px;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(31, 27, 23, 0.18);
  max-width: 320px;
  border: 1px solid var(--line);
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 50px 0 20px;
}

.page-hero h1 {
  font-size: 34px;
}

.page-hero p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 680px;
}

.side-note {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.data-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal h2 {
  font-size: 20px;
  margin-top: 20px;
}

.legal p {
  color: var(--muted);
}

@media (min-width: 900px) {
  .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1.1;
  }

  .hero-image {
    flex: 0.9;
  }

  .split,
  .offset,
  .two-col {
    flex-direction: row;
    align-items: center;
  }

  .split > * {
    flex: 1;
  }

  .offset .panel {
    width: 45%;
  }

  .offset .panel.highlight {
    width: 55%;
    transform: translateX(40px);
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .image-band {
    flex-direction: row;
  }
}
