:root {
  --navy: #081a33;
  --navy-2: #0e294d;
  --blue: #145eff;
  --blue-dark: #0a49d8;
  --gold: #d8a949;
  --ink: #132238;
  --muted: #607086;
  --line: #dce4ef;
  --mist: #f3f7fc;
  --white: #fff;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(8, 26, 51, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "DM Sans", sans-serif; font-size: 16px; line-height: 1.65; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", sans-serif; line-height: 1.12; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.045em; }
h3 { letter-spacing: -.025em; }

.site-header { min-height: 96px; padding: 9px clamp(20px, 5vw, 76px); display: flex; align-items: center; justify-content: space-between; gap: 32px; position: relative; z-index: 10; color: var(--navy); background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(8,26,51,.08); }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-family: "Manrope", sans-serif; font-weight: 800; letter-spacing: -.03em; }
.logo-link { flex: 0 1 245px; }
.header-logo { display: block; width: 100%; max-width: 245px; height: auto; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; background: var(--blue); color: white; border-radius: 50%; }
.brand-mark svg { width: 20px; fill: currentColor; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { color: #34475f; text-decoration: none; font-weight: 600; }
nav a:hover { color: var(--blue); }
.header-call { text-decoration: none; color: white; background: var(--navy); padding: 12px 20px; border-radius: 999px; font-weight: 700; }

.hero { min-height: 720px; position: relative; display: flex; align-items: center; overflow: hidden; background: var(--navy); color: white; }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(5,17,34,.97) 0%, rgba(5,17,34,.88) 34%, rgba(5,17,34,.3) 68%, rgba(5,17,34,.08) 100%); }
.hero-content { position: relative; z-index: 2; width: min(690px, 92%); padding: 80px 0 150px clamp(24px, 7vw, 112px); }
.eyebrow, .kicker { font-size: .83rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--blue); }
.eyebrow { display: flex; align-items: center; gap: 10px; color: #b6cdff; }
.eyebrow span { width: 28px; height: 2px; background: var(--gold); }
h1 { font-size: clamp(3rem, 6vw, 5.8rem); max-width: 820px; margin-bottom: 24px; letter-spacing: -.065em; }
.hero-copy { max-width: 650px; font-size: 1.15rem; color: #d9e4f2; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 25px; border-radius: 999px; text-decoration: none; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--blue); box-shadow: 0 12px 30px rgba(20,94,255,.28); }
.button-primary:hover { background: var(--blue-dark); }
.button-secondary { color: white; border: 1px solid rgba(255,255,255,.5); background: rgba(255,255,255,.06); backdrop-filter: blur(8px); }
.demo-note { margin: 22px 0 0; color: #b9c9dc; }
.demo-note strong { color: white; }
.trust-strip { position: absolute; z-index: 3; bottom: 0; left: 0; right: 0; min-height: 105px; padding: 22px clamp(24px, 7vw, 112px); display: flex; gap: clamp(30px, 7vw, 105px); align-items: center; background: rgba(6,24,47,.84); border-top: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(12px); }
.trust-strip div { display: flex; align-items: baseline; gap: 9px; }
.trust-strip strong { font: 800 1.5rem "Manrope", sans-serif; color: var(--gold); }
.trust-strip span { color: #d6dfeb; }

.section-pad { padding: 110px clamp(24px, 7vw, 112px); }
.section-heading { max-width: 750px; }
.section-heading.center { margin: 0 auto 55px; text-align: center; }
.kicker { margin-bottom: 14px; }
.kicker.light { color: #8fb1ff; }
.problem-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px, 8vw, 120px); margin-top: 55px; }
.lead-copy { font-size: 1.3rem; color: var(--muted); }
.pain-list { border-top: 1px solid var(--line); }
.pain-list article { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.pain-list article > span { color: var(--blue); font-weight: 800; }
.pain-list h3 { margin-bottom: 8px; font-size: 1.25rem; }
.pain-list p { margin-bottom: 0; color: var(--muted); }

.how-it-works { background: var(--mist); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1180px; margin: auto; }
.steps article { padding: 34px; background: white; border: 1px solid #e1e8f2; border-radius: var(--radius); box-shadow: 0 8px 28px rgba(8,26,51,.05); }
.step-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 26px; border-radius: 50%; color: white; background: var(--blue); font-weight: 800; }
.steps h3 { margin-bottom: 10px; }
.steps p { margin-bottom: 0; color: var(--muted); }

.services { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(45px, 8vw, 110px); color: white; background: var(--navy); }
.services-intro { position: sticky; top: 118px; align-self: start; }
.services-intro p:last-child { color: #adc0d7; font-size: 1.1rem; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.service-grid article { min-height: 245px; padding: 30px; border: 1px solid rgba(255,255,255,.12); margin: 0 -1px -1px 0; }
.service-number { color: var(--gold); font-weight: 800; margin-bottom: 28px; }
.service-grid h3 { margin-bottom: 11px; }
.service-grid p { color: #adc0d7; margin-bottom: 0; }

.industry-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 13px; margin-top: 50px; }
.industry-grid article { min-height: 285px; padding: 26px; display: flex; flex-direction: column; justify-content: flex-end; border-radius: var(--radius); color: white; background: linear-gradient(160deg, #123c74 0%, #081a33 80%); overflow: hidden; position: relative; }
.industry-grid article::before { content: ""; position: absolute; width: 150px; height: 150px; right: -55px; top: -55px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.industry-grid span { color: #8fb1ff; font-weight: 800; font-size: .72rem; letter-spacing: .12em; }
.industry-grid h3 { font-size: 1.35rem; margin: 10px 0; }
.industry-grid p { color: #bed0e3; margin: 0; font-size: .95rem; }

.realtor-bonus { position: relative; overflow: hidden; color: white; background: linear-gradient(135deg, #0e294d 0%, #081a33 68%); }
.realtor-bonus::after { content: ""; position: absolute; width: 430px; height: 430px; right: -170px; top: -190px; border: 1px solid rgba(216,169,73,.25); border-radius: 50%; box-shadow: 0 0 0 70px rgba(216,169,73,.04), 0 0 0 140px rgba(216,169,73,.025); pointer-events: none; }
.bonus-heading { position: relative; z-index: 1; max-width: 930px; }
.bonus-label { display: inline-flex; align-items: center; min-height: 34px; padding: 0 15px; margin-bottom: 22px; color: var(--navy); background: var(--gold); border-radius: 999px; font-weight: 800; font-size: .78rem; letter-spacing: .11em; text-transform: uppercase; }
.bonus-heading h2 { max-width: 900px; margin-bottom: 25px; }
.bonus-lead { max-width: 880px; margin-bottom: 0; color: #c4d3e5; font-size: 1.13rem; }
.bonus-benefits { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.bonus-benefits article { min-height: 225px; padding: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: rgba(255,255,255,.055); }
.bonus-benefits article > span { display: block; margin-bottom: 30px; color: var(--gold); font-weight: 800; }
.bonus-benefits h3 { margin-bottom: 10px; }
.bonus-benefits p { margin-bottom: 0; color: #b8c9dc; }
.bonus-disclaimer { position: relative; z-index: 1; max-width: 1040px; margin: 28px 0 0; color: #91a6bf; font-size: .82rem; line-height: 1.55; }

.pricing { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(50px, 9vw, 130px); background: var(--mist); }
.pricing-copy > p:not(.kicker) { color: var(--muted); font-size: 1.1rem; max-width: 620px; }
.check-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px 24px; }
.check-list li { position: relative; padding-left: 27px; font-weight: 600; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }
.price-card { padding: clamp(32px, 5vw, 52px); background: white; border-radius: 24px; box-shadow: var(--shadow); border-top: 5px solid var(--blue); }
.plan-name { font-weight: 800; color: var(--blue); }
.price { font: 800 clamp(4rem, 7vw, 6rem) "Manrope", sans-serif; letter-spacing: -.07em; color: var(--navy); }
.price sup { font-size: 1.8rem; vertical-align: super; }
.price span { margin-left: 8px; font: 600 1rem "DM Sans", sans-serif; letter-spacing: 0; color: var(--muted); }
.setup { color: var(--muted); }
.setup strong { color: var(--ink); }
.price-rule { height: 1px; background: var(--line); margin: 26px 0; }
.price-card .full { width: 100%; margin-top: 20px; }
.price-card small { display: block; text-align: center; color: var(--muted); margin-top: 15px; }

.demo-cta { margin: 0; padding: 70px clamp(24px, 7vw, 112px); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; color: white; background: var(--blue); }
.demo-cta h2 { margin: 0; max-width: 780px; }
.demo-action { min-width: 280px; padding: 25px 30px; color: var(--navy); background: white; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
.demo-action a { display: block; font: 800 1.75rem "Manrope", sans-serif; color: var(--blue); text-decoration: none; }
.demo-action span { font-size: .88rem; color: var(--muted); }

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 120px); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 24px 0; }
summary { cursor: pointer; font: 700 1.05rem "Manrope", sans-serif; list-style: none; padding-right: 35px; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: -4px; color: var(--blue); font-size: 1.7rem; }
details[open] summary::after { content: "−"; }
details p { color: var(--muted); margin: 15px 35px 0 0; }

footer { padding: 44px clamp(24px, 7vw, 112px); display: flex; justify-content: space-between; align-items: center; gap: 30px; color: #aebdd0; background: #050f20; }
.footer-brand { color: white; }
footer p { margin: 0; }
footer > a:last-child { color: white; font-weight: 700; }

@media (max-width: 1020px) {
  nav { display: none; }
  .hero { min-height: 760px; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,17,34,.96) 0%, rgba(5,17,34,.72) 68%, rgba(5,17,34,.35) 100%); }
  .problem-grid, .services, .pricing, .faq { grid-template-columns: 1fr; }
  .services-intro { position: static; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-benefits { grid-template-columns: 1fr; }
  .demo-cta { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .site-header { min-height: 78px; padding-top: 7px; padding-bottom: 7px; gap: 14px; }
  .brand { font-size: .92rem; }
  .logo-link { flex-basis: 170px; }
  .header-logo { max-width: 170px; }
  .brand-mark { width: 34px; height: 34px; }
  .header-call { padding: 10px 14px; font-size: .84rem; }
  .hero { min-height: 790px; align-items: flex-start; }
  .hero-image { object-position: 63% center; opacity: .55; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,17,34,.98), rgba(5,17,34,.65)); }
  .hero-content { padding: 70px 24px 170px; width: 100%; }
  h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-copy { font-size: 1.03rem; }
  .hero-actions .button { width: 100%; }
  .trust-strip { padding: 18px 24px; gap: 13px; display: grid; grid-template-columns: repeat(3, 1fr); }
  .trust-strip div { display: block; }
  .trust-strip strong, .trust-strip span { display: block; }
  .trust-strip strong { font-size: 1.1rem; }
  .trust-strip span { font-size: .72rem; line-height: 1.3; }
  .section-pad { padding: 76px 24px; }
  .steps, .service-grid, .industry-grid, .check-list { grid-template-columns: 1fr; }
  .steps article { padding: 28px; }
  .service-grid article { min-height: auto; }
  .industry-grid article { min-height: 230px; }
  .bonus-benefits article { min-height: auto; }
  .demo-cta { padding: 62px 24px; gap: 30px; }
  .demo-action { min-width: 0; width: 100%; }
  footer { flex-direction: column; align-items: flex-start; }
  footer p { display: none; }
}

@media (max-width: 470px) {
  .logo-link { flex-basis: 145px; }
  .header-logo { max-width: 145px; }
  .header-call { max-width: 145px; padding: 9px 12px; font-size: .7rem; line-height: 1.15; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
