:root {
  color-scheme: light;
  --ink: #1b1d1f;
  --muted: #59606a;
  --accent: #2f5bcc;
  --accent-soft: #e6ecff;
  --bg: #f7f5f2;
  --panel: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 8vw 10px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  max-width: 280px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 30px 8vw 0;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  background-color: #d7d1c7;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 13, 21, 0.6), rgba(10, 13, 21, 0.1));
}

.hero-visual .hero-content {
  position: relative;
  padding: 34px;
  color: #ffffff;
  max-width: 520px;
}

.hero-content h1 {
  font-size: 40px;
  margin: 0 0 14px;
}

.hero-content p {
  margin: 0 0 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
}

.button.secondary {
  background: #1f2328;
}

.mag-section {
  padding: 10px 8vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mag-row {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.mag-card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mag-card h3 {
  margin: 0;
  font-size: 18px;
}

.mag-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.image-frame {
  background-color: #e2ddd5;
  border-radius: 14px;
  overflow: hidden;
}

.split {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 260px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  margin: 0;
}

.tagline {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.highlight {
  background: var(--accent-soft);
  border-radius: var(--radius);
  padding: 24px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #e7e2d8;
  padding-bottom: 12px;
}

.pricing-item strong {
  font-size: 16px;
}

.form-box {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d9d5cd;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
}

.inline-link {
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1f2328;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  z-index: 20;
}

.footer {
  padding: 40px 8vw 70px;
  background: #1f2328;
  color: #f0f1f3;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 14px;
}

.footer a {
  color: #f0f1f3;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-columns div {
  flex: 1 1 200px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #1f2328;
  color: #fff;
}

.notice {
  font-size: 13px;
  color: var(--muted);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-grid {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.contact-grid div {
  flex: 1 1 240px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-bg {
  background: #222 url("https://images.unsplash.com/photo-1478720568477-152d9b164e26?w=1400&q=80") center/cover no-repeat;
  border-radius: var(--radius);
  padding: 28px;
  color: #fff;
}

.section-bg-alt {
  background: #222 url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80") center/cover no-repeat;
  border-radius: var(--radius);
  padding: 28px;
  color: #fff;
}

.mag-columns {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.mag-columns > div {
  flex: 1 1 220px;
}

.quote {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.quote p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.reference-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.reference-list a {
  color: #f0f1f3;
}

.page-hero {
  padding: 30px 8vw 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-hero h1 {
  margin: 0;
  font-size: 34px;
}

.simple-panel {
  background: var(--panel);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
