:root {
  --honey: #e8a910;
  --honey-light: #fff3c4;
  --honey-pale: #fffcf0;
  --honey-dark: #9e6606;
  --char: #3c3832;
  --char-mid: #565248;
  --char-soft: #757169;
  --char-muted: #9e9a93;
  --char-faint: #efeeec;
  --char-border: rgba(60, 56, 50, 0.12);
  --white: #ffffff;
  --warm: #fdfcfa;
  --tint: #f9f8f5;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--char);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--char-border);
  transition: background 0.3s;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-wordmark {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--char);
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--char-soft);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover {
  color: var(--char);
}
.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 22px;
  background: var(--honey);
  color: var(--char);
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-cta:hover {
  background: #d4980c;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--warm);
}
.hero-hex {
  position: absolute;
  top: -60px;
  right: -80px;
  opacity: 0.06;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--honey-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--honey);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  color: var(--char);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--honey-dark);
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--char-mid);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.btn-primary {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: var(--char);
  color: var(--honey);
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid var(--char);
}
.btn-primary:hover {
  background: var(--honey);
  color: var(--char);
  border-color: var(--honey);
}
.btn-secondary {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: transparent;
  color: var(--char-soft);
  border: 1px solid var(--char-border);
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: var(--char-soft);
  color: var(--char);
}

/* ── PROBLEM ── */
.section-tint {
  background: var(--tint);
}
.section-no-top-pad {
  padding-top: 0;
}
.section {
  padding: 100px 48px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--honey-dark);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  color: var(--char);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.section-rule {
  width: 40px;
  height: 1px;
  background: var(--honey);
  margin-bottom: 40px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.problem-text {
  font-size: 17px;
  font-weight: 300;
  color: var(--char-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.problem-card {
  background: var(--tint);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.2s;
}
.problem-card:hover {
  background: var(--char-faint);
}
.problem-card:first-child {
  border-radius: 8px 8px 0 0;
}
.problem-card:last-child {
  border-radius: 0 0 8px 8px;
}
.pc-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(232, 169, 16, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pc-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--char);
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}
.pc-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--char-soft);
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.dark-section {
  background: var(--char);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}
.dark-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(232, 169, 16, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.dark-section .eyebrow {
  color: var(--honey);
}
.dark-section .section-title {
  color: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.step {
  padding: 0 16px;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: var(--char);
  position: relative;
  z-index: 1;
}
.step-num-inner {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--honey);
}
.step.active .step-num {
  background: var(--honey);
  border-color: var(--honey);
}
.step.active .step-num-inner {
  color: var(--char);
}
.step-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.step-body {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ── FEATURES ── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}
.feature {
  background: var(--tint);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature:hover {
  background: var(--char-faint);
}
.f-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--honey-pale);
  border: 1px solid rgba(232, 169, 16, 0.2);
}
.f-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--char);
  margin-bottom: 10px;
}
.f-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--char-soft);
  line-height: 1.7;
}

/* ── FEATURE BRAND (highlighted card) ── */
.feature-brand {
  background: var(--honey-pale);
  border: 1px solid rgba(232, 169, 16, 0.2);
}
.feature-brand .f-icon {
  background: rgba(232, 169, 16, 0.15);
}
.feature-brand .f-title {
  color: #7a4c04;
}
.feature-brand .f-body {
  color: #9e6606;
}

/* ── COMPETITORS ── */
.comp-table {
  margin-top: 48px;
  border: 1px solid var(--char-border);
  border-radius: 8px;
  overflow: hidden;
}
.comp-header {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  background: var(--tint);
  border-bottom: 1px solid var(--char-border);
}
.comp-cell {
  padding: 14px 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--char-mid);
}
.comp-cell.ours {
  color: var(--honey-dark);
  background: var(--honey-pale);
}
.comp-row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  border-bottom: 1px solid var(--char-border);
}
.comp-row:last-child {
  border-bottom: none;
}
.comp-row:hover .comp-data {
  background: var(--tint);
}
.comp-data {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 300;
  color: var(--char-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.comp-data.feature-name {
  font-weight: 400;
  color: var(--char);
  background: var(--tint);
  border-right: 1px solid var(--char-border);
}
.comp-data.ours {
  background: rgba(232, 169, 16, 0.04);
}
.check {
  color: #2e7d32;
  font-size: 16px;
}
.cross {
  color: var(--char-soft);
  font-size: 14px;
}
.partial {
  color: var(--honey-dark);
  font-size: 12px;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.price-card {
  border: 1px solid var(--char-border);
  border-radius: 8px;
  padding: 36px;
  background: var(--white);
  position: relative;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.price-card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.price-card.featured {
  border-color: var(--honey);
  background: var(--honey-pale);
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--honey);
  color: var(--char);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.plan-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--char-soft);
  margin-bottom: 8px;
}
.plan-price {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--char);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price span {
  font-size: 16px;
  color: var(--char-soft);
}
.plan-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--char-soft);
  margin-bottom: 28px;
  line-height: 1.6;
  border-bottom: 1px solid var(--char-border);
  padding-bottom: 20px;
}
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 300;
  color: var(--char-mid);
  line-height: 1.5;
}
.plan-feature::before {
  content: '—';
  color: var(--honey);
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}
.plan-btn {
  display: block;
  text-align: center;
  margin-top: 28px;
  padding: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.15s;
  border: 1px solid;
}
.plan-btn-dark {
  background: var(--char);
  color: var(--honey);
  border-color: var(--char);
}
.plan-btn-dark:hover {
  background: var(--honey);
  color: var(--char);
  border-color: var(--honey);
}
.plan-btn-outline {
  background: transparent;
  color: var(--char);
  border-color: var(--char-border);
}
.plan-btn-outline:hover {
  border-color: var(--char);
  background: var(--char);
  color: var(--white);
}

/* ── BROKERAGE PLAN overrides ── */
.price-card--brokerage .plan-price {
  font-size: 38px;
}
.price-card--brokerage .plan-desc {
  margin-top: 14px;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--tint);
  padding: 100px 48px;
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.testi {
  background: var(--white);
  border: 1px solid var(--char-border);
  border-radius: 8px;
  padding: 32px;
  position: relative;
}
.testi::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 72px;
  color: var(--honey);
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
  opacity: 0.4;
}
.testi-quote {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: var(--char);
  line-height: 1.65;
  margin-bottom: 24px;
  padding-top: 32px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--honey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 500;
  color: var(--char);
}
.testi-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--char);
}
.testi-role {
  font-size: 11px;
  font-weight: 300;
  color: var(--char-soft);
}

/* ── CTA ── */
.cta-section {
  background: var(--char);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 0L56 16L56 50L28 66L0 50L0 16Z' fill='none' stroke='%23E8A910' stroke-width='0.5' stroke-opacity='0.08'/%3E%3C/svg%3E")
    repeat;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.cta-title em {
  font-style: italic;
  color: var(--honey);
}
.cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.7;
  margin-bottom: 44px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ── CTA button overrides for dark background ── */
.cta-section .btn-primary {
  background: var(--honey);
  color: var(--char);
  border-color: var(--honey);
}
.cta-section .btn-secondary {
  color: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ── FOOTER ── */
footer {
  background: var(--char);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--honey);
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-link {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-link:hover {
  color: rgba(255, 255, 255, 0.85);
}
.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 100px 24px 64px;
  }
  .section {
    padding: 72px 24px;
  }
  .dark-section {
    padding: 72px 24px;
  }
  .testimonials {
    padding: 72px 24px;
  }
  .cta-section {
    padding: 80px 24px;
  }
  footer {
    padding: 40px 24px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .three-col {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
  .steps::before {
    display: none;
  }
  .step {
    padding: 0;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .comp-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .comp-header,
  .comp-row {
    min-width: 560px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 0 20px;
  }
  .hero {
    padding: 88px 20px 56px;
  }
  .hero-hex {
    display: none;
  }
  .hero-sub {
    font-size: 16px;
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .btn-primary,
  .btn-secondary {
    text-align: center;
  }
  .section {
    padding: 56px 20px;
  }
  .dark-section {
    padding: 56px 20px;
  }
  .testimonials {
    padding: 56px 20px;
  }
  .cta-section {
    padding: 64px 20px;
  }
  .three-col {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    max-width: 100%;
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cta-actions a {
    text-align: center;
  }
  footer {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 40px 20px;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content > * {
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-content > *:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-content > *:nth-child(2) {
  animation-delay: 0.2s;
}
.hero-content > *:nth-child(3) {
  animation-delay: 0.3s;
}
.hero-content > *:nth-child(4) {
  animation-delay: 0.4s;
}
