@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  --bg: #f6f3ef;
  --surface: #ffffff;
  --ink: #1f2328;
  --muted: #5d6470;
  --accent: #3b5bdb;
  --accent-dark: #2b3a8c;
  --warm: #f1e2cf;
  --cool: #e6edf7;
  --line: rgba(31, 35, 40, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  text-transform: lowercase;
}

.hero {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(246, 243, 239, 0.8)), url("https://images.unsplash.com/photo-1526378722484-cc5c3f27f7a5?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  padding: 44px 0 72px;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 620px;
}

.eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.3rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-ghost {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.section {
  padding: 68px 0;
  position: relative;
}

.section.alt {
  background: var(--surface);
}

.section.layered::before {
  content: "";
  position: absolute;
  inset: 30px;
  border-radius: 28px;
  background: rgba(59, 91, 219, 0.08);
  z-index: 0;
}

.section.layered .container {
  position: relative;
  z-index: 1;
}

.layered-card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
  margin-bottom: 18px;
}

.section.warm {
  background: var(--warm);
}

.section.cool {
  background: var(--cool);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface);
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.timeline-index {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-tag {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  background: var(--surface);
  padding: 28px;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

.sticky-card {
  align-self: flex-start;
  position: sticky;
  top: 24px;
  background: var(--accent);
  color: #fff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  padding: 32px 0 44px;
  background: #12151a;
  color: #d4d6dc;
}

.footer a {
  color: inherit;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  left: 18px;
  background: #12151a;
  color: #f6f7fb;
  padding: 18px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #f0c56b;
}

.cookie-reject {
  background: #2b2f36;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-title {
  margin-top: 12px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-grid .card {
    flex: 1 1 240px;
  }

  .hero-content {
    max-width: 660px;
  }

  .cookie-banner {
    left: auto;
    max-width: 520px;
  }
}
