/* ==========================================================================
   iReach Conversations PRO — Landing page
   Custom layer on top of Bootstrap 5.3 (container / row / col / card /
   navbar / utilities). Colours are verbatim from the Figma source.
   ========================================================================== */

:root {
    /* brand */
    --ir-blue: rgb(7, 107, 201);
    --ir-blue-deep: rgb(20, 70, 149);
    --ir-green: rgb(116, 176, 36);
    --ir-green-mid: rgb(101, 168, 12);
    --ir-green-dark: rgb(94, 168, 19);
    /* ink & text */
    --ir-ink: rgb(15, 23, 43);
    --ir-ink-2: rgb(34, 38, 48);
    --ir-ink-3: rgb(16, 24, 40);
    --ir-body: rgb(56, 55, 55);
    --ir-body-2: rgb(56, 56, 56);
    --ir-muted: rgb(98, 116, 142);
    --ir-muted-2: rgb(153, 161, 175);
    --ir-muted-3: rgb(106, 114, 130);
    --ir-slate: rgb(30, 41, 57);
    /* surfaces */
    --ir-line: rgb(243, 244, 246);
    --ir-line-2: rgb(229, 231, 235);
    --ir-surface: rgb(249, 250, 251);
    --ir-page-alt: rgb(248, 251, 255);
    --ir-pale-blue: rgb(235, 245, 255);
    --ir-pale-green: rgb(240, 253, 244);
    --ir-mint: rgb(220, 252, 231);
    --ir-mint-2: rgb(232, 255, 224);
    /* footer */
    --ir-foot-head: rgb(202, 213, 226);
    --ir-foot-link: rgb(190, 219, 255);
    --ir-foot-fine: rgb(203, 224, 254);
    --ir-foot-rule: rgb(176, 199, 238);
    /* gradients & shadows */
    --ir-grad-why: linear-gradient(119.614deg, rgb(10,45,94) 0%, rgb(12,64,120) 28.57%, rgb(13,79,140) 50%, rgb(6,79,112) 71.43%, rgb(7,77,74) 100%);
    --ir-grad-cta: linear-gradient(90deg, rgb(11,73,170) 0%, rgb(119,181,61) 100%);
    --ir-shadow-sm: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px -1px rgba(0,0,0,.1);
    --ir-shadow-md: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
    --ir-shadow-lg: 0 25px 50px -12px rgba(0,0,0,.25);
    /* Bootstrap overrides */
    --bs-body-font-family: Figtree, -apple-system, "Segoe UI", sans-serif;
    --bs-body-color: var(--ir-body);
    --bs-link-color: var(--ir-blue);
    --bs-link-hover-color: var(--ir-green-mid);
}

/* Bootstrap's .container tops out at 1320px — the Figma canvas is 1130px wide */
@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    margin: 0;
}

.text-brand-green {
    color: var(--ir-green);
}
.blueTXT{color:rgba(7, 107, 201, 1)!important}
.greenTXT{color:rgba(116, 176, 36, 1)!important}
/* ---------- buttons (extend .btn) ---------- */
.btn-brand-green,
.btn-outline-brand-green,
.btn-ghost-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .625rem;
    height: 46px;
    padding: 12px 32px;
    border-radius: 32px;
    font-size: 18px;
    line-height: 1;
    text-transform: capitalize;
    white-space: nowrap;
    transition: transform .18s ease, background-color .18s ease, color .18s ease;
}

.btn-brand-green {
    background: var(--ir-green-mid);
    color: #fff;
    font-family: Roboto, Figtree, sans-serif;
}

    .btn-brand-green:hover {
        background: var(--ir-green-dark);
        color: #fff;
        transform: translateY(-2px);
    }

.btn-outline-brand-green {
    background: #fff;
    color: var(--ir-green);
    box-shadow: inset 0 0 0 1px var(--ir-green-mid);
}

    .btn-outline-brand-green:hover {
        color: var(--ir-green-mid);
        transform: translateY(-2px);
    }

.btn-ghost-green {
    background: transparent;
    color: var(--ir-green-dark);
}

    .btn-ghost-green:hover {
        color: var(--ir-green-mid);
    }

.btn-brand-white {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    height: 44px;
    padding: 12px 28px;
    border-radius: 999px;
    background: #fff;
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--ir-green);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
    transition: transform .18s ease, color .18s ease;
}

    .btn-brand-white:hover {
        color: var(--ir-green-mid);
        transform: translateY(-2px);
        background-color:#fff;
    }

/* ---------- header (extends .navbar) ---------- */
.site-header {
    background: #fff;
    padding: 0;
    box-shadow: 0 4px 17.4px 7px rgba(0,0,0,.06);
    --bs-navbar-padding-y: 0;
}

    .site-header .container {
        min-height: 95px;
    }

.brand-img {
    height: 55px;
    width: auto;
    display: block;
}

.site-header .nav-link {
    font-size: 18px;
    color: #000;
    text-transform: capitalize;
    padding: .35rem 0;
}

    .site-header .nav-link:hover,
    .site-header .nav-link:focus {
        color: var(--ir-green-mid);
    }

.nav-sep {
    display: block;
    width: 1px;
    height: 9.5px;
    background: rgb(131,131,131);
}

.navbar-toggler {
    color: var(--ir-green-mid);
    background: rgba(94,168,19,.08);
    border-radius: 12px;
    padding: .5rem .6rem;
}

/* ---------- hero ---------- */
.hero {
    background: #fff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("../image/client/hero-bg.jpg") center top / cover no-repeat;
    opacity: .32;
}

.hero-inner {
    padding-top: 66px;
    padding-bottom: 96px;
}

.pill-badge {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(94,168,19,.1);
    border: .8px solid rgba(94,168,19,.3);
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--ir-green-dark);
}

.hero-title {
    font-weight: 700;
    font-size: 54px;
    line-height: 58.787px;
    letter-spacing: -1.575px;
    color: var(--ir-blue);
}

.hero-lede {
    max-width: 560px;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: .43px;
    color: var(--ir-body);
    text-wrap: pretty;
}

.chip {
    font-weight: 500;
    font-size: 18px;
    color: var(--ir-body);
}

.chip-ico {
    width: 41px;
    height: 41px;
    border-radius: 10px;
    background: rgba(184,235,255,.2);
    color: var(--ir-blue);
}

/* ---------- dashboard mockup ---------- */
.mock-stage {
    padding: 26px 24px 46px;
}

.blob {
    position: absolute;
    border-radius: 50%;
    background: var(--ir-green-mid);
}

.blob-green {
    right: -6px;
    bottom: -10px;
    width: 228px;
    height: 228px;
}

.blob-oval {
    left: -46px;
    bottom: -34px;
    width: 182px;
    height: 148px;
    transform: rotate(-20deg);
}

.mock-glow {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(447px 471px at 60% 40%, rgba(34,197,94,.12) 0%, rgba(0,0,0,0) 70%);
}

.mock-card {
    border-radius: 16px;
    border: .8px solid var(--ir-line);
    box-shadow: var(--ir-shadow-lg);
    font-family: Inter, sans-serif;
}

    .mock-card > .card-body {
        padding: 20px;
    }

.mock-eyebrow {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .6px;
    color: var(--ir-muted-2);
}

.mock-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--ir-slate);
}

.mock-live {
    font-weight: 600;
    font-size: 12px;
    color: var(--ir-green-mid);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ir-green-mid);
    opacity: .567;
    transition: opacity .4s ease;
}

.tile {
    border-radius: 12px;
    background: var(--ir-surface);
    border: .8px solid var(--ir-line);
    padding: 12px;
}

.tile-k {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: var(--ir-muted-3);
}

.tile-v {
    font-weight: 700;
    font-size: 17.6px;
    line-height: 26px;
    color: var(--ir-slate);
}

.tile-d {
    font-weight: 700;
    font-size: 10.4px;
    color: var(--ir-green-mid);
}

.mock-label {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: var(--ir-muted-3);
}

.mock-chart {
    display: block;
    width: 100%;
    height: 112px;
}

.badge-soft {
    border-radius: 999px;
    padding: 2px 8px;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
}

.badge-soft-green {
    background: var(--ir-pale-green);
    color: var(--ir-green-mid);
}

.badge-soft-grey {
    background: var(--ir-line);
    color: var(--ir-muted-3);
}

.resp-name {
    font-weight: 600;
    font-size: 12px;
    color: var(--ir-slate);
}

.resp-time {
    width: 52px;
    font-size: 12px;
    color: var(--ir-muted-2);
}

.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 12px;
}

.av-green {
    background: var(--ir-mint);
    color: var(--ir-green-mid);
}

.av-blue {
    background: var(--ir-pale-blue);
    color: var(--ir-blue);
}

.av-lime {
    background: var(--ir-mint-2);
    color: var(--ir-green-dark);
}

.float-card {
    position: absolute;
    border-radius: 14px;
    border: .8px solid var(--ir-line);
    box-shadow: var(--ir-shadow-md);
    font-family: Inter, sans-serif;
}

    .float-card > .card-body {
        padding: 12px;
    }

.float-ai {
    left: 0;
    bottom: 6px;
    width: 192px;
}

.float-ai-head {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    color: rgb(54,65,83);
}

.float-ai-ico {
    width: 20px;
    height: 20px;
    border-radius: 8px;
    background: var(--ir-green-mid);
    color: #fff;
}

.float-ai p {
    font-size: 12px;
    line-height: 16.5px;
    color: var(--ir-muted-3);
}

.float-nps {
    right: 0;
    top: 0;
    width: 164px;
}

.nps-k {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: var(--ir-muted-2);
}

.nps-v {
    font-weight: 800;
    font-size: 22.4px;
    line-height: 33.6px;
    color: var(--ir-green-mid);
}

.nps-bars i {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: var(--ir-line-2);
}

    .nps-bars i.on {
        background: var(--ir-green-mid);
    }

/* ---------- stats ---------- */
.stats-section {
    z-index: 2;
    background: #f8fbff;
}

.stats-card {
    border-radius: 16px;
    box-shadow: 0 0 3px 0 rgba(94,168,19,.2);
}

    .stats-card > .card-body {
        padding: 35px 40px;
    }

.stat-num {
    font-family: Inter, sans-serif;
    font-weight: 800;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: -.6px;
    color: var(--ir-blue);
}

.stat-lab {
    margin-top: 4px;
    font-weight: 500;
    font-size: 18px;
    line-height: 22.5px;
    color: var(--ir-muted);
}

/* ---------- section headings ---------- */
.h2-dark {
    font-weight: 700;
    font-size: 34px;
    line-height: 40px;
    color: var(--ir-body-2);
}

.h2-blue {
    font-weight: 700;
    font-size: 34px;
    line-height: 36px;
    color: var(--ir-blue);
}

.h2-white {
    font-weight: 700;
    font-size: 34px;
    line-height: 40px;
    color: #fff;
}

.section-lede {
    max-width: 743px;
    font-size: 18px;
    line-height: 22px;
    color: var(--ir-body);
    text-wrap: pretty;
}

/* ---------- what is ---------- */
.what-section {
    background: var(--ir-page-alt);
    margin-top: -68px;
    padding: 160px 0 96px;
}

.what-card {
    border-radius: 16px;
    box-shadow: var(--ir-shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease;
}

    .what-card > .card-body {
        padding: 24px;
    }

    .what-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px -8px rgba(0,0,0,.14);
    }

.what-ico {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(94,168,19,.2);
    box-shadow: inset 0 0 0 1px rgba(94,168,19,.2);
    color: var(--ir-green-dark);
}

.what-card h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    color: var(--ir-ink);
}

.what-card p {
    font-size: 16px;
    line-height: 22px;
    color: var(--ir-muted);
    text-wrap: pretty;
}

/* ---------- features ---------- */
.features-section {
    background: #fff;
    padding: 90px 0;
}

.feature-media img {
    width: 100%;
    height: 393px;
    object-fit: cover;
    border-radius: 8px;
}

.feature-title {
    max-width: 424px;
    font-family: Inter, sans-serif;
    font-size: 34px;
    line-height: 36px;
    letter-spacing: .5px;
}

.feature-list strong {
    display: block;
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
    color: var(--ir-ink-2);
}

.feature-list span {
    display: block;
    margin-top: 6px;
    font-size: 16px;
    line-height: 18px;
    color: var(--ir-muted);
}

.check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-top: 2px;
    background: var(--ir-green);
    color: #fff;
}

/* ---------- why iReach ---------- */
.why-section {
    padding: 60px 0 86px;
    background: var(--ir-grad-why);
}

.why-orb {
    position: absolute;
    right: 200px;
    top: -80px;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    background: rgba(0,188,125,.1);
}

.why-lede {
    max-width: 576px;
    font-size: 18px;
    line-height: 24px;
    color: rgba(190,219,255,.7);
    text-wrap: pretty;
}

.why-card {
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: .8px solid rgba(255,255,255,.12);
    transition: transform .22s ease, background-color .22s ease;
}

    .why-card > .card-body {
        padding: 24px;
    }

    .why-card:hover {
        transform: translateY(-4px);
        background: rgba(255,255,255,.12);
    }

.why-ico {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--ir-green);
    color: #fff;
}

.why-card h3 {
    font-family: "Plus Jakarta Sans", Figtree, sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
}

.why-card p {
    font-size: 16px;
    line-height: 24px;
    color: rgba(190,219,255,.7);
    text-wrap: pretty;
}

/* ---------- how it works ---------- */
.how-section {
    background: #F8FBFF;
    padding: 84px 0 70px;
}

.how-lede {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: .35px;
    color: var(--ir-body);
}

.how-grid {
    border-radius: 16px;
    overflow: hidden;gap:25px;
}

.step {
    padding: 25px 10px;
    border-right: 1px solid var(--ir-line);
    border-bottom: 1px solid var(--ir-line);
    background-color:#fff;
}

.step-last {
    border-right: 0;
}

.step-ico {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(94,168,19,.21);
    box-shadow: var(--ir-shadow-sm);
    color: var(--ir-green-dark);
}

.step h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: var(--ir-ink);
}

.step p {
    font-size: 16px;
    line-height: 20.5px;
    color: var(--ir-muted);
}

/* ---------- cta ---------- */
.cta-section {
    background: #F8FBFF;
    padding: 20px 0 70px;
}

.cta-band {
    border-radius: 16px;
    background: var(--ir-grad-cta);
    padding: 47px 60px;
}

.cta-copy {
    max-width: 512px;
}

    .cta-copy h2 {
        font-family: Inter, sans-serif;
        font-weight: 700;
        font-size: 30px;
        line-height: 36px;
        color: #fff;
    }

    .cta-copy p {
        font-family: Inter, sans-serif;
        font-size: 16px;
        line-height: 26px;
        color: var(--ir-foot-link);
    }

/* ---------- Testimonials Section ---------- */
.testi-section {
    background: var(--ir-page-alt);
    padding: 76px 0 60px;
}

.testi-lede {
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: .35px;
    color: var(--ir-muted-2);
}

/* Owl Carousel Flex & Equal Height Fix */
.testi-carousel .owl-stage {
    display: flex;
}

.testi-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
}

/* Card Styling */
.testi-card {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: .8px solid var(--ir-line);
    box-shadow: var(--ir-shadow-sm);
    background: #fff;
    margin-bottom: 5px;
}

    .testi-card > .card-body {
        padding: 24px;
    }

    .testi-card .quote {
        color: var(--ir-green);
        flex-shrink: 0;
    }

    .testi-card p {
        font-size: 18px;
        line-height: 25px;
        color: var(--ir-body);
        text-wrap: pretty;
    }

.testi-by .avatar {
    width: 40px;
    height: 40px;
    font-size: 14px;
    padding: 5px 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.testi-by strong {
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: var(--ir-ink-3);
}

.testi-by span {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 12px;
    color: var(--ir-muted-2);
}

/* Owl Carousel Custom Dots (Matching your .testi-dots styling) */
.testi-section .owl-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding-top: 24px;
}

    .testi-section .owl-dots .owl-dot {
        outline: none;
        border: none;
        background: transparent;
        padding: 0 !important;
    }

        .testi-section .owl-dots .owl-dot span {
            display: block;
            width: 6px;
            height: 6px;
            margin: 0;
            border-radius: 999px;
            background: var(--ir-line-2);
            cursor: pointer;
            transition: width .2s ease, background-color .2s ease;
        }

        .testi-section .owl-dots .owl-dot.active span {
            width: 22px;
            background: var(--ir-green);
        }
.testi-section .owl-stage-outer {
    padding: 5px;
}
/* ---------- footer ---------- */
.site-footer {
    background: var(--ir-blue-deep);
    padding: 62px 0 40px;
}

.footer-logo {
    height: 55px;
    width: auto;
    display: block;border-radius:2px;
}

.footer-about {
    max-width: 240px;
    font-size: 16px;
    line-height: 22.75px;
    color: #fff;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 .5px var(--ir-pale-blue);
    color: #fff;
    text-decoration: none;
}

    .socials a:hover {
        background: var(--ir-green-mid);
        color: #fff;
        box-shadow: none;
    }

.site-footer h4 {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1.2px;
    color: var(--ir-foot-head);
    text-transform: uppercase;
}

.site-footer ul a {
    font-size: 16px;
    color: var(--ir-foot-link);
    text-decoration: none;
}

    .site-footer ul a:hover {
        color: var(--ir-green);
    }

.footer-bottom {
    padding: 16px 22px;
    border-top: 1px solid var(--ir-foot-rule);
    border-radius: 4px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 16px;
    color: var(--ir-foot-fine);
}
#demoModal .style-modal{border-radius:8px;border:none;box-shadow:0 10px 30px rgba(0,0,0,.15)}
#demoModal .style-modal .modal-title{color:#70bf08;font-weight:600}
#demoModal .style-modal .form-control{border:1px solid #ced4da;border-radius:4px;padding:.6rem .75rem;font-size:14px;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}
#demoModal .style-modal .form-control:focus{border-color:#70bf08;box-shadow:0 0 0 .25rem rgba(112,191,8,.25);outline:0}
#demoModal .style-modal .form-label{font-size:14px;font-weight:500;color:#333;margin-bottom:.4rem}
#demoModal .style-modal .btn-brand-green{background-color:#70bf08;color:#fff;border:none;font-weight:500;transition:all .3s ease}
#demoModal .style-modal .btn-brand-green:focus,#demoModal .style-modal .btn-brand-green:hover{background-color:#5da006;color:#fff;box-shadow:0 4px 12px rgba(112,191,8,.3)}
#demoModal .style-modal button:focus:not(:focus-visible) {
    box-shadow: none;
}
/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991.98px) {
    .site-header .container {
        min-height: 78px;
    }

    .site-header .navbar-collapse {
        padding-bottom: .5rem;
    }

    .site-header .nav-link {
        font-size: 17px;
        padding: .5rem 0;
    }

    .brand-img {
        height: 44px;
    }

    .btn-ghost-green {
        box-shadow: inset 0 0 0 1px var(--ir-green-mid);
    }

    .hero-inner {
        padding-top: 48px;
        padding-bottom: 72px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 1.14;
        letter-spacing: -1px;
    }

    .hero-lede {
        font-size: 17px;
        line-height: 27px;
    }

    .h2-dark, .h2-blue, .h2-white, .feature-title {
        font-size: 27px;
        line-height: 1.22;
    }

    .cta-copy h2 {
        font-size: 25px;
    }

    .cta-band {
        padding: 34px 30px;
    }

    .blob, .why-orb {
        display: none;
    }

    .mock-stage {
        padding: 0;
    }

    .what-section {
        padding: 150px 0 72px;
    }

    .features-section {
        padding: 20px 0;
    }

    .why-section {
        padding: 56px 0 64px;
    }

    .how-section {
        padding: 64px 0 50px;
    }

    .step {
        border-right: 0;
    }
}

@media (max-width: 767.98px) {
    .stats-card > .card-body {
        padding: 26px 16px;
    }

    .feature-media img {
        height: 260px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .step {
        flex: auto;
    }
    .feature-title {
        margin-top: 50px;
    }

}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 32px;
    }

    .h2-dark, .h2-blue, .h2-white, .feature-title {
        font-size: 23px;
    }

    .stat-num {
        font-size: 26px;
    }

    .stat-lab {
        font-size: 16px;
    }

    .testi-card {
        flex: 1 0 84%;
        min-width: 84%;
    }
    .step{flex:auto;}
    .feature-title{margin-top:50px;}
}
