:root {
  color-scheme: light;
  --ink: #1e1b1b;
  --muted: #5f5959;
  --accent: #0f6e6a;
  --accent-soft: #e5f3f1;
  --bg: #f8f6f4;
  --paper: #ffffff;
  --sand: #efe9e4;
  --rose: #f7ecea;
  --shadow: 0 20px 45px rgba(23, 18, 18, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 10px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-card {
  background: var(--paper);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-grid h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0;
}

.hero-grid p {
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease;
}

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

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 50px 0;
}

.section-alt {
  background: var(--paper);
}

.section-sand {
  background: var(--sand);
}

.section-rose {
  background: var(--rose);
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-block {
  background: var(--paper);
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.asym-offset {
  margin-left: clamp(0px, 6vw, 70px);
}

.split-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--paper);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
}

.kpi-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kpi {
  background: var(--accent-soft);
  border-radius: 14px;
  padding: 18px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e7ded8;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-item span {
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: var(--paper);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d9d0ca;
  font-size: 15px;
  background: #fff;
}

.footer {
  padding: 40px 0;
  background: #141312;
  color: #f5f1ee;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--paper);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-bg {
  background: url("../images/texture-wave.svg") no-repeat center / cover;
}

@media (min-width: 860px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1.1;
  }

  .hero-grid {
    flex: 1;
  }

  .asym-row {
    flex-direction: row;
  }

  .split-panel {
    flex-direction: row;
  }

  .card-stack,
  .pricing-grid,
  .kpi-row,
  .footer-links,
  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .pricing-item,
  .kpi,
  .info-grid > div {
    flex: 1 1 240px;
  }

  .form-wrap {
    padding: 36px;
  }

  .footer-links {
    justify-content: space-between;
  }
}
