/* Base */
:root {
  color-scheme: light;
  --ink: #1a1b1f;
  --muted: #5a626d;
  --accent: #0b6e6b;
  --accent-2: #e96c2c;
  --bg: #f8f5f1;
  --soft: #eef1f4;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(26, 27, 31, 0.08);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom: 2px solid var(--accent);
  color: var(--ink);
}

main {
  flex: 1;
}

.section {
  padding: 70px 32px;
}

.section.alt {
  background: var(--soft);
}

.section.dark {
  background: #142026;
  color: #f7f8fa;
}

.section.dark .muted {
  color: #c8d1da;
}

.section .inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .copy,
.split .media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

.section.dark p {
  color: #cdd7df;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  flex: 1 1 240px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: var(--accent-2);
  font-size: 1.1rem;
}

.pill {
  background: rgba(11, 110, 107, 0.1);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  width: fit-content;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.quote {
  font-style: italic;
  background: rgba(11, 110, 107, 0.08);
  padding: 18px 22px;
  border-radius: var(--radius);
  color: #1d2c30;
}

.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7dce2;
  font-size: 0.96rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

footer {
  padding: 40px 32px;
  background: #0d1419;
  color: #e0e6eb;
}

footer .inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.92rem;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  padding: 8px 14px;
}

.muted {
  color: var(--muted);
}

.page-hero {
  background: linear-gradient(120deg, rgba(11, 110, 107, 0.12), rgba(233, 108, 44, 0.12));
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.detail-box {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .section .inner {
    gap: 40px;
  }

  .nav-links {
    gap: 26px;
  }
}
