* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0f1a24;
  --muted: #5a6b7a;
  --accent: #2f6af7;
  --accent-dark: #1b4bd1;
  --sand: #f4f0ea;
  --sky: #e7f0ff;
  --mint: #e6f5ef;
  --paper: #ffffff;
  --shadow: 0 18px 40px rgba(10, 20, 35, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 7vw 10px;
  gap: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom: 1px solid var(--accent);
}

.cta-main {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-main:hover {
  background: var(--accent-dark);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  box-shadow: var(--shadow);
}

.section {
  padding: 70px 7vw;
}

.section.sand {
  background: var(--sand);
}

.section.sky {
  background: var(--sky);
}

.section.mint {
  background: var(--mint);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content,
.split-media {
  flex: 1;
}

.split-content h1,
.split-content h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.split-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.split-content p {
  color: var(--muted);
  margin-bottom: 14px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--paper);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metric {
  background: var(--paper);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.form-wrap {
  background: var(--paper);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1d7de;
  font-size: 1rem;
}

button {
  border: none;
  cursor: pointer;
}

.cta-secondary {
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  padding: 40px 7vw 60px;
  background: #0b1520;
  color: #e9eef4;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer a {
  color: inherit;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  background: var(--paper);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  z-index: 25;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e0e6ee;
  color: var(--ink);
}

.page-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.plain-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.contact-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .metrics {
    flex-direction: row;
  }
}
