* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f4f1;
  --surface: #ffffff;
  --ink: #1f2328;
  --muted: #5a6168;
  --accent: #1b6ef3;
  --accent-dark: #124aa8;
  --soft: #eef1f6;
  --warm: #f0ebe5;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  background: var(--surface);
  border-bottom: 1px solid #e3e6ea;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  padding: 4px 10px;
  border: 1px solid #d6dbe3;
  border-radius: 999px;
  background: var(--soft);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
}

.main {
  flex: 1;
}

.section {
  padding: 56px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero {
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 24, 0.6);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 700px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
}

.button.secondary {
  background: #fff;
  color: var(--ink);
}

.button.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 250px;
  background: var(--surface);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #e6e9ee;
  min-width: 240px;
}

.card .card-title {
  font-weight: 700;
}

.card .price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  background: #dfe4ea;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split > div {
  flex: 1 1 320px;
}

.accent-block {
  background: var(--warm);
  border-radius: 22px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story {
  background: var(--surface);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #ebeff4;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  padding: 14px 16px;
  background: var(--soft);
  border-radius: 14px;
}

.form-card {
  background: var(--surface);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #e6e9ee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8dee6;
  font-size: 15px;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  box-shadow: 0 12px 30px rgba(12, 24, 44, 0.18);
}

.footer {
  background: #0f1621;
  color: #e2e8f0;
}

.footer a {
  color: #a7c3ff;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.references {
  font-size: 13px;
  color: #c1c9d4;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--surface);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(12, 24, 44, 0.2);
  display: none;
  gap: 12px;
  border: 1px solid #e1e6ee;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.bg-reveal {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}
