* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f7f5;
  --ink: #122026;
  --muted: #5b6b73;
  --accent: #1c6f6a;
  --accent-light: #e3f1ef;
  --panel: #ffffff;
  --line: #dfe6e3;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  object-fit: cover;
}

header {
  padding: 28px 6vw 18px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand strong {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 320px;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

nav a {
  font-size: 0.95rem;
  color: var(--ink);
}

main {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 32px 6vw 64px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1 1 320px;
}

.img-wrap {
  width: 100%;
  height: 100%;
  background: #cbd7d3;
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero {
  background: var(--panel);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  align-self: flex-start;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.btn.secondary {
  background: #0f2f2c;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card {
  background: var(--panel);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 600;
  font-size: 1.1rem;
}

.inline-cta {
  font-weight: 600;
}

.bg-journey {
  background-image: url("https://images.unsplash.com/photo-1760382738997-921fb7efdd37?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  padding: 26px;
  color: #ffffff;
  position: relative;
}

.bg-journey::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 28, 30, 0.62);
  border-radius: 18px;
}

.bg-journey .text {
  position: relative;
  z-index: 1;
}

.form-panel {
  background: var(--panel);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--line);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
}

.form-panel textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  z-index: 50;
}

footer {
  background: var(--panel);
  border-top: 1px solid var(--line);
  padding: 28px 6vw 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
}

.policy-block {
  background: var(--panel);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #0f2f2c;
  color: #fff;
  border-radius: 14px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.banner button {
  background: #ffffff;
  color: #0f2f2c;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.95rem;
}

.banner button.reject {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

@media (max-width: 820px) {
  .hero h1 {
    font-size: 2rem;
  }

  .sticky-cta {
    position: static;
    align-self: flex-start;
    margin: 0 6vw 20px;
  }
}
