* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #111316;
  --muted: #5b616b;
  --accent: #0b4b7a;
  --accent-soft: #e8f1f7;
  --sand: #f3efe8;
  --sun: #f5b942;
  --card: #ffffff;
  --border: #d7dbe1;
  --shadow: 0 18px 40px rgba(15, 24, 38, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #f8f8f6;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 28px 6vw 18px;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.92rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 6vw 20px;
  background: linear-gradient(110deg, #f3f4f6 0%, #ffffff 55%, #f2ede4 100%);
}

.hero-copy {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
  line-height: 1.1;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.alt {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.hero-media {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section {
  padding: 40px 6vw;
}

.bg-layer {
  background: url("images/data.svg") no-repeat right 12% / 320px,
    linear-gradient(120deg, #ffffff 0%, #f0f4f8 60%, #f3efe8 100%);
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 20px;
}

.section-title h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.section-title span {
  color: var(--muted);
  font-size: 0.95rem;
}

.editorial {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--sand);
}

.editorial article {
  flex: 2 1 420px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.editorial aside {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.debate-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.debate-card {
  flex: 1 1 230px;
  background: var(--card);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.debate-card h3 {
  font-size: 1.1rem;
}

.split-feature {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split-feature .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-feature .panel {
  flex: 1 1 300px;
}

.callout {
  background: var(--accent);
  color: #ffffff;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.service-row .price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.service-row .details {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-row .meta {
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: #ffffff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form-wrap form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  width: 100%;
}

.form-aside {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.gallery figure {
  flex: 1 1 200px;
  background: #ffffff;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.footer {
  margin-top: auto;
  padding: 30px 6vw;
  background: #101316;
  color: #dfe4ea;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--sun);
  color: #111;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  z-index: 12;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.two-column > div {
  flex: 1 1 260px;
}

.text-muted {
  color: var(--muted);
}

.legal {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 720px) {
  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
