* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2328;
  --muted: #5a636e;
  --accent: #1746a2;
  --accent-soft: #e7eefc;
  --sand: #f4f1ed;
  --clay: #e6ded6;
  --shadow: rgba(20, 20, 20, 0.08);
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
}

button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  padding: 22px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.ad-label {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--ink);
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1522897355400-c4fdec73d979?w=1400&q=80");
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-content {
  background: rgba(255, 255, 255, 0.9);
  margin-left: 6vw;
  padding: 38px;
  max-width: 560px;
  box-shadow: 0 18px 40px var(--shadow);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #10357e;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 12px 20px;
  border-radius: 999px;
}

.btn-ghost:hover,
.btn-ghost:focus {
  background: var(--accent-soft);
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: var(--sand);
}

.section.bg-thread {
  background-image: url("https://images.unsplash.com/photo-1756364071388-862fedb2fc09?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section.bg-thread .muted {
  color: #f2f2f2;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split > * {
  flex: 1 1 280px;
}

.media {
  background: var(--clay);
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
}

.stacked-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card h3 {
  font-size: 1.1rem;
}

.card p {
  color: var(--muted);
}

.card .price {
  font-weight: 600;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 200px;
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 24px var(--shadow);
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.form-shell {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 18px 40px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d7d7d7;
  font: inherit;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.form-grid > * {
  flex: 1 1 220px;
}

.inline-cta {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 14px 30px var(--shadow);
  z-index: 4;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: #10357e;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 40px;
  background: #111216;
  color: #d7d8da;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #ffffff;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: #b6bac1;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 16px;
  padding: 18px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  padding: 60px 6vw 30px;
  background: var(--sand);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--muted);
}

.content-block {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.content-block.alt {
  background: var(--sand);
}

.content-block ul {
  padding-left: 20px;
  color: var(--muted);
}

.content-block li {
  margin-bottom: 8px;
}

.image-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.image-rail .media {
  flex: 1 1 260px;
  min-height: 200px;
}

@media (max-width: 800px) {
  .hero {
    min-height: 60vh;
  }

  .hero-content {
    margin: 24px;
  }
}
