* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2430;
  --muted: #5b6472;
  --paper: #f6f4f0;
  --sand: #efe9e1;
  --stone: #dde3ea;
  --accent: #1e5b7c;
  --accent-dark: #15445c;
  --olive: #5f6b4f;
  --peach: #f4e6da;
  --ink-soft: rgba(31, 36, 48, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 40px 0 120px;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: var(--paper);
  padding: 18px 0;
  border-bottom: 1px solid var(--ink-soft);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  border: 1px solid var(--stone);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.nav a {
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 30px 40px 0;
}

.hero-copy h1 {
  font-size: 44px;
  line-height: 1.1;
}

.hero-copy p {
  color: var(--muted);
  font-size: 18px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.secondary:hover {
  background: var(--accent);
  color: #fff;
}

.hero-visual {
  flex: 0.9;
  background: var(--sand);
  padding: 18px;
  border-radius: 28px;
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  min-height: 360px;
}

.offset-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(20, 24, 40, 0.08);
  position: absolute;
  bottom: -24px;
  right: -10px;
  width: 220px;
}

.offset-card p {
  font-size: 13px;
  color: var(--muted);
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
}

.panel h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

.panel p {
  color: var(--muted);
  margin-bottom: 18px;
}

.panel .inline-link {
  color: var(--accent);
  font-weight: 600;
}

.image-frame {
  background: var(--stone);
  padding: 12px;
  border-radius: 24px;
}

.image-frame img {
  width: 100%;
  height: 320px;
  border-radius: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background: var(--paper);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
}

.card h3 {
  font-size: 20px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.cta-strip {
  background: var(--accent);
  color: #fff;
  padding: 28px 24px;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.cta-strip .btn {
  background: #fff;
  color: var(--accent);
}

.cta-strip .btn:hover {
  background: var(--paper);
}

.form-shell {
  background: var(--peach);
  padding: 30px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-shell label {
  font-size: 14px;
  color: var(--muted);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 15px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
}

.testimonial {
  padding: 18px;
  border-left: 3px solid var(--olive);
  background: #fff;
  border-radius: 14px;
}

.testimonial p {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--olive);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(22, 26, 30, 0.2);
  font-size: 14px;
  z-index: 50;
}

.sticky-cta:hover {
  background: #4a543d;
}

footer {
  background: var(--paper);
  padding: 50px 0;
  margin-top: 60px;
  border-top: 1px solid var(--ink-soft);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-col h4 {
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-col p,
.footer-col li {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
  list-style: none;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 16px;
  padding: 16px;
  width: min(320px, 90%);
  box-shadow: 0 20px 40px rgba(20, 24, 40, 0.15);
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .btn {
  flex: 1;
  padding: 10px 12px;
  font-size: 13px;
}

.subtle {
  color: var(--muted);
  font-size: 15px;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--ink-soft);
}

.legal-page main {
  padding-top: 20px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .offset-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
