* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --soft: #f6f1ee;
  --accent: #6b3f2a;
  --accent-dark: #4a2a1b;
  --card: #ffffff;
  --line: #e5d9d2;
  --shadow: rgba(27, 27, 27, 0.08);
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbf9f7;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 14px;
  color: var(--muted);
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent-dark);
  border: 1px solid var(--line);
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1763631403216-8d193008481e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 120px 0 90px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 249, 247, 0.72);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: min(640px, 90%);
}

.hero h1 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  font-size: 18px;
}

.primary-btn {
  background: var(--accent);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 24px var(--shadow);
}

.secondary-link {
  font-size: 15px;
  color: var(--accent-dark);
}

.section {
  padding: 72px 0;
}

.section.soft {
  background: var(--soft);
}

.section-title {
  font-size: 28px;
  margin-bottom: 18px;
}

.story {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.story-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.story-text p {
  margin-bottom: 16px;
  color: var(--muted);
}

.image-frame {
  flex: 1 1 320px;
  min-width: 280px;
  background-color: #eadfd8;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offset-blocks {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offset-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 300px;
  background: var(--card);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 16px 30px var(--shadow);
}

.offset-card h3 {
  margin-bottom: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.trust-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.testimonial {
  font-style: italic;
  color: var(--muted);
  border-left: 2px solid var(--accent);
  padding-left: 16px;
  margin: 18px 0;
}

.benefits {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.benefit-card {
  flex: 1 1 260px;
  background: var(--card);
  border-radius: 18px;
  box-shadow: 0 18px 36px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.benefit-card .content {
  padding: 20px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.price-item span {
  font-weight: 600;
}

.form-wrap {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 38px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-size: 14px;
  color: var(--muted);
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 220px;
}

.cta-strip {
  background: var(--accent-dark);
  color: #fff;
  padding: 26px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-strip p {
  max-width: 480px;
}

.cta-secondary {
  background: #fff;
  color: var(--accent-dark);
  padding: 12px 20px;
  border-radius: 999px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
}

.footer {
  padding: 40px 0 60px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 16px 0 24px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 32px var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 16px 30px var(--shadow);
  z-index: 12;
}

.cookie-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.simple-hero {
  padding: 60px 0 30px;
}

.simple-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--muted);
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
  }
}
