* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2937;
  --muted: #556274;
  --accent: #0f4c81;
  --accent-2: #165f52;
  --surface: #f4f3ef;
  --paper: #ffffff;
  --shadow: rgba(18, 28, 45, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background-color: var(--surface);
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 24px 6vw 8px;
  gap: 24px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-brand h1,
.nav-brand h2,
.nav-brand .brand-title {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  align-items: center;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 80px 8vw 90px;
  color: #ffffff;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
}

.hero .hero-inner {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background-color: rgba(18, 22, 30, 0.55);
  padding: 28px;
}

.hero .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: var(--accent);
  color: #ffffff;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.btn.alt {
  background-color: var(--accent-2);
}

.section {
  padding: 64px 6vw;
}

.section-split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.section-panel {
  flex: 1 1 320px;
  min-width: 280px;
  background-color: var(--paper);
  padding: 28px;
  box-shadow: 0 12px 30px var(--shadow);
}

.panel-offset {
  margin-top: -40px;
}

.panel-image {
  flex: 1 1 320px;
  min-width: 280px;
  background-color: #cfd5da;
  overflow: hidden;
  border-radius: 12px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background-color: var(--paper);
  padding: 20px;
  box-shadow: 0 8px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  background-color: #d7dadf;
  border-radius: 10px;
  overflow: hidden;
}

.price {
  font-size: 20px;
  color: var(--accent-2);
}

.inline-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.accent-band {
  background-color: #0d2e4b;
  color: #ffffff;
}

.accent-band .section-panel {
  background-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #cbd3db;
  font-size: 14px;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 50px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: var(--accent);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: 0 10px 20px var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 24px;
  background-color: var(--paper);
  border-radius: 14px;
  box-shadow: 0 12px 24px var(--shadow);
  padding: 18px;
  display: none;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.legal-box {
  background-color: #ecebe6;
  padding: 22px;
  border-radius: 12px;
}

.image-background {
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.image-background .section-panel {
  background-color: rgba(10, 18, 28, 0.6);
  color: #ffffff;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.bg-clarity {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}
