:root {
  color-scheme: light;
  --ink: #1b1d21;
  --muted: #5b616a;
  --accent: #3b6ef6;
  --accent-soft: #e5ecff;
  --surface: #f6f7fb;
  --surface-alt: #eef1f6;
  --border: #d7dce6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 24px 6%;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-note {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
}

.section {
  padding: 64px 6%;
  position: relative;
  overflow: hidden;
}

.section.alt {
  background: var(--surface);
}

.section.deep {
  background: var(--surface-alt);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1 1 320px;
  min-width: 260px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.hero-title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 12px 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card img {
  border-radius: 14px;
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 700;
  font-size: 1.15rem;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
}

.img-frame {
  border-radius: 22px;
  overflow: hidden;
  background: #dfe6f4;
  border: 1px solid var(--border);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layered {
  position: relative;
  border-radius: 28px;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--border);
  z-index: 1;
}

.layered .bg-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.15;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 18px;
}

.form-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  background: #fff;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.form-status {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(59, 110, 246, 0.25);
}

footer {
  padding: 32px 6% 40px;
  background: #111827;
  color: #e5e7eb;
}

footer a {
  color: #bcd1ff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
}

.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-btn {
  flex: 1;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
}

.cookie-btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.page-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 10px;
}

.simple-section {
  max-width: 820px;
}
