@font-face {
  font-family: "InterVar";
  src: url("https://fonts.gstatic.com/s/inter/v13/UcCO3Fwr0Z0o8acwDI3T.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #0f172a;
  --muted: #4b5563;
  --paper: #f8fafc;
  --accent: #2f6fed;
  --accent-dark: #1f3f9c;
  --sunset: #ffb36a;
  --mint: #d5f4ea;
  --lavender: #eef0ff;
  --shadow: rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "InterVar", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  flex: 1;
}

.split-media {
  flex: 1;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--paper);
}

.section.tone {
  background: var(--lavender);
}

.section.mint {
  background: var(--mint);
}

.section.visual {
  background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)),
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8fafc;
}

.section.visual p,
.section.visual .eyebrow,
.section.visual .inline-link {
  color: #e2e8f0;
}

.section.visual .btn.outline {
  border-color: #f8fafc;
  color: #f8fafc;
}

.eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn.outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn.light {
  background: #fff;
  color: var(--ink);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(47, 111, 237, 0.12);
  color: var(--accent-dark);
  font-size: 0.9rem;
}

.cta-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-row.spaced {
  margin-top: 18px;
}

.card {
  padding: 22px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
}

.price-tag {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list span {
  font-weight: 600;
  color: var(--accent-dark);
}

.form-shell {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 40px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  font-family: inherit;
  font-size: 0.98rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  color: #fff;
  padding: 14px 0;
  z-index: 5;
}

.sticky-cta .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.footer {
  padding: 48px 0 72px;
  background: #0b1120;
  color: #cbd5f5;
}

.footer a {
  color: #cbd5f5;
}

.footer .nav-links {
  gap: 14px;
  font-size: 0.9rem;
}

.hero-photo {
  position: relative;
}

.hero-photo::after {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 40%;
  height: 40%;
  background: var(--sunset);
  z-index: -1;
  border-radius: 26px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 24px var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-hero {
  padding: 64px 0 40px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 14px 26px var(--shadow);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .sticky-cta .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 420px;
  }
}
