:root {
    --navy-950: #061321;
    --navy-900: #071a2e;
    --navy-800: #0b2742;
    --blue-700: #1359e8;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --cyan-400: #38bdf8;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --slate-950: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --shadow-sm: 0 10px 32px rgba(15, 23, 42, .07);
    --shadow-md: 0 24px 70px rgba(15, 23, 42, .12);
    --shadow-blue: 0 18px 48px rgba(37, 99, 235, .28);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
    margin: 0;
    color: var(--slate-950);
    background: var(--white);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 16px; border-radius: 10px; background: var(--white); color: var(--navy-900); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: 84px;
    color: var(--white);
    transition: background .25s ease, box-shadow .25s ease, height .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled { height: 72px; background: rgba(6, 19, 33, .88); box-shadow: 0 10px 30px rgba(2, 8, 23, .12); backdrop-filter: blur(18px); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 36px; }
.brand { display: inline-flex; align-items: center; color: var(--white); }
.brand-logo { display: block; width: 132px; max-width: 132px; height: auto; }
.brand-symbol { display: block; width: 52px; height: 52px; object-fit: contain; }
.brand-symbol-small { width: 23px; height: 23px; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 29px; margin-left: auto; }
.main-nav a { position: relative; color: rgba(255, 255, 255, .72); font-size: 13px; font-weight: 600; transition: color .2s; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--cyan-400); transition: right .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--white); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 12px; background: transparent; cursor: pointer; }
.menu-toggle i { display: block; width: 17px; height: 1.5px; margin: 4px auto; background: var(--white); transition: transform .2s, opacity .2s; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 11px; min-height: 50px; padding: 0 20px; border-radius: 13px; font-size: 13px; font-weight: 800; letter-spacing: -.1px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button span { font-size: 17px; transition: transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:hover span { transform: translate(2px, -2px); }
.button:focus-visible, .text-link:focus-visible, .main-nav a:focus-visible { outline: 3px solid rgba(56, 189, 248, .45); outline-offset: 4px; }
.button-header { min-height: 42px; padding-inline: 16px; border: 1px solid rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .09); backdrop-filter: blur(10px); }
.button-header:hover { background: var(--white); color: var(--navy-900); }
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--blue-600), #1979ef); box-shadow: var(--shadow-blue); }
.button-primary:hover { box-shadow: 0 22px 54px rgba(37, 99, 235, .36); }
.button-light { color: var(--navy-900); background: var(--white); box-shadow: 0 18px 44px rgba(0, 0, 0, .18); }
.button-large { min-height: 58px; padding-inline: 28px; border-radius: 15px; font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, .8); font-size: 13px; font-weight: 700; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateY(3px); }
.text-link-blue { color: var(--blue-600); }
.text-link-blue:hover span { transform: translate(2px, -2px); }

.hero { position: relative; min-height: 820px; overflow: hidden; padding: 164px 0 114px; color: var(--white); background: linear-gradient(145deg, var(--navy-950) 0%, var(--navy-900) 54%, #0a2947 100%); }
.hero-grid, .ai-grid, .final-grid { position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(148, 163, 184, .17) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 163, 184, .17) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, black, transparent 85%); }
.hero-glow { position: absolute; border-radius: 999px; filter: blur(100px); pointer-events: none; }
.hero-glow-one { width: 480px; height: 480px; top: 50px; right: 8%; background: rgba(37, 99, 235, .22); }
.hero-glow-two { width: 260px; height: 260px; left: 4%; bottom: -120px; background: rgba(56, 189, 248, .12); }
.hero-layout { position: relative; display: grid; grid-template-columns: minmax(0, .91fr) minmax(550px, 1.09fr); align-items: center; gap: 58px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 21px; color: var(--cyan-400); font-size: 11px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 1px; background: currentColor; }
.eyebrow-dark { color: var(--blue-600); }
.eyebrow-light { color: var(--cyan-400); }
.hero h1, .section-heading h2, .split-heading h2, .ai-copy h2, .integration-copy h2, .offer-copy h2, .faq-intro h2, .final-content h2 { margin: 0; font-size: clamp(42px, 4.7vw, 68px); line-height: 1.04; letter-spacing: -3.4px; }
h1 em, h2 em { color: inherit; font-style: normal; }
.hero h1 em { display: block; color: var(--cyan-400); }
.hero-lead { max-width: 600px; margin: 28px 0 0; color: rgba(226, 232, 240, .72); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 35px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 17px 22px; margin-top: 31px; color: rgba(226, 232, 240, .64); font-size: 11px; font-weight: 600; }
.hero-proof span { display: flex; align-items: center; gap: 7px; }
.hero-proof i { display: grid; place-items: center; width: 17px; height: 17px; border-radius: 50%; background: rgba(34, 197, 94, .14); color: #4ade80; font-style: normal; font-size: 10px; }

.product-stage { position: relative; z-index: 1; min-height: 510px; perspective: 1200px; }
.stage-orbit { position: absolute; border: 1px solid rgba(56, 189, 248, .15); border-radius: 50%; }
.orbit-one { width: 560px; height: 560px; top: -25px; right: -44px; }
.orbit-two { width: 420px; height: 420px; top: 44px; right: 26px; }
.product-window { position: absolute; top: 32px; left: 0; width: 640px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .14); border-radius: 19px; background: #f8fafc; box-shadow: 0 50px 110px rgba(0, 0, 0, .42); transform: rotateY(-4deg) rotateX(1deg); transform-origin: center left; }
.window-topbar { display: flex; align-items: center; height: 50px; padding: 0 15px; gap: 16px; color: var(--slate-800); border-bottom: 1px solid var(--slate-200); background: var(--white); }
.window-logo { display: flex; align-items: center; gap: 7px; width: 128px; font-size: 10px; }
.window-search { width: 210px; margin: auto; padding: 6px 8px; border: 1px solid var(--slate-200); border-radius: 7px; color: var(--slate-400); background: var(--slate-50); font-size: 7px; }
.window-search kbd { float: right; padding: 1px 4px; border: 1px solid var(--slate-200); border-radius: 3px; background: var(--white); }
.window-avatar { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; color: var(--blue-700); background: #dbeafe; font-size: 7px; font-weight: 800; }
.window-body { display: grid; grid-template-columns: 48px 210px 1fr; height: 392px; }
.mock-sidebar { display: flex; flex-direction: column; align-items: center; gap: 17px; padding: 18px 10px; background: var(--navy-900); }
.mock-nav { width: 15px; height: 15px; border: 2px solid rgba(255, 255, 255, .25); border-radius: 5px; }
.mock-nav.active { border-color: var(--cyan-400); background: rgba(56, 189, 248, .16); }
.mock-nav.bottom { margin-top: auto; border-radius: 50%; }
.conversation-list { color: var(--slate-800); border-right: 1px solid var(--slate-200); background: var(--white); }
.mock-section-title { display: flex; align-items: center; justify-content: space-between; padding: 16px 13px 9px; font-size: 9px; }
.mock-section-title b { display: grid; place-items: center; width: 18px; height: 18px; border-radius: 5px; color: var(--blue-600); background: #eff6ff; font-size: 7px; }
.mock-filter { display: flex; gap: 5px; padding: 0 12px 10px; }
.mock-filter span { width: 40px; height: 5px; border-radius: 3px; background: var(--slate-100); }
.mock-filter span:first-child { width: 70px; background: #dbeafe; }
.contact { position: relative; display: grid; grid-template-columns: 29px 1fr auto; align-items: center; gap: 8px; min-height: 60px; padding: 9px 10px; border-top: 1px solid #f1f5f9; }
.contact.active { background: #eff6ff; }
.contact.active::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 2px; background: var(--blue-600); }
.contact-avatar { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 9px; font-size: 7px; font-weight: 800; }
.contact-avatar.cyan, .cyan { color: #0369a1; background: #e0f2fe; }
.contact-avatar.violet, .violet { color: #7c3aed; background: #ede9fe; }
.contact-avatar.green, .green { color: #15803d; background: #dcfce7; }
.contact-avatar.orange, .orange { color: #c2410c; background: #ffedd5; }
.contact b { display: block; font-size: 7.5px; line-height: 1.5; }
.contact small { display: block; max-width: 100px; overflow: hidden; color: var(--slate-400); font-size: 6px; text-overflow: ellipsis; white-space: nowrap; }
.contact time { align-self: start; padding-top: 2px; color: var(--slate-400); font-size: 5px; }
.mock-chat { display: grid; grid-template-rows: 53px 1fr 47px; color: var(--slate-800); background: #f8fafc; }
.chat-head { display: flex; align-items: center; gap: 8px; padding: 0 14px; border-bottom: 1px solid var(--slate-200); background: var(--white); }
.chat-head b { display: block; font-size: 8px; }
.chat-head small { display: block; color: var(--slate-400); font-size: 5px; }
.chat-head small i { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--green-500); }
.chat-more { margin-left: auto; color: var(--slate-400); font-size: 8px; letter-spacing: 1px; }
.chat-messages { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; padding: 12px 14px; }
.date-pill { align-self: center; padding: 3px 7px; border-radius: 8px; color: var(--slate-500); background: var(--slate-100); font-size: 5px; }
.bubble { max-width: 76%; padding: 8px 10px; border-radius: 9px; font-size: 6.5px; line-height: 1.55; box-shadow: 0 2px 7px rgba(15, 23, 42, .04); }
.bubble.incoming { border-bottom-left-radius: 3px; background: var(--white); }
.bubble.outgoing { align-self: flex-end; border-bottom-right-radius: 3px; background: #dbeafe; }
.bubble small { float: right; margin: 3px 0 0 8px; color: var(--blue-600); font-size: 5px; }
.ai-suggestion { display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 8px; width: 93%; margin-top: 4px; padding: 9px; border: 1px solid #c4b5fd; border-radius: 9px; background: linear-gradient(145deg, #f5f3ff, #eff6ff); }
.spark { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 7px; color: #7c3aed; background: #ede9fe; font-size: 10px; }
.ai-suggestion b { display: block; color: #5b21b6; font-size: 6px; }
.ai-suggestion p { margin: 1px 0 0; color: var(--slate-500); font-size: 5px; line-height: 1.4; }
.ai-suggestion button { padding: 5px 7px; border: 0; border-radius: 5px; color: var(--white); background: #7c3aed; font-size: 5px; }
.chat-compose { display: flex; align-items: center; gap: 8px; margin: 6px 12px 8px; padding: 0 10px; border: 1px solid var(--slate-200); border-radius: 8px; background: var(--white); }
.chat-compose span { color: var(--slate-400); font-size: 12px; }
.chat-compose p { flex: 1; color: var(--slate-400); font-size: 6px; }
.chat-compose b { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 7px; color: var(--white); background: var(--blue-600); font-size: 8px; }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 13px; color: var(--slate-800); background: rgba(255, 255, 255, .96); box-shadow: 0 20px 42px rgba(0, 0, 0, .25); backdrop-filter: blur(12px); animation: float 5s ease-in-out infinite; }
.floating-card-crm { right: -32px; bottom: 43px; }
.floating-card-ai { left: -25px; top: 6px; animation-delay: -2.5s; }
.floating-icon { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 9px; color: #15803d; background: #dcfce7; font-size: 13px; font-weight: 800; }
.floating-icon.ai { color: #7c3aed; background: #ede9fe; }
.floating-card small { display: block; color: var(--slate-400); font-size: 6px; }
.floating-card b { display: block; font-size: 7px; }
.floating-card > i { width: 6px; height: 6px; margin-left: 10px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 4px rgba(34, 197, 94, .13); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.trust-strip { position: relative; z-index: 3; border-bottom: 1px solid var(--slate-200); background: var(--white); }
.trust-items { display: flex; align-items: center; justify-content: space-between; min-height: 82px; color: var(--slate-500); font-size: 11px; font-weight: 700; letter-spacing: .2px; }
.trust-items i { width: 4px; height: 4px; border-radius: 50%; background: var(--slate-300); }
.section { padding: 120px 0; }
.problem-section { background: var(--white); }
.section-heading { max-width: 820px; margin: 0 auto 62px; }
.section-heading.centered { text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .split-heading h2, .ai-copy h2, .integration-copy h2, .offer-copy h2, .faq-intro h2 { font-size: clamp(34px, 4.1vw, 52px); line-height: 1.13; letter-spacing: -2.6px; }
.section-heading h2 em, .split-heading h2 em, .integration-copy h2 em { color: var(--blue-600); }
.section-heading > p:last-child { max-width: 600px; margin: 23px auto 0; color: var(--slate-500); font-size: 16px; }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--slate-200); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.problem-card { position: relative; min-height: 235px; padding: 32px 28px; background: var(--white); }
.problem-card:not(:last-child) { border-right: 1px solid var(--slate-200); }
.problem-card::after { content: ""; position: absolute; inset: auto 0 0; height: 3px; background: var(--blue-600); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.problem-card:hover::after { transform: scaleX(1); }
.card-index { display: block; margin-bottom: 51px; color: var(--blue-600); font-size: 11px; font-weight: 800; }
.problem-card h3 { margin: 0 0 12px; font-size: 17px; letter-spacing: -.5px; }
.problem-card p { margin: 0; color: var(--slate-500); font-size: 13px; line-height: 1.7; }

.solution-section { background: var(--slate-50); }
.split-heading { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 90px; margin-bottom: 62px; }
.split-heading > p { margin: 0 0 5px; color: var(--slate-500); font-size: 14px; line-height: 1.75; }
.bento-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 20px; }
.bento-card { position: relative; overflow: hidden; min-height: 430px; padding: 36px; border: 1px solid var(--slate-200); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 14px 45px rgba(15, 23, 42, .04); }
.bento-content { position: relative; z-index: 2; max-width: 510px; }
.feature-tag { display: inline-block; margin-bottom: 17px; color: var(--blue-600); font-size: 9px; font-weight: 800; letter-spacing: 1.5px; }
.bento-card h3 { margin: 0 0 12px; font-size: 25px; line-height: 1.24; letter-spacing: -1px; }
.bento-card p { max-width: 475px; margin: 0; color: var(--slate-500); font-size: 13px; line-height: 1.75; }
.bento-conversations { min-height: 470px; }
.mini-inbox { position: absolute; inset: 212px 36px -28px; overflow: hidden; border: 1px solid var(--slate-200); border-radius: 15px 15px 0 0; background: var(--white); box-shadow: 0 18px 50px rgba(15, 23, 42, .09); }
.mini-toolbar { display: flex; align-items: center; gap: 8px; height: 38px; padding: 0 13px; border-bottom: 1px solid var(--slate-200); background: var(--slate-50); }
.mini-toolbar i { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-500); }
.mini-toolbar span { width: 92px; height: 6px; border-radius: 5px; background: var(--slate-200); }
.mini-toolbar b { width: 25px; height: 17px; margin-left: auto; border-radius: 5px; background: #dbeafe; }
.mini-row { display: grid; grid-template-columns: 35px 1fr auto; align-items: center; gap: 11px; min-height: 64px; padding: 10px 14px; border-bottom: 1px solid var(--slate-100); }
.mini-avatar { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 10px; font-size: 8px; font-weight: 800; }
.mini-avatar.blue { color: #1d4ed8; background: #dbeafe; }
.mini-avatar.purple { color: #7e22ce; background: #f3e8ff; }
.mini-avatar.green { color: #15803d; background: #dcfce7; }
.mini-row p { margin: 0; }
.mini-row p b, .mini-row p small { display: block; }
.mini-row p b { color: var(--slate-800); font-size: 9px; }
.mini-row p small { color: var(--slate-400); font-size: 7px; }
.mini-row em { padding: 4px 7px; border-radius: 6px; color: var(--blue-700); background: #dbeafe; font-size: 6px; font-style: normal; font-weight: 700; }
.mini-row em.warm { color: #c2410c; background: #ffedd5; }
.mini-row em.cool { color: #15803d; background: #dcfce7; }
.bento-crm { color: var(--white); border-color: var(--navy-900); background: linear-gradient(145deg, var(--navy-900), #103858); }
.bento-crm .feature-tag { color: var(--cyan-400); }
.bento-crm p { color: rgba(226, 232, 240, .68); }
.mini-pipeline { position: absolute; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; inset: 230px 24px -32px; transform: rotate(-3deg); }
.mini-pipeline > div { position: relative; padding: 13px 10px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 11px 11px 0 0; background: rgba(255, 255, 255, .07); }
.mini-pipeline span { display: block; color: rgba(255, 255, 255, .58); font-size: 6px; }
.mini-pipeline b { position: absolute; top: 11px; right: 9px; display: grid; place-items: center; width: 15px; height: 15px; border-radius: 5px; color: var(--cyan-400); background: rgba(56, 189, 248, .12); font-size: 6px; }
.mini-pipeline i { display: block; height: 54px; margin-top: 11px; border-radius: 8px; background: rgba(255, 255, 255, .08); }
.mini-pipeline i + i { height: 38px; margin-top: 7px; }
.mini-pipeline .active { border-color: rgba(56, 189, 248, .35); background: rgba(56, 189, 248, .11); }
.bento-automation { min-height: 320px; }
.automation-line { position: absolute; display: flex; align-items: center; inset: auto 44px 52px; }
.automation-line span { display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid var(--slate-200); border-radius: 50%; color: var(--blue-600); background: var(--white); font-size: 9px; font-weight: 800; box-shadow: var(--shadow-sm); }
.automation-line i { flex: 1; height: 1px; background: repeating-linear-gradient(90deg, var(--slate-300), var(--slate-300) 4px, transparent 4px, transparent 8px); }
.automation-line .pulse-node { color: var(--white); border-color: var(--blue-600); background: var(--blue-600); box-shadow: 0 0 0 8px #dbeafe; }
.automation-line .check-node { color: var(--white); border-color: var(--green-500); background: var(--green-500); }
.bento-mobile { min-height: 320px; background: linear-gradient(145deg, #eff6ff, #f8fafc); }
.bento-mobile .bento-content { max-width: 53%; }
.phone-mock { position: absolute; width: 166px; height: 285px; right: 35px; bottom: -42px; padding: 25px 10px 10px; border: 5px solid var(--slate-900); border-radius: 25px; background: var(--white); box-shadow: 0 24px 45px rgba(15, 23, 42, .19); transform: rotate(6deg); }
.phone-notch { position: absolute; top: 5px; left: 50%; width: 52px; height: 10px; border-radius: 10px; background: var(--slate-900); translate: -50%; }
.phone-head { display: flex; justify-content: space-between; align-items: center; padding: 7px 3px 11px; }
.phone-head b { font-size: 8px; }
.phone-head span { display: grid; place-items: center; width: 18px; height: 18px; border-radius: 6px; color: var(--white); background: var(--blue-600); font-size: 9px; }
.phone-contact { display: grid; grid-template-columns: 24px 1fr auto; align-items: center; gap: 7px; padding: 10px 2px; border-top: 1px solid var(--slate-100); }
.phone-contact > i { width: 24px; height: 24px; border-radius: 8px; }
.phone-contact p { margin: 0; }
.phone-contact b, .phone-contact small { display: block; }
.phone-contact b { font-size: 6.5px; }
.phone-contact small { color: var(--slate-400); font-size: 5px; }
.phone-contact em { display: grid; place-items: center; width: 14px; height: 14px; border-radius: 50%; color: var(--white); background: var(--blue-600); font-size: 5px; font-style: normal; }

.ai-section { position: relative; overflow: hidden; color: var(--white); background: var(--navy-950); }
.ai-grid { opacity: .16; mask-image: radial-gradient(circle at 60% 50%, black, transparent 70%); }
.ai-layout { position: relative; display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 100px; }
.ai-copy h2 em, .offer-copy h2 em { color: var(--cyan-400); }
.ai-copy > p:not(.eyebrow) { margin: 25px 0 0; color: rgba(226, 232, 240, .65); font-size: 15px; line-height: 1.8; }
.feature-list { display: grid; gap: 23px; margin: 34px 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; }
.feature-list li > span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(56, 189, 248, .2); border-radius: 10px; color: var(--cyan-400); background: rgba(56, 189, 248, .08); font-size: 13px; }
.feature-list b { display: block; font-size: 13px; }
.feature-list p { margin: 4px 0 0; color: rgba(226, 232, 240, .54); font-size: 11px; line-height: 1.6; }
.ai-console { position: relative; padding: 18px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 23px; background: rgba(255, 255, 255, .055); box-shadow: 0 45px 90px rgba(0, 0, 0, .3); backdrop-filter: blur(14px); }
.console-head { display: flex; align-items: center; justify-content: space-between; height: 54px; padding: 0 17px; border-radius: 12px 12px 0 0; background: rgba(255, 255, 255, .07); }
.console-head > div { display: flex; align-items: center; gap: 9px; }
.console-head b { font-size: 11px; }
.console-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 5px rgba(34, 197, 94, .1); }
.console-head em { padding: 5px 9px; border-radius: 7px; color: #4ade80; background: rgba(34, 197, 94, .1); font-size: 7px; font-style: normal; font-weight: 800; }
.console-body { min-height: 395px; padding: 24px; border-radius: 0 0 12px 12px; color: var(--slate-800); background: var(--white); }
.console-label { margin-bottom: 9px; color: var(--slate-400); font-size: 7px; font-weight: 800; letter-spacing: 1px; }
.console-prompt { display: grid; grid-template-columns: 30px 1fr; gap: 11px; margin-bottom: 22px; padding: 15px; border: 1px solid #ddd6fe; border-radius: 11px; background: #faf5ff; }
.console-prompt span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; color: #7c3aed; background: #ede9fe; font-size: 12px; }
.console-prompt p { margin: 0; color: var(--slate-600); font-size: 9px; line-height: 1.7; }
.console-rules { display: grid; gap: 7px; margin-bottom: 24px; }
.console-rules span { padding: 10px 12px; border: 1px solid var(--slate-200); border-radius: 8px; color: var(--slate-600); background: var(--slate-50); font-size: 8px; }
.console-rules i { margin-right: 7px; color: var(--green-600); font-style: normal; }
.console-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.console-stats div { padding: 12px; border: 1px solid var(--slate-200); border-radius: 9px; }
.console-stats small, .console-stats b { display: block; }
.console-stats small { color: var(--slate-400); font-size: 7px; }
.console-stats b { margin-top: 3px; font-size: 8px; }
.console-stats b i { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--green-500); }
.console-float { position: absolute; right: -38px; bottom: 54px; display: grid; grid-template-columns: 35px 1fr; gap: 11px; width: 225px; padding: 13px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 13px; color: var(--slate-800); background: rgba(255, 255, 255, .96); box-shadow: 0 20px 50px rgba(0, 0, 0, .28); }
.console-float > span { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 10px; color: #7c3aed; background: #ede9fe; }
.console-float p { margin: 0; }
.console-float b, .console-float small { display: block; }
.console-float b { font-size: 8px; }
.console-float small { margin-top: 3px; color: var(--slate-400); font-size: 6px; }

.integrations-section { background: var(--white); }
.integrations-layout { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 100px; }
.integration-visual { position: relative; min-height: 470px; }
.code-window { position: absolute; inset: 0 25px 48px 0; overflow: hidden; border: 1px solid #24394e; border-radius: 20px; color: #dbeafe; background: #081827; box-shadow: 0 35px 70px rgba(15, 23, 42, .21); }
.code-head { display: flex; align-items: center; height: 55px; padding: 0 17px; border-bottom: 1px solid rgba(255, 255, 255, .08); background: rgba(255, 255, 255, .025); }
.code-head > span { display: flex; gap: 5px; }
.code-head i { display: block; width: 7px; height: 7px; border-radius: 50%; background: #fb7185; }
.code-head i:nth-child(2) { background: #fbbf24; }
.code-head i:nth-child(3) { background: #4ade80; }
.code-head b { margin-left: 20px; font-size: 9px; font-weight: 600; }
.code-head em { margin-left: auto; padding: 4px 7px; border-radius: 6px; color: var(--cyan-400); background: rgba(56, 189, 248, .09); font-size: 7px; font-style: normal; font-weight: 800; }
.code-window pre { margin: 0; padding: 29px; white-space: pre-wrap; }
.code-window code { font: 10px/2.05 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.code-pink { color: #fb7185; }
.code-blue { color: #7dd3fc; }
.code-muted { color: #64748b; }
.code-green { color: #86efac; }
.code-yellow { color: #fde68a; }
.code-response { position: absolute; display: flex; align-items: center; gap: 13px; inset: auto 23px 23px; padding: 13px; border: 1px solid rgba(74, 222, 128, .15); border-radius: 10px; background: rgba(34, 197, 94, .07); }
.code-response span { padding: 4px 7px; border-radius: 5px; color: #4ade80; background: rgba(34, 197, 94, .11); font-size: 7px; font-weight: 800; }
.code-response b { font-size: 8px; font-weight: 500; }
.integration-nodes { position: absolute; z-index: 2; right: -8px; bottom: 0; display: flex; gap: 8px; padding: 12px; border: 1px solid var(--slate-200); border-radius: 14px; background: rgba(255, 255, 255, .96); box-shadow: var(--shadow-md); }
.integration-nodes span { display: grid; place-items: center; width: 53px; height: 42px; border-radius: 9px; color: var(--slate-600); background: var(--slate-100); font-size: 7px; font-weight: 800; }
.integration-nodes span:nth-child(2) { color: #7c3aed; background: #ede9fe; }
.integration-nodes span:nth-child(3) { color: #0369a1; background: #e0f2fe; }
.integration-nodes span:nth-child(4) { color: #15803d; background: #dcfce7; }
.integration-copy > p:not(.eyebrow) { margin: 23px 0 0; color: var(--slate-500); font-size: 14px; line-height: 1.8; }
.simple-checks { display: grid; gap: 12px; margin: 28px 0; padding: 0; list-style: none; }
.simple-checks li { position: relative; padding-left: 27px; color: var(--slate-700); font-size: 12px; font-weight: 600; }
.simple-checks li::before { content: "✓"; position: absolute; left: 0; display: grid; place-items: center; width: 17px; height: 17px; border-radius: 50%; color: var(--green-600); background: #dcfce7; font-size: 9px; }

.steps-section { padding-top: 60px; background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.step-card { position: relative; padding: 0 35px 0 0; }
.step-card:not(:last-child)::after { content: ""; position: absolute; top: 20px; left: 53px; right: 10px; height: 1px; background: var(--slate-200); }
.step-card > span { position: relative; z-index: 2; display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 28px; border: 1px solid var(--slate-200); border-radius: 50%; color: var(--blue-600); background: var(--white); font-size: 9px; font-weight: 800; box-shadow: var(--shadow-sm); }
.step-card h3 { margin: 0 0 11px; font-size: 15px; letter-spacing: -.35px; }
.step-card p { margin: 0; color: var(--slate-500); font-size: 12px; line-height: 1.7; }

.offer-section { background: var(--slate-50); }
.offer-card { position: relative; display: grid; grid-template-columns: 1.07fr .93fr; align-items: center; gap: 90px; overflow: hidden; padding: 72px; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(135deg, var(--navy-950), #0b2b49); box-shadow: 0 35px 80px rgba(15, 23, 42, .17); }
.offer-card::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 45px 45px; mask-image: linear-gradient(90deg, transparent, black); }
.offer-glow { position: absolute; width: 400px; height: 400px; right: -60px; top: -130px; border-radius: 50%; background: rgba(37, 99, 235, .28); filter: blur(90px); }
.offer-copy, .offer-list { position: relative; z-index: 1; }
.offer-copy > p:not(.eyebrow) { margin: 22px 0 30px; color: rgba(226, 232, 240, .65); font-size: 14px; line-height: 1.8; }
.offer-list { display: grid; gap: 11px; padding: 24px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 18px; background: rgba(255, 255, 255, .055); backdrop-filter: blur(10px); }
.offer-list span { display: flex; align-items: center; gap: 11px; padding: 11px 12px; border-radius: 9px; color: rgba(255, 255, 255, .82); background: rgba(255, 255, 255, .045); font-size: 10px; font-weight: 600; }
.offer-list i { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 6px; color: #4ade80; background: rgba(34, 197, 94, .1); font-size: 10px; font-style: normal; }

.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: .74fr 1.26fr; align-items: start; gap: 110px; }
.faq-intro { position: sticky; top: 110px; }
.faq-intro h2 { font-size: 40px; }
.faq-intro > p:not(.eyebrow) { margin: 22px 0; color: var(--slate-500); font-size: 13px; line-height: 1.75; }
.faq-list { border-top: 1px solid var(--slate-200); }
.faq-list details { border-bottom: 1px solid var(--slate-200); }
.faq-list summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 3px; cursor: pointer; font-size: 14px; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; flex: 0 0 28px; width: 28px; height: 28px; border: 1px solid var(--slate-200); border-radius: 9px; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: var(--slate-700); translate: -50% -50%; transition: transform .2s; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span { border-color: #bfdbfe; background: #eff6ff; }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details[open] summary { color: var(--blue-600); }
.faq-list details p { max-width: 90%; margin: -9px 0 24px; color: var(--slate-500); font-size: 12px; line-height: 1.8; }

.final-cta { position: relative; overflow: hidden; padding: 110px 0; color: var(--white); background: var(--navy-950); }
.final-grid { opacity: .2; mask-image: radial-gradient(circle at center, black, transparent 68%); }
.final-content { position: relative; z-index: 1; max-width: 880px; text-align: center; }
.final-mark { width: 58px; height: 58px; margin: 0 auto 29px; filter: drop-shadow(0 12px 24px rgba(37, 99, 235, .28)); }
.final-content h2 { font-size: clamp(36px, 4.6vw, 57px); }
.final-content p { margin: 24px 0 31px; color: rgba(226, 232, 240, .62); font-size: 15px; }

.site-footer { color: rgba(226, 232, 240, .68); background: #040e19; }
.footer-main { display: grid; grid-template-columns: 1.25fr .75fr; gap: 90px; padding: 72px 0 55px; }
.footer-brand p { max-width: 360px; margin: 20px 0 0; font-size: 12px; line-height: 1.8; }
.footer-logo { width: 150px; max-width: 150px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.footer-links div { display: grid; align-content: start; gap: 10px; }
.footer-links b { margin-bottom: 7px; color: var(--white); font-size: 11px; }
.footer-links a { font-size: 10px; transition: color .2s; }
.footer-links a:hover { color: var(--cyan-400); }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 0 30px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: 9px; }
.whatsapp-float { position: fixed; z-index: 900; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 10px; min-height: 49px; padding: 0 16px 0 8px; border: 1px solid rgba(255, 255, 255, .32); border-radius: 999px; color: var(--white); background: var(--green-600); box-shadow: 0 14px 34px rgba(22, 163, 74, .34); font-size: 11px; font-weight: 800; transition: transform .2s, box-shadow .2s; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(22, 163, 74, .42); }
.whatsapp-symbol { position: relative; display: flex; align-items: center; justify-content: center; gap: 2px; width: 33px; height: 33px; border: 1.5px solid rgba(255, 255, 255, .9); border-radius: 50%; }
.whatsapp-symbol::after { content: ""; position: absolute; left: 1px; bottom: -2px; width: 8px; height: 8px; border-left: 1.5px solid var(--white); transform: rotate(-24deg); }
.whatsapp-symbol i { width: 2.5px; height: 2.5px; border-radius: 50%; background: var(--white); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.problem-card:nth-child(2), .step-card:nth-child(2) { transition-delay: .08s; }
.problem-card:nth-child(3), .step-card:nth-child(3) { transition-delay: .16s; }
.problem-card:nth-child(4), .step-card:nth-child(4) { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
    .main-nav { gap: 18px; }
    .hero-layout { grid-template-columns: .82fr 1.18fr; gap: 30px; }
    .product-window { width: 590px; transform: scale(.92) rotateY(-4deg); transform-origin: center left; }
    .hero h1 { font-size: 52px; }
    .problem-card { padding-inline: 22px; }
    .ai-layout, .integrations-layout { gap: 60px; }
    .offer-card { padding: 60px; gap: 60px; }
}

@media (max-width: 960px) {
    .site-header { height: 72px; }
    .menu-toggle { display: block; margin-left: auto; order: 2; }
    .button-header { order: 1; margin-left: auto; }
    .main-nav { position: fixed; inset: 72px 16px auto; display: grid; gap: 0; padding: 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(6, 19, 33, .97); box-shadow: 0 24px 60px rgba(0,0,0,.28); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .2s, visibility .2s, transform .2s; }
    .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
    .main-nav a { padding: 13px 12px; border-bottom: 1px solid rgba(255,255,255,.07); }
    .main-nav a:last-child { border-bottom: 0; }
    .menu-toggle[aria-expanded="true"] i:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] i:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
    .hero { padding-top: 132px; }
    .hero-layout { grid-template-columns: 1fr; }
    .hero-copy { max-width: 730px; }
    .hero h1 { font-size: clamp(46px, 7vw, 64px); }
    .product-stage { width: 680px; max-width: 100%; margin: 15px auto -25px; }
    .product-window { left: 32px; width: 640px; transform: scale(.94); transform-origin: top left; }
    .problem-grid { grid-template-columns: 1fr 1fr; }
    .problem-card:nth-child(2) { border-right: 0; }
    .problem-card:nth-child(-n+2) { border-bottom: 1px solid var(--slate-200); }
    .split-heading { grid-template-columns: 1fr; gap: 24px; }
    .split-heading > p { max-width: 620px; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-conversations { min-height: 470px; }
    .bento-crm { min-height: 430px; }
    .bento-automation, .bento-mobile { min-height: 340px; }
    .ai-layout, .integrations-layout { grid-template-columns: 1fr; }
    .ai-copy { max-width: 660px; }
    .ai-console { max-width: 680px; }
    .integrations-layout { gap: 70px; }
    .integration-visual { order: 2; max-width: 680px; width: 100%; }
    .integration-copy { order: 1; max-width: 660px; }
    .steps-grid { grid-template-columns: 1fr 1fr; gap: 45px 0; }
    .step-card:nth-child(2)::after { display: none; }
    .offer-card { grid-template-columns: 1fr; }
    .faq-layout { grid-template-columns: 1fr; gap: 55px; }
    .faq-intro { position: static; max-width: 620px; }
    .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
    .container { width: min(calc(100% - 32px), var(--container)); }
    .section { padding: 84px 0; }
    .brand-logo { width: 118px; max-width: 118px; }
    .button-header { display: none; }
    .hero { min-height: auto; padding: 118px 0 78px; }
    .hero h1 { font-size: clamp(39px, 12vw, 54px); letter-spacing: -2.5px; }
    .hero h1 em { display: inline; }
    .hero-lead { font-size: 15px; }
    .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
    .hero-actions .button { width: 100%; }
    .hero-actions .text-link { justify-content: center; }
    .hero-proof { display: grid; }
    .product-stage { min-height: 382px; width: 100%; margin-top: 28px; }
    .product-window { left: 50%; width: 640px; transform: translateX(-50%) scale(.61); transform-origin: top center; }
    .floating-card { transform: scale(.82); }
    .floating-card-crm { right: -17px; bottom: 26px; }
    .floating-card-ai { left: -17px; top: 1px; }
    @keyframes float { 0%, 100% { transform: scale(.82) translateY(0); } 50% { transform: scale(.82) translateY(-7px); } }
    .trust-items { min-height: 72px; justify-content: flex-start; gap: 18px; overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
    .trust-items::-webkit-scrollbar { display: none; }
    .section-heading { margin-bottom: 43px; }
    .section-heading h2, .split-heading h2, .ai-copy h2, .integration-copy h2, .offer-copy h2 { font-size: 36px; letter-spacing: -1.8px; }
    .problem-grid { grid-template-columns: 1fr; }
    .problem-card { min-height: 210px; border-right: 0 !important; border-bottom: 1px solid var(--slate-200); }
    .problem-card:last-child { border-bottom: 0; }
    .card-index { margin-bottom: 37px; }
    .bento-card { min-height: 420px; padding: 28px; }
    .mini-inbox { inset: 205px 22px -28px; }
    .bento-crm { min-height: 420px; }
    .mini-pipeline { inset: 235px 17px -30px; }
    .bento-automation { min-height: 330px; }
    .automation-line { inset: auto 28px 43px; }
    .bento-mobile { min-height: 420px; }
    .bento-mobile .bento-content { max-width: none; }
    .phone-mock { right: 50%; bottom: -84px; transform: translateX(50%) rotate(3deg); }
    .ai-layout { gap: 60px; }
    .ai-console { padding: 9px; }
    .console-body { padding: 17px; }
    .console-float { right: -9px; bottom: -28px; }
    .integration-visual { min-height: 410px; }
    .code-window { inset: 0 0 42px; }
    .code-window pre { padding: 22px 16px; overflow-x: auto; }
    .code-window code { font-size: 8px; }
    .integration-nodes { right: -4px; max-width: calc(100% - 16px); overflow: hidden; }
    .integration-nodes span { width: 49px; }
    .steps-section { padding-top: 30px; }
    .steps-grid { grid-template-columns: 1fr; gap: 34px; }
    .step-card { padding-left: 62px; }
    .step-card > span { position: absolute; left: 0; top: 0; }
    .step-card:not(:last-child)::after { display: block; top: 49px; bottom: -26px; left: 21px; right: auto; width: 1px; height: auto; }
    .offer-card { gap: 45px; padding: 42px 24px; border-radius: 24px; }
    .offer-list { padding: 13px; }
    .offer-copy .button { width: 100%; }
    .faq-intro h2 { font-size: 35px; }
    .faq-list summary { font-size: 13px; }
    .final-cta { padding: 85px 0; }
    .final-content h2 { font-size: 37px; letter-spacing: -2px; }
    .final-content .button { width: 100%; padding-inline: 15px; }
    .footer-main { grid-template-columns: 1fr; gap: 45px; padding-top: 55px; }
    .footer-links { gap: 30px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
    .whatsapp-float { right: 16px; bottom: 16px; padding-right: 8px; }
    .whatsapp-label { display: none; }
}
