:root {
  --ink: #1c2226;
  --muted: #5d6871;
  --accent: #2c5aa0;
  --accent-soft: #e6effa;
  --highlight: #f4efe7;
  --panel: #f7f8fa;
  --border: #d9e0e6;
  --card: #ffffff;
  --shadow: 0 12px 30px rgba(18, 32, 45, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

button.secondary,
.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

header {
  padding: 24px 6vw 16px;
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 20px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffffff;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 32px 6vw 80px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-media {
  flex: 1 1 320px;
  background: #dfe7ef;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: stretch;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  background: var(--panel);
  border-radius: 18px;
  padding: 24px;
}

.panel-image {
  flex: 1 1 320px;
  background: #e0e5ec;
  border-radius: 18px;
  overflow: hidden;
}

.panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-soft {
  background-color: #dfe7ef;
}

.bg-panel {
  background-color: #e0e5ec;
}

.bg-accent {
  background-color: #e6effa;
}

.bg-light {
  background-color: #f0f4f8;
}

.bg-white {
  background-color: #ffffff;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.metric-card {
  flex: 1 1 180px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.highlight {
  background: var(--highlight);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inline-testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 16px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 32px 6vw 48px;
  background: #fafbfc;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  align-self: flex-end;
  margin-left: auto;
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  left: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
  z-index: 1000;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice {
  font-size: 14px;
  color: var(--muted);
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.page-hero .panel-image {
  min-height: 240px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 900px) {
  .sticky-cta {
    position: static;
    margin-top: 12px;
  }
}

@media (max-width: 700px) {
  header,
  main,
  footer {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .hero,
  .split,
  .page-hero {
    flex-direction: column;
  }
}
