* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1f2a;
  --muted: #5c6475;
  --accent: #7a3bf0;
  --accent-2: #f06292;
  --surface: #f5f2ee;
  --surface-2: #eef4f8;
  --surface-3: #f9f4ff;
  --border: #d6dbe4;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 240px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 48px;
}

.hero-visual {
  flex: 1.1;
  min-height: 360px;
  border-radius: 20px;
  background-color: #d9e2f2;
  background-size: cover;
  background-position: center;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.hero-text {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-text h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero-text p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  background: var(--accent);
  color: #ffffff;
  transition: transform 0.2s ease;
}

.btn.alt {
  background: var(--accent-2);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:focus,
.btn:hover {
  transform: translateY(-2px);
}

.magazine-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin: 36px 0;
}

.magazine-row.reverse {
  flex-direction: row-reverse;
}

.magazine-block {
  flex: 1;
  padding: 24px;
  border-radius: 18px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-bg {
  background-color: #e7eef8;
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section-bg p,
.section-bg h2 {
  color: #ffffff;
}

.magazine-block h2,
.magazine-block h3 {
  line-height: 1.2;
}

.magazine-block p {
  color: var(--muted);
}

.inline-image {
  border-radius: 14px;
  overflow: hidden;
  background-color: #dfe6ed;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  border-radius: 14px;
  height: 160px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.split-band {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 22px;
  background: var(--surface-2);
}

.split-band .text {
  flex: 1;
}

.split-band .image {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background-color: #d8e4ef;
}

.form-section {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin-top: 48px;
}

.form-panel {
  flex: 1;
  padding: 28px;
  border-radius: 20px;
  background: var(--surface-3);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

select,
input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.aside-panel {
  flex: 0.9;
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(26, 34, 48, 0.18);
}

.footer {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer a {
  color: var(--muted);
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: 14px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 24px 0 32px;
}

.page-hero .image {
  flex: 1;
  min-height: 220px;
  border-radius: 18px;
  background-color: #e0e8f4;
  background-size: cover;
  background-position: center;
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
}

.privacy-hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.gdpr-hero {
  background-image: url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?w=1400&q=80");
}

.cookies-hero {
  background-image: url("https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?w=1400&q=80");
}

.terms-hero {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
}

.thanks-hero {
  background-image: url("https://images.unsplash.com/photo-1483058712412-4245e9b90334?w=1400&q=80");
}

.page-hero .copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-columns {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.content-columns .main {
  flex: 1.3;
}

.content-columns .sidebar {
  flex: 0.7;
  padding: 18px;
  border-radius: 16px;
  background: var(--surface);
}

.disclaimer {
  margin-top: 24px;
  padding: 16px;
  border-radius: 14px;
  background: #fff6ed;
  border: 1px solid #f4d6b2;
  font-size: 0.9rem;
  color: #6a4a2f;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.table-row {
  display: flex;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.table-row .cell {
  flex: 1;
}

.legal-section {
  margin-bottom: 20px;
}

.legal-section h2 {
  margin-bottom: 10px;
}

.legal-section p,
.legal-section ul {
  color: var(--muted);
}

.legal-section ul {
  padding-left: 18px;
}

@media (max-width: 960px) {
  .hero,
  .magazine-row,
  .split-band,
  .form-section,
  .page-hero,
  .content-columns {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
