* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2a30;
  --muted: #5c6b73;
  --accent: #1d6f6a;
  --accent-soft: #e4f3f0;
  --sun: #f4d35e;
  --sand: #f7f3ef;
  --deep: #0f3f3c;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  padding: 24px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 20px;
}

.nav-links a:hover {
  background: var(--accent-soft);
}

.section {
  padding: 64px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: column;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.highlight {
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 16px;
  display: inline-block;
  font-size: 0.85rem;
  color: var(--deep);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.sun {
  background: var(--sun);
  color: var(--ink);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--sand);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 8px 12px;
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 0.85rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 6px;
}

.quote {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 12px 16px;
  border-radius: 12px;
}

.form-card {
  background: var(--accent-soft);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c8d7d4;
  font-size: 1rem;
  width: 100%;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.footer {
  padding: 32px 6%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--deep);
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--ink);
  color: var(--white);
  padding: 16px;
  border-radius: 16px;
  display: none;
  z-index: 12;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.layer-box {
  background: var(--accent-soft);
  padding: 18px;
  border-radius: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-title {
  font-size: 2.3rem;
  line-height: 1.2;
}

.section-title {
  font-size: 1.6rem;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accent-bg {
  background: var(--accent-soft);
}

.dark-bg {
  background: var(--deep);
  color: var(--white);
}

.dark-bg .btn.outline {
  color: var(--white);
  border-color: var(--white);
}

.notice {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .two-column {
    flex-direction: row;
  }
}
