* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #14213d;
  --muted: #4a5568;
  --bg: #f7f8fb;
  --accent: #1b5e8b;
  --accent-2: #f2b705;
  --card: #ffffff;
  --line: #dde3ea;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.header-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f0f4f9;
}

.nav a:hover {
  background: #dfe8f3;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-left: auto;
}

.split {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .visual {
  flex: 1 1 340px;
}

.split .copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.headline {
  font-size: 2.4rem;
  line-height: 1.15;
  margin: 0;
}

.subhead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button:hover {
  background: #154b71;
}

.button.secondary:hover {
  background: #e6eff7;
}

.image-box {
  background: #dfe7f2;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(20, 33, 61, 0.15);
}

.bg-1 {
  background: #d6e3f0;
}

.bg-2 {
  background: #e1e8f2;
}

.bg-3 {
  background: #edf2f8;
}

.bg-4 {
  background: #e7edf5;
}

.bg-5 {
  background: #e9f0f7;
}

.bg-6 {
  background: #dfe7f0;
}

.bg-7 {
  background: #e6ecf5;
}

.bg-8 {
  background: #dae5f1;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(20, 33, 61, 0.08);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.form-wrap {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  background: #0f1a2b;
  color: #e9eef6;
  padding: 40px 24px;
}

.footer .footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #e9eef6;
}

.small {
  font-size: 0.9rem;
  color: #c9d3e2;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  background: var(--accent-2);
  color: #1a1a1a;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

.sticky-cta:hover {
  background: #e2a503;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 16px 20px;
  display: none;
  z-index: 20;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.note {
  background: #eef4fb;
  border-left: 4px solid var(--accent);
  padding: 14px;
  border-radius: 12px;
  color: var(--muted);
}

.split-banner {
  background: linear-gradient(120deg, #ffffff 40%, #e8f0f8 40%);
}

.muted {
  color: var(--muted);
}

@media (max-width: 720px) {
  .headline {
    font-size: 2rem;
  }

  .ad-label {
    width: 100%;
    margin-left: 0;
  }
}
