/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1f24;
  background: #f7f6f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 0 5vw 96px;
}

header {
  padding: 24px 5vw 8px;
}

.nav-bar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  justify-content: space-between;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  background: #f2d24b;
  color: #1c1f24;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 32px;
  min-height: 420px;
  align-items: stretch;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 24px 0;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0;
}

.hero-text p {
  margin: 0;
  font-size: 1.05rem;
}

.hero-image {
  flex: 1;
  min-height: 420px;
  background: #d8dde4;
  border-radius: 18px;
  overflow: hidden;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  background: #243746;
  color: #fdfcf9;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
}

.button.alt {
  background: #f2d24b;
  color: #1c1f24;
}

.split {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.split-text h2,
.split-text h3 {
  margin: 0;
}

.split-text p {
  margin: 0;
}

.split-image {
  flex: 1;
  min-height: 320px;
  background: #dfe6ec;
  border-radius: 16px;
  overflow: hidden;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.tag {
  background: #e9eef2;
  color: #2b2f36;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
  box-shadow: 0 12px 30px rgba(15, 24, 38, 0.08);
}

.card-image {
  width: 100%;
  height: 160px;
  background: #dfe6ec;
  border-radius: 12px;
  overflow: hidden;
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  font-size: 1.05rem;
}

.section-background {
  padding: 48px;
  border-radius: 24px;
  color: #fdfcf9;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-background.light {
  color: #1c1f24;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-color: #28323a;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-color: #1f2a34;
}

.inline-image {
  width: 100%;
  height: 260px;
  background: #d8dde4;
  border-radius: 16px;
  overflow: hidden;
}

.form-wrap {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(15, 24, 38, 0.1);
}

.form-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd6dd;
  font-size: 0.95rem;
}

.form-image {
  flex: 1;
  min-height: 320px;
  background: #dfe6ec;
  border-radius: 16px;
  overflow: hidden;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
}

.sticky-cta button {
  background: #0c5b52;
  color: #fdfcf9;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}

footer {
  padding: 48px 5vw 72px;
  background: #1c1f24;
  color: #f4f2ee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.9rem;
}

.legal {
  font-size: 0.85rem;
  color: #cfd6dd;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 16px 35px rgba(15, 24, 38, 0.2);
  display: none;
  gap: 12px;
  align-items: center;
  z-index: 12;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 32px 5vw 0;
}

.page-hero h1 {
  margin: 0;
  font-size: 2.2rem;
}

.page-section {
  padding: 0 5vw 72px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.notice {
  background: #f2d24b;
  color: #1c1f24;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .form-wrap {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
