* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5f6368;
  --accent: #1f4a6d;
  --accent-soft: #e6eff6;
  --warm: #d4b37a;
  --bg: #f7f4ef;
  --white: #ffffff;
  --shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 2rem 0 6rem;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 4vw 1rem;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-block span {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  line-height: 1.1;
  margin: 0;
}

.hero-panel {
  flex: 1 1 320px;
  background: var(--white);
  padding: 1.8rem;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
}

.hero-panel img {
  border-radius: 1rem;
}

.floating-note {
  margin-top: 1.2rem;
  padding: 1rem;
  border-left: 4px solid var(--warm);
  background: #fff9ef;
}

.section-block {
  position: relative;
  background: var(--white);
  padding: 3rem;
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
}

.section-block.bg-insight {
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.section-block.bg-trust {
  background-image: linear-gradient(110deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.75)),
    url("https://images.unsplash.com/photo-1485217988980-11786ced9454?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.section-block.asym {
  margin-left: clamp(0rem, 5vw, 4rem);
}

.section-block.asym-right {
  margin-right: clamp(0rem, 5vw, 4rem);
}

.section-split {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.section-split > div {
  flex: 1 1 280px;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--accent);
}

.stacked-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  flex: 1 1 220px;
  background: #fcfcfc;
  border: 1px solid #e7e4df;
  padding: 1.5rem;
  border-radius: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card img {
  border-radius: 0.8rem;
  height: 140px;
  object-fit: cover;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill-list span {
  background: var(--accent-soft);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.cta-row.spaced {
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: #e7e4df;
  color: var(--ink);
}

.form-card {
  background: #fdfcf9;
  border-radius: 1.4rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 0.7rem;
  border-radius: 0.6rem;
  border: 1px solid #d7d3cd;
  font-size: 1rem;
}

.form-status {
  font-size: 0.95rem;
  color: var(--accent);
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.info-grid div {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--warm);
  color: #2f2413;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 20;
}

.footer {
  padding: 3rem 4vw 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 1.2rem;
  max-width: 320px;
  background: var(--white);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.muted {
  color: var(--muted);
}

@media (max-width: 720px) {
  .nav-shell {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    align-items: flex-start;
  }

  .section-block,
  .section-block.asym,
  .section-block.asym-right {
    margin: 0;
    padding: 2rem;
  }

  .sticky-cta {
    right: 1rem;
    left: 1rem;
    text-align: center;
  }
}
