:root {
  --navy: #071a33;
  --navy-2: #0c2849;
  --blue: #315c8b;
  --mist: #edf3f9;
  --line: #d9e3ee;
  --text: #526985;
  --white: #fff;
  --green: #dff7e9;
  --green-text: #12613a;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Aptos, Inter, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--navy); background: #fff; font-family: var(--sans); }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
p { color: var(--text); line-height: 1.62; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); letter-spacing: -.035em; }
.hidden-step { display: none !important; }

.page-loader {
  position: fixed; z-index: 999; inset: 0; display: grid; place-items: center;
  background: #fff; transition: opacity .42s ease, visibility .42s ease;
}
.page-loader img {
  width: min(360px, 70vw); height: auto; animation: logo-breathe .9s ease-in-out infinite alternate;
}
.page-loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes logo-breathe {
  from { opacity: .28; transform: scale(.975); }
  to { opacity: 1; transform: scale(1); }
}

.site-header {
  height: 92px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(24px, 6vw, 92px); border-bottom: 1px solid rgba(7,26,51,.08);
  position: relative; z-index: 30; background: rgba(255,255,255,.96);
}
.brand img { display: block; width: 172px; height: 76px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 36px; font-size: 14px; font-weight: 700; }
.site-nav > a:not(.button) { color: #314963; position: relative; }
.site-nav > a:not(.button):after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px;
  background: var(--navy); transition: .25s ease;
}
.site-nav > a:hover:after, .site-nav > a.active:after { right: 0; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 6px; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 20px;
  min-height: 54px; padding: 0 28px; background: var(--navy); color: #fff; border: 1px solid var(--navy);
  border-radius: 2px; font-weight: 800; font-size: 14px; cursor: pointer; transition: .25s ease;
}
.button:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(7,26,51,.16); }
.button-small { min-height: 45px; padding: 0 22px; }
.button-light { background: #fff; color: var(--navy); border-color: #fff; }
.button-light:hover { background: var(--mist); }
.button-wide { width: 100%; }
.button:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.text-link { display: inline-flex; align-items: center; gap: 22px; color: var(--navy); font-size: 14px; font-weight: 800; }
.text-link span { transition: .2s; }
.text-link:hover span { transform: translateY(3px); }
.eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 22px; color: var(--navy);
  font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .15em;
}
.eyebrow:before { content: ""; width: 34px; height: 3px; background: currentColor; }
.eyebrow-light { color: #c8d8e9; }

.hero {
  min-height: 720px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center;
  padding: 76px clamp(24px, 7vw, 112px) 92px; overflow: hidden;
  background: linear-gradient(120deg, #fff 0%, #fff 56%, #f1f5f9 56%, #f8fafc 100%);
}
.hero-copy { max-width: 700px; position: relative; z-index: 2; }
.hero h1 { font-size: clamp(58px, 6.4vw, 98px); line-height: .96; margin-bottom: 32px; }
.hero h1 em { color: var(--blue); font-weight: inherit; }
.hero-text { max-width: 615px; font-size: 19px; margin-bottom: 38px; }
.button-row { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.hero-proof { display: flex; align-items: center; gap: 13px; margin-top: 62px; color: #60758d; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
.hero-proof i { width: 4px; height: 4px; background: #99abc0; border-radius: 50%; }

.hero-visual { position: relative; min-height: 500px; display: grid; place-items: center; }
.hero-visual:before {
  content: ""; position: absolute; width: 430px; height: 430px; border: 1px solid #cbd8e6; border-radius: 50%;
}
.hero-visual:after {
  content: ""; position: absolute; width: 590px; height: 590px; border: 1px solid #e0e8f1; border-radius: 50%;
}
.signal { position: absolute; z-index: 1; border-radius: 50%; background: var(--navy); }
.signal-one { width: 13px; height: 13px; top: 13%; right: 19%; }
.signal-two { width: 8px; height: 8px; left: 14%; bottom: 19%; background: #6990b7; }
.lead-card {
  width: min(390px, 84%); padding: 26px; background: rgba(255,255,255,.95); border: 1px solid #d3deea;
  box-shadow: 0 32px 65px rgba(7,26,51,.15); position: relative; z-index: 3;
}
.card-top { display: grid; grid-template-columns: auto 1fr auto; gap: 9px; align-items: center; padding-bottom: 19px; border-bottom: 1px solid var(--line); color: #49617c; font-size: 12px; font-weight: 800; }
.card-top small { color: #8aa0b5; }
.live-dot { width: 8px; height: 8px; background: #2bb673; border-radius: 50%; box-shadow: 0 0 0 4px #dff7e9; }
.lead-person { display: flex; gap: 14px; align-items: center; margin: 24px 0; }
.avatar { display: grid; place-items: center; width: 47px; height: 47px; border-radius: 50%; background: var(--navy); color: #fff; font-family: var(--serif); }
.lead-person div:last-child { display: flex; flex-direction: column; gap: 4px; }
.lead-person span { color: #71869d; font-size: 12px; }
.lead-card dl { margin: 0; }
.lead-card dl div { display: flex; justify-content: space-between; padding: 12px 0; border-top: 1px solid #edf1f5; font-size: 12px; }
.lead-card dt { color: #8295a9; }
.lead-card dd { margin: 0; font-weight: 800; }
.status-pill { margin-top: 15px; padding: 12px 14px; background: var(--green); color: var(--green-text); text-align: center; font-size: 12px; font-weight: 900; }
.mini-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 12px; min-width: 184px; padding: 14px 18px; background: #fff; box-shadow: 0 15px 35px rgba(7,26,51,.13); }
.mini-card-top { top: 13%; left: 0; }
.mini-card-bottom { right: -2%; bottom: 13%; }
.mini-icon { display: grid; place-items: center; width: 30px; height: 30px; background: var(--mist); color: var(--navy); border-radius: 50%; font-weight: 900; }
.mini-card div { display: flex; flex-direction: column; gap: 3px; }
.mini-card strong { font-size: 12px; }
.mini-card small { color: #8094aa; font-size: 10px; }

.statement { padding: 110px clamp(24px, 7vw, 112px); color: #fff; background: var(--navy); }
.statement > h2 { max-width: 850px; font-size: clamp(42px, 5.2vw, 78px); line-height: 1.03; margin-bottom: 32px; }
.statement > p:not(.eyebrow) { max-width: 840px; color: #b7c8d9; font-size: 18px; }
.statement > p strong { color: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 75px; border-top: 1px solid #37506b; }
.feature-grid article { padding: 35px 35px 10px 0; border-right: 1px solid #37506b; }
.feature-grid article:not(:first-child) { padding-left: 35px; }
.feature-grid article:last-child { border-right: 0; }
.feature-grid span { color: #7f9ab6; font-size: 12px; font-weight: 900; }
.feature-grid h3 { margin: 28px 0 12px; font-family: var(--serif); font-size: 25px; }
.feature-grid p { color: #9eb1c4; font-size: 14px; margin: 0; }

.section { padding: 110px clamp(24px, 7vw, 112px); }
.section-heading { display: flex; justify-content: space-between; gap: 50px; align-items: end; margin-bottom: 65px; }
.section-heading h2 { font-size: clamp(38px, 4.1vw, 62px); line-height: 1.07; margin: 0; }
.section-heading > p { max-width: 470px; margin: 0; font-size: 16px; }
.process-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); list-style: none; }
.process-list li { min-height: 315px; padding: 27px; border-right: 1px solid var(--line); position: relative; }
.process-list li:last-child { border-right: 0; }
.process-list li > span { color: #91a4b8; font-size: 11px; font-weight: 900; }
.process-icon { display: grid; place-items: center; width: 58px; height: 58px; margin: 45px 0 30px; background: var(--mist); border-radius: 50%; font-family: var(--serif); font-size: 24px; }
.process-list h3 { font-family: var(--serif); font-size: 19px; margin-bottom: 11px; }
.process-list p { margin: 0; font-size: 13px; }
.process-list p strong { color: var(--navy); }
.process-list .process-highlight {
  z-index: 1; margin: -8px; min-height: 331px; border: 2px solid var(--navy);
  background: linear-gradient(145deg, #f7fbff, #eaf2f9); box-shadow: 0 18px 35px rgba(7,26,51,.13);
}
.process-list .process-highlight > span { color: var(--navy); }
.process-list .process-highlight .process-icon { background: var(--navy); color: #fff; }

.markets { background: #f6f8fb; }
.market-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.market-card { min-height: 255px; display: grid; grid-template-columns: auto 1fr auto; gap: 25px; padding: 36px; background: #fff; border-top: 5px solid var(--navy); transition: .25s; }
.market-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(7,26,51,.09); }
.market-number { color: #91a5b9; font-size: 11px; font-weight: 900; }
.market-card p { margin: 0 0 26px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.market-card h3 { margin-bottom: 13px; font-family: var(--serif); font-size: 31px; }
.market-card span { color: #6a7f94; font-size: 14px; line-height: 1.5; }
.market-card b { align-self: end; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); }
.market-coming { opacity: .68; border-top-color: #90a3b7; }
.market-coming b { width: auto; padding: 0 9px; color: #688097; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }

.ai-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 670px; color: #fff; background: var(--navy); }
.ai-copy { padding: 100px clamp(24px, 7vw, 112px); }
.ai-copy h2 { font-size: clamp(45px, 4.8vw, 72px); line-height: 1.04; }
.ai-copy > p:not(.eyebrow) { max-width: 560px; color: #b1c4d6; font-size: 17px; }
.ai-price { display: flex; align-items: center; gap: 15px; margin: 38px 0; }
.ai-price strong { font-family: var(--serif); font-size: 60px; }
.ai-price span { color: #b4c5d6; line-height: 1.1; }
.ai-price small { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.ai-workflow { display: grid; place-items: center; background: linear-gradient(145deg, #eaf1f7, #fff); overflow: hidden; position: relative; }
.ai-workflow:before, .ai-workflow:after { content: ""; position: absolute; border: 1px solid #cfdae6; border-radius: 50%; }
.ai-workflow:before { width: 560px; height: 560px; }
.ai-workflow:after { width: 760px; height: 760px; }
.phone { width: 330px; min-height: 650px; padding: 18px 15px 24px; border: 9px solid var(--navy); border-radius: 42px; background: #f6f8fa; box-shadow: 0 35px 65px rgba(7,26,51,.24); position: relative; z-index: 2; color: var(--navy); }
.phone-head { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 7px 8px 18px; font-size: 10px; border-bottom: 1px solid #dfe6ed; }
.phone-head i { justify-self: end; width: 7px; height: 7px; background: #29b46d; border-radius: 50%; }
.message { max-width: 86%; margin: 10px 5px; padding: 9px 11px; border-radius: 12px; font-size: 9.5px; line-height: 1.4; }
.incoming { background: #e3e9ef; }
.outgoing { margin-left: auto; background: #1876e8; color: #fff; }
.message.short { width: 63px; text-align: center; }
.booked { margin: 14px 7px 0; padding: 11px; border: 1px solid #b9e9cf; background: #e6f8ee; color: #17603b; border-radius: 8px; text-align: center; font-size: 10px; font-weight: 900; }

.reactivation { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; background: #f4f7fa; }
.reactivation-copy h2 { max-width: 700px; font-size: clamp(42px, 4.8vw, 70px); line-height: 1.04; }
.reactivation-copy > p:not(.eyebrow) { max-width: 650px; font-size: 16px; }
.coming-button { display: inline-flex; margin-top: 20px; padding: 15px 24px; border: 1px solid #aebdcb; color: #6d8195; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.reactivation-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; }
.reactivation-flow > div { min-height: 210px; padding: 28px 20px; display: flex; flex-direction: column; justify-content: center; background: #fff; border-top: 4px solid var(--navy); box-shadow: 0 15px 30px rgba(7,26,51,.07); }
.reactivation-flow > div span { margin-bottom: 28px; font-family: var(--serif); font-size: 38px; font-weight: 700; }
.reactivation-flow strong { margin-bottom: 7px; font-family: var(--serif); font-size: 18px; }
.reactivation-flow small { color: #71869a; line-height: 1.45; }
.reactivation-flow > i { padding: 0 10px; color: #7c91a5; font-style: normal; }

.contact-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 105px clamp(24px, 7vw, 112px); background: var(--navy); color: #fff; }
.contact-section h2 { font-size: clamp(42px, 4.5vw, 68px); line-height: 1.04; }
.contact-section p:not(.eyebrow) { max-width: 640px; color: #aebfd0; }
.contact-options { display: grid; }
.contact-options a { display: grid; grid-template-columns: 1fr auto; padding: 28px 0; border-bottom: 1px solid #36506b; }
.contact-options a:first-child { border-top: 1px solid #36506b; }
.contact-options small { grid-column: 1; color: #819ab3; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .1em; }
.contact-options strong { grid-column: 1; font-family: var(--serif); font-size: clamp(21px, 2.1vw, 31px); }
.contact-options span { grid-column: 2; grid-row: 1 / 3; align-self: center; font-size: 23px; transition: .2s; }
.contact-options a:hover span { transform: translate(4px, -4px); }

.final-cta { padding: 120px 24px; text-align: center; }
.final-cta img.final-cta-logo { width: 120px; height: 120px; margin-bottom: 34px; object-fit: contain; }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { font-size: clamp(45px, 5.2vw, 76px); line-height: 1.03; margin-bottom: 38px; }
footer { display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center; padding: 50px clamp(24px, 7vw, 112px) 32px; border-top: 1px solid var(--line); }
footer img { width: 145px; height: 64px; object-fit: contain; }
footer p { margin: 0; font-size: 12px; }
footer div { display: flex; gap: 28px; font-size: 12px; font-weight: 800; }
.research-note { grid-column: 1 / -1; padding: 20px 24px; background: var(--mist); color: #536b83; font-size: 12px; line-height: 1.55; }
.research-note strong { color: var(--navy); }
.research-note a { margin-left: 8px; color: var(--navy); font-weight: 900; }
footer small { grid-column: 1 / -1; color: #8a9caf; font-size: 10px; }

/* Buy leads */
.buy-page { background: #f8fafc; }
.buy-page .site-header { background: #fff; }
.cart-trigger { display: inline-flex; align-items: center; gap: 7px; padding: 8px 0; border: 0; background: none; color: #314963; cursor: pointer; font-size: 14px; font-weight: 800; }
.cart-trigger span, .order-bar [data-cart-count] { display: grid; place-items: center; min-width: 22px; height: 22px; padding: 0 5px; border-radius: 20px; background: var(--navy); color: #fff; font-size: 10px; }
.shop-hero { padding: 80px clamp(24px, 7vw, 112px) 70px; color: #fff; background: var(--navy); text-align: center; }
.shop-hero .eyebrow { justify-content: center; color: #a9bfd5; }
.shop-hero h1 { font-size: clamp(48px, 5.7vw, 80px); line-height: 1.02; margin-bottom: 24px; }
.shop-hero > p:not(.eyebrow) { max-width: 700px; margin: 0 auto; color: #b7c7d7; font-size: 17px; }
.shop-steps { max-width: 640px; margin: 62px auto 0; display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; }
.shop-steps span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid #58718c; border-radius: 50%; color: #a9bbce; font-weight: 900; position: relative; }
.shop-steps span b { position: absolute; top: 52px; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: #7790aa; }
.shop-steps span.current { background: #fff; color: var(--navy); border-color: #fff; }
.shop-steps span.complete { background: #dff7e9; color: #17603b; border-color: #dff7e9; }
.shop-steps i { height: 1px; background: #49627d; }
.shop-section { max-width: 1280px; margin: 0 auto; padding: 85px 40px; }
.shop-heading { display: grid; grid-template-columns: 92px 1fr; gap: 25px; margin-bottom: 45px; }
.shop-heading > span { padding-top: 11px; color: #71869c; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.shop-heading h2 { margin-bottom: 8px; font-size: clamp(34px, 3.5vw, 52px); }
.shop-heading p { margin: 0; }
.product-grid, .niche-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.product-card, .niche-card, .package-card {
  appearance: none; color: var(--navy); text-align: left; cursor: pointer; border: 1px solid var(--line); background: #fff; transition: .25s ease;
}
.product-card { min-height: 290px; padding: 36px; display: grid; grid-template-columns: auto 1fr; gap: 27px; position: relative; }
.product-card:hover:not(.coming-soon), .niche-card:hover, .package-card:hover { border-color: var(--navy); transform: translateY(-4px); box-shadow: 0 18px 40px rgba(7,26,51,.09); }
.product-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--navy); color: #fff; font-family: var(--serif); font-size: 25px; }
.product-card small, .niche-label { display: inline-block; margin-bottom: 22px; color: #66809b; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.product-card h3 { font-family: var(--serif); font-size: 30px; margin-bottom: 12px; }
.product-card p { margin: 0; font-size: 14px; }
.product-card > b { position: absolute; left: 117px; bottom: 35px; font-size: 12px; }
.coming-soon { opacity: .58; cursor: default; }
.coming-soon .product-icon { background: #bac7d4; }
.back-link { margin-bottom: 35px; padding: 0; border: 0; background: none; color: #5b7188; cursor: pointer; font-size: 12px; font-weight: 800; }
.niche-card { min-height: 420px; padding: 42px; border-top: 5px solid var(--navy); position: relative; }
.niche-card h3 { font-family: var(--serif); font-size: 37px; margin-bottom: 15px; }
.niche-card p { max-width: 480px; font-size: 14px; }
.niche-card ul { margin: 28px 0 50px; padding: 0; list-style: none; display: grid; gap: 11px; color: #536b84; font-size: 12px; }
.niche-card li:before { content: "✓"; margin-right: 9px; color: #197247; font-weight: 900; }
.niche-card li em { margin-left: 7px; padding: 3px 6px; background: var(--mist); color: #6c8196; font-style: normal; font-size: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.niche-card > b { position: absolute; left: 42px; bottom: 35px; font-size: 12px; }
.niche-card > b span { margin-left: 15px; }
.selected-market { display: flex; align-items: center; gap: 18px; padding: 18px 22px; margin-bottom: 30px; background: var(--navy); color: #fff; }
.selected-market span { color: #9db1c5; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.selected-market strong { margin-right: auto; }
.selected-market button { color: #fff; border: 0; background: none; text-decoration: underline; cursor: pointer; font-size: 11px; }
.campaign-disclaimer {
  display: grid; grid-template-columns: 150px 1fr; gap: 28px; margin-bottom: 50px; padding: 28px 30px;
  border: 1px solid #cbd8e4; border-left: 5px solid var(--navy); background: #f0f5fa;
}
.campaign-disclaimer > span { padding-top: 4px; color: #587089; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.campaign-disclaimer h3 { margin-bottom: 9px; font-family: var(--serif); font-size: 23px; }
.campaign-disclaimer p { margin: 0 0 9px; font-size: 12px; }
.campaign-disclaimer p:last-child { margin-bottom: 0; }
.campaign-disclaimer strong { color: var(--navy); }
.package-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.package-card { min-height: 350px; padding: 29px 25px 24px; position: relative; }
.package-card.recommended { border: 2px solid var(--navy); }
.recommend-label { position: absolute; top: -28px; left: -2px; right: -2px; height: 28px; display: grid; place-items: center; background: var(--navy); color: #fff; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.package-tag { display: block; min-height: 28px; color: #71869b; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.package-card h3 { margin: 15px 0 20px; font-family: var(--serif); font-size: 27px; }
.package-price { font-family: var(--serif); font-size: 45px; font-weight: 700; }
.package-price sup { font-family: var(--sans); font-size: 15px; }
.package-card p { margin: 20px 0 35px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12px; }
.package-card p strong { color: var(--navy); font-size: 23px; }
.package-card > b { display: block; padding: 13px; background: var(--mist); text-align: center; font-size: 11px; transition: .2s; }
.package-card:hover > b, .package-card.added > b { background: var(--navy); color: #fff; }
.package-card.selected { border: 2px solid var(--navy); box-shadow: 0 18px 40px rgba(7,26,51,.1); }
.estimate-note { margin-top: 25px; font-size: 11px; text-align: center; }
.order-bar {
  display: none; position: sticky; z-index: 20; bottom: 0; grid-template-columns: minmax(240px, 1fr) auto auto auto; gap: 28px; align-items: center;
  padding: 19px clamp(24px, 7vw, 112px); background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -12px 35px rgba(7,26,51,.1);
}
.order-bar.visible { display: grid; }
.order-bar > div:first-child { display: grid; gap: 3px; }
.order-bar small { color: #7a8fa4; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.how-link { color: #5e748a; font-size: 10px; font-weight: 800; text-decoration: underline; }
.ai-toggle {
  display: grid; grid-template-columns: auto auto; column-gap: 10px; align-items: center; padding: 9px 12px;
  border: 1px solid #cbd6e1; background: #f5f7fa; color: var(--navy); text-align: left; cursor: pointer; transition: .2s;
}
.ai-toggle:hover { border-color: var(--navy); }
.ai-toggle[aria-pressed="true"] { border-color: var(--navy); background: #edf4fa; box-shadow: inset 3px 0 var(--navy); }
.ai-toggle .toggle-track { grid-row: 1 / 3; width: 42px; height: 23px; padding: 3px; background: #c8d2dc; border-radius: 20px; transition: .2s; }
.ai-toggle .toggle-track i { display: block; width: 17px; height: 17px; background: #fff; border-radius: 50%; transition: .2s; }
.ai-toggle[aria-pressed="true"] .toggle-track { background: var(--navy); }
.ai-toggle[aria-pressed="true"] .toggle-track i { transform: translateX(19px); }
.ai-toggle b { font-size: 11px; }
.ai-toggle small { font-size: 8px; }
.order-total { display: grid; gap: 2px; text-align: right; }
.order-total strong { font-family: var(--serif); font-size: 26px; }
.shop-assurance { max-width: 1280px; margin: 25px auto 100px; padding: 50px 40px; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--navy); color: #fff; }
.shop-assurance div { padding: 10px 35px; border-right: 1px solid #344d68; }
.shop-assurance div:last-child { border: 0; }
.shop-assurance span { color: #7e98b3; font-size: 10px; }
.shop-assurance h3 { margin: 20px 0 8px; font-family: var(--serif); font-size: 22px; }
.shop-assurance p { margin: 0; color: #9fb2c5; font-size: 12px; }
.modal { display: none; position: fixed; z-index: 100; inset: 0; }
.modal.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(3,15,29,.72); backdrop-filter: blur(4px); }
.modal-panel { position: relative; width: min(720px, calc(100% - 30px)); max-height: calc(100vh - 40px); overflow: auto; margin: 20px auto; padding: 48px; background: #fff; box-shadow: 0 30px 80px rgba(0,0,0,.3); }
.modal-close { position: absolute; top: 17px; right: 19px; border: 0; background: none; color: #73879b; font-size: 27px; cursor: pointer; }
.modal-panel h2 { font-size: 43px; margin-bottom: 28px; }
.payment-methods { margin: 0 0 24px; padding: 0; border: 0; }
.payment-methods legend { width: 100%; margin-bottom: 13px; color: var(--navy); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.payment-option {
  display: grid !important; grid-template-columns: auto 1fr auto; gap: 13px; align-items: center;
  margin: 0 0 9px !important; padding: 15px; border: 1px solid var(--line); cursor: pointer;
}
.payment-option:has(input:checked) { border-color: var(--navy); background: #f5f8fb; box-shadow: inset 4px 0 var(--navy); }
.payment-option input { width: 17px; height: 17px; margin: 0; accent-color: var(--navy); }
.payment-option span { display: grid; gap: 3px; }
.payment-option strong { color: var(--navy); font-size: 13px; }
.payment-option small { color: #74899e; font-size: 9px; font-weight: 500; }
.payment-option > b { color: #526a82; font-size: 9px; }
.modal-summary { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-bottom: 30px; padding: 20px; background: var(--mist); font-size: 13px; }
.modal-summary strong:last-child { font-size: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.modal label { display: grid; gap: 8px; margin-bottom: 16px; color: #445c75; font-size: 11px; font-weight: 800; }
.modal input { width: 100%; height: 48px; border: 1px solid #cdd9e5; padding: 0 13px; outline: 0; }
.modal input:focus { border-color: var(--navy); }
.modal .field-help { margin-top: -2px; color: #70869b; font-size: 9px; font-weight: 500; line-height: 1.45; }
#order-form > p { margin: 13px 0 0; font-size: 10px; text-align: center; }
.final-sale-notice { margin: 5px 0 14px; padding: 16px 18px; border-left: 4px solid var(--navy); background: #f1f5f9; }
.final-sale-notice strong { display: block; margin-bottom: 5px; color: var(--navy); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.final-sale-notice p { margin: 0; font-size: 10px; line-height: 1.55; }
.terms-check { display: flex !important; flex-direction: row; align-items: flex-start; gap: 9px !important; margin-bottom: 18px !important; cursor: pointer; }
.terms-check input { flex: 0 0 auto; width: 16px; height: 16px; margin: 1px 0 0; accent-color: var(--navy); }
.terms-check span { color: #526a82; font-size: 10px; line-height: 1.45; }
.form-success { padding: 50px 20px 30px; text-align: center; }
.form-success span { display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 20px; border-radius: 50%; background: var(--green); color: var(--green-text); font-size: 25px; }
.form-success h3 { font-family: var(--serif); font-size: 30px; }
.form-success p { margin: 0 0 14px; font-size: 13px; }
.zelle-instructions { padding: 24px; background: var(--mist); text-align: left; }
.zelle-instructions h4 { margin: 0 0 12px; font-family: var(--serif); font-size: 22px; }
.zelle-instructions dl { margin: 18px 0; }
.zelle-instructions dl div { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-bottom: 1px solid #cedae6; }
.zelle-instructions dt { color: #72879c; font-size: 11px; }
.zelle-instructions dd { margin: 0; font-weight: 900; }
.zelle-instructions strong { color: var(--navy); }

.cart-drawer { display: none; position: fixed; z-index: 90; inset: 0; }
.cart-drawer.open { display: block; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(3,15,29,.66); backdrop-filter: blur(3px); }
.cart-panel { position: absolute; top: 0; right: 0; width: min(500px, 100%); height: 100%; overflow: auto; padding: 48px 38px; background: #fff; box-shadow: -25px 0 60px rgba(0,0,0,.2); }
.cart-panel h2 { margin-bottom: 30px; font-size: 45px; }
.cart-items { display: grid; gap: 12px; }
.cart-empty { padding: 35px 20px; background: var(--mist); text-align: center; }
.cart-empty strong { display: block; margin-bottom: 8px; font-family: var(--serif); font-size: 22px; }
.cart-empty p { margin: 0; font-size: 12px; }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 7px 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.cart-item small { color: #71869a; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.cart-item strong { font-family: var(--serif); font-size: 19px; }
.cart-item .item-price { grid-column: 2; grid-row: 1 / 3; align-self: center; font-family: var(--serif); font-size: 21px; }
.cart-addon { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; margin-top: 7px; padding: 10px 12px; background: #edf4fa; color: #315c8b; }
.cart-addon span { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.cart-addon strong { font-family: var(--sans); font-size: 12px; }
.cart-service { display: grid; grid-template-columns: 1fr auto; gap: 6px 18px; margin-top: 10px; padding: 16px; background: #edf4fa; color: #315c8b; border-left: 4px solid #315c8b; }
.cart-service small { font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.cart-service strong { font-size: 14px; }
.cart-service > span { grid-column: 2; grid-row: 1 / 3; align-self: center; font-size: 14px; font-weight: 900; }
.cart-service button { justify-self: start; padding: 0; border: 0; background: none; color: #6e5560; cursor: pointer; font-size: 10px; text-decoration: underline; }
.cart-item button { justify-self: start; padding: 0; border: 0; background: none; color: #8a5260; cursor: pointer; font-size: 10px; text-decoration: underline; }
.cart-bonuses { display: grid; gap: 9px; margin: 24px 0; }
.bonus-line { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; margin: 0; padding: 17px; background: var(--green); color: var(--green-text); }
.bonus-limited { background: #e8effa; color: #274e78; }
.bonus-line > span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: #fff; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.bonus-line div { display: flex; flex-direction: column; gap: 3px; }
.bonus-line small { font-size: 9px; }
.bonus-line b { font-size: 10px; }
.cart-summary { display: flex; justify-content: space-between; align-items: center; margin: 25px 0; padding-top: 20px; border-top: 2px solid var(--navy); }
.cart-summary span { font-size: 12px; font-weight: 900; text-transform: uppercase; }
.cart-summary strong { font-family: var(--serif); font-size: 32px; }
.buy-more-leads { width: 100%; margin-top: 11px; padding: 14px; border: 1px solid var(--navy); background: #fff; color: var(--navy); cursor: pointer; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.buy-more-leads:hover { background: var(--mist); }
.continue-shopping { width: 100%; margin-top: 14px; padding: 12px; border: 0; background: none; color: #60758a; cursor: pointer; font-size: 11px; text-decoration: underline; }
.modal-summary.cart-checkout-summary { display: block; }
.checkout-line { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 9px; font-size: 12px; }
.checkout-line span { font-weight: 700; }
.checkout-line strong { font-family: var(--sans); font-size: 12px !important; font-weight: 800; }
.checkout-line.checkout-bonus span { color: #17603b; }
.checkout-line.checkout-addon span { color: #315c8b; }
.checkout-line.checkout-fee span { color: #536b83; }
.checkout-total { display: flex; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid #c9d6e2; font-size: 18px; }
.checkout-total strong { font-family: var(--serif); font-size: 22px !important; }

@media (max-width: 980px) {
  .site-header { height: 78px; }
  .brand img { width: 145px; height: 62px; }
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 78px; left: 0; right: 0; padding: 25px; background: #fff; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 20px; }
  .site-nav.open { display: flex; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; background: linear-gradient(#fff 0 58%, #f3f7fa 58%); }
  .hero-visual { margin-top: 55px; }
  .feature-grid, .process-list { grid-template-columns: 1fr 1fr; }
  .feature-grid article:nth-child(2) { border-right: 0; }
  .process-list li:nth-child(even) { border-right: 0; }
  .process-list li:not(:last-child) { border-bottom: 1px solid var(--line); }
  .process-list .process-highlight { margin: 0; min-height: 315px; }
  .section-heading { align-items: start; flex-direction: column; }
  .market-grid { grid-template-columns: 1fr; }
  .ai-section { grid-template-columns: 1fr; }
  .ai-workflow { min-height: 660px; }
  .reactivation { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr 1fr; gap: 35px 14px; }
  .order-bar { grid-template-columns: 1fr auto auto; }
  .ai-toggle { grid-row: 2; }
  .order-total { grid-column: 2; grid-row: 2; }
  .order-bar .button { grid-column: 3; grid-row: 1 / 3; }
}

@media (max-width: 680px) {
  .hero { min-height: auto; padding: 42px 20px 52px; }
  .hero h1 { font-size: clamp(40px, 11vw, 46px); }
  .hero-text { font-size: 15px; }
  .button-row { display: grid; gap: 16px; }
  .button-row .button { width: 100%; min-height: 50px; }
  .button-row .text-link { justify-content: center; }
  .hero-proof { flex-wrap: wrap; margin-top: 32px; }
  .hero-visual { min-height: 355px; margin-top: 32px; }
  .hero-visual:before { width: 285px; height: 285px; }
  .hero-visual:after { width: 390px; height: 390px; }
  .lead-card { padding: 20px; }
  .mini-card { min-width: 145px; padding: 9px; }
  .mini-card-top { left: -10px; top: 8%; }
  .mini-card-bottom { right: -10px; bottom: 8%; }
  .statement, .section, .ai-copy { padding: 58px 20px; }
  .statement > h2 { font-size: 36px; }
  .feature-grid, .process-list { grid-template-columns: 1fr; }
  .feature-grid { margin-top: 46px; }
  .feature-grid article, .feature-grid article:not(:first-child) { padding: 22px 0; border-right: 0; border-bottom: 1px solid #37506b; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2 { font-size: 36px; }
  .process-list li { min-height: 250px; padding: 22px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-icon { margin: 28px 0 22px; }
  .process-list li:last-child { border-bottom: 0; }
  .market-card { min-height: 210px; padding: 24px 20px; grid-template-columns: auto 1fr; }
  .market-card h3 { font-size: 27px; }
  .market-card b { display: none; }
  .ai-copy h2 { font-size: 37px; }
  .ai-workflow { min-height: 520px; }
  .phone { transform: scale(.78); }
  .reactivation-flow { grid-template-columns: 1fr; gap: 10px; }
  .reactivation-copy h2 { font-size: 37px; }
  .reactivation-flow > div { min-height: 170px; padding: 22px 18px; }
  .reactivation-flow > i { transform: rotate(90deg); text-align: center; }
  .contact-section { padding: 58px 20px; gap: 34px; }
  .contact-section h2 { font-size: 37px; }
  .final-cta { padding: 68px 20px; }
  .final-cta h2 { font-size: 36px; }
  .final-cta img.final-cta-logo { width: 96px; height: 96px; margin-bottom: 26px; }
  footer { grid-template-columns: 1fr; gap: 18px; }
  footer small { grid-column: auto; }
  .shop-hero { padding: 48px 20px 58px; }
  .shop-hero h1 { font-size: 37px; }
  .shop-hero > p:not(.eyebrow) { font-size: 15px; }
  .shop-steps { margin-top: 44px; }
  .shop-section { padding: 50px 18px; }
  .shop-heading { grid-template-columns: 1fr; gap: 6px; }
  .shop-heading h2 { font-size: 33px; }
  .product-grid, .niche-grid, .package-grid { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 1fr; min-height: 315px; padding: 28px 28px 72px; }
  .product-card > b { left: 28px; bottom: 28px; }
  .niche-card { min-height: 375px; padding: 28px 22px; }
  .niche-card h3 { font-size: 32px; }
  .niche-card > b { left: 22px; bottom: 28px; }
  .selected-market { align-items: start; flex-wrap: wrap; }
  .selected-market strong { width: 100%; }
  .campaign-disclaimer { grid-template-columns: 1fr; gap: 8px; padding: 20px 17px; margin-bottom: 38px; }
  .package-card { min-height: 310px; padding: 24px 22px 20px; }
  .package-card h3 { font-size: 25px; }
  .package-price { font-size: 39px; }
  .order-bar { position: relative; grid-template-columns: 1fr 1fr; padding: 18px; gap: 18px; }
  .order-bar > div:first-child { grid-column: 1 / -1; }
  .ai-toggle { grid-column: 1 / -1; grid-row: auto; min-height: 54px; }
  .order-total { grid-column: 1; grid-row: auto; text-align: left; }
  .order-bar .button { grid-column: 2; grid-row: auto; min-height: 52px; }
  .cart-panel { padding: 36px 20px; }
  .cart-panel h2 { font-size: 38px; margin-bottom: 22px; }
  .cart-item { padding: 15px 0; }
  .cart-bonuses { margin: 18px 0; }
  .bonus-line { padding: 13px; }
  .shop-assurance { margin: 18px 18px 55px; padding: 20px; grid-template-columns: 1fr; }
  .shop-assurance div { padding: 20px 8px; border-right: 0; border-bottom: 1px solid #344d68; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .modal { overflow: hidden; }
  .modal-panel {
    width: 100%; height: 100vh; height: 100dvh; max-height: none; margin: 0;
    padding: 30px 20px calc(125px + env(safe-area-inset-bottom));
    overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  }
  .modal-panel h2 { font-size: 36px; margin-bottom: 22px; }
  .modal-summary { padding: 15px; margin-bottom: 22px; }
  .checkout-line { gap: 12px; font-size: 11px; }
  .checkout-line strong { font-size: 11px !important; }
  .checkout-total strong { font-size: 21px !important; }
  .payment-option { padding: 12px; }
  .modal label { margin-bottom: 13px; }
  .modal input { height: 46px; font-size: 16px; }
  .final-sale-notice { padding: 13px 15px; }
  .terms-check { padding: 3px 0; }
  #submit-order {
    position: sticky; z-index: 5; bottom: calc(12px + env(safe-area-inset-bottom));
    min-height: 52px; line-height: 1.2; margin-top: 6px;
    box-shadow: 0 -10px 22px 12px rgba(255,255,255,.96);
  }
  #order-form > p { margin-bottom: 30px; }
  .payment-option { grid-template-columns: auto 1fr; }
  .payment-option > b { grid-column: 2; }
}
