* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2226;
  --muted: #5a6068;
  --accent: #f05c4e;
  --accent-dark: #c93b2f;
  --sun: #f4d47a;
  --mint: #d9f1e5;
  --sky: #dce8ff;
  --paper: #fbfaf7;
  --edge: rgba(31, 34, 38, 0.12);
}

body {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 32px 6vw 12px 6vw;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.nav-links a {
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: stretch;
  gap: 28px;
  padding: 22px 6vw 56px 6vw;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 12px 12px 12px 0;
}

.hero-media {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 10% 8%;
  background: var(--sky);
  border-radius: 32px;
  z-index: 0;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 88%;
}

h1 {
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}

p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 0 6vw 80px 6vw;
}

.story-band {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.story-band .split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split > div {
  flex: 1;
  min-width: 240px;
}

.offset-panel {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.offset-panel .panel {
  flex: 1;
  min-width: 240px;
  padding: 24px;
  border-radius: 22px;
  background: var(--mint);
}

.offset-panel .panel.alt {
  background: var(--sun);
}

.insight {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(120deg, #ffffff 40%, #fef1e7 100%);
  padding: 36px;
  border-radius: 26px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote {
  flex: 1;
  min-width: 220px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--edge);
}

.quote span {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--ink);
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1;
  min-width: 230px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--edge);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  height: 84px;
  width: auto;
}

.pricing {
  background: var(--ink);
  color: #fff;
  padding: 40px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pricing .card {
  background: #2a2f36;
  border-color: transparent;
  color: #fff;
}

.pricing .card p {
  color: rgba(255, 255, 255, 0.7);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sun);
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 36px;
  border-radius: 26px;
  border: 1px solid var(--edge);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--edge);
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.urgency {
  background: var(--sun);
  padding: 32px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  padding: 32px 6vw 50px 6vw;
  border-top: 1px solid var(--edge);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 6px;
  z-index: 5;
}

.sticky-cta a {
  display: inline-block;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--edge);
  padding: 14px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  padding: 30px 6vw 20px 6vw;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0 6vw 60px 6vw;
}

.info-grid .card {
  flex: 1;
  min-width: 240px;
}

.legal {
  padding: 10px 6vw 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 880px) {
  .hero {
    flex-direction: column;
  }

  .hero-media::before {
    inset: 12% 10%;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 18px;
  }

  .sticky-cta .btn {
    width: 100%;
  }
}
