@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #f6f4f0;
  --ink: #1c1c1c;
  --muted: #5f6368;
  --accent: #2b6bff;
  --accent-dark: #1d4ed8;
  --soft: #ffffff;
  --line: #e4dfd7;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--ink);
}

.section {
  padding: 70px 0;
  position: relative;
}

.section.alt {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section.layered::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 32px;
  background: rgba(43, 107, 255, 0.08);
  z-index: 0;
}

.section.layered .container {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content,
.split-media {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  color: var(--muted);
  margin-bottom: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(43, 107, 255, 0.3);
}

.btn.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent-dark);
}

.btn:hover {
  transform: translateY(-2px);
}

.pill {
  display: inline-flex;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list-item {
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.price {
  font-weight: 700;
  color: var(--ink);
  margin-top: 6px;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-dark);
}

.quote {
  font-style: italic;
  background: #fff;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: #fff;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(29, 78, 216, 0.35);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 8px 10px;
  cursor: pointer;
  background: #fff;
}

.cookie-actions button.accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.bg-pattern {
  background: linear-gradient(120deg, rgba(43, 107, 255, 0.08), rgba(255, 255, 255, 0.4)),
    url("https://images.unsplash.com/photo-1521790945508-bf2a36314e85?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }
}
