:root {
  --bg-main: #f6f5f2;
  --bg-muted: #ecebe7;
  --bg-accent: #f1ede4;
  --text-main: #1f2933;
  --text-soft: #4b5563;
  --accent: #d4a23a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
}

img { max-width: 100%; display: block; }

.container {
  padding: 0 20px;
}

.container.narrow {
  max-width: 720px;
  margin: auto;
}

/* HERO */
.hero {
  padding: 40px 0 60px;
}

.logo {
  max-width: 140px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 32px;
  line-height: 1.25;
}

.hero h1 span {
  color: var(--text-soft);
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.7;
  margin: 16px 0 24px;
}

.hero-cta .btn {
  width: 100%;
  text-align: center;
}

/* FIXED SECONDARY CTAs */
.secondary-cta-group {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.secondary-cta {
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #c9c5bc;
  color: var(--text-soft);
  text-decoration: none;
  background: transparent;
}

/* BUTTONS */
.btn {
  border-radius: 8px;
  font-weight: 600;
  padding: 14px;
}

.btn-primary {
  background: var(--accent);
  color: #111;
}

.btn.large {
  margin-top: 24px;
}

/* SECTIONS */
.section {
  padding: 60px 0;
}

.section-muted {
  background: var(--bg-muted);
}

.section-accent {
  background: var(--bg-accent);
}

h2 {
  font-size: 26px;
  margin-bottom: 16px;
}

p, li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* LISTS */
.problem-list,
.buyer-benefits,
.neutral-list {
  padding-left: 18px;
}

/* BOX */
.buyer-box {
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  margin: 16px 0;
}

/* SOCIALS */
.socials {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.socials img {
  width: 18px;
  height: 18px;
}

/* FOOTER */
.footer {
  background: #1c1c1c;
  color: #cbd5e1;
  text-align: center;
  padding: 50px 0;
}

.footer-logo {
  max-width: 120px;
  margin: 0 auto 16px;
}

/* DESKTOP ENHANCEMENTS */
@media (min-width: 900px) {
  .container {
    max-width: 1200px;
    margin: auto;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
  }

  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .split.reverse {
    direction: rtl;
  }

  .split.reverse > * {
    direction: ltr;
  }

  .btn {
    width: auto;
  }
}
