:root {
  --ink: #1b1e24;
  --muted: #5c6673;
  --accent: #0f5b9a;
  --accent-dark: #0c4a7c;
  --paper: #f6f4f0;
  --panel: #ffffff;
  --soft: #e9eef4;
  --warm: #f2e9dc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  background: #dfe6ef;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: var(--panel);
  border-bottom: 1px solid #e1e4ea;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 6vw;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--warm);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 6vw;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-media {
  flex: 1 1 320px;
  background: #dfe6ef;
  padding: 14px;
  border-radius: 18px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.magazine-block {
  padding: 32px 6vw;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.column {
  flex: 1 1 260px;
}

.panel {
  background: var(--panel);
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(18, 26, 40, 0.08);
}

.spaced-panel {
  margin-top: 18px;
}

.soft-panel {
  background: var(--soft);
  padding: 22px;
  border-radius: 18px;
}

.highlight {
  background: var(--warm);
  padding: 28px 6vw;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(24, 31, 45, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #dfe6ef;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split-section img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  background: #dfe6ef;
}

.form-wrap {
  background: var(--panel);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(21, 28, 39, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cfd6e0;
  font-size: 1rem;
  background: #fff;
}

.footer {
  margin-top: auto;
  background: #0f172a;
  color: #f8fafc;
  padding: 28px 6vw;
}

.footer a {
  color: #cbd5f5;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #111827;
  color: #f9fafb;
  padding: 16px 20px;
  border-radius: 16px;
  display: none;
  gap: 16px;
  align-items: center;
  width: min(900px, 92vw);
  z-index: 1000;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 auto;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: #38bdf8;
  color: #0f172a;
  font-weight: 700;
}

.cookie-reject {
  background: #334155;
  color: #f8fafc;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 110px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  z-index: 900;
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

.legal-section {
  padding: 32px 6vw;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notice {
  background: #fef9c3;
  border-radius: 14px;
  padding: 16px;
}

.muted {
  color: var(--muted);
}
