* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1a18;
  --muted: #665f56;
  --accent: #b97142;
  --accent-dark: #8b4e2a;
  --soft: #f7f2ed;
  --sand: #efe4d8;
  --forest: #2f3a2e;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

header {
  position: relative;
  padding: 28px 6vw 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 1.1rem;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(28, 26, 24, 0.08);
}

.nav-action {
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  padding: 8px 18px;
  border-radius: 999px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 80px;
}

.section {
  position: relative;
  padding: 0 6vw;
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  padding-top: 20px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  max-width: 560px;
  color: var(--muted);
}

.hero-card {
  background: var(--white);
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(28, 26, 24, 0.12);
  transform: translateY(-18px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-primary,
.cta-secondary,
.cta-outline {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cta-primary {
  background: var(--accent);
  color: var(--white);
}

.cta-secondary {
  background: var(--forest);
  color: var(--white);
}

.cta-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.offset-block {
  background: var(--sand);
  padding: 28px;
  border-radius: 24px;
  margin-left: 6vw;
}

.overlap-panel {
  background: var(--white);
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(28, 26, 24, 0.14);
  margin-top: -34px;
  margin-right: 8vw;
}

.split-flow {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  border-radius: 26px;
  padding: 26px;
}

.split-flow .meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.inline-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(185, 113, 66, 0.12);
  color: var(--accent-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(28, 26, 24, 0.1);
}

.card img {
  border-radius: 16px;
  height: 180px;
  object-fit: cover;
}

.trust-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trust-chip {
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(28, 26, 24, 0.08);
}

.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: var(--forest);
  color: var(--white);
  padding: 24px;
  border-radius: 22px;
}

.price-card span {
  font-size: 1.6rem;
  font-weight: 700;
}

.form-shell {
  background: var(--white);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 16px 30px rgba(28, 26, 24, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  border: 1px solid #ddd3c8;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 1rem;
  background: #fbf8f4;
}

button {
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 18px;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 12px 20px rgba(28, 26, 24, 0.2);
  z-index: 20;
}

.footer {
  padding: 32px 6vw 48px;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(28, 26, 24, 0.18);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 16px;
  border-radius: 999px;
}

.cookie-accept {
  background: var(--forest);
  color: var(--white);
}

.cookie-reject {
  background: #ebe3da;
  color: var(--ink);
}

.page-hero {
  background: var(--sand);
  border-radius: 28px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 22px rgba(28, 26, 24, 0.1);
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
}

@media (min-width: 860px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
  }

  .hero-card {
    max-width: 360px;
  }

  .section-inner {
    flex-direction: row;
    align-items: center;
  }

  .section-inner.reverse {
    flex-direction: row-reverse;
  }

  .card-row,
  .trust-row,
  .pricing-wrap,
  .contact-grid {
    flex-direction: row;
  }

  .card,
  .trust-chip,
  .price-card,
  .contact-card {
    flex: 1;
  }

  .split-flow {
    flex-direction: row;
    align-items: center;
  }

  .split-flow img {
    width: 45%;
  }
}
