* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a2e;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.topbar {
  background: #0f1c2a;
  color: #f5f7fa;
  padding: 18px 0;
}

.topbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
}

.hero {
  background: #ede7df;
  padding: 48px 0 64px;
}

.hero-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
  font-weight: 650;
}

.hero p {
  font-size: 18px;
  color: #2d3b43;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid #1f2a2e;
  background: #1f2a2e;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #1f2a2e;
}

.hero-image {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #cfd6d9;
  min-height: 320px;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: #f0ece6;
}

.section.dark {
  background: #101926;
  color: #f7f4f0;
}

.bg-image-panel {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 25, 38, 0.78);
}

.bg-image-panel .container {
  position: relative;
  z-index: 1;
}

.headline {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 20px;
}

.mag-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.mag-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15, 28, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-frame {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #d8d4cf;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.mag-card .price {
  font-weight: 700;
  font-size: 18px;
}

.split-story {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.story-image {
  flex: 1 1 320px;
  background-color: #d5d2cd;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.story-image img {
  width: 100%;
  height: 100%;
}

.story-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote {
  flex: 1 1 240px;
  background: #ffffff;
  border-left: 4px solid #b27d3f;
  padding: 18px;
  font-style: italic;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.process-step {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-image {
  flex: 1 1 300px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #c7cdd1;
  min-height: 220px;
}

.process-image img {
  width: 100%;
  height: 100%;
}

.process-text {
  flex: 1 1 320px;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.sticky-cta {
  flex: 1 1 260px;
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  position: sticky;
  top: 20px;
  box-shadow: 0 10px 24px rgba(15, 28, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrapper {
  flex: 2 1 420px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 28, 42, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccd3d6;
  font-size: 15px;
  background: #fff;
}

.inline-link {
  text-decoration: underline;
}

.footer {
  margin-top: auto;
  background: #0f1c2a;
  color: #f7f4f0;
  padding: 36px 0;
  font-size: 14px;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.disclaimer {
  max-width: 480px;
}

.simple-hero {
  background: #ece6de;
  padding: 36px 0;
}

.simple-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.simple-image {
  flex: 1 1 280px;
  min-height: 200px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #d8d4cf;
}

.simple-image img {
  width: 100%;
  height: 100%;
}

.legal-block {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 28, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(15, 28, 42, 0.15);
  max-width: 320px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.small-note {
  font-size: 13px;
  color: #4b5b62;
}

.section-note {
  font-size: 15px;
  color: #32424a;
}

.thanks-box {
  background: #fff;
  padding: 26px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(15, 28, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.divider {
  height: 1px;
  background: rgba(31, 42, 46, 0.12);
  margin: 18px 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(178, 125, 63, 0.15);
  font-size: 13px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(15, 28, 42, 0.08);
}

@media (max-width: 720px) {
  .hero-layout,
  .split-story,
  .process-step,
  .form-section,
  .simple-layout {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }
}
