:root {
    --primary-color: #22884c;
    --secondary-color: #F4F4F4;
    --dark-color: #000;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Inter+Tight:wght@600;700&display=swap');

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    background-color: #f7fafb;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  font-family: "Inter", sans-serif;
    color: var(--primary-color)
}

h1 {
    font-size: 5.2rem;
}

h1, h2, h3 {
    font-family: "Inter Tight", sans-serif;
    color: var(--primary-color);
}

a {
    transition: all 0.3s ease;
}

a {
    /*opacity: 0.8;*/
}

section {
    overflow: hidden;
}

.navbar-nav {
    gap: 10px;
}

.navbar-brand img {
    max-height: 44px;
}

.navbar .nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .nav-item a {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    padding: 0px 10px;
    text-decoration: none;
}

.navbar .nav-item.dropdown .dropdown-menu .dropdown-item {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 10px;
    text-decoration: none;
}

.navbar .nav-item > a:not(.btn):hover {
    color: var(--primary-color);
}

.navbar .dropdown-toggle::after {
    vertical-align: 2px;
    margin-left: 4px;
}

.navbar .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
    padding: 8px;
    margin-top: 10px;
}

.navbar .dropdown-item {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    padding: 8px 12px;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background-color: #ebf6f3;
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .navbar .nav-item.dropdown {
        flex-direction: column;
        align-items: stretch;
    }

    .navbar .dropdown-menu {
        position: static;
        inset: auto;
        float: none;
        transform: none !important;
        width: 100%;
        border: none;
        box-shadow: none;
        background: transparent;
        padding-left: 10px;
        margin-top: 0;
    }
}

/*.btn-outline {*/
/*    border-radius: 18px;*/
/*    border: 2px solid #000;*/
/*    border-bottom: 2px solid #000;*/
/*    background: #FFF;*/
/*    font-size: 20px;*/
/*    padding: 15px 55px;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.btn-outline:hover {*/
/*    background-color: #fff;*/
/*    border: 2px solid #000;*/
/*}*/
.btn-dark {
    padding: 10px 18px !important;
    background-color: #000;
    border: none;
    margin: 5px;
    color: #fff !important;
    border-radius: 8px !important;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-dark:hover, .btn-dark:active, .btn-dark:focus {
    background-color: #000;
    opacity: 0.8;
}


.vline {
    width: 1px;
    background: #000;
    position: absolute;
    right: 50%;
    height: 90%;
    bottom: 0;
}

#section-1 .disc.b {
    position: absolute;
    left: calc(100% - clamp(10px, 1.5vw, 30px));
    top: clamp(-16px, -0.8vw, 1px);
    background: #FFF;
}
.disc {
    width: clamp(10px, 3vw, 60px);
    height: clamp(10px, 3vw, 60px);
    border-radius: 1000px;
    border: 1px solid #CCC;
    position: relative;
}
.dot.green {
    background: #91ed0d;
}
.btn-orange {
    border-radius: 18px;
    border: 2px solid #ff9100;
    background: #ff9100;
    font-size: 20px;
    padding: 15px 55px;
    transition: all 0.3s ease;
    color: #fff;
}

.btn-orange:hover {
    background-color: #ff9100;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1500;
    padding: 18px 0px;
    border-bottom: 0px solid #333;
    background-color: transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .btn-outline, .navbar .btn-orange {
    padding: 4px 10px;
}

.hero-section {
    position: relative;
    height: calc(100vh);
    max-height: 850px;
    min-height: 600px;
    overflow: hidden;
    padding-top: 100px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    max-height: 850px;
    object-fit: cover;
    z-index: 0;
}

/* Vertical white gradient overlay: transparent at top -> white at bottom */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 10%, rgba(0,0,0,1) 65%);

    pointer-events: none;
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.highlight {
    color: var(--primary-color);
}

/* ---------- Case Study Hero ---------- */

.case-hero-section {
    position: relative;
    padding-top: 150px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, #eef6f2 0%, #f7fafb 45%, #f7fafb 100%);
    overflow: hidden;
}

.case-hero-section h1 {
    font-size: clamp(2.2rem, 3.3vw, 3.15rem);
    line-height: 1.08;
    font-weight: 700;
    color: #0c1a13;
}

/* ---------- Platform page hero ---------- */

.platform-hero-shot {
    width: 100%;
    aspect-ratio: 16 / 13;
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(31, 115, 77, 0.12);
    box-shadow: 0 30px 60px rgba(7, 16, 24, 0.12);
}

.platform-hero-img-wrap {
    will-change: transform;
}

.platform-hero-img {
    animation: home-hero-float 4.5s ease-in-out infinite;
    will-change: transform;
}

/* ---------- Platform page hub diagram ---------- */

.platform-hub {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
}

.platform-hub-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 76%;
    height: 76%;
    transform: translate(-50%, -50%);
    border: 1.5px dashed rgba(31, 115, 77, 0.3);
    border-radius: 50%;
}

.platform-hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: #0c1a13;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 20px 40px rgba(7, 16, 24, 0.28);
    z-index: 2;
}

.platform-hub-center-mark {
    height: 49px;
    width: auto;
    filter: brightness(0) invert(1);
}

.platform-hub-center-label {
    color: #fff;
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.platform-hub-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .3rem;
    width: 168px;
    padding: 1.1rem 1.1rem 1.25rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    z-index: 1;
}

.platform-hub-node--top {
    top: 0;
    left: calc(50% - 84px);
}

.platform-hub-node--left-top {
    top: 24%;
    left: -6%;
}

.platform-hub-node--right-top {
    top: 24%;
    right: -6%;
}

.platform-hub-node--left-bottom {
    bottom: 35px;
    left: 4%;
}

.platform-hub-node--right-bottom {
    bottom: 30px;
    right: 4%;
}

.platform-hub-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: .3rem;
}

.platform-hub-node h6 {
    color: #0c1a13;
    font-weight: 700;
    font-size: .85rem;
    margin-bottom: .2rem;
}

.platform-hub-node p {
    color: #6b7871;
    font-size: .74rem;
    line-height: 1.4;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .platform-hub {
        max-width: 400px;
    }

    .platform-hub-node {
        width: 140px;
        padding: .9rem .9rem 1.1rem;
    }

    .platform-hub-node p {
        font-size: .68rem;
    }
}

@media (max-width: 575.98px) {
    .platform-hub {
        max-width: 320px;
    }

    .platform-hub-center {
        width: 84px;
        height: 84px;
    }

    .platform-hub-center-mark {
        height: 30px;
    }

    .platform-hub-node {
        width: 112px;
        padding: .7rem .7rem .85rem;
        gap: .2rem;
        border-radius: 12px;
    }

    .platform-hub-icon {
        font-size: 1.15rem;
        margin-bottom: .1rem;
    }

    .platform-hub-node h6 {
        font-size: .68rem;
    }

    .platform-hub-node p {
        font-size: .6rem;
        line-height: 1.3;
    }

    .platform-hub-node--top {
        top: 0;
        left: calc(50% - 56px);
    }

    .platform-hub-node--left-bottom {
        bottom: 14px;
    }

    .platform-hub-node--right-bottom {
        bottom: -10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .platform-hero-img {
        animation: none;
    }
}

.case-scroll-cue {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 56px auto 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #000;
    background: #fff;
    transition: all 0.3s ease;
}

.case-scroll-cue:hover {
    background: #000;
    color: #fff;
}

/* ---------- Platform page tour blocks ---------- */
.platform-hero-section {
    position: relative;
    padding-top: 150px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, #eef6f2 0%, #f7fafb 45%, #f7fafb 100%);
    overflow: hidden;
}

.platform-hero-section h1 {
    font-size: clamp(2.4rem, 3.6vw, 3.4rem);
    line-height: 1.1;
    font-weight: 700;
    color: #0c1a13;
}

.platform-tour-section h2 {
    font-size: clamp(1.9rem, 2.6vw, 2.5rem);
    line-height: 1.12;
    font-weight: 700;
    color: #0c1a13;
}

.platform-tour-list {
    border-top: 1px solid #e2e8f0;
}

.platform-tour-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.platform-tour-list .platform-tour-item:last-child {
    border-bottom: none;
}

.platform-tour-item h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #0c1a13;
    margin-bottom: .4rem;
}

.platform-tour-item p {
    color: #4d5b54;
    font-size: 0.92rem;
    line-height: 1.6;
}

.platform-tour-shot {
    width: 100%;
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(31, 115, 77, 0.12);
    box-shadow: 0 30px 60px rgba(7, 16, 24, 0.12);
    overflow: hidden;
}

/* Phone mockup floating over the bottom-left corner of a .platform-tour-shot
   card — sits on top as its own layer instead of competing for grid space,
   so it doesn't cramp the text column next to it. */
.platform-comm-shot-wrap {
    position: relative;
    padding-bottom: 8%;
    padding-left: 8%;
}

.platform-comm-phone {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 26%;
    z-index: 2;
    filter: drop-shadow(0 20px 35px rgba(7, 16, 24, 0.3));
}

@media (max-width: 991.98px) {
    .platform-comm-shot-wrap {
        padding-bottom: 10%;
        padding-left: 12%;
    }

    .platform-comm-phone {
        width: 30%;
    }
}

@media (max-width: 575.98px) {
    .platform-comm-shot-wrap {
        padding-bottom: 14%;
        padding-left: 18%;
    }

    .platform-comm-phone {
        width: 34%;
    }
}

/* ---------- Platform page tabs ---------- */

.platform-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.platform-tab {
    flex: 1 1 0;
    min-width: 220px;
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    border-left: 1px solid #e2e8f0;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.platform-tab:first-child {
    border-left: none;
}

.platform-tab:hover {
    background: #f7fafb;
}

.platform-tab.is-active {
    border-bottom-color: var(--primary-color);
}

.platform-tab-icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa5a0;
    font-size: 1.3rem;
}

.platform-tab.is-active .platform-tab-icon {
    color: var(--primary-color);
}

.platform-tab-text {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.platform-tab-title {
    font-weight: 700;
    font-size: .92rem;
    color: #6b7871;
}

.platform-tab.is-active .platform-tab-title {
    color: #0c1a13;
}

.platform-tab-desc {
    font-size: .78rem;
    color: #9aa5a0;
    line-height: 1.4;
}

.platform-tab.is-active .platform-tab-desc {
    color: #6b7871;
}

.platform-tab-panel {
    display: none;
    width: 100%;
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(31, 115, 77, 0.12);
    box-shadow: 0 30px 60px rgba(7, 16, 24, 0.12);
    padding: 2.5rem;
    overflow: hidden;
}

.platform-tab-panel.is-active {
    display: block;
    animation: platform-tab-fade .4s ease;
}

@keyframes platform-tab-fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .platform-tab-panel.is-active {
        animation: none;
    }
}

.platform-tab-checklist li {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .75rem;
    color: #132018;
    font-weight: 500;
    font-size: .92rem;
}

.platform-tab-checklist li:last-child {
    margin-bottom: 0;
}

.platform-tab-checklist i {
    color: var(--primary-color);
    font-size: 1.05rem;
    flex: 0 0 auto;
}

@media (max-width: 991.98px) {
    .platform-tabs-nav {
        margin-bottom: 2rem;
    }

    .platform-tab {
        flex: 1 1 50%;
        border-left: none;
        border-top: 1px solid #e2e8f0;
    }

    .platform-tab:nth-child(1),
    .platform-tab:nth-child(2) {
        border-top: none;
    }

    .platform-tab:nth-child(odd) {
        border-right: 1px solid #e2e8f0;
    }
}

@media (max-width: 575.98px) {
    .platform-tab {
        flex: 1 1 100%;
        border-right: none !important;
    }

    .platform-tab:nth-child(1) {
        border-top: none;
    }

    .platform-tab-panel {
        padding: 1.5rem;
    }

    .platform-tab-desc {
        font-size: .72rem;
    }
}


/* ---------- Platform page intelligence cards ---------- */
.platform-intel-section h2 {
    font-size: clamp(1.9rem, 2.6vw, 2.5rem);
    line-height: 1.12;
    font-weight: 700;
    color: #0c1a13;
}

.platform-intel-card {
    background: #fff;
    border: 1px solid #e3e8e2;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.platform-intel-card h3 {
    color: #0c1a13;
    font-size: clamp(1.4rem, 2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.2;
}

.platform-intel-card .case-lead {
    max-width: none;
}

.platform-intel-table {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
}

.platform-intel-table-head,
.platform-intel-table-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1.25rem;
    align-items: center;
    padding: .85rem 1.1rem;
}

.platform-intel-table-head {
    background: #f7fafb;
    color: #6b7871;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
}

.platform-intel-table-row {
    border-top: 1px solid #eef1ef;
    font-weight: 700;
    color: #0c1a13;
    font-size: .95rem;
}

.platform-intel-table-row .shares,
.platform-intel-table-row .change {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.platform-intel-table-row .change.up {
    color: var(--primary-color);
}

.platform-intel-table-row .change.down {
    color: #dc2626;
}

.platform-geo-bar {
    margin-bottom: 1.15rem;
}

.platform-geo-bar:last-child {
    margin-bottom: 0;
}

.platform-geo-bar-label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #0c1a13;
    font-size: .95rem;
    margin-bottom: .5rem;
}

.platform-geo-bar-track {
    height: 10px;
    border-radius: 999px;
    background: #eef1ef;
    overflow: hidden;
}

.platform-geo-bar-fill {
    height: 100%;
    border-radius: 999px;
    background: var(--primary-color);
}

/* ---------- Platform page communications panel ---------- */

.platform-dark-lead {
    color: rgba(255, 255, 255, .72);
    font-size: 1.02rem;
    line-height: 1.6;
}

/* ---------- Platform page connect diagram ---------- */

.platform-connect-panel {
    position: relative;
    background: linear-gradient(160deg, #061310 0%, #0a1a15 60%, #050d0b 100%);
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 0 18px 45px rgba(7, 16, 24, 0.25);
    overflow: hidden;
}

.platform-connect-intro {
    max-width: 560px;
}

.platform-connect-row {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 3.5rem;
}

.platform-connect-line {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 0;
}

.platform-connect-node {
    position: relative;
    text-align: center;
    z-index: 1;
}

.platform-connect-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid rgba(127, 217, 164, 0.5);
    background: #08150f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7fd9a4;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
}

.platform-connect-node--featured .platform-connect-circle {
    width: 80px;
    height: 80px;
    font-size: 1.6rem;
    color: #fff;
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 6px rgba(34, 136, 76, 0.18);
}

.platform-connect-node h6 {
    color: #fff;
    font-weight: 700;
    font-size: .88rem;
    margin-bottom: .35rem;
}

.platform-connect-node p {
    color: rgba(255, 255, 255, .55);
    font-size: .76rem;
    line-height: 1.4;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .platform-connect-line {
        display: none;
    }

    .platform-connect-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem 1.5rem;
        margin-top: 2rem;
    }

}

/* ---------- Platform page IR website & analytics ---------- */

.platform-h2 {
    color: #0c1a13;
    font-weight: 700;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.1;
}

.platform-analytics-tags {
    color: #8a9690;
    font-size: .85rem;
    font-weight: 500;
}

.platform-stat-mini {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.platform-stat-mini .l {
    display: block;
    color: #6b7871;
    font-size: .82rem;
    margin-bottom: .4rem;
}

.platform-stat-mini .v {
    display: block;
    color: #0c1a13;
    font-weight: 700;
    font-size: 1.8rem;
}

.platform-ir-mock {
    background: linear-gradient(160deg, #1f2937 0%, #111827 100%);
    text-align: center;
    padding: 3rem 2rem;
}

.platform-ir-mock-brand {
    color: #e0a83e;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.platform-ir-mock-title {
    color: #fff;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.15;
}

.platform-ir-mock-tagline {
    color: rgba(255, 255, 255, .65);
    font-size: .95rem;
}

.platform-ir-mock-btn {
    display: inline-block;
    background: #e0a83e;
    color: #1f2937;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .75rem 1.75rem;
    border-radius: 10px;
}

.case-kicker {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.case-kicker-sm {
    font-size: 0.72rem;
}

.case-lead {
    color: #4d5b54;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 460px;
}

.case-study-card {
}

.case-study-card h3 {
    color: #10201a;
    font-size: 1.25rem;
    font-weight: 700;
}

.case-study-card h4 {
    color: #10201a;
    font-size: 1.05rem;
    font-weight: 700;
}

.case-kicker {
    color: var(--primary-color) !important;
    font-size: 0.8rem;
}

.case-study-card > p {
    color: #4d5b54;
    font-size: 0.92rem;
    line-height: 1.65;
}

.case-logo-tile {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(31, 115, 77, 0.12);
    padding: 5px;
}

.case-logo-tile img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.case-meta {
    color: #6b7871;
    font-size: 0.8rem;
    line-height: 1.4;
}

.case-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.case-link:hover {
    opacity: 0.75;
}

/* Device mockup */

.case-mockup-wrap {
    position: relative;
    padding-right: clamp(0px, 8vw, 90px);
    padding-bottom: clamp(30px, 8vw, 70px);
}

.case-mockup-laptop {
    background: #fff;
    border: 10px solid rgba(0, 0, 0, 1);
    box-shadow: 0 30px 60px rgba(7, 16, 24, 0.25);
    overflow: hidden;
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: top center;
    
}

.case-mockup-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.case-mockup-brand {
    flex: 0 0 auto;
    color: #d9b25c;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.case-mockup-links {
    flex: 1 1 auto;
    min-width: 0;
    gap: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
    overflow: hidden;
}

.case-mockup-ticker {
    flex: 0 0 auto;
    margin-left: auto;
    background: rgba(89, 176, 122, 0.16);
    color: #7fd9a4;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 100px;
    white-space: nowrap;
}

.case-mockup-ticker em {
    font-style: normal;
    color: #7fd9a4;
}

.case-mockup-hero {
    position: relative;
    padding: clamp(28px, 5vw, 52px) clamp(20px, 4vw, 40px);
    min-height: clamp(160px, 22vw, 240px);
    background:
        radial-gradient(120% 100% at 15% 0%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 45%),
        linear-gradient(180deg, #5a6b78 0%, #7c8a8f 32%, #a99878 62%, #8a7250 100%);
}

.case-mockup-hero h5 {
    color: #fff;
    font-family: "Inter Tight", sans-serif;
    font-weight: 700;
    font-size: clamp(1.15rem, 2.4vw, 1.8rem);
    line-height: 1.2;
    margin-bottom: 12px;
}

.case-mockup-hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    max-width: 320px;
    margin-bottom: 16px;
}

.case-mockup-btn {
    display: inline-block;
    background: #d9b25c;
    color: #17130a;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 8px 16px;
    border-radius: 6px;
}

.case-mockup-strip {
    background: #f7fafb;
}

.case-mockup-col {
    padding: 16px 18px;
    border-right: 1px solid rgba(15, 23, 42, 0.06);
}

.case-mockup-col:last-child {
    border-right: none;
}

.case-mockup-label {
    display: block;
    color: #6b7871;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.case-mockup-col p {
    color: #24322b;
    font-size: 0.68rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

.case-mockup-thumb {
    background: linear-gradient(135deg, #061320 0%, #0c1f33 100%);
    border-radius: 6px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.case-mockup-thumb span {
    color: #d9b25c;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
}

.case-mockup-price {
    color: #10201a;
    font-size: 1.1rem;
    font-weight: 700;
}

.case-mockup-delta {
    color: var(--primary-color);
    font-size: 0.68rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.case-mockup-social {
    display: flex;
    gap: 8px;
    color: #4d5b54;
    font-size: 0.7rem;
}

.case-mockup-phone {
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(110px, 18vw, 165px);
    background: #fff;
    border: 6px solid rgba(0, 0, 0, 1);
    overflow: hidden;
    height: 340px;
    background-size: cover;
    background-position: top center;
}

.case-mockup-phone .phone-speaker {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 5px;
    background: #000;
    border-radius: 6px;
    z-index: 2;
}

.case-mockup-phone-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.case-mockup-phone-nav span {
    color: #d9b25c;
    font-weight: 700;
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.case-mockup-phone-nav i {
    font-size: 0.65rem;
}

.case-mockup-phone-hero {
    padding: 14px;
    background: linear-gradient(180deg, #5a6b78 0%, #7c8a8f 32%, #a99878 62%, #8a7250 100%);
}

.case-mockup-phone-hero h6 {
    color: #fff;
    font-family: "Inter Tight", sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    line-height: 1.25;
    margin-bottom: 6px;
}

.case-mockup-phone-hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.55rem;
    line-height: 1.35;
    margin-bottom: 0;
}

.case-mockup-phone-news {
    background: #f7fafb;
    padding: 12px 14px;
}

.case-mockup-phone-news p {
    color: #24322b;
    font-size: 0.55rem;
    line-height: 1.4;
    margin-bottom: 6px;
}

@media (max-width: 991px) {
    .case-mockup-wrap {
        padding-right: 0;
        padding-bottom: 0;
    }

    .case-mockup-phone {
        display: none;
    }
}

@media (max-width: 768px) {
    .case-hero-section {
        padding-top: 120px;
        padding-bottom: 50px;
    }
}

/* ---------- Home Hero ---------- */

.home-hero-section {
    position: relative;
    padding-top: 150px;
    padding-bottom: 70px;
    background: linear-gradient(180deg, #eef6f2 0%, #f7fafb 45%, #f7fafb 100%);
    overflow: hidden;
}

.home-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    opacity: 0.7;
}
/*
.home-hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(238, 246, 242, 0.9) 0%, rgba(247, 250, 251, 0.9) 45%, rgba(247, 250, 251, 0.9) 100%);
    z-index: 1;
}*/

.home-hero-section h1 {
    font-size: clamp(2.4rem, 3.6vw, 3.4rem);
    line-height: 1.1;
    font-weight: 700;
    color: #0c1a13;
}

.home-hero-img-wrap {
    will-change: transform;
}

.home-hero-img {
    animation: home-hero-float 4.5s ease-in-out infinite;
    will-change: transform;
}

@keyframes home-hero-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-img {
        animation: none;
    }
}

.home-features h2 {
    color: #10201a;
}

.home-trusted-label {
    color: #6b7871;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.home-trusted-logos img {
    height: auto;
    width: 100%;
    object-fit: contain;
}

.partners-carousel {
    /*max-width: 480px;*/
}

.partners-carousel .slick-track {
    display: flex;
    align-items: center;
}

.partners-carousel .slick-slide {
    padding: 0 18px;
}

.partners-carousel .slick-slide img {
    width: auto;
    height: 120px;
    margin: 0 auto;
}

.btn-outline-dark {
    border-radius: 8px !important;
    font-weight: 600;
    padding: 10px 20px;
    border-width: 1.5px;
}

.home-delta-up {
    color: var(--primary-color);
    font-size: 0.65rem;
    font-weight: 700;
}

.home-delta-down {
    color: #d9534f;
    font-size: 0.65rem;
    font-weight: 700;
}

/* Dashboard mockup */

.home-mockup-wrap {
    position: relative;
    padding-bottom: 20px;
}

.home-dashboard {
    display: flex;
    width: 100%;
    max-width: 100%;
    background: #fff;
    box-shadow: 0 30px 60px rgba(7, 16, 24, 0.18);
    border: 1px solid rgba(31, 115, 77, 0.08);
    overflow: hidden;
}

.home-dash-sidebar {
    flex: 0 0 auto;
    width: 56px;
    background: linear-gradient(180deg, #061320 0%, #0c1f33 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 0;
}

.home-dash-logo {
    color: #d9b25c;
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(217, 178, 92, 0.4);
    border-radius: 6px;
    padding: 3px 6px;
    margin-bottom: 22px;
}

.home-dash-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-dash-nav span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.home-dash-nav span.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.home-dash-main {
    flex: 1 1 auto;
    padding: 18px 20px;
    min-width: 0;
    width: 100%;
}

.home-dash-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.home-dash-title {
    font-family: "Inter Tight", sans-serif;
    font-weight: 700;
    color: #10201a;
    font-size: 1rem;
}

.home-dash-range {
    background: #f7faf9;
    border: 1px solid rgba(31, 115, 77, 0.12);
    color: #4d5b54;
    font-size: 0.64rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 100px;
    white-space: nowrap;
}

.home-dash-stat {
    background: #f7faf9;
    border: 1px solid rgba(31, 115, 77, 0.08);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.home-dash-stat-label {
    color: #6b7871;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.home-dash-stat-value {
    color: #10201a;
    font-weight: 700;
    font-size: 0.95rem;
}

.home-dash-card {
    background: #f7faf9;
    border: 1px solid rgba(31, 115, 77, 0.08);
    border-radius: 10px;
    padding: 12px 14px;
    height: 100%;
}

.home-dash-card-label {
    display: block;
    color: #6b7871;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}

.home-map-visual {
    position: relative;
    height: 100px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 20% 30%, rgba(31, 115, 77, 0.12) 0, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(31, 115, 77, 0.1) 0, transparent 45%),
        repeating-linear-gradient(90deg, rgba(31, 115, 77, 0.06) 0 1px, transparent 1px 18px),
        repeating-linear-gradient(0deg, rgba(31, 115, 77, 0.06) 0 1px, transparent 1px 18px);
    overflow: hidden;
}

.home-map-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(31, 115, 77, 0.15);
}

.home-donut-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-donut {
    position: relative;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    flex: 0 0 auto;
    background: conic-gradient(var(--primary-color) 0% 62.7%, #a8d5bb 62.7% 92%, #e2e8f0 92% 100%);
}

.home-donut::after {
    content: '';
    position: absolute;
    inset: 13px;
    background: #f7faf9;
    border-radius: 50%;
}

.home-donut span {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: #10201a;
    line-height: 1.25;
    text-align: center;
}

.home-donut span em {
    font-style: normal;
    font-weight: 500;
    color: #6b7871;
    font-size: 0.52rem;
}

.home-donut-legend {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.64rem;
    color: #24322b;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.home-donut-legend i {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    margin-right: 6px;
}

.home-donut-legend b {
    margin-left: 4px;
    font-weight: 700;
}

.home-dash-mini-value {
    color: #10201a;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.home-dash-mini-value-sm {
    font-size: 0.78rem;
    margin-bottom: 0;
}

.home-sparkline {
    width: 100%;
    height: 28px;
    display: block;
}

.home-sparkline polyline {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.home-bar-row {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
}

.home-bar-row span {
    flex: 1 1 auto;
    border-radius: 2px 2px 0 0;
    background: var(--primary-color);
}

.home-bar-row.down span {
    background: #d9534f;
}

@media (max-width: 991px) {
    .home-dash-main {
        padding: 14px 16px;
    }
}

/* Feature grid */

.home-feature h4 {
    color: #10201a;
    font-size: 1rem;
    font-weight: 700;
}

.home-feature p {
    color: #4d5b54;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Communicate / Engage / Grow panel */

.home-comm-checklist li {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.9rem;
}

.home-comm-checklist i {
    color: #7fd9a4;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 10px;
    border-radius: 100%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.home-link-light {
    color: #7fd9a4;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.home-link-light:hover {
    opacity: 0.8;
}

.home-comm-email {
    background: linear-gradient(135deg, #0a1410 0%, #0c1a16 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-comm-email-label {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.home-comm-field {
    margin-bottom: 10px;
}

.home-comm-field-label {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.62rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.home-comm-field-value {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 8px 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.7rem;
}

.home-comm-email-preview {
    background: #fff;
    border-radius: 10px;
    padding: 14px;
    margin-top: 4px;
}

.home-comm-email-preview-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.home-comm-email-preview-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.home-comm-email-preview-brand {
    color: #10201a;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.home-comm-email-preview-title {
    color: #10201a;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 14px;
}

.home-comm-email-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 6px;
}

.home-comm-phone-wrap {
    position: relative;
    padding-bottom: 40px;
    max-width: 269px;
    width: 100%;
}

.home-comm-phone-wrap {
    position: absolute;
    top: 0px;
    left:0px;
    width: 100%;
}
.home-comm-phone {
    background: linear-gradient(180deg, #0c1210 0%, #050807 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 14px;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.home-comm-phone-status-row {
    align-self: flex-end;
    display: flex;
    gap: 5px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.55rem;
    margin-bottom: 18px;
}

.home-comm-phone-clock {
    color: #fff;
    font-weight: 700;
    font-size: 1.7rem;
    line-height: 1;
}

.home-comm-phone-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.62rem;
    margin-top: 6px;
    margin-bottom: 14px;
}

.home-comm-phone-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(120% 80% at 50% 100%, rgba(31, 115, 77, 0.35) 0%, rgba(6, 19, 16, 0) 60%);
}

.home-comm-phone-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-comm-phone-notif {
    position: absolute;
    left: -14px;
    right: -14px;
    bottom: 18px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.home-comm-phone-notif-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.home-comm-phone-notif-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.home-comm-phone-notif-brand {
    color: #10201a;
    font-size: 0.7rem;
    font-weight: 700;
    flex: 1 1 auto;
}

.home-comm-phone-notif-now {
    color: #97a39c;
    font-size: 0.6rem;
}

.home-comm-phone-notif p {
    color: #3d4a44;
    font-size: 0.64rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

.home-comm-phone-notif-link {
    color: var(--primary-color);
    font-size: 0.64rem;
    font-weight: 700;
    text-decoration: none;
}

.home-comm-stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
}

.home-comm-stat-card .l {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.68rem;
    margin-bottom: 6px;
}

.home-comm-stat-card .v-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.home-comm-stat-card .v {
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
}

.home-comm-stat-card .d {
    font-size: 0.68rem;
    font-weight: 700;
}

.home-comm-stat-card .d.up {
    color: #7fd9a4;
}

.home-comm-stat-card .d.down {
    color: #e08585;
}

/* Stats bar */

.home-stat-value {
    font-family: "Inter Tight", sans-serif;
    font-weight: 700;
    color: #10201a;
    font-size: 1.5rem;
}

.home-stat-label {
    color: #4d5b54;
    font-size: 0.85rem;
}

/* Final CTA */

.home-final-cta {
    position: relative;
    overflow: hidden;
}

.home-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 34px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 34px);
    pointer-events: none;
}

.home-final-cta>.row {
    position: relative;
    z-index: 1;
}

.home-final-cta-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 480px;
}

.platform-showcase {
    background: linear-gradient(180deg, #f7f8f6 0%, #ffffff 100%);
}

.platform-showcase h2,
.platform-showcase h3 {
    font-weight: 700;
    color: #000;
   
}

.platform-checklist li {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
    color: #24322b;
    font-weight: 500;
    line-height: 1.4;
    font-size: 0.9rem;
}

.platform-checklist i {
    color: var(--primary-color);
    background-color: #ebf6f3;
    padding: 6px 13px;
    border-radius: 100%;
    font-size: 0.9rem;
    margin-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.platform-quote {
    background: #f7faf9;
    border: 1px solid rgba(31, 115, 77, 0.12);
    position: relative;
    padding-top: 70px !important;
}

.platform-quote-mark {
    color: var(--primary-color);
    font-size: 5.2rem;
    position: absolute;
    top: 0px;
    left: 20px;
    font-family: "Inter Tight", sans-serif;
}

.platform-quote p {
    color: #1d2621;
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ---------- Case study CEO testimonial ---------- */

.case-testimonial-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid rgba(31, 115, 77, 0.12);
    border-radius: 999px;
    padding: .6rem 1.5rem .6rem .6rem;
}

.case-testimonial-bar-avatar {
    flex: 0 0 auto;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
}

.case-testimonial-bar-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-testimonial-bar-text {
    color: #4d5b54;
    font-size: .98rem;
    line-height: 1.5;
}

.case-testimonial-bar-mark {
    color: var(--primary-color);
    font-weight: 700;
    margin-right: .1rem;
}

.case-testimonial-bar-name {
    display: inline-block;
    color: #0c1a13;
    font-weight: 700;
    margin-left: .35rem;
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .case-testimonial-bar {
        border-radius: 20px;
        align-items: flex-start;
        padding: 1rem;
    }

    .case-testimonial-bar-name {
        display: block;
        margin-left: 0;
        margin-top: .35rem;
        font-size: 0.79rem;
    }
    .navbar .nav-item a {
        text-align: center;
    }
}

.platform-result-card {
    border: 1px solid #e3e8e2;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.platform-result-icon {
    color: var(--primary-color);
    font-size: 1.7rem;
    margin-bottom: 18px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ebf6f3;
    border-radius: 100%;
}

.platform-result-card h4 {
    color: #132018;
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.35;
    font-weight: 600;
}

.platform-result-card p {
    color: #4d5b54;
    font-size: 0.85rem;
    line-height: 1.6;
}

.platform-dark-panel {
    position: relative;
    background: linear-gradient(135deg, #061320 0%, #0c1f33 55%, #071018 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(7, 16, 24, 0.18);
    overflow: hidden;
}

/* Subtle grid texture shared by every dark panel on the site. */
.platform-dark-panel::before,
.footer-cta::before,
.platform-connect-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 34px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 34px);
    pointer-events: none;
    z-index: 0;
}

.platform-dark-panel > *,
.footer-cta > *,
.platform-connect-panel > * {
    position: relative;
    z-index: 1;
}

.platform-kicker {
    color: #59b07a;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.platform-feature-box {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 112px;
}

.platform-feature-box i {
    font-size: 3rem;
    color: #fff;
}

.platform-feature-box span {
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.85rem;
    line-height: 1.35;
    font-weight: 500;
}

/*.hero-section p {*/
/*    font-size: 1.2rem;*/
/*    position: relative;*/
/*    padding-left: 40px;*/
/*}*/

/*.hero-section p::after {*/
/*    content: '';*/
/*    top: -6px;*/
/*    left: 0px;*/
/*    display: block;*/
/*    width: 30px;*/
/*    height: 2.5px;*/
/*    background-color: var(--primary-color);*/
/*    margin-top: 20px;*/
/*    position: absolute;*/
/*}*/

.container {
    position: relative;
    z-index: 2;
}

.navbar .container {
    overflow: visible;
}

.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.7;
}

/*#schedule {*/
/*    font-size: 18px;*/
/*}*/

.dashboard h4 {
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 3.5rem;
    position: relative;
    padding-top: 50px;
}

.dashboard h4::before {
    content: '';
    top: -6px;
    left: 0px;
    display: block;
    width: 60px;
    height: 2.5px;
    background-color: var(--primary-color);
    margin-top: 20px;
    position: absolute;
    
}

.partners h4 {
    font-size: 2.4rem;
    font-weight: 300;
}

.partners img {
    filter: grayscale(100%);
    transition: all 0.6s ease;
}

.partners img:hover {
    filter: grayscale(0%);
}

.connect .container {
    border-bottom: 2px solid #000;
}

.connect p {
    font-size: 1.4rem;
    position: relative;
}

.connect p::before {
    content: '';
    top: -40px;
    left: 0px;
    display: block;
    width: 37px;
    height: 2.5px;
    background-color: var(--primary-color);
    margin-top: 20px;
    position: absolute;    
}

.three-features .container {
    border-bottom: 2px solid #111;
}

.three-features h4 {
    border-bottom: 2px solid #111;
    padding-bottom: 30px;
    font-weight: 600;
}

.three-features p {
    font-size: 1.2rem;
}

.three-features .pre-print {
    padding-top: 40%;
}

.three-features .print1 {
    position: absolute;
    top: 0%;
    left: 10%;
    z-index: 0;
    width: 50%;
}

.three-features .print2 {
    position: absolute;
    top: 20%;
    right: 10%;
    z-index: 1;
    width: 50%;
}

.data h1 {
    font-size: 3rem;
}

.data p {
    font-size: 2rem;
    position: relative;
}

.data p::before {
    content: '';
    top: -40px;
    left: 0px;
    display: block;
    width: 37px;
    height: 2.5px;
    background-color: var(--primary-color);
    margin-top: 20px;
    position: absolute;    
}

.border-divisor, .border-divisor-bottom {
    border-left: 2px solid #111;
}

.border-top {
    border-top: 2px solid #111 !important;
}

.border-divisor::before {
    content: '';
    top: -5px;
    left: -21px;
    display: block;
    width: 42px;
    height: 42px;
    border: 2px solid #000;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;    
}

.border-divisor::after {
    content: '';
    top: 12px;
    left: -4px;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #65d263;
    position: absolute; 
    animation: radarPulse 3s ease-in-out infinite;
}


.border-divisor-bottom::before {
    content: '';
    bottom: -4px;
    left: -21px;
    display: block;
    width: 42px;
    height: 42px;
    border: 2px solid #000;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;    
}

.border-divisor-bottom::after {
    content: '';
    bottom: 12px;
    left: -4px;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #65d263;
    position: absolute; 
    animation: radarPulse 3s ease-in-out infinite;
}

.left-ball {
    position: relative;
    padding-left: 90px;  
}

.left-ball::before {
    content: '';
    top: 0px;
    left: 12px;
    display: block;
    width: 42px;
    height: 42px;
    border: 2px solid #000;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;  
}

.left-ball::after {
    content: '';
    top: 17px;
    left: 29px;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #65d263;
    position: absolute; 
    animation: radarPulse 3s ease-in-out infinite;
}

@keyframes radarPulse {
    0% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(101, 210, 99, 0.6);
    }

    30% {
        opacity: 0.5;
        box-shadow: 0 0 0 10px rgba(101, 210, 99, 0);
    }

    60% {
        opacity: 0;
        box-shadow: 0 0 0 10px rgba(101, 210, 99, 0);
    }

    100% {
        opacity: 0.6;
        box-shadow: 0 0 0 0 rgba(101, 210, 99, 0);
    }
}

footer {
    background-color: #000000;
    color: #fff;
}

footer .small {
    font-size: 12px;
}

.footer-cta {
    position: relative;
    background: linear-gradient(135deg, #0c1f33 0%, #163a52 60%, #0c1f33 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(7, 16, 24, 0.25);
    overflow: hidden;
}

.footer-cta-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-cta-btn:hover {
    opacity: 0.85;
    color: #fff;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 340px;
}

.footer-heading {
    color: #fff;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    opacity: 0.85;
}

.footer-link {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-muted {
    color: rgba(255, 255, 255, 0.45);
}

.footer-dot {
    color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    .partners h4 {
        font-size: 2rem;
    }

    .left-ball {
        padding-left: 40px;
    }

    .data h1 {
        font-size: 2rem;
    }

    .dashboard h4 {
        font-size: 1.2rem;
        line-height: 2.5rem;
    }
    .navbar-nav {
        margin-top: 20px;
    }

    .border-divisor {
        border-left: none;
        border-top: 2px solid #111;
        padding-top: 30px !important;
    }

    .left-ball::after, .border-divisor::after, .border-divisor-bottom::after, .left-ball::before, .border-divisor::before, .border-divisor-bottom::before {
        display: none;
    }

    .three-features .pre-print {
        padding-top: 60%;
    }
    .three-features .print1 {  
        left: 3%;      
        width: 70%;
    }

    .three-features .print2 {
        right: 3%;
        top: 30%;
        width: 70%;
    }

    .platform-showcase .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .platform-feature-box {
        min-height: 96px;
    }

    .home-comm-phone-wrap {
        max-width: 100%;
        position: relative;
        text-align: center;
    }

    .case-mockup-laptop {
        height: 260px;
    }

    #navbarNav {
        background-color: #f7fafb;
        padding: 10px;
        margin-top: 10px;
        border-radius: 8px;
        border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    }
    /*.navbar .btn-outline, .navbar .btn-orange {*/
    /*    padding: 6px 0px;*/
    /*    background-color: transparent;*/
    /*    border: none;*/
    /*    border-bottom: #000 2px solid;*/
    /*    margin: 5px;*/
    /*    color: var(--primary-color);*/
    /*    border-radius: 0px;*/
    /*}*/
    
}

.bg-overlay {
    position: relative;
}

.bg-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.bg-overlay .container {
    position: relative;
    z-index: 2;
}

.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/*.navbar-toggler-icon {*/
/*    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")*/
/*}*/

.navbar-light .navbar-toggler {
    border-color: rgba(0,0,0,.25);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0,0,0,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ===== Demo booking modal ===== */
body.demo-modal-open {
    overflow: hidden;
}

.demo-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

.demo-modal.is-open {
    display: block;
}

.demo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity .2s ease;
}

.demo-modal.is-open .demo-modal-backdrop {
    opacity: 1;
}

.demo-modal-dialog {
    position: relative;
    z-index: 1;
    background: #fff;
    width: min(640px, calc(100% - 2rem));
    max-height: calc(100vh - 3rem);
    margin: 1.5rem auto;
    border-radius: 22px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px) scale(.98);
    transition: opacity .22s ease, transform .22s ease;
}

.demo-modal.is-open .demo-modal-dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.demo-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.demo-modal-header h2 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: .25rem;
}

.demo-modal-header p {
    color: #6b7280;
    font-size: .92rem;
    margin-bottom: 0;
}

.demo-modal-body {
    padding: 1.75rem;
    overflow-y: auto;
}

.demo-modal .form-field {
    margin-bottom: 1.4rem;
}

.demo-modal .form-field:last-child {
    margin-bottom: 0;
}

.demo-modal .form-field label {
    display: block;
    font-weight: 700;
    font-size: .92rem;
    margin-bottom: .5rem;
    color: #000;
}

.demo-modal .form-field .form-control,
.demo-modal .form-field .form-select {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: .7rem .9rem;
    font-size: .95rem;
}

.demo-modal .form-field .form-control:focus,
.demo-modal .form-field .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(34, 136, 76, .15);
}

.demo-modal-footer {
    padding: 1.25rem 1.75rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

.alert-success {
    background-color: rgba(34, 136, 76, .12);
    border-color: rgba(34, 136, 76, .25);
    color: var(--primary-color);
}

.alert-danger {
    background-color: rgba(220, 38, 38, .1);
    border-color: rgba(220, 38, 38, .25);
    color: #b91c1c;
}

@media (max-width: 575.98px) {
    .demo-modal-dialog {
        margin: 0;
        /* 100vh on mobile ignores the browser's own address/nav bar, which
           then covers the footer button; dvh accounts for it. */
        max-height: 100vh;
        max-height: 100dvh;
        border-radius: 0;
        width: 100%;
    }
    .demo-modal-body {
        max-height: calc(100svh - 80px);
    }

    .demo-modal-footer {
        /* clears iOS home-indicator / gesture-bar area so the button
           isn't flush against it either */
        padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
    }
}

/* ===== Calendly scheduling modal ===== */
body.calendly-modal-open {
    overflow: hidden;
}

.calendly-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

.calendly-modal.is-open {
    display: block;
}

.calendly-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(2px);
}

.calendly-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 2rem));
    margin: 1.5rem auto;
    max-height: calc(100vh - 3rem);
    overflow-y: auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .5);
}

.calendly-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #F4F4F4;
    color: var(--primary-color);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.calendly-modal__content {
    padding: 1.75rem;
}

.calendly-modal__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.calendly-modal__header h3 {
    font-size: 1.3rem;
    font-weight: 800;
}

.calendly-modal__header p {
    color: #6b7280;
    font-size: .92rem;
}

.calendly-modal__timezone {
    width: min(300px, 100%);
}

.calendly-modal__timezone label {
    display: block;
    font-weight: 700;
    font-size: .85rem;
    color: #000;
}

.calendly-modal__timezone .form-control {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: .6rem .8rem;
    font-size: .9rem;
}

.calendly-modal__timezone .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(34, 136, 76, .15);
}

.calendly-modal__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    gap: 1.25rem;
}

.calendly-calendar,
.calendly-slots {
    position: relative;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    padding: 1.5rem;
}

.calendly-loading-overlay {
    position: absolute;
    inset: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(3px);
    z-index: 2;
    text-align: center;
    padding: 1.5rem;
}

.calendly-loading-overlay.is-visible {
    display: flex;
}

.calendly-loading-overlay__spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid #F4F4F4;
    border-top-color: var(--primary-color);
    animation: calendly-spin .8s linear infinite;
}

.calendly-loading-overlay__title {
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
}

.calendly-loading-overlay__text {
    max-width: 280px;
    color: #6b7280;
    font-size: .85rem;
    line-height: 1.5;
}

.calendly-calendar__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.calendly-calendar__toolbar .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.calendly-calendar__toolbar .btn-outline-primary:hover,
.calendly-calendar__toolbar .btn-outline-primary:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.calendly-calendar__toolbar h4,
.calendly-slots__header h4 {
    font-size: 1.35rem;
    font-weight: 800;
}

.calendly-calendar__weekdays,
.calendly-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: .6rem;
}

.calendly-calendar__weekdays {
    margin-bottom: .75rem;
}

.calendly-calendar__weekdays span {
    text-align: center;
    color: #6b7280;
    font-size: .82rem;
    font-weight: 700;
}

.calendly-calendar__day {
    min-height: 60px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    color: #000;
    font-size: .95rem;
    font-weight: 600;
    transition: all .2s ease;
}

.calendly-calendar__day.is-available {
    background: #F4F4F4;
    border-color: #cfe9d9;
}

.calendly-calendar__day.is-available:hover,
.calendly-calendar__day.is-selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.calendly-calendar__day.is-disabled,
.calendly-calendar__day.is-muted {
    color: #cbd5e1;
    background: #fafafa;
}

.calendly-calendar__day:disabled {
    cursor: default;
}

.calendly-calendar__loading {
    display: none;
    margin-top: .85rem;
    color: #6b7280;
    font-size: .9rem;
}

.calendly-calendar__grid.is-loading {
    opacity: .3;
    pointer-events: none;
}

.calendly-slots__header {
    margin-bottom: 1.1rem;
}

.calendly-slots__header p {
    color: #6b7280;
    font-size: .9rem;
}

.calendly-time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    min-height: 76px;
    margin-bottom: 1.25rem;
}

.calendly-slot {
    border: 1px solid #cfe9d9;
    border-radius: 999px;
    background: #fff;
    color: var(--primary-color);
    padding: .4rem .75rem;
    font-size: .82rem;
    font-weight: 600;
}

.calendly-slot.is-selected,
.calendly-slot:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

@keyframes calendly-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.calendly-time-slots__empty,
.calendly-booking-form__summary {
    border-radius: 10px;
    background: #F4F4F4;
    color: #000;
    padding: .85rem 1rem;
    font-size: .92rem;
}

.calendly-booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calendly-booking-form .form-control {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: .7rem .9rem;
    font-size: .95rem;
    background: #fff;
}

.calendly-booking-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(34, 136, 76, .15);
}

@media (max-width: 991.98px) {
    .calendly-modal__content {
        padding: 1.5rem;
    }
    .calendly-modal__header,
    .calendly-modal__layout {
        grid-template-columns: 1fr;
        display: grid;
    }
}

@media (max-width: 767.98px) {
    .calendly-modal__dialog {
        width: calc(100% - 1.25rem);
        margin: .6rem auto;
        max-height: calc(100vh - 1.25rem);
    }
    .calendly-modal__content,
    .calendly-calendar,
    .calendly-slots {
        padding: 1.1rem;
    }
    .calendly-calendar__weekdays,
    .calendly-calendar__grid {
        gap: .4rem;
    }
    .calendly-calendar__day {
        min-height: 44px;
        font-size: .85rem;
    }
    .platform-tour-shot {
        border-radius: 12px;
    }
}