* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1c1b1a;
  background: #f7f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

header {
  padding: 32px 6vw 16px;
  position: relative;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.2rem;
}

.nav-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #1c1b1a;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-bottom: 80px;
}

.section {
  padding: 0 6vw;
  position: relative;
}

.section-offset {
  padding-left: 10vw;
}

.section-layered::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 5vw;
  right: 10vw;
  height: 100%;
  background: #efe7df;
  z-index: -1;
  border-radius: 24px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-visual {
  background: url("assets/hero-abstract.svg") center/cover no-repeat;
  border-radius: 28px;
  min-height: 280px;
  padding: 32px;
  display: flex;
  align-items: flex-end;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.15;
  color: #171513;
}

.hero p {
  max-width: 520px;
  font-size: 1rem;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #1c1b1a;
  color: #f7f4f1;
  border-radius: 999px;
  font-weight: 600;
  width: fit-content;
}

.btn-outline {
  background: transparent;
  color: #1c1b1a;
  border: 2px solid #1c1b1a;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid #1c1b1a;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  flex: 1;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(18, 15, 10, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card h3 {
  font-size: 1.1rem;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 16px;
  background: #f1ece6;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #1c1b1a;
  color: #f7f4f1;
  font-size: 0.8rem;
  width: fit-content;
}

.form-shell {
  background: #ffffff;
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(15, 12, 8, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c8bfb5;
  font-size: 1rem;
  background: #fffaf5;
}

textarea {
  min-height: 110px;
}

.status-note {
  font-size: 0.9rem;
  color: #55504a;
}

.floating-note {
  background: #1c1b1a;
  color: #f7f4f1;
  padding: 16px;
  border-radius: 16px;
}

.testimonial {
  background: #fff;
  padding: 18px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #d6cfc7;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #d9825a;
  color: #1c1b1a;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15, 12, 8, 0.2);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 16px 6vw;
  display: none;
  flex-direction: column;
  gap: 12px;
  border-top: 2px solid #1c1b1a;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 999px;
  border: 2px solid #1c1b1a;
  background: transparent;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #1c1b1a;
  color: #f7f4f1;
}

@media (min-width: 768px) {
  .nav-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero {
    flex-direction: row;
    align-items: flex-end;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing {
    flex-direction: row;
  }

  .price-item {
    flex: 1;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-start;
  }
}
