* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #121417;
  --muted: #5b6573;
  --accent: #1f6feb;
  --accent-dark: #0f4db8;
  --sand: #f5f2ed;
  --mist: #eef2f6;
  --sunset: #ffe9d2;
  --leaf: #e0f0e8;
  --shadow: 0 18px 45px rgba(16, 24, 40, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  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;
  gap: 40px;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 6vw;
  position: relative;
  z-index: 3;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 15px;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--accent);
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 6vw;
}

.split-section.split-reverse {
  flex-direction: column-reverse;
}

.split-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-content,
.split-media {
  flex: 1;
}

.split-content h1,
.split-content h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 14px;
}

.split-content h3 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 12px;
}

.split-content p {
  color: var(--muted);
  margin-bottom: 14px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: var(--ink);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--mist);
  font-size: 14px;
}

.card-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card {
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card span {
  color: var(--muted);
  font-size: 14px;
}

.pricing {
  font-weight: 700;
  font-size: 20px;
}

.section-tone-sand {
  background: var(--sand);
}

.section-tone-mist {
  background: var(--mist);
}

.section-tone-sunset {
  background: var(--sunset);
}

.section-tone-leaf {
  background: var(--leaf);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.form-card {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7dbe3;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  padding: 40px 6vw 60px;
  background: #0e1116;
  color: #c4c8d0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
  font-size: 14px;
}

.footer strong {
  color: #fff;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 6;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e4e8ef;
  color: var(--ink);
}

@media (min-width: 900px) {
  .split-section {
    padding: 70px 8vw;
  }

  .split-wrap {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }

  .split-section.split-reverse .split-wrap {
    flex-direction: row-reverse;
  }

  .card-group {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }
}
