* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2326;
  background: #f7f6f3;
  line-height: 1.6;
}

a {
  color: #1b4b7a;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #1b4b7a;
  outline-offset: 2px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 16px;
}

.brand {
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-disclosure {
  font-size: 0.85rem;
  background: #e7f0f7;
  color: #1b4b7a;
  padding: 6px 10px;
  border-radius: 12px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 60px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 380px;
}

.split .media {
  flex: 1 1 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  background: #0f1b2d;
  color: #f4f4f0;
  position: relative;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 27, 45, 0.92), rgba(15, 27, 45, 0.6));
  z-index: 1;
}

.hero-media {
  width: 100%;
  min-height: 320px;
  background-color: #1a2a3a;
  background-image: url("https://images.pexels.com/photos/9492773/pexels-photo-9492773.jpeg");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 27, 45, 0.25);
  border-radius: 24px;
}

.section-muted {
  background: #f0efe9;
}

.section-deep {
  background: #e6eef2;
}

.image-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.tone-1 {
  background: #d8d6d1;
}

.tone-2 {
  background: #cfd6dc;
}

.tone-3 {
  background: #d6dde3;
}

.tone-4 {
  background: #cdd1d6;
}

.tone-5 {
  background: #e2dcd4;
}

.tone-6 {
  background: #d4dee2;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  flex: 1 1 250px;
  box-shadow: 0 12px 32px rgba(19, 35, 52, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .image-wrap {
  height: 160px;
}

.card img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-tag {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1b4b7a;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  background: #1b4b7a;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  font-size: 1rem;
}

.btn.secondary {
  background: #f4f4f0;
  color: #1b4b7a;
  border: 1px solid #1b4b7a;
}

.btn.ghost {
  background: transparent;
  border: 1px dashed #1b4b7a;
  color: #1b4b7a;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
  background: #f4b942;
  color: #1f2326;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.form-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(17, 27, 44, 0.1);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border: 1px solid #c9cfd6;
  border-radius: 10px;
  font-size: 1rem;
}

.footer {
  padding: 50px 0 70px;
  font-size: 0.95rem;
  background: #11161c;
  color: #e6edf4;
}

.footer a {
  color: #e6edf4;
}

.footer-columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-columns div {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 90px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(16, 27, 44, 0.16);
  display: none;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.small-note {
  font-size: 0.85rem;
  color: #5d6670;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  color: #1b4b7a;
  border: 1px solid #d0d8e2;
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
