/* Base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1d1b1a;
  background: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #7c6f68;
}

.title-xl {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.1;
  margin: 0.6rem 0 1rem;
}

.title-lg {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin: 0 0 1rem;
}

.text-lg {
  font-size: 1.1rem;
  line-height: 1.7;
}

.btn {
  border: none;
  background: #1d1b1a;
  color: #fff;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-outline {
  background: transparent;
  color: #1d1b1a;
  border: 1px solid #1d1b1a;
}

.btn-muted {
  background: #f0e8df;
  color: #1d1b1a;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 1rem;
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.75rem;
  background: #f0e8df;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 2.5rem;
  align-items: stretch;
  padding: 2rem 0 4rem;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-image {
  flex: 0.9;
  position: relative;
  min-height: 360px;
  border-radius: 26px;
  overflow: hidden;
  background: #d9d2c9;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.floating-card {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 1rem 1.2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  width: 70%;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: #f0e8df;
}

.section-dark {
  background: #1d1b1a;
  color: #f8f4f0;
}

.section-backdrop {
  background-color: #3a3a3a;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fdf8f2;
}

.section-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 27, 26, 0.55);
}

.section-backdrop .container {
  position: relative;
}

.split {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.offset-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.image-frame {
  background: #ded7d0;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 22px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.card-image {
  background: #d8d1c8;
  border-radius: 16px;
  overflow: hidden;
  height: 160px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.testimonial:last-child {
  border-bottom: none;
}

.tag {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #f0e8df;
  font-size: 0.8rem;
}

.pricing-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 24px;
  padding: 1.6rem;
  border: 1px solid #efe7de;
}

.price {
  font-size: 1.6rem;
  font-weight: 600;
}

.form-wrap {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.form-card {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-size: 0.9rem;
  color: #6f645d;
}

input,
select,
textarea {
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #d9d2c9;
  font-size: 0.95rem;
  width: 100%;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sticky-cta button {
  border-radius: 14px;
  padding: 0.7rem 1rem;
}

.footer {
  padding: 3rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem 1.2rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  max-width: 360px;
  z-index: 50;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.page-hero {
  padding: 3rem 0 2rem;
}

.legal-text {
  max-width: 820px;
  line-height: 1.7;
}

@media (max-width: 880px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .sticky-cta {
    right: 12px;
  }
}
