:root {
  --ink: #0d1829;
  --ink-soft: #41506a;
  --paper: #f7f8f3;
  --white: #ffffff;
  --lime: #c8ff45;
  --lime-dark: #a9e31c;
  --purple: #6d4aff;
  --orange: #ff754b;
  --line: #dfe4dc;
  --shadow: 0 28px 80px rgba(17, 30, 47, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Assistant", sans-serif; font-size: 17px; line-height: 1.55; overflow-x: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
.skip-link { position: fixed; top: -100px; right: 20px; z-index: 200; background: var(--ink); color: white; padding: 10px 18px; border-radius: 10px; }
.skip-link:focus { top: 14px; }

.site-header { width: min(1180px, calc(100% - 40px)); height: 84px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 20; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 24px; font-weight: 800; letter-spacing: -0.7px; }
.brand-mark { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; gap: 3px; border-radius: 12px; background: var(--lime); border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); }
.brand-mark i { width: 4px; height: 4px; background: var(--ink); border-radius: 50%; }
nav { display: flex; gap: 30px; font-size: 15px; font-weight: 600; }
nav a { position: relative; }
nav a:after { content: ""; position: absolute; right: 0; bottom: -6px; width: 0; height: 2px; background: var(--purple); transition: width .25s ease; }
nav a:hover:after { width: 100%; }

.button { border: 2px solid var(--ink); border-radius: 14px; background: var(--lime); color: var(--ink); font-weight: 800; padding: 15px 24px; box-shadow: 4px 4px 0 var(--ink); transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.button:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.button-small { padding: 10px 17px; font-size: 14px; border-radius: 11px; box-shadow: 3px 3px 0 var(--ink); }

.hero { min-height: 720px; width: min(1250px, calc(100% - 40px)); margin: 0 auto; position: relative; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 70px; padding: 66px 40px 90px; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.glow-one { width: 260px; height: 260px; background: rgba(200, 255, 69, .38); right: -100px; top: 50px; }
.glow-two { width: 210px; height: 210px; background: rgba(109, 74, 255, .15); left: 35%; bottom: 30px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 700; color: #57647a; background: rgba(255,255,255,.8); border: 1px solid var(--line); padding: 8px 12px; border-radius: 100px; }
.eyebrow span { width: 8px; height: 8px; background: var(--purple); border-radius: 50%; box-shadow: 0 0 0 4px rgba(109,74,255,.12); }
h1 { font-size: clamp(56px, 6.6vw, 92px); line-height: .94; letter-spacing: -4px; margin: 28px 0 26px; font-weight: 800; }
h1 em { font-style: normal; color: var(--purple); position: relative; }
h1 em:after { content: ""; position: absolute; height: 10px; background: var(--lime); right: 0; left: 0; bottom: 1px; z-index: -1; transform: rotate(-1.2deg); }
.hero-lead { font-size: 21px; line-height: 1.55; color: var(--ink-soft); max-width: 610px; margin-bottom: 30px; }
.search-trigger { width: 100%; min-height: 72px; background: white; border: 2px solid var(--ink); border-radius: 18px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 7px 8px 7px 20px; text-align: right; box-shadow: 7px 7px 0 var(--ink); transition: transform .2s, box-shadow .2s; }
.search-trigger:hover { transform: translate(2px,2px); box-shadow: 5px 5px 0 var(--ink); }
.search-icon { width: 43px; height: 43px; display: grid; place-items: center; background: #f0f2ed; border-radius: 12px; font-size: 28px; }
.search-placeholder { color: #7b8494; font-size: 17px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-action { padding: 13px 19px; border-radius: 12px; background: var(--lime); border: 1px solid var(--ink); font-weight: 800; }
.quick-picks { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin: 20px 2px; font-size: 13px; color: #6c7688; }
.quick-picks button { border: 1px solid #ccd3ca; background: transparent; border-radius: 100px; padding: 5px 10px; color: var(--ink); }
.quick-picks button:hover { background: white; border-color: var(--ink); }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; padding-top: 25px; border-top: 1px solid var(--line); }
.trust-row div { display: flex; flex-direction: column; }
.trust-row strong { font-size: 15px; }
.trust-row span { color: #758092; font-size: 12px; }

.hero-demo { min-height: 600px; display: grid; place-items: center; position: relative; direction: rtl; }
.phone { width: 335px; min-height: 585px; border: 3px solid var(--ink); background: white; border-radius: 38px; padding: 16px 18px 21px; box-shadow: 18px 22px 0 rgba(13,24,41,.98), var(--shadow); transform: rotate(2.2deg); position: relative; z-index: 2; }
.phone:before { content: ""; position: absolute; width: 92px; height: 22px; background: var(--ink); border-radius: 0 0 14px 14px; top: -1px; left: 50%; transform: translateX(-50%); }
.phone-top { display: flex; justify-content: space-between; font-size: 10px; padding: 0 8px 14px; direction: ltr; }
.phone-brand { display: flex; align-items: center; justify-content: center; gap: 7px; font-weight: 800; font-size: 16px; margin: 6px 0 19px; }
.mini-logo { display: inline-grid; place-items: center; background: var(--lime); border: 1px solid var(--ink); width: 28px; height: 28px; border-radius: 9px; letter-spacing: 1px; font-size: 9px; }
.request-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; background: #f2f3ef; border-radius: 15px; padding: 12px; }
.status-dot { width: 10px; height: 10px; background: #26c66c; border-radius: 50%; box-shadow: 0 0 0 5px rgba(38,198,108,.13); }
.request-card div { display: flex; flex-direction: column; }
.request-card small { color: #788294; font-size: 10px; }
.request-card strong { font-size: 13px; }
.request-card b { font-size: 12px; background: white; padding: 5px 7px; border-radius: 8px; }
.ai-processing { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; margin: 10px 0 16px; padding: 10px; border: 1px solid #ddd6ff; background: #f3f0ff; border-radius: 13px; }
.ai-processing .ai-spark { width: 32px; height: 32px; display: grid; place-items: center; color: white; background: var(--purple); border-radius: 10px; }
.ai-processing div { display: flex; flex-direction: column; }
.ai-processing small { color: #7468ac; font-size: 9px; }
.ai-processing strong { font-size: 11px; }
.ai-processing > b { color: #3e2ea5; background: white; border-radius: 7px; padding: 4px 6px; font-size: 9px; }
.incoming-title { font-weight: 800; font-size: 15px; margin: 20px 2px 10px; }
.provider-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; border: 1px solid #e3e7e1; padding: 11px; border-radius: 14px; margin-bottom: 9px; background: white; box-shadow: 0 7px 20px rgba(13,24,41,.05); }
.provider-card div { display: flex; flex-direction: column; }
.provider-card strong { font-size: 13px; }
.provider-card div span { font-size: 10px; color: #7c8795; }
.avatar { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; font-weight: 800; }
.avatar-blue { background: #dfe8ff; color: #3658bb; }
.avatar-green { background: #ddf8df; color: #24853b; }
.avatar-orange { background: #ffe6da; color: #c65028; }
.provider-card button { border: 0; width: 37px; height: 37px; border-radius: 50%; background: var(--lime); font-size: 17px; animation: pulse 1.8s infinite; }
.message-dot { width: 23px; height: 23px; display: grid; place-items: center; background: var(--purple); color: white; border-radius: 50%; font-size: 10px; }
.tiny-time { font-size: 9px; color: #87909d; }
.phone-note { background: var(--ink); color: white; font-size: 11px; text-align: center; border-radius: 12px; padding: 10px; margin-top: 15px; }
.float-card { position: absolute; z-index: 3; background: white; border: 2px solid var(--ink); border-radius: 14px; padding: 12px 14px; box-shadow: 5px 5px 0 var(--ink); display: grid; grid-template-columns: auto 1fr; column-gap: 8px; align-items: center; min-width: 180px; }
.float-card > span { grid-row: 1 / 3; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--lime); font-weight: 800; }
.float-card b { font-size: 12px; }
.float-card small { font-size: 9px; color: #778293; }
.float-top { right: -15px; top: 80px; transform: rotate(-3deg); }
.float-bottom { left: -35px; bottom: 75px; transform: rotate(2deg); }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(200,255,69,.7); } 50% { box-shadow: 0 0 0 8px rgba(200,255,69,0); } }

.logo-strip { width: 100%; background: var(--ink); color: white; min-height: 78px; display: flex; align-items: center; justify-content: center; gap: 25px; font-weight: 700; font-size: 15px; }
.logo-strip i { width: 5px; height: 5px; background: var(--lime); border-radius: 50%; }
.section { width: min(1160px, calc(100% - 40px)); margin: 0 auto; padding: 115px 0; }
.ai-section { display: grid; grid-template-columns: 1fr .9fr; gap: 85px; align-items: center; }
.ai-pill { display: inline-flex; color: #4e35d3; background: #ebe7ff; border: 1px solid #d7d0ff; padding: 7px 11px; border-radius: 100px; font-size: 12px; font-weight: 800; }
.ai-copy h2 { font-size: clamp(42px, 5.4vw, 70px); line-height: .98; letter-spacing: -2.8px; margin: 22px 0; }
.ai-copy > p { color: var(--ink-soft); font-size: 19px; max-width: 620px; }
.ai-copy ul { list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 16px; }
.ai-copy li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; }
.ai-copy li > span { width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid #d5d0ff; border-radius: 12px; color: var(--purple); font-size: 11px; font-weight: 800; }
.ai-copy li div { display: flex; flex-direction: column; }
.ai-copy li small { color: #748092; }
.ai-demo { background: var(--ink); border-radius: 30px; padding: 28px; box-shadow: 14px 16px 0 var(--lime); position: relative; }
.chat-bubble { padding: 17px; border-radius: 18px; margin-bottom: 13px; }
.chat-bubble > span { display: block; font-size: 10px; font-weight: 800; margin-bottom: 5px; }
.chat-bubble p { margin: 0; line-height: 1.45; }
.user-message { margin-left: 45px; background: white; }
.user-message > span { color: #7b8492; }
.photo-chip { display: inline-flex; align-items: center; gap: 7px; background: #f0f2ed; color: #596577; border-radius: 9px; padding: 7px 9px; margin-top: 12px; font-size: 11px; }
.photo-chip i { width: 22px; height: 22px; display: grid; place-items: center; background: #dce1d8; border-radius: 6px; font-style: normal; }
.agent-thinking { display: flex; align-items: center; gap: 9px; color: white; padding: 12px 7px; }
.ai-orb { width: 37px; height: 37px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 12px; color: var(--ink); background: var(--lime); }
.agent-thinking div { display: flex; flex: 1; flex-direction: column; }
.agent-thinking small { color: #9da8b8; }
.agent-thinking > i { width: 4px; height: 4px; background: var(--lime); border-radius: 50%; animation: pulse 1.2s infinite; }
.ai-answer { margin-right: 35px; margin-bottom: 0; background: var(--purple); color: white; }
.ai-answer > span { color: var(--lime); }
.ai-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 13px; }
.ai-tags b { font-size: 10px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.2); border-radius: 100px; padding: 4px 8px; }
.section-heading { display: flex; align-items: flex-start; gap: 24px; margin-bottom: 50px; }
.section-number { color: var(--purple); font-size: 12px; font-weight: 800; border: 1px solid #cfc9ff; padding: 5px 8px; border-radius: 100px; }
.section-heading p { color: var(--purple); font-weight: 700; margin: 0 0 8px; }
.section-heading h2, .statement h2, .pro-copy h2, .final-cta h2 { font-size: clamp(40px, 5vw, 66px); line-height: 1; letter-spacing: -2.5px; margin: 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps article { background: white; border: 1px solid var(--line); border-radius: 25px; padding: 28px; min-height: 265px; position: relative; transition: transform .25s, box-shadow .25s; }
.steps article:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.step-icon { width: 50px; height: 50px; background: var(--lime); border: 2px solid var(--ink); border-radius: 15px; display: grid; place-items: center; font-size: 22px; box-shadow: 3px 3px 0 var(--ink); }
.steps article > b { position: absolute; top: 28px; left: 28px; color: #c7cdc6; font-size: 13px; }
.steps h3 { font-size: 24px; margin: 35px 0 8px; }
.steps p { color: var(--ink-soft); margin: 0; font-size: 15px; }

.statement { width: 100%; max-width: none; padding: 0 20px; }
.statement-card { width: min(1160px, 100%); margin: 0 auto; background: var(--purple); color: white; border-radius: 34px; padding: 80px clamp(30px, 8vw, 110px); position: relative; overflow: hidden; }
.statement-card:before, .statement-card:after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.statement-card:before { width: 420px; height: 420px; left: -130px; top: -200px; }
.statement-card:after { width: 260px; height: 260px; left: 10px; top: -120px; }
.statement-kicker { color: var(--lime); font-weight: 800; }
.statement-card h2 { position: relative; z-index: 1; max-width: 800px; }
.statement-card h2 span { color: var(--lime); }
.statement-card > p:not(.statement-kicker) { max-width: 700px; font-size: 19px; color: #e7e2ff; margin: 30px 0; }
.statement-card .button { background: var(--lime); }
.statement-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 45px; }
.statement-tags span { font-size: 12px; border: 1px solid rgba(255,255,255,.25); padding: 7px 11px; border-radius: 100px; background: rgba(255,255,255,.07); }

.section-heading.compact { margin-bottom: 35px; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.category { background: white; color: var(--ink); text-align: right; border: 1px solid var(--line); border-radius: 20px; padding: 23px; display: grid; grid-template-columns: auto 1fr; column-gap: 15px; transition: border-color .2s, transform .2s; }
.category:hover { border-color: var(--purple); transform: translateY(-3px); }
.category > span { grid-row: 1/3; width: 48px; height: 48px; background: #eff1eb; border-radius: 14px; display: grid; place-items: center; font-size: 24px; }
.category b { font-size: 18px; }
.category small { color: #778190; }

.pro-card { background: var(--ink); color: white; border-radius: 32px; display: grid; grid-template-columns: 1fr .8fr; gap: 60px; padding: 70px 80px; align-items: center; overflow: hidden; position: relative; }
.pro-card:after { content: ""; width: 320px; height: 320px; background: rgba(200,255,69,.08); border-radius: 50%; position: absolute; left: -90px; top: -90px; }
.pro-pill { display: inline-block; color: var(--lime); border: 1px solid rgba(200,255,69,.35); padding: 6px 10px; border-radius: 100px; font-size: 12px; font-weight: 800; margin-bottom: 20px; }
.pro-copy { position: relative; z-index: 1; }
.pro-copy p { color: #c7cfdb; max-width: 560px; font-size: 18px; margin: 25px 0 30px; }
.button-light { background: white; }
.lead-preview { background: white; color: var(--ink); border-radius: 22px; padding: 25px; position: relative; z-index: 2; transform: rotate(-2deg); box-shadow: 12px 15px 0 var(--lime); }
.lead-preview-top { display: flex; justify-content: space-between; font-size: 11px; color: #798394; }
.lead-preview-top b { background: #e2f8e6; color: #237d37; padding: 4px 8px; border-radius: 100px; }
.lead-preview h3 { font-size: 26px; margin: 24px 0 4px; }
.lead-preview p { color: #6e798b; margin: 0; font-size: 14px; }
.lead-meta { display: flex; gap: 10px; margin: 30px 0 12px; }
.lead-meta span { font-size: 10px; padding: 5px 8px; border-radius: 100px; background: #f0f2ed; }
.lead-preview button { width: 100%; border: 0; border-radius: 12px; padding: 13px; background: var(--purple); color: white; font-weight: 800; }

.final-cta { text-align: center; padding: 120px 0 140px; }
.mini-bubble { width: 55px; height: 55px; display: grid; place-items: center; background: var(--lime); border: 2px solid var(--ink); border-radius: 17px; box-shadow: 4px 4px 0 var(--ink); margin: 0 auto 28px; font-weight: 800; letter-spacing: 3px; }
.final-cta p { color: var(--ink-soft); font-size: 19px; margin: 24px auto 30px; }

footer { background: white; border-top: 1px solid var(--line); padding: 55px max(20px, calc((100% - 1160px)/2)); }
.footer-main { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.footer-main p { color: var(--ink-soft); }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 23px 0; margin: 30px 0; font-size: 13px; }
.footer-links a:hover { color: var(--purple); }
.footer-bottom { display: flex; justify-content: space-between; color: #85909e; font-size: 12px; }

.modal { display: none; position: fixed; inset: 0; z-index: 100; }
.modal.open { display: grid; place-items: center; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(9,18,31,.7); backdrop-filter: blur(8px); }
.modal-panel { width: min(600px, calc(100% - 28px)); background: white; border-radius: 28px; padding: 35px; position: relative; z-index: 1; box-shadow: 0 30px 90px rgba(0,0,0,.28); max-height: calc(100vh - 30px); overflow-y: auto; }
.modal-close { position: absolute; left: 22px; top: 19px; border: 0; background: #eef0eb; width: 36px; height: 36px; border-radius: 50%; font-size: 24px; }
.flow-progress { display: flex; gap: 5px; margin-bottom: 35px; }
.flow-progress span { width: 44px; height: 5px; background: #e2e5df; border-radius: 10px; }
.flow-progress span.active { background: var(--purple); }
.form-step, .form-success { display: none; }
.form-step.active, .form-success.active { display: block; }
.modal-kicker { color: var(--purple); font-size: 13px; font-weight: 800; margin-bottom: 6px; }
.modal h2 { font-size: 38px; letter-spacing: -1.2px; line-height: 1; margin: 0 0 12px; }
.modal h2 + p { color: var(--ink-soft); margin-bottom: 28px; }
.modal label:not(.consent) { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; }
.modal textarea, .modal input, .modal select { width: 100%; border: 1.5px solid #ccd2ca; background: #fafbf8; border-radius: 13px; padding: 14px; margin-bottom: 20px; color: var(--ink); }
.modal textarea { resize: vertical; min-height: 120px; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0 !important; }
.upload-box { display: grid !important; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; border: 1.5px dashed #b9b1ee; background: #f7f5ff; border-radius: 14px; padding: 13px; margin: -5px 0 12px !important; cursor: pointer; }
.upload-box > span { width: 36px; height: 36px; display: grid; place-items: center; color: white; background: var(--purple); border-radius: 10px; font-size: 20px; }
.upload-box div { display: flex; flex-direction: column; }
.upload-box small { color: #727c8c; font-weight: 400; }
.upload-box em { font-size: 10px; color: #8176b4; font-style: normal; }
.file-list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.file-list span { font-size: 10px; color: #4e3db2; background: #eeebff; padding: 5px 8px; border-radius: 100px; }
.ai-form-note { display: grid; grid-template-columns: auto 1fr; gap: 9px; align-items: start; color: #56499a; background: #f3f0ff; border-radius: 12px; padding: 10px 12px; margin: 10px 0 14px; }
.ai-form-note > span { color: var(--purple); }
.ai-form-note p { margin: 0; font-size: 11px; }
.modal .button { width: 100%; margin-top: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.flow-actions { display: flex; align-items: center; gap: 15px; }
.flow-actions .button { flex: 1; }
.text-button { border: 0; background: transparent; text-decoration: underline; }
.consent { display: grid; grid-template-columns: auto 1fr; gap: 9px; align-items: start; font-size: 12px; color: var(--ink-soft); margin: 11px 0; }
.consent input { width: 18px; height: 18px; margin: 0; accent-color: var(--purple); }
.form-success { text-align: center; padding: 30px 5px 5px; }
.form-success > span { width: 70px; height: 70px; margin: 0 auto 23px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); border: 2px solid var(--ink); font-size: 32px; }
.form-success p { color: var(--ink-soft); }

.accessibility { position: fixed; left: 18px; bottom: 18px; z-index: 80; direction: rtl; }
.accessibility > button { border: 2px solid var(--ink); background: var(--lime); border-radius: 12px; padding: 9px 12px; font-weight: 800; box-shadow: 3px 3px 0 var(--ink); }
.accessibility div { position: absolute; left: 0; bottom: 50px; width: 180px; background: white; border: 1px solid var(--line); border-radius: 14px; padding: 8px; box-shadow: var(--shadow); }
.accessibility div button { display: block; width: 100%; border: 0; background: transparent; text-align: right; padding: 9px; border-radius: 8px; }
.accessibility div button:hover { background: #f0f2ed; }
.toast { position: fixed; bottom: 25px; right: 25px; background: var(--ink); color: white; padding: 13px 18px; border-radius: 12px; z-index: 150; transform: translateY(120px); opacity: 0; transition: .3s; }
.toast.show { transform: translateY(0); opacity: 1; }

body.a11y-text { font-size: 20px; }
body.a11y-contrast { filter: contrast(1.35); background: white; }
body.a11y-links a { text-decoration: underline !important; text-decoration-thickness: 3px !important; }
body.modal-open { overflow: hidden; }

@media (max-width: 920px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding: 55px 0 90px; gap: 25px; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .quick-picks, .trust-row { justify-content: center; }
  .search-trigger { text-align: right; }
  .hero-demo { min-height: 590px; }
  .steps { grid-template-columns: 1fr; }
  .ai-section { grid-template-columns: 1fr; gap: 55px; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .pro-card { grid-template-columns: 1fr; padding: 55px 35px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .site-header { width: calc(100% - 24px); height: 70px; }
  .brand { font-size: 20px; }
  .brand-mark { width: 32px; height: 32px; }
  .site-header .button { display: none; }
  .hero { width: calc(100% - 28px); padding-top: 32px; }
  h1 { font-size: 53px; letter-spacing: -2.8px; }
  .hero-lead { font-size: 18px; }
  .search-trigger { grid-template-columns: auto 1fr; padding: 8px; min-height: 67px; }
  .search-action { grid-column: 1 / -1; text-align: center; width: 100%; }
  .trust-row { gap: 8px; }
  .trust-row span { display: none; }
  .hero-demo { transform: scale(.88); margin: -25px -30px; }
  .float-top { right: 2px; }
  .float-bottom { left: 0; }
  .logo-strip { gap: 13px; flex-wrap: wrap; padding: 18px; }
  .logo-strip span:nth-of-type(n+5), .logo-strip i:nth-of-type(n+4) { display: none; }
  .section { width: calc(100% - 28px); padding: 80px 0; }
  .section-heading h2, .statement h2, .pro-copy h2, .final-cta h2 { font-size: 42px; letter-spacing: -1.8px; }
  .statement { width: 100%; padding: 0 10px; }
  .statement-card { padding: 55px 25px; border-radius: 25px; }
  .category-grid { grid-template-columns: 1fr; }
  .ai-demo { padding: 18px; box-shadow: 8px 9px 0 var(--lime); }
  .user-message { margin-left: 18px; }
  .ai-answer { margin-right: 18px; }
  .pro-card { border-radius: 25px; padding: 48px 24px 58px; gap: 45px; }
  .lead-preview { transform: none; box-shadow: 7px 9px 0 var(--lime); }
  .footer-main, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .modal-panel { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
