* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1d1b;
  --muted: #5c5853;
  --sand: #f7f2ee;
  --rose: #f1e3e0;
  --peach: #fde5d3;
  --sage: #dfe8e3;
  --clay: #c79f8b;
  --night: #2b2420;
  --white: #ffffff;
  --accent: #8f6e5a;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 15px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  background: var(--night);
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
}

.hero {
  padding: 70px 0 90px;
  background-image: url("https://images.unsplash.com/photo-1652869111296-515a4ff86e89?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHw1M3x8TWFnYXppbiUyMGRlJTIwY29zbWV0aWNlJTIwY3UlMjBzZWxlYyVDOCU5QmllJTIwY3VyYXQlQzQlODMlMjBwZW50cnUlMjBydXRpbmElMjB0YSUyMHppbG5pYyVDNCU4My58cm98MHwwfHx8MTc4MzA2MTkzMnww&ixlib=rb-4.1.0&q=80&w=1080");
  background-size: cover;
  background-position: center;
  background-color: var(--night);
  color: var(--white);
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 10, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 18px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--peach);
  color: var(--night);
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--rose);
}

.section.soft {
  background: var(--sage);
}

.section.tight {
  padding: 40px 0;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 320px;
}

.image-frame {
  background: var(--clay);
  padding: 10px;
  border-radius: 18px;
}

.image-frame img {
  width: 100%;
  height: 320px;
  border-radius: 14px;
}

.story-card {
  padding: 28px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(31, 29, 27, 0.08);
}

.story-card h2,
.section h2 {
  margin-top: 0;
}

.flow {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.flow .tag {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.trust-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  flex: 1 1 200px;
  background: var(--white);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(31, 29, 27, 0.08);
}

.highlight {
  background: var(--night);
  color: var(--white);
  padding: 40px;
  border-radius: 20px;
  background-image: url("https://images.unsplash.com/photo-1585980205396-b0680dbe2ded?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHwzMHx8TWFnYXppbiUyMGRlJTIwY29zbWV0aWNlJTIwY3UlMjBzZWxlYyVDOCU5QmllJTIwY3VyYXQlQzQlODMlMjBwZW50cnUlMjBydXRpbmElMjB0YSUyMHppbG5pYyVDNCU4My58cm98MHwwfHx8MTc4MzA2MTkzMXww&ixlib=rb-4.1.0&q=80&w=1080");
  background-size: cover;
  background-position: center;
  background-color: var(--night);
  position: relative;
  overflow: hidden;
}

.highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 16, 13, 0.6);
}

.highlight-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(31, 29, 27, 0.08);
  display: flex;
  flex-direction: column;
}

.card-image {
  background: var(--clay);
}

.card-image img {
  width: 100%;
  height: 180px;
}

.price-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(31, 29, 27, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(31, 29, 27, 0.2);
  font-family: inherit;
}

.footer {
  background: var(--night);
  color: var(--white);
  padding: 50px 0 80px;
}

.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: var(--night);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(31, 29, 27, 0.15);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 29, 27, 0.2);
  background: var(--peach);
  cursor: pointer;
}

.cookie-actions .secondary {
  background: var(--white);
}

.page-hero {
  padding: 60px 0;
  background: var(--rose);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
}

.page-hero .split img {
  height: 280px;
  border-radius: 16px;
}

.notice {
  padding: 14px 18px;
  background: var(--peach);
  border-radius: 14px;
}

@media (max-width: 720px) {
  .hero {
    padding: 50px 0 70px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
