* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2a33;
  --muted: #5b6a74;
  --soft: #eef2f4;
  --accent: #1c6b8f;
  --accent-dark: #15526e;
  --warm: #f6f1eb;
  --sand: #e7dbcf;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e4e8eb;
  flex-wrap: wrap;
  gap: 16px;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-disclosure {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero,
.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 28px;
  padding: 56px 6vw;
}

.hero {
  background: var(--soft);
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
  min-width: 280px;
}

.split-text h1,
.split-text h2 {
  margin-top: 0;
}

.split-text p {
  color: var(--muted);
}

.image-box {
  background-color: #dfe6eb;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid #e7ebee;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.light {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.card h3 {
  margin: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.text-light .price {
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn.outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 16px;
}

.section-muted {
  color: var(--muted);
}

.layered {
  background: var(--warm);
  padding: 56px 6vw;
  position: relative;
}

.backdrop-one {
  background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.backdrop-two {
  background: linear-gradient(rgba(15, 29, 38, 0.85), rgba(15, 29, 38, 0.85)),
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.layered::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 16%;
  width: 180px;
  height: 180px;
  background: var(--sand);
  border-radius: 24px;
  z-index: 0;
}

.layered-content {
  position: relative;
  z-index: 1;
}

.form-section {
  background: #0f1d26;
  color: #ffffff;
  padding: 64px 6vw;
}

.form-section h2 {
  margin-top: 0;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  flex: 1 1 220px;
  gap: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px;
  border-radius: 10px;
  border: none;
}

.form-note {
  color: #d5dce2;
  font-size: 0.95rem;
}

.footer {
  padding: 40px 6vw;
  background: #f7f9fa;
  border-top: 1px solid #e4e8eb;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid #e4e8eb;
  padding: 12px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid #e4e8eb;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 120px;
}

.hidden {
  display: none;
}

.legal-block {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid #e4e8eb;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mt-md {
  margin-top: 18px;
}

.text-light {
  color: #ffffff;
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
