.root {
  min-height: 100vh;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1d2433;
  background-color: #f7f8fb;
  line-height: 1.6;
}

a {
  color: #1b4f8a;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e4ec;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 48px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: #4c5567;
  max-width: 260px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  font-size: 14px;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 40px 48px 64px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  font-size: 32px;
  margin: 0;
}

.section-subtitle {
  margin: 0;
  font-size: 18px;
  color: #4c5567;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-frame {
  width: 100%;
  min-height: 320px;
  background-color: #e0e6ef;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(20, 30, 50, 0.08);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #d9e2ee;
}

.price {
  font-weight: 700;
  color: #12345f;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  background-color: #1b4f8a;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background-color: #e8eef7;
  color: #1b4f8a;
}

.form-panel {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 36px rgba(25, 40, 70, 0.1);
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
}

.split.bg-accent {
  background-color: #eef2f8;
  padding: 28px;
  border-radius: 22px;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #0f1728;
}

.bg-strategy {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #0f1728;
}

.note {
  font-size: 14px;
  color: #4c5567;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.site-footer {
  background-color: #0f1728;
  color: #e9eef7;
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: #c7d4ea;
}

.disclaimer {
  font-size: 13px;
  color: #c7d4ea;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #ffffff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.legal-block {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero {
  padding: 32px;
  border-radius: 28px;
  background-color: #e9eff8;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-visual {
  border-radius: 22px;
  overflow: hidden;
  background-color: #dbe4f0;
}

.hero-visual img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.two-col-list {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.two-col-list div {
  flex: 1 1 220px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 14px;
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main {
    padding: 32px 20px 56px;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    padding: 0 20px 16px;
  }
}
