* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --text: #1b1b1b;
  --muted: #4a4f55;
  --accent: #22577a;
  --accent-2: #3a6f4c;
  --highlight: #f1d6a8;
  --card: #ffffff;
  --border: #d8dbe0;
  --soft: #eef2f6;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #111820;
  color: #f7f6f2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 18px;
}

.ad-label {
  font-size: 12px;
  color: #d9d6ce;
  background: #1c2936;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-cta {
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 30px;
  background: var(--highlight);
  color: #1e1e1e;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 32px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual {
  flex: 1;
  background: #dfe6ee;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  color: var(--muted);
}

.primary-cta,
.secondary-cta,
.inline-cta {
  padding: 12px 18px;
  border-radius: 24px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.secondary-cta {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-cta {
  background: none;
  color: var(--accent-2);
  padding: 0;
  border-radius: 0;
  font-weight: 600;
}

.split-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.panel.soft {
  background: var(--soft);
}

.image-frame {
  background: #e7eef5;
  border-radius: 18px;
  overflow: hidden;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.list {
  margin: 0;
  padding-left: 18px;
}

.flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-block {
  background: var(--highlight);
  padding: 20px;
  border-radius: 18px;
}

.bg-section {
  background: #e8edf2;
  border-radius: 24px;
  padding: 28px;
  color: #121212;
  overflow: hidden;
  position: relative;
}

.bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.22;
}

.bg-section .content-layer {
  position: relative;
  z-index: 1;
}

.bg-1::before {
  background-image: url("https://images.unsplash.com/photo-1517433670267-08bbd4be890f?w=1400&q=80");
}

.bg-2::before {
  background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=1400&q=80");
}

.bg-3::before {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80");
}

.bg-4::before {
  background-image: url("https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?w=1400&q=80");
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 15px;
  background: #fff;
  color: var(--text);
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row .field {
  flex: 1;
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer {
  padding: 24px 0 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 28px;
  bottom: 28px;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #1f2730;
  color: #f4f2ec;
  padding: 16px 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--highlight);
  color: #1c1c1c;
}

.cookie-reject {
  background: transparent;
  border: 1px solid #f0ede6;
  color: #f0ede6;
}

.legal-columns {
  display: flex;
  gap: 20px;
}

.legal-columns .panel {
  flex: 1;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .hero,
  .split-row,
  .legal-columns,
  .form-row {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
