* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2421;
  --muted: #5a5f5c;
  --accent: #2c6e49;
  --accent-soft: #e7f2ec;
  --sand: #f6f2ee;
  --sky: #eff4f8;
  --card: #ffffff;
  --line: #d9e0da;
  --warm: #f0e9e2;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand strong {
  font-size: 1.2rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 10px;
  border-radius: 18px;
  border: 1px solid transparent;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 80px 6% 60px;
  gap: 30px;
  background: var(--sand);
}

.hero-visual {
  display: flex;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background-color: #e5ddd5;
}

.hero-visual .hero-image {
  flex: 1;
  background-size: cover;
  background-position: center;
}

.hero-photo {
  background-image: url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1400&q=80");
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--ink);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.section {
  display: flex;
  flex-direction: column;
  padding: 70px 6%;
  gap: 28px;
}

.section.muted {
  background: var(--sky);
}

.section.warm {
  background: var(--warm);
}

.section.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1525253086316-d0c936c814f8?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #0f1713;
}

.section-title {
  font-size: 1.8rem;
  max-width: 720px;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 280px;
  min-width: 260px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}

.card .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.image-wrap {
  border-radius: 18px;
  overflow: hidden;
  background-color: #e6e1dc;
}

.image-wrap.story {
  background-color: #e1ece7;
}

.image-wrap.process {
  background-color: #efe6dd;
}

.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px dashed var(--accent);
  background: #fff;
  font-size: 0.95rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
}

.pricing-reveal {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid var(--line);
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.form-card button {
  width: 100%;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  z-index: 50;
}

.footer {
  background: #101412;
  color: #f5f5f5;
  padding: 50px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 80;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.plain-page {
  padding: 60px 6% 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.notice {
  background: var(--accent-soft);
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}
