:root {
    --blue: #1260d8;
    --blue-dark: #0a3f9e;
    --navy: #17233d;
    --text-body: #4b5567;
    --border: rgb(231, 235, 241);
    --bg-soft: #f5f8fd;
    --radius: 16px;
    --text: #17233d;
    --muted: #59657a;
    --shadow-card: 0 10px 30px rgba(23, 35, 61, .06);
    --shadow-card-hover: 0 20px 44px rgba(23, 35, 61, .12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1440px, calc(100% - 56px));
    margin: auto;
}


h1,
h2,
h3 {
    color: var(--navy);
    margin: 0;
}

h2 {
    font-size: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    box-shadow: 0 8px 20px rgba(18, 96, 216, .28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(18, 96, 216, .36);
}

/* ---------- Scroll reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.section-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
}

.section-heading h2 {
    margin: 8px 0 12px;
}

.section-heading p {
    font-size: 15.5px;
    margin: 0;
}

.eyebrow {
    display: block;
    color: var(--blue);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .3px;
}

/* ================= BREADCRUMB ================= */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 22px 0 0;
    font-size: 14px;
    color: #8792a3;
}

.breadcrumb .material-symbols-outlined {
    font-size: 18px;
}

.breadcrumb a {
    color: #8792a3;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--blue);
}

.breadcrumb b {
    font-weight: 400;
    opacity: .6;
}

.breadcrumb span:last-child {
    color: var(--navy);
    font-weight: 500;
}

/* ================= HERO ================= */
.ai-hero {
    background: radial-gradient(circle at 85% 15%, rgba(18, 96, 216, .05), transparent 45%), var(--bg-soft);
    border-bottom: 1px solid var(--border);
    padding-bottom: 60px;
}

.ai-hero-grid {
    display: grid;
    grid-template-columns: 46% 54%;
    gap: 48px;
    align-items: start;
    padding: 40px 0 0;
}

.ai-hero-visual {
    margin: auto;
}

.ai-hero-content h1 {
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.ai-hero-content h1 span {
    color: var(--blue);
}

.ai-hero-content>p {
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 26px;
    max-width: 460px;
}

.industry-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 26px;
}

.industry-box h3 {
    font-size: 16px;
    margin-bottom: 18px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-bottom: 20px;
}

.industry-pick {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 4px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: background .2s ease;
}

.industry-pick:hover {
    background: var(--bg-soft);
}

.industry-pick .material-symbols-outlined {
    font-size: 26px;
    color: var(--blue);
}

.industry-pick span:last-child {
    font-size: 12px;
    color: var(--navy);
    font-weight: 500;
}

.industry-cta {
    width: 100%;
    justify-content: center;
}


/* ---------- Chat widget mockup ---------- */
.chat-widget {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-card-hover);
    overflow: hidden;
    max-width: 430px;
    margin-left: auto;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}

.chat-header img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-header strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
}

.chat-header small {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #8792a3;
}

.chat-header .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1aa06d;
    display: inline-block;
}

.chat-window-controls {
    margin-left: auto;
    display: flex;
    gap: 10px;
    color: #b7bfcb;
    font-size: 15px;
}

.chat-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 420px;
    overflow-y: auto;
}

.chat-msg {
    font-size: 13px;
    line-height: 1.5;
    padding: 10px 13px;
    border-radius: 12px;
    max-width: 85%;
}

.chat-msg.user {
    align-self: flex-end;
    background: var(--blue);
    color: #fff;
    border-bottom-right-radius: 3px;
}

.chat-msg.bot {
    align-self: flex-start;
    background: var(--bg-soft);
    color: var(--navy);
    border-bottom-left-radius: 3px;
}

.chat-msg--results {
    max-width: 92%;
}

.property-card {
    display: flex;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px;
    margin: 10px 0;
}

.property-card img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.property-card strong {
    display: block;
    font-size: 12.5px;
    color: var(--navy);
}

.property-card small {
    display: block;
    font-size: 11px;
    color: #8792a3;
}

.property-card small.price {
    color: var(--blue);
    font-weight: 700;
}

.property-card a {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 11px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    margin-top: 2px;
}

.property-card a .material-symbols-outlined {
    font-size: 14px;
}

.chat-input {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
}

.chat-input input {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 9px 14px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
}

.chat-input input:focus {
    border-color: var(--blue);
}

.chat-input button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.chat-input button .material-symbols-outlined {
    font-size: 18px;
}

.chat-footer {
    text-align: center;
    font-size: 10.5px;
    color: #b7bfcb;
    padding: 8px 0 14px;
}


/* ================= LIVE ON WEBSITE ================= */
.live-section {
    padding: 80px 0;
}

.live-carousel {
    display: flex;
    align-items: center;
    gap: 14px;
}

.carousel-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--navy);
}

.carousel-arrow:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.live-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    flex: 1;
    min-width: 0;
}

.live-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.live-badge {
    display: inline-block;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .4px;
    color: #fff;
    padding: 6px 12px;
}

.badge-ecom {
    background: #1aa06d;
}

.badge-re {
    background: #1260d8;
}

.badge-hs {
    background: #ed7132;
}

.badge-law {
    background: var(--navy);
}

.browser-chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    border-bottom: 1px solid var(--border);
}

.browser-chrome .material-symbols-outlined {
    font-size: 16px;
    color: var(--blue);
}

.browser-chrome small {
    margin-left: auto;
    font-weight: 500;
    color: #8792a3;
    font-size: 9px;
}

.browser-chrome--dark {
    background: var(--navy);
    color: #fff;
    border-bottom: none;
}

.browser-chrome--dark .material-symbols-outlined {
    color: #ed7132;
}

.browser-chrome--dark small {
    color: rgba(255, 255, 255, .6);
}

.browser-body {
    padding: 16px 14px;
    min-height: 150px;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.browser-body h4 {
    color: #fff;
    font-size: 15px;
    line-height: 1.25;
    margin-bottom: 8px;
}

.browser-body>p {
    font-size: 11.5px;
    margin: 0 0 10px;
    opacity: .85;
}

.browser-body--ecom {
    background: linear-gradient(160deg, #16241d, #223a2c);
}

.browser-body--re {
    background: linear-gradient(160deg, #10182b, #1c2c4d);
}

.browser-body--hs {
    background: linear-gradient(160deg, #1c1108, #33200f);
}

.browser-body--law {
    background: linear-gradient(160deg, #12151f, #1f2536);
}

.mini-btn {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    color: #17233d;
    background: #fff;
    padding: 7px 12px;
    border-radius: 6px;
    text-decoration: none;
    margin-bottom: 12px;
}

.mini-btn--outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .5);
}

.mini-btn--orange {
    background: #ed7132;
    color: #fff;
}

.mini-chat {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 10px;
}

.mini-chat-head {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 700;
    margin-bottom: 6px;
}

.mini-chat-head .material-symbols-outlined {
    font-size: 13px;
    color: var(--blue);
}

.mini-chat p {
    font-size: 10.5px;
    line-height: 1.4;
    margin: 0 0 6px;
    opacity: .9;
}

.mini-chat .mini-reply {
    background: rgba(18, 96, 216, .35);
    display: inline-block;
    padding: 4px 8px;
    border-radius: 8px;
}

.mini-yes {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    background: #fff;
    color: var(--navy);
    padding: 4px 10px;
    border-radius: 8px;
}

.live-points {
    list-style: none;
    padding: 12px 16px;
    margin: 0;
}

.live-points li {
    position: relative;
    padding-left: 14px;
    font-size: 11.5px;
    color: var(--text-body);
    margin: 5px 0;
}

.live-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
}

.try-demo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    padding: 0 16px 16px;
    margin-top: auto;
}

.try-demo .material-symbols-outlined {
    font-size: 16px;
}


/* ================= VOICE SELECTOR ================= */
.voices-section {
    padding: 0 0 80px;
}

.voices-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.voice-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.voice-card:hover {
    border-color: var(--blue);
}

.voice-card.is-selected {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(18, 96, 216, .12);
}

.voice-check {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--blue);
    font-size: 18px;
}

.voice-wave {
    height: 22px;
    font-size: 19px;
    letter-spacing: -3px;
    overflow: hidden;
    line-height: 1;
}

.blue-wave {
    color: #1260d8;
}

.green-wave {
    color: #48b77b;
}

.purple-wave {
    color: #8055d8;
}

.orange-wave {
    color: #ed7132;
}

.pink-wave {
    color: #dc3d79;
}

.cyan-wave {
    color: #2caeba;
}

.voice-play {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    margin: 8px 0 6px;
}

.voice-play.blue {
    background: #1260d8;
}

.voice-play.green {
    background: #48b77b;
}

.voice-play.purple {
    background: #8055d8;
}

.voice-play.orange {
    background: #ed7132;
}

.voice-play.pink {
    background: #dc3d79;
}

.voice-play.cyan {
    background: #2caeba;
}

.voice-card h3 {
    font-size: 14px;
    margin-bottom: 4px;
}

.voice-card p {
    font-size: 11.5px;
    line-height: 1.4;
    color: var(--text-body);
    margin: 0 0 10px;
    min-height: 32px;
}

.voice-meta {
    display: flex;
    gap: 6px;
}

.voice-meta span {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px 7px;
    font-size: 10px;
    color: var(--text-body);
}


/* ================= BOTTOM STRIP + CTA ================= */
.bottom-section {
    padding: 0 0 50px;
}

.bottom-grid {
    display: grid;
    grid-template-columns: 2.4fr 1fr;
    gap: 20px;
}

.bottom-strip {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    padding: 24px 6px;
}

.bottom-item {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 6px 12px;
    border-left: 1px solid var(--border);
}

.bottom-item:first-child {
    border-left: none;
}

.bottom-item .material-symbols-outlined {
    font-size: 24px;
    color: var(--blue);
}

.bottom-item strong {
    display: block;
    font-size: 13px;
    color: var(--navy);
}

.bottom-item small {
    font-size: 11px;
    color: #8792a3;
}

.ready-card {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: 16px;
    padding: 26px 24px;
    color: #fff;
}

.ready-card h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
}

.ready-card p {
    font-size: 13px;
    opacity: .9;
    margin: 0 0 16px;
}

.ready-card .btn-primary {
    background: #fff;
    color: var(--blue);
    box-shadow: none;
    width: 100%;
    justify-content: center;
}

.ready-card .btn-primary:hover {
    transform: translateY(-2px);
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1080px) {
    .ai-hero-grid {
        grid-template-columns: 1fr;
    }

    .chat-widget {
        max-width: 100%;
        margin: 0;
    }

    .live-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .voices-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bottom-grid {
        grid-template-columns: 1fr;
    }

    .bottom-item {
        flex: 1 1 33%;
        border-left: none;
        border-top: 1px solid var(--border);
        border-right: 1px solid var(--border);
    }

    .bottom-item:nth-child(1),
    .bottom-item:nth-child(2),
    .bottom-item:nth-child(3) {
        border-top: 0;
    }

    .bottom-item:nth-child(3),
    .bottom-item:nth-child(5) {
        border-right: 0;
    }

}

@media (max-width: 700px) {
    .ai-hero-content h1 {
        font-size: 30px;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .live-grid {
        grid-template-columns: 1fr;
    }

    .voices-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .bottom-item {
        flex: 1 100%;
        border-right: 0px solid var(--border);
        border-bottom: 1px solid var(--border);
        border-top: 0 !important;
    }

    body .bottom-item:nth-child(5) {
        border: 0 !important;
    }

    .carousel-arrow {
        display: none;
    }
}