* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1d1a;
  --muted: #6b625c;
  --accent: #c46b7a;
  --accent-dark: #9c4f5c;
  --sand: #f6f1ec;
  --blush: #f3e2e5;
  --stone: #efe7e0;
  --mint: #e5f0ea;
  --shadow: 0 20px 50px rgba(22, 15, 10, 0.12);
}

body {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbf9f7;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.topbar {
  padding: 26px 0 10px;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.brand span {
  font-size: 1.2rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid #d5c9c3;
  padding: 6px 10px;
  border-radius: 18px;
  background: #fff;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px 0 30px;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.hero-card {
  flex: 1 1 360px;
  background: var(--sand);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-card img {
  border-radius: 18px;
  width: 100%;
  height: 380px;
  background-color: #e2d6cf;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  box-shadow: var(--shadow);
}

.section {
  padding: 60px 0;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 18px;
}

.soft-block {
  background: var(--stone);
  border-radius: 28px;
  padding: 32px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split > div {
  flex: 1 1 300px;
}

.split img {
  border-radius: 20px;
  height: 320px;
  background-color: #e7ddd6;
}

.story {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.callout {
  background: var(--blush);
  padding: 22px;
  border-radius: 20px;
}

.callout strong {
  color: var(--accent-dark);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.trust-card {
  flex: 1 1 220px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.trust-card img {
  height: 160px;
  border-radius: 16px;
  margin-bottom: 12px;
  background-color: #efe2dd;
}

.testimonial {
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 14px;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.benefit {
  flex: 1 1 240px;
  background: var(--mint);
  padding: 18px;
  border-radius: 16px;
}

.pricing {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.pricing-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.price-card {
  flex: 1 1 220px;
  border: 1px solid #eadad0;
  border-radius: 18px;
  padding: 18px;
  background: var(--sand);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form-wrap form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9c8bf;
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
}

.footer {
  padding: 40px 0 60px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 20;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 18px;
  border-radius: 16px;
  max-width: 320px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 50px 0 20px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-block {
  padding: 18px;
  border-radius: 16px;
  background: var(--sand);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-item {
  flex: 1 1 240px;
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-item img {
  height: 160px;
  border-radius: 14px;
  margin-bottom: 12px;
  background-color: #efe2dd;
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.disclaimer {
  background: #fef5f2;
  border-left: 4px solid #e2a08b;
  padding: 18px;
  border-radius: 16px;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.banner-image {
  height: 260px;
  border-radius: 22px;
  background-color: #e8dbd3;
}

@media (max-width: 720px) {
  .floating-cta {
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}
