* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1b4b73;
  text-decoration: underline;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e2e1dc;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 8vw;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
  font-size: 20px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
}

.ad-label {
  font-size: 12px;
  color: #7a6a5b;
  max-width: 240px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 40px;
}

.section {
  padding: 36px 8vw;
}

.section.compact {
  padding-top: 20px;
  padding-bottom: 20px;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.magazine-col {
  flex: 1 1 280px;
  min-width: 260px;
}

.magazine-col.wide {
  flex: 2 1 380px;
}

.hero {
  background: #efe7dd;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1b4b73;
  background: #1b4b73;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.light {
  background: transparent;
  color: #1b4b73;
}

.btn.dark {
  background: #222831;
  border-color: #222831;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid #d9d3cb;
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 220px;
  z-index: 20;
}

.sticky-cta button {
  width: 100%;
}

.sticky-cta .close {
  background: transparent;
  border: 1px solid #d9d3cb;
  color: #5f5b55;
}

.img-frame {
  background: #d9d3cb;
  border-radius: 14px;
  overflow: hidden;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e2e1dc;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: #1b4b73;
}

.layered {
  background: #1f2a30;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.layered::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.layered .magazine-row {
  position: relative;
  z-index: 2;
}

.bg-vision {
  background-image: url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-vision .overlay {
  background: rgba(25, 32, 40, 0.7);
  padding: 32px;
  border-radius: 20px;
}

.form-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e2e1dc;
}

.form-panel label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-panel input,
.form-panel select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9d3cb;
  margin-bottom: 16px;
  font-size: 15px;
}

.form-status {
  font-size: 14px;
  color: #1b4b73;
}

.quote {
  font-size: 18px;
  font-style: italic;
}

.footer {
  background: #ffffff;
  border-top: 1px solid #e2e1dc;
  padding: 26px 8vw 40px;
  font-size: 14px;
  color: #5f5b55;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #d9d3cb;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.legal-section h1 {
  font-size: 28px;
}

.legal-section h2 {
  font-size: 20px;
  margin-top: 18px;
}

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e1dc;
  padding: 20px;
}

.wide-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 780px) {
  .nav-wrap {
    justify-content: flex-start;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}
