* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --accent: #3852a4;
  --accent-soft: #e7ecfb;
  --sand: #f5f1ea;
  --sage: #e6efe9;
  --rose: #f3e7ec;
  --surface: #ffffff;
  --shadow: rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  overflow-x: hidden;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 0;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand strong {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.ad-disclosure {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 320px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
}

.nav-links a:hover,
.button:hover,
.ghost-link:hover,
.sticky-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px var(--shadow);
}

.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 6vw 40px;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-size: 2.6rem;
  line-height: 1.15;
}

.hero-copy p {
  color: var(--muted);
  max-width: 520px;
}

.hero-image {
  flex: 0.9;
  position: relative;
  background: #dfe6f4;
  padding: 14px;
  border-radius: 24px;
  transform: translateY(22px);
}

.hero-image img {
  border-radius: 18px;
  height: 420px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.ghost-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.section {
  padding: 70px 6vw;
  display: flex;
  gap: 32px;
  align-items: center;
}

.section.alt {
  background: var(--sand);
}

.section.sage {
  background: var(--sage);
}

.section.rose {
  background: var(--rose);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 14px;
}

.offset-card {
  background: var(--surface);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 14px 40px var(--shadow);
  transform: translateY(-24px);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.split.reverse {
  flex-direction: row-reverse;
}

.image-frame {
  background: #e0e0e0;
  padding: 10px;
  border-radius: 18px;
  min-width: 240px;
}

.image-frame img {
  border-radius: 14px;
  height: 320px;
}

.image-frame.small {
  padding: 8px;
}

.image-frame.small img {
  height: 180px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 10px 25px var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  background: var(--surface);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 18px var(--shadow);
  max-width: 320px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 520px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d2d2d2;
  font-size: 1rem;
}

.form-wrap textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  padding: 50px 6vw 80px;
  background: #101113;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f5f5f5;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d0d0d0;
  max-width: 720px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 30;
  border: none;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 22px;
  bottom: 22px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px var(--shadow);
  padding: 16px;
  max-width: 320px;
  z-index: 40;
  display: none;
  gap: 12px;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: 1px solid var(--accent);
  padding: 8px 12px;
  cursor: pointer;
  background: #fff;
}

.cookie-actions button.primary {
  background: var(--accent);
  color: #fff;
}

.simple-hero {
  padding: 60px 6vw 30px;
  display: flex;
  gap: 24px;
  align-items: flex-end;
}

.simple-hero h1 {
  font-size: 2.4rem;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 25px var(--shadow);
  flex: 1 1 220px;
}

.thanks {
  padding: 70px 6vw 120px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 980px) {
  .hero,
  .section,
  .split {
    flex-direction: column;
  }

  .hero-image {
    transform: none;
  }

  .sticky-cta {
    right: 14px;
    left: 14px;
    bottom: 14px;
    text-align: center;
  }
}
