* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1a1c1f;
  --muted: #5b6673;
  --accent: #1c5d99;
  --accent-soft: #e8f1fb;
  --sand: #f5f2ee;
  --mint: #e9f3ef;
  --sun: #f3ead7;
  --line: #d8dde4;
  --shadow: 0 20px 50px rgba(20, 26, 35, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header,
main,
footer {
  width: 100%;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  font-size: 0.92rem;
  color: var(--muted);
}

.main-nav a:hover {
  color: var(--accent);
}

.ad-label {
  padding: 4px 10px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--accent);
}

.section {
  padding: 64px 6vw;
}

.section.tight {
  padding: 40px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section.mint {
  background: var(--mint);
}

.section.sun {
  background: var(--sun);
}

.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
}

.hero {
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero h1 {
  font-size: clamp(2.3rem, 3.2vw, 3.2rem);
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-cta {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.inline-cta:hover {
  color: #12426b;
}

.highlight-card {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(20, 26, 35, 0.08);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 180px;
}

.card .card-body {
  padding: 18px 20px 24px;
}

.card h3 {
  margin: 0 0 10px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?w=1400&q=80");
  background-color: #22303b;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-insight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 23, 31, 0.62);
}

.bg-insight .overlay {
  position: relative;
  z-index: 1;
}

.stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.stat {
  flex: 1 1 160px;
  background: rgba(255, 255, 255, 0.15);
  padding: 16px;
  border-radius: 16px;
}

.form-wrap {
  background: #ffffff;
  padding: 26px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: #1e2b36;
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.sticky-cta:hover {
  background: #0f1720;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

footer {
  padding: 48px 6vw 60px;
  background: #0f1720;
  color: #e6edf3;
}

footer a {
  color: #e6edf3;
}

footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}

.small {
  font-size: 0.85rem;
  color: #c8d0d8;
}

.legal-note {
  font-size: 0.83rem;
  color: #c3cbd4;
}

.image-wrap {
  background: #dfe7ef;
  border-radius: 24px;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 100%;
}

.page-hero {
  padding-top: 56px;
  padding-bottom: 56px;
}

.bg-slate {
  background: #e3e9f0;
}

.bg-forest {
  background: #e7efe9;
}

.bg-warm {
  background: #efe8e2;
}

.bg-ice {
  background: #e5ecf4;
}

.bg-soft {
  background: #e9ecef;
}

.bg-cool {
  background: #e6eef5;
}

.bg-cream {
  background: #f0e7d8;
}

@media (max-width: 960px) {
  .split {
    flex-direction: column;
  }

  .site-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
