* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1d;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
}

.nav-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  background: #111;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 28px;
  padding: 48px 0 64px;
  align-items: stretch;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-image {
  flex: 1;
  background: #e7e2dc;
  border-radius: 24px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 56px 0;
}

.section-dark {
  background: #151515;
  color: #f7f5f2;
}

.section-light {
  background: #fff;
}

.section-accent {
  background: #efe8dd;
}

.story-grid {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.story-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.story-card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  background: #e4ded6;
}

.split {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .visual {
  flex: 1 1 320px;
}

.visual-box {
  background: #e7e2dc;
  border-radius: 18px;
  overflow: hidden;
}

.visual-box img {
  width: 100%;
  height: 320px;
}

.cta-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  background: #1d1d1d;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-light {
  background: #fff;
  color: #1d1d1d;
  border: 1px solid #1d1d1d;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 14px;
  align-items: center;
}

.pricing-item span {
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfc7bd;
  font-size: 0.95rem;
  background: #fbfaf8;
}

.footer {
  background: #0e0e0e;
  color: #f7f5f2;
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-grid > div {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1d1d1d;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.sticky-cta button {
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 12;
}

.banner-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.page-hero {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  padding: 40px 0;
  flex-wrap: wrap;
}

.page-hero .hero-image {
  height: 280px;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-grid {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card img {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  background: #e4ded6;
}

@media (max-width: 860px) {
  .hero,
  .split,
  .page-hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
