@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --ink: #0f1a24;
  --slate: #2d3b45;
  --muted: #6b7b86;
  --mist: #eef2f5;
  --sand: #f7f2ea;
  --sky: #e4eef7;
  --accent: #1f6feb;
  --accent-dark: #174ea6;
  --surface: #ffffff;
  --shadow: 0 24px 60px rgba(15, 26, 36, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--surface);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: var(--mist);
  padding: 12px 0;
  font-size: 0.9rem;
  color: var(--slate);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-disclosure {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--accent-dark);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 6px 14px rgba(15, 26, 36, 0.08);
}

.hero {
  padding: 64px 0 40px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-card {
  background: var(--surface);
  padding: 34px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  margin: 0 0 18px;
}

.hero p {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.image-frame {
  background-color: #dde6ee;
  border-radius: 28px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
}

.image-frame img {
  border-radius: 28px;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--sand);
}

.section.mist {
  background: var(--mist);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 18px;
}

.section-lead {
  color: var(--slate);
  line-height: 1.6;
  max-width: 640px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  padding: 20px;
  border-radius: 24px;
  box-shadow: 0 18px 30px rgba(15, 26, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 18px;
  height: 160px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.select-btn {
  margin-top: auto;
  padding: 10px 16px;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.trust-strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.trust-item {
  flex: 1 1 200px;
  background: var(--surface);
  border-radius: 20px;
  padding: 16px;
  color: var(--slate);
}

.overlap {
  position: relative;
}

.overlap-panel {
  position: absolute;
  right: 10%;
  bottom: -32px;
  background: var(--surface);
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 280px;
}

.form-section {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.form-card {
  flex: 1 1 320px;
  background: var(--surface);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cfd7df;
  font-size: 1rem;
}

.form-card button {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 24px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.bg-insight {
  background-color: #dfe9f4;
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.footer {
  margin-top: auto;
  padding: 40px 0;
  background: var(--ink);
  color: #e6edf3;
}

.footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer a {
  color: #e6edf3;
}

.legal-note {
  font-size: 0.85rem;
  color: #c1ccd6;
  line-height: 1.5;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f1a24;
  color: #fff;
  padding: 18px 0;
  display: none;
  z-index: 20;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #4cc2ff;
  color: #0f1a24;
}

.cookie-actions .reject {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.page-hero {
  padding: 50px 0 40px;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.two-col {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.two-col .column {
  flex: 1 1 320px;
}

.note {
  background: var(--sky);
  padding: 18px;
  border-radius: 18px;
  color: var(--slate);
}

@media (max-width: 860px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .overlap-panel {
    position: static;
    margin-top: 18px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
