* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: #1b1b1b;
  background: #f5f2ee;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0;
  position: relative;
  z-index: 5;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: #1b1b1b;
  color: #f5f2ee;
  font-weight: 600;
}

.section {
  padding: 64px 0;
}

.section-tight {
  padding: 48px 0;
}

.section-alt {
  background: #ffffff;
}

.section-dark {
  background: #141414;
  color: #f5f2ee;
}

.section-accent {
  background: #f2ddd0;
}

.section-image {
  background: linear-gradient(90deg, rgba(20, 20, 20, 0.8), rgba(20, 20, 20, 0.4)),
    url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1400&q=80")
    center/cover no-repeat;
  color: #f5f2ee;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 16px;
}

.hero-image,
.inline-image,
.card-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-image {
  min-height: 340px;
  background: url("https://images.unsplash.com/photo-1455390582262-044cdead277a?auto=format&fit=crop&w=900&q=80")
    center/cover no-repeat;
}

.inline-image.one {
  background: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=900&q=80")
    center/cover no-repeat;
  min-height: 260px;
}

.inline-image.two {
  background: url("https://images.unsplash.com/photo-1495446815901-a7297e633e8d?auto=format&fit=crop&w=900&q=80")
    center/cover no-repeat;
  min-height: 260px;
}

.inline-image.three {
  background: url("https://images.unsplash.com/photo-1481627834876-b7833e8f5570?auto=format&fit=crop&w=900&q=80")
    center/cover no-repeat;
  min-height: 280px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.stacked-card {
  margin-top: 16px;
}

.card.dark {
  background: #1e1e1e;
  color: #f5f2ee;
}

.card .price {
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 12px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #e04f2f;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-button.light {
  background: #f5f2ee;
  color: #1b1b1b;
  border: 1px solid #1b1b1b;
}

.cta-inline {
  font-weight: 600;
  border-bottom: 2px solid currentColor;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  list-style: none;
  padding-left: 22px;
  position: relative;
}

.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #e04f2f;
}

.testimonial {
  border-left: 4px solid #e04f2f;
  padding-left: 16px;
  margin-bottom: 18px;
}

.pricing-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1 1 250px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card .cta-button {
  align-self: flex-start;
}

.selection-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.selection-card {
  flex: 1 1 240px;
  border-radius: 18px;
  padding: 18px;
  background: #141414;
  color: #f5f2ee;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.selection-card button {
  align-self: flex-start;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d5d5d5;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: #6b6b6b;
}

.footer {
  padding: 40px 0;
  background: #141414;
  color: #f5f2ee;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  background: #1b1b1b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  z-index: 15;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 80px 0 40px;
}

.page-hero h1 {
  margin-bottom: 10px;
}

.contact-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner {
    right: 12px;
    left: 12px;
  }
}
