* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1d2329;
  --muted: #5a6a75;
  --accent: #2f6f8f;
  --accent-soft: #e8f0f4;
  --warm: #f6f2ee;
  --dark: #11161b;
  --card: #ffffff;
  --line: #d7dfe5;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #f7f8f9;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.media {
  background: #dfe7ec;
  border-radius: 20px;
  overflow: hidden;
}

.media.warm {
  background: #e6ddd6;
}

.media.dark {
  background: #c7d2da;
}

a {
  color: inherit;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

header {
  padding: 28px 0 16px;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

nav a:hover {
  border-bottom: 1px solid var(--accent);
}

.hero {
  padding: 48px 0 72px;
  position: relative;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  background: var(--card);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(17, 22, 27, 0.08);
  position: relative;
  z-index: 2;
}

.hero-media {
  flex: 1 1 360px;
  border-radius: 28px;
  overflow: hidden;
  background: #dfe7ec;
  transform: translateY(24px);
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 18px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.button.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.asym-section {
  padding: 48px 0;
  position: relative;
}

.asym-section.alt {
  background: var(--warm);
}

.offset-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.offset-card {
  flex: 1 1 260px;
  background: var(--card);
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 16px 32px rgba(17, 22, 27, 0.08);
}

.offset-card.shift-up {
  transform: translateY(-22px);
}

.offset-card.shift-down {
  transform: translateY(18px);
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 12px;
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
}

.panel img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #d9e4ea;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.list li {
  background: var(--card);
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.highlight {
  background: var(--dark);
  color: #fff;
  padding: 32px;
  border-radius: 24px;
}

.highlight a {
  color: #fff;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.price-card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: var(--card);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(17, 22, 27, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

footer {
  padding: 48px 0;
  background: #eef2f4;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.footer-grid .col {
  flex: 1 1 220px;
}

.footer-grid a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-grid a:hover {
  border-bottom: 1px solid var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

.sticky-cta a {
  background: var(--dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: none;
  gap: 16px;
  align-items: center;
  z-index: 999;
  box-shadow: 0 18px 30px rgba(17, 22, 27, 0.1);
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 320px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.legal-header {
  background: var(--warm);
  padding: 40px 0;
}

.legal-card {
  background: var(--card);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--line);
}

.spaced {
  margin-top: 24px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 800px) {
  .hero-media {
    transform: none;
  }

  .offset-card.shift-up,
  .offset-card.shift-down {
    transform: none;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
