* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1e23;
  --muted: #5a6068;
  --accent: #2f6fed;
  --accent-2: #0f9a8c;
  --paper: #f6f3ee;
  --sand: #efe8dd;
  --cloud: #eef3f8;
  --line: #d6dbe2;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
}

main {
  flex: 1;
}

.section {
  padding: 64px 6vw;
}

.section.tight {
  padding: 40px 6vw;
}

.section.sand {
  background: var(--sand);
}

.section.cloud {
  background: var(--cloud);
}

.section.paper {
  background: var(--paper);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.hero {
  background: #dfe7f3;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 32, 0.6);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
}

.hero p {
  font-size: 1.05rem;
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: var(--accent-2);
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.9rem;
}

.image-frame {
  background-color: #d6dbe2;
  border-radius: 16px;
  overflow: hidden;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.quote {
  font-style: italic;
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

form {
  flex: 2 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
  width: 100%;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  position: sticky;
  top: 18px;
}

.footer {
  padding: 32px 6vw 40px;
  background: #10151c;
  color: #d6dbe2;
}

.footer .container {
  gap: 18px;
}

.footer a {
  color: #d6dbe2;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: none;
  gap: 12px;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(15, 20, 30, 0.12);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.simple-hero {
  background: #e6ecf5;
  background-image: url("https://images.unsplash.com/photo-1483058712412-4245e9b90334?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.simple-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 45, 0.62);
}

.simple-hero .container {
  position: relative;
  z-index: 1;
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-box {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    position: static;
  }
}
