:root {
  --ink: #07152b;
  --ink-2: #10233d;
  --blue: #2268f5;
  --cyan: #43d8ff;
  --mint: #3be7c4;
  --white: #ffffff;
  --mist: #f3f7fb;
  --line: #dbe5ef;
  --muted: #5e6c80;
  --danger: #d84a5d;
  --shadow: 0 24px 70px rgba(7, 21, 43, 0.14);
  --radius: 24px;
}

* { 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.6; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, .button { touch-action: manipulation; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 999; transform: translateY(-150%); padding: 10px 14px; background: white; border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.cookie-banner { position: fixed; z-index: 300; left: 50%; bottom: 22px; width: min(920px, calc(100% - 32px)); padding: 20px; transform: translateX(-50%); display: flex; align-items: center; justify-content: space-between; gap: 24px; color: white; background: #07152b; border: 1px solid #29415f; border-radius: 18px; box-shadow: 0 20px 65px rgba(7,21,43,.32); }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { font-family: "Manrope", sans-serif; font-size: 1.05rem; }
.cookie-banner p { max-width: 620px; margin: 4px 0 0; color: #bdcadb; font-size: .9rem; line-height: 1.45; }
.cookie-banner a { color: var(--mint); }
.cookie-actions { display: flex; flex: 0 0 auto; gap: 10px; }
.cookie-actions .button { min-height: 44px; padding: 10px 15px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.9); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(219,229,239,.8); }
.nav-wrap { max-width: 1200px; margin: 0 auto; height: 78px; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: #020b18; text-decoration: none; font-family: "Manrope", sans-serif; font-size: 1.55rem; font-weight: 900; letter-spacing: -.035em; }
.brand-mark { width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; }
.brand-mark svg { width: 100%; height: 100%; overflow: visible; }
.brand-mark .di-dot { fill: var(--blue); }
.brand-mark .di-i, .brand-mark .di-d { fill: var(--ink); }
.brand-mark .di-fill { fill: var(--mint); }
.brand-legal { margin-left: 3px; color: var(--muted); font-size: .58em; font-weight: 800; letter-spacing: -.01em; }
.brand-dot { color: var(--blue); }
nav { display: flex; align-items: center; gap: 30px; }
nav a { text-decoration: none; font-weight: 600; font-size: .94rem; }
nav a:hover { color: var(--blue); }
.nav-cta { padding: 11px 18px; border-radius: 12px; color: var(--white) !important; background: var(--ink); }
.menu-button { display: none; border: 1px solid var(--line); background: var(--white); padding: 8px 12px; border-radius: 10px; }

.hero { min-height: 710px; max-width: 1280px; margin: 0 auto; padding: 84px 40px 76px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 70px; overflow: hidden; }
.eyebrow, .section-label { margin: 0 0 16px; text-transform: uppercase; letter-spacing: .13em; font-size: .77rem; font-weight: 800; color: var(--blue); }
.eyebrow { display: flex; align-items: center; gap: 9px; }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 6px rgba(59,231,196,.16); }
h1, h2, h3 { font-family: "Manrope", sans-serif; letter-spacing: -.035em; line-height: 1.08; }
h1 { max-width: 690px; margin: 0; font-size: clamp(3.2rem, 6vw, 5.6rem); }
h1 em { color: var(--blue); font-style: normal; }
h2 { margin: 0; font-size: clamp(2.25rem, 4vw, 3.65rem); }
h3 { font-size: 1.2rem; }
.hero-lede { max-width: 650px; margin: 26px 0 30px; font-size: 1.16rem; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-phone { display: inline-flex; margin-top: 15px; color: var(--blue); font-family: "Manrope", sans-serif; font-size: 1.08rem; font-weight: 800; text-underline-offset: 4px; }
.button { min-height: 50px; padding: 13px 20px; border: 0; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; text-decoration: none; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--blue); box-shadow: 0 12px 30px rgba(34,104,245,.24); }
.button-primary:hover { background: #1559df; }
.button-secondary { color: var(--ink); background: var(--mist); }
.trust-row { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px 24px; color: var(--muted); font-size: .88rem; font-weight: 600; }
.trust-row span::before { content: "✓"; color: #059b7b; margin-right: 7px; font-weight: 800; }
.hero-visual { position: relative; min-height: 540px; border-radius: 34px; background: linear-gradient(145deg,#0e2544,#174b77); overflow: hidden; box-shadow: var(--shadow); isolation: isolate; }
.hero-visual::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 20% 15%, rgba(67,216,255,.35), transparent 38%), linear-gradient(135deg, transparent 55%, rgba(59,231,196,.2)); }
.hero-visual img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; object-position: 64% center; }
.inquiry-card { position: absolute; left: 24px; right: 24px; bottom: 26px; padding: 17px; display: flex; align-items: center; gap: 13px; color: var(--ink); background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.8); border-radius: 17px; box-shadow: 0 14px 40px rgba(7,21,43,.22); }
.inquiry-card strong, .inquiry-card small { display: block; }
.inquiry-card small { color: var(--muted); }
.inquiry-icon { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; color: var(--ink); background: var(--mint); font-weight: 900; }
.response-chip { position: absolute; top: 24px; right: 20px; padding: 8px 12px; border-radius: 999px; color: white; background: rgba(7,21,43,.82); font-size: .78rem; font-weight: 700; backdrop-filter: blur(10px); }
.response-chip span { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--mint); }

.problem-band { background: var(--ink); color: white; padding: 72px max(28px, calc((100vw - 1160px)/2)); display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; }
.problem-band h2 { max-width: 760px; font-size: clamp(2rem, 3.7vw, 3.25rem); }
.problem-band p:last-child { margin: 0; color: #bdcadb; font-size: 1.05rem; }
.problem-band .section-label { color: var(--mint); }

.call-demo-band { padding: 78px max(28px, calc((100vw - 1160px)/2)); display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; background: linear-gradient(135deg,#eaf4ff,#f2fffb); border-bottom: 1px solid var(--line); }
.call-demo-copy h2 { max-width: 650px; }
.call-demo-copy > p:not(.section-label) { max-width: 720px; color: var(--muted); font-size: 1.05rem; }
.call-demo-copy .demo-disclosure { padding-left: 16px; border-left: 3px solid var(--danger); color: #435168; font-size: .9rem; }
.call-demo-action { padding: 30px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.live-pill { padding: 7px 11px; color: #08745f; background: #e6fbf5; border-radius: 999px; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.live-pill span { display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: #08a47f; }
.demo-number { color: var(--ink); font-family: "Manrope", sans-serif; font-size: clamp(1.7rem, 3vw, 2.35rem); font-weight: 800; letter-spacing: -.04em; text-decoration: none; }
.call-demo-action .button { width: 100%; }
.call-demo-action small { color: var(--muted); }

.demo-section, .how-section, .features-section, .industries-section, .pricing-section, .faq-section, .contact-section { padding: 108px max(28px, calc((100vw - 1160px)/2)); }
.section-heading { max-width: 780px; margin-bottom: 46px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; }
.demo-section { background: var(--mist); }
.demo-shell { display: grid; grid-template-columns: .75fr 1.25fr .8fr; gap: 20px; align-items: stretch; }
.demo-controls, .phone-frame, .lead-card { border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.demo-controls { padding: 18px; }
.demo-controls > p { margin: 2px 5px 15px; font-weight: 800; font-size: .84rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.scenario { width: 100%; padding: 16px 12px; display: grid; grid-template-columns: 34px 1fr; grid-template-rows: auto auto; column-gap: 10px; text-align: left; border: 1px solid transparent; border-radius: 14px; background: transparent; cursor: pointer; }
.scenario + .scenario { margin-top: 5px; }
.scenario span { grid-row: 1/3; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: var(--mist); font-size: .72rem; font-weight: 800; color: var(--muted); }
.scenario strong { font-size: .94rem; }
.scenario small { color: var(--muted); }
.scenario.active { border-color: #bfd1ff; background: #f4f7ff; }
.scenario.active span { color: white; background: var(--blue); }
.phone-frame { min-height: 510px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 16px 45px rgba(7,21,43,.08); }
.phone-top { padding: 17px 20px; border-bottom: 1px solid var(--line); }
.phone-top span, .phone-top small { display: block; }
.phone-top span { font-weight: 800; }
.phone-top small { color: #148d73; }
.messages { flex: 1; padding: 22px; display: flex; flex-direction: column; gap: 12px; background: linear-gradient(#fbfdff,#f5f9fc); overflow: auto; }
.message { max-width: 85%; padding: 12px 14px; border-radius: 15px; font-size: .92rem; line-height: 1.45; animation: message-in .3s ease both; }
.message.customer { align-self: flex-end; border-bottom-right-radius: 4px; color: white; background: var(--blue); }
.message.assistant { align-self: flex-start; border-bottom-left-radius: 4px; color: var(--ink); background: white; border: 1px solid var(--line); box-shadow: 0 5px 18px rgba(7,21,43,.05); }
@keyframes message-in { from { opacity: 0; transform: translateY(8px); } }
.message-form { padding: 14px; display: flex; gap: 9px; border-top: 1px solid var(--line); }
.message-form input { width: 100%; min-width: 0; padding: 12px 13px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: var(--mist); }
.message-form button { flex: 0 0 44px; border: 0; border-radius: 12px; color: white; background: var(--ink); cursor: pointer; }
.lead-card { padding: 24px; }
.lead-status { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 800; color: #08765f; }
.lead-status span { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); }
.lead-card h3 { margin: 24px 0 16px; }
.lead-card dl { margin: 0; }
.lead-card dl div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line); font-size: .88rem; }
.lead-card dt { color: var(--muted); }
.lead-card dd { margin: 0; text-align: right; font-weight: 800; }
.lead-card dd.urgent { color: var(--danger); }
.lead-card > p { margin: 24px 0 0; color: var(--muted); font-size: .84rem; }

.how-section { background: white; }
.section-heading.compact { max-width: 660px; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.steps article { padding: 30px; border-top: 3px solid var(--ink); background: var(--mist); border-radius: 0 0 var(--radius) var(--radius); }
.steps article > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: white; background: var(--blue); font-weight: 800; }
.steps p { color: var(--muted); }

.features-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 76px; background: var(--ink); color: white; }
.feature-intro p:last-child { color: #bdcadb; }
.features-section .section-label { color: var(--mint); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.feature-grid article { padding: 24px; border: 1px solid #29415f; border-radius: 20px; background: var(--ink-2); }
.feature-icon { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 11px; color: var(--ink); background: var(--mint); font-weight: 900; }
.feature-grid h3 { margin: 22px 0 8px; }
.feature-grid p { margin: 0; color: #bdcadb; }

.industries-section { padding-top: 76px; padding-bottom: 76px; }
.industry-row { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-row span { padding: 13px 19px; border: 1px solid var(--line); border-radius: 999px; font-weight: 800; background: var(--mist); }

.pricing-section { display: grid; grid-template-columns: 1fr .72fr; gap: 80px; background: var(--mist); align-items: center; }
.pricing-copy > p:not(.section-label) { color: var(--muted); font-size: 1.05rem; }
.pricing-copy ul { padding: 0; list-style: none; }
.pricing-copy li { margin: 11px 0; font-weight: 600; }
.pricing-copy li::before { content: "✓"; margin-right: 10px; color: #079878; }
.price-card { padding: 36px; color: white; background: var(--ink); border-radius: 28px; box-shadow: var(--shadow); }
.price-card > p:first-child { margin-top: 0; color: var(--mint); font-weight: 800; text-transform: uppercase; font-size: .78rem; letter-spacing: .1em; }
.price { display: flex; align-items: flex-end; flex-wrap: wrap; gap: 8px; }
.price span { width: 100%; color: #bdcadb; }
.price strong { font-family: "Manrope", sans-serif; font-size: 4.2rem; line-height: 1; letter-spacing: -.06em; }
.price small { margin-bottom: 8px; color: #bdcadb; }
.monthly { margin: 12px 0 20px; font-weight: 800; }
.fine-print { color: #aebdd0; font-size: .83rem; }
.price-card .button { width: 100%; margin-top: 10px; }

.faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; font-family: "Manrope", sans-serif; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::after { content: "+"; color: var(--blue); font-size: 1.4rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -5px 0 22px; color: var(--muted); }

.contact-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; color: white; background: linear-gradient(135deg,#07152b,#0d3154); }
.contact-section .section-label { color: var(--mint); }
.contact-copy > p:not(.section-label):not(.location) { color: #bdcadb; }
.location { margin-top: 32px; font-weight: 800; }
.contact-phone { margin-top: 24px; }
.contact-phone a { color: var(--mint); font-weight: 800; text-underline-offset: 4px; }
.contact-form { padding: 30px; border: 1px solid #36516f; border-radius: 24px; background: rgba(255,255,255,.06); }
.contact-form label { display: block; margin-bottom: 15px; font-size: .86rem; font-weight: 800; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; padding: 12px 13px; color: white; background: #173653; border: 1px solid #49627e; border-radius: 11px; outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(67,216,255,.14); }
.contact-form select option { color: var(--ink); background: white; }
.contact-form textarea::placeholder { color: #94a7bd; }
.contact-form input::placeholder { color: #94a7bd; }
.optional { color: #aebdd0; font-weight: 500; }
.text-consent { margin: -4px 0 16px; color: #b9c8da; font-size: .76rem; }
.contact-form button:disabled { cursor: wait; opacity: .7; }
.form-honey { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-note { margin: 12px 0 0; color: #aebdd0; font-size: .78rem; }
.form-note.is-sending { color: #dce7f4; }
.form-note.is-success { color: #76f4c7; font-weight: 800; }
.form-note.is-error { color: #ffb4b4; font-weight: 800; }

footer { padding: 40px max(28px, calc((100vw - 1160px)/2)); display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; border-top: 1px solid var(--line); }
footer p { color: var(--muted); font-size: .84rem; }
footer p:nth-child(2) { text-align: center; }
.footer-meta { text-align: right; }
.footer-meta p { margin: 0; }
.footer-links { display: flex; justify-content: flex-end; gap: 15px; margin-top: 4px !important; }
.footer-links a:hover { color: var(--blue); }

.legal-main { max-width: 860px; margin: 0 auto; padding: 84px 28px 100px; }
.legal-main .section-label { margin-bottom: 12px; }
.legal-main h1 { max-width: none; font-size: clamp(2.7rem, 6vw, 4.5rem); }
.legal-updated { margin: 14px 0 48px; color: var(--muted); }
.legal-main section { padding: 0; margin: 0 0 34px; }
.legal-main h2 { margin-bottom: 10px; font-size: 1.45rem; letter-spacing: -.02em; }
.legal-main p, .legal-main li { color: #3d4d62; }
.legal-main ul { padding-left: 22px; }
.legal-back { display: inline-flex; margin-top: 20px; color: var(--blue); font-weight: 800; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 60px; }
  .hero-visual { min-height: 460px; }
  .hero-visual img { min-height: 460px; }
  .problem-band, .call-demo-band, .features-section, .pricing-section, .faq-section, .contact-section { grid-template-columns: 1fr; gap: 42px; }
  .demo-shell { grid-template-columns: .72fr 1.28fr; }
  .lead-card { grid-column: 1/-1; }
  .lead-card dl { display: grid; grid-template-columns: repeat(2,1fr); column-gap: 24px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer .brand { justify-self: center; }
  footer p:nth-child(2) { text-align: center; }
  .footer-meta { text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 720px) {
  .cookie-banner { bottom: 12px; padding: 17px; align-items: stretch; flex-direction: column; gap: 14px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .nav-wrap { height: 68px; padding: 0 20px; }
  .menu-button { display: block; }
  nav { position: absolute; top: 68px; left: 0; right: 0; padding: 18px 20px 24px; display: none; align-items: stretch; flex-direction: column; gap: 10px; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px rgba(7,21,43,.08); }
  nav.open { display: flex; }
  nav a { padding: 10px; }
  .hero { min-height: auto; padding: 52px 22px 58px; gap: 46px; }
  h1 { font-size: clamp(2.9rem, 14vw, 4.2rem); }
  .hero-visual, .hero-visual img { min-height: 420px; }
  .trust-row { display: grid; }
  .problem-band { padding-top: 62px; padding-bottom: 62px; gap: 32px; }
  .call-demo-band, .demo-section, .how-section, .features-section, .industries-section, .pricing-section, .faq-section, .contact-section { padding-top: 78px; padding-bottom: 78px; }
  .demo-shell, .steps, .feature-grid { grid-template-columns: 1fr; }
  .demo-controls { display: grid; grid-template-columns: 1fr; }
  .phone-frame { min-height: 500px; }
  .lead-card dl { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .price-card { padding: 28px; }
  .price strong { font-size: 3.6rem; }
}

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