* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c1d1f;
  --muted: #5a6068;
  --accent: #1f5faa;
  --accent-2: #0f2f4d;
  --soft: #f3f5f8;
  --warm: #f7f1e8;
  --card: #ffffff;
  --border: #e1e6ee;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.3px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
}

.hero {
  display: flex;
  align-items: stretch;
  padding: 6vw;
  background-color: #1a2a3a;
  background-image: url("https://images.unsplash.com/photo-1454165205744-3b78555e5572?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 36, 0.6);
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
  z-index: 1;
}

.hero h1 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.2;
}

.hero p {
  margin: 0;
  color: #e7eef6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.section {
  padding: 5vw 6vw;
}

.section.light {
  background: var(--soft);
}

.section.warm {
  background: var(--warm);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.metric {
  flex: 1 1 200px;
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.metric strong {
  display: block;
  font-size: 1.4rem;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 320px;
}

.split-media {
  background: #e6edf5;
  border-radius: 24px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.cards.spaced {
  margin-top: 28px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-media {
  background: #dfe6ef;
}

.card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.panel {
  padding: 4vw;
  border-radius: 28px;
  background: #0f2f4d;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.panel.panel-vision {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.panel.panel-vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 20, 30, 0.7);
}

.panel-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.form-box {
  flex: 1 1 320px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer {
  margin-top: auto;
  padding: 30px 6vw;
  background: #0d1b2a;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #d7e3f5;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 16px 6vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .button {
  border-radius: 10px;
}

.simple-hero {
  padding: 4vw 6vw;
  background: var(--soft);
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.two-column .column {
  flex: 1 1 280px;
}

.text-card {
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
}

.image-inline {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  background: #dfe6ef;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
