* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #18202a;
  --muted: #5c6b7a;
  --accent: #2d7ff9;
  --accent-soft: #e8f0ff;
  --bg: #f6f7fb;
  --panel: #ffffff;
  --warm: #fff4e8;
  --cool: #eef6f7;
  --shadow: 0 20px 45px rgba(18, 35, 59, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-nav {
  background: #ffffff;
  padding: 18px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #e4e8ef;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.86rem;
  color: var(--muted);
  max-width: 280px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.section {
  padding: 70px 6vw;
}

.section-tight {
  padding: 40px 6vw;
}

.section-hero {
  color: #ffffff;
  background-size: cover;
  background-position: center;
  position: relative;
}

.section-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 30, 0.58);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
  z-index: 1;
}

.hero-pill {
  background: rgba(255, 255, 255, 0.18);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  width: fit-content;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-primary {
  padding: 12px 22px;
  border-radius: 10px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-outline {
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-weight: 600;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.story-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-card {
  background: var(--panel);
  padding: 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.image-frame {
  flex: 1 1 320px;
  background-color: #dfe8f2;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-slab {
  background: var(--cool);
}

.section-warm {
  background: var(--warm);
}

.section-dark {
  color: #ffffff;
}

.section-dark .muted {
  color: rgba(255, 255, 255, 0.7);
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: stretch;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.panel {
  background: var(--panel);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  flex: 1 1 320px;
}

.panel-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.quote-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d0d8e4;
  font-size: 1rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
}

.footer {
  padding: 40px 6vw 70px;
  background: #111722;
  color: #ffffff;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
}

.footer a {
  color: #ffffff;
}

.footer-small {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 8px 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 10;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 16px;
  border-radius: 14px;
  max-width: 360px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-btn {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  background: var(--accent-soft);
  color: var(--ink);
}

.cookie-btn.primary {
  background: var(--accent);
  color: #ffffff;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-reveal {
  background-image: url("https://images.unsplash.com/photo-1454165205744-3b78555e5572?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.muted {
  color: var(--muted);
}

@media (max-width: 860px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
