/* =======================
    Global Section Start 
======================= */
:root {
    --bg-main: #020b1f;
    --bg-dark: #010816;
    --white: #ffffff;
    --white-85: rgba(255, 255, 255, 0.85);
    --white-72: rgba(255, 255, 255, 0.72);
    --white-62: rgba(255, 255, 255, 0.62);
    --white-54: rgba(255, 255, 255, 0.54);
    --primary: #1498ff;
    --primary-dark: #077ef1;
    --teal: #62d9c8;
    --container: 1200px;
    --transition: all 0.35s ease;
    --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.22);
    --shadow-heavy: 0 34px 80px rgba(0, 0, 0, 0.32);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--white);
    background:
        radial-gradient(circle at 18% 44%, rgba(0, 97, 255, 0.08), transparent 24%),
        linear-gradient(180deg, #020b1f 0%, #010816 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

ul {
    list-style: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto;
}

/* =======================
    Global Section End 
======================= */



/* =======================
    Header Section Start 
======================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(2, 11, 31, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
}

.header-row {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.site-logo {
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
}

.site-logo > img{
    padding-right: 8px;
}

.site-logo span {
    color: rgba(255, 255, 255, 0.42);
}

.desktop-nav>ul {
    display: flex;
    align-items: center;
    gap: 38px;
}

.desktop-nav a,
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--white-72);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.desktop-nav a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown.active .nav-dropdown-toggle {
    color: #ffffff;
}

.desktop-nav ion-icon,
.nav-dropdown-toggle ion-icon {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown.active .nav-dropdown-toggle ion-icon {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    min-width: 260px;
    padding: 10px;
    border-radius: 16px;
    background:
        radial-gradient(circle at top right, rgba(21, 140, 255, 0.12), transparent 32%),
        linear-gradient(180deg, #091528 0%, #020916 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    display: grid;
    gap: 4px;
}

.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown-menu a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--white-72);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-dropdown-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-btn {
    min-width: 171px;
    height: 40px;
    padding: 0 20px;
    border-radius: 10px;
    background: linear-gradient(180deg, #19a1ff 0%, #0a86f7 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(8, 128, 244, 0.22);
    transition: var(--transition);
}

.header-btn:hover {
    transform: translateY(-1px);
}

.menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    transition: var(--transition);
}

/* =======================
    Header Section End 
======================= */



/* =======================
    Mobile Menu Section Start 
======================= */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(1, 7, 18, 0.58);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(310px, 100%);
    height: 100vh;
    z-index: 1001;
    padding: 22px 20px 28px;
    background:
        radial-gradient(circle at top right, rgba(21, 140, 255, 0.18), transparent 28%),
        linear-gradient(180deg, #07152d 0%, #020916 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(100%);
    transition: transform 0.45s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

.mobile-menu-close {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.mobile-menu-close ion-icon {
    font-size: 24px;
}

.mobile-nav {
    flex: 1;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav a,
.mobile-dropdown-toggle {
    display: block;
    width: 100%;
    padding: 15px 14px;
    border-radius: 14px;
    color: var(--white-85);
    font-size: 16px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: var(--transition);
    text-align: left;
}

.mobile-nav a:hover,
.mobile-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mobile-dropdown-toggle ion-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle ion-icon {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    display: grid;
    gap: 6px;
    transition: max-height 0.35s ease;
    padding: 0 8px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    padding-top: 8px;
}

.mobile-dropdown-menu a {
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white-72);
    background: rgba(255, 255, 255, 0.02);
}

.mobile-dropdown-menu a:hover {
    color: #ffffff;
}

.mobile-menu-btn {
    width: 100%;
    height: 48px;
    margin-top: 18px;
}

/* =======================
    Mobile Menu Section End 
======================= */



/* =======================
    Announcement Section Start 
======================= */
.announcement-bar {
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(2, 11, 31, 0.95);
}

.announcement-track {
    min-width: max-content;
    display: flex;
    align-items: center;
    gap: 56px;
    padding: 14px 0;
    animation: marquee 26s linear infinite;
}

.announcement-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: var(--white-72);
    font-size: 14px;
    font-weight: 500;
}

.announcement-item ion-icon {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =======================
    Announcement Section End 
======================= */



/* =======================
    Hero Section Start 
=======================*/
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0 185px;
    background: linear-gradient(180deg, #020b1f 0%, #020b1f 100%);
}

.hero-left-glow {
    position: absolute;
    left: -160px;
    top: 255px;
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, rgba(0, 106, 255, 0.16) 0%, transparent 66%);
    filter: blur(26px);
    pointer-events: none;
    z-index: 0;
}

.hero-blue-orb {
    position: absolute;
    left: 50%;
    bottom: -150px;
    transform: translateX(-50%);
    width: 1700px;
    height: 700px;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at center,
            rgba(18, 113, 255, 0.95) 0%,
            rgba(12, 100, 248, 0.88) 18%,
            rgba(7, 81, 223, 0.7) 34%,
            rgba(2, 45, 150, 0.24) 52%,
            rgba(0, 0, 0, 0) 72%);
    filter: blur(42px);
    pointer-events: none;
    z-index: 0;
}

.hero-dark-oval {
    position: absolute;
    left: 50%;
    bottom: -235px;
    transform: translateX(-50%);
    width: 1750px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgb(2 11 31) 0%, rgb(2 11 31) 34%, rgb(2 11 31) 52%, rgba(0, 0, 0, 0.18) 68%, rgba(0, 0, 0, 0) 84%);
    filter: blur(24px);
    pointer-events: none;
    z-index: 1;
}

.hero-curve-line {
    position: absolute;
    left: 50%;
    bottom: -75px;
    transform: translateX(-50%);
    width: 1680px;
    height: 325px;
    border-top: 1.5px solid rgba(36, 213, 255, 0.7);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.95;
}

.hero-layout {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 510px;
    gap: 74px;
    align-items: center;
}

.hero-content {
    max-width: 540px;
    padding-top: 30px;
}

.hero-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 35px;
    padding: 5px 14px 5px 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 34px;
}

.hero-badge-pill {
    min-width: 41px;
    height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #51d5ff 0%, #30aefb 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.hero-badge-text {
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    font-weight: 500;
}

.hero-content h1 {
    max-width: 520px;
    font-size: 62px;
    line-height: 1.13;
    letter-spacing: -0.04em;
    font-weight: 700;
    color: #fbfdff;
    margin-bottom: 28px;
}

.hero-content p {
    max-width: 480px;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.56);
    margin-bottom: 38px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-btn {
    min-width: 128px;
    height: 40px;
    padding: 0 24px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}

.hero-btn-primary {
    background: linear-gradient(180deg, #18a0ff 0%, #0782f2 100%);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(8, 128, 244, 0.22);
}

.hero-btn-secondary {
    background: #f0f1f3;
    color: #1f2a37;
}

.hero-btn:hover {
    transform: translateY(-1px);
}

.hero-visual {
    position: relative;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    min-height: 590px;
}

.hero-main-image {
    width: 402px;
    height: 590px;
    object-fit: cover;
    border-radius: 18px;
    margin-left: auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.hero-stat-card {
    position: absolute;
    top: 64px;
    right: -28px;
    width: 315px;
    min-height: 90px;
    background: #f7f7f8;
    border-radius: 16px;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-soft);
}

.hero-stat-icon {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    background: #f0f2f4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-stat-icon ion-icon {
    font-size: 22px;
    color: #2f67db;
}

.hero-stat-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 1;
}

.hero-stat-text strong {
    color: #1f2b38;
    font-size: 20px;
    font-weight: 800;
}

.hero-stat-text span {
    color: #a0a9b6;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero-stat-btn {
    margin-left: auto;
    min-width: 115px;
    height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    background: #1d2a3a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-stat-btn::after {
    content: "";
    position: absolute;
    left: 86%;
    bottom: 8px;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: #1f2b38;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    top: 20px;
    transform: rotate(78deg);
}

.hero-card-more {
    position: absolute;
    top: 8px;
    right: 9px;
    color: #6f7a87;
}

.hero-card-more ion-icon {
    font-size: 17px;
}

.hero-chart-card {
    position: absolute;
    left: -60px;
    bottom: 40px;
    width: 384px;
    background: #f7f7f8;
    border-radius: 18px;
    padding: 20px 16px 18px 16px;
    box-shadow: var(--shadow-heavy);
}

.hero-chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.hero-chart-head h3 {
    color: #1f2b38;
    font-size: 17px;
    font-weight: 800;
}

.hero-chart-head button {
    color: #8f99a7;
}

.hero-chart-head ion-icon {
    font-size: 17px;
}

.hero-chart-content {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    align-items: end;
}

.hero-chart-yaxis {
    height: 206px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 2px;
    padding-bottom: 23px;
}

.hero-chart-yaxis span {
    color: #9ca6b3;
    font-size: 11px;
    font-weight: 700;
}

.hero-chart-main {
    position: relative;
}

.hero-chart-main::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 24px;
    width: 1px;
    background: rgba(159, 170, 184, 0.26);
}

.hero-chart-bars {
    position: relative;
    height: 206px;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
    align-items: end;
    padding: 2px 0 24px 12px;
}

.hero-chart-bars::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 0;
    bottom: 24px;
    height: 1px;
    background: rgba(159, 170, 184, 0.24);
}

.chart-bar {
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    position: relative;
}

.chart-bar span {
    width: 16px;
    border-radius: 4px;
    background: #e6e8ed;
    display: block;
}

.chart-bar.active span {
    background: repeating-linear-gradient(135deg,
            #3f77db 0,
            #3f77db 6px,
            #6d97e9 6px,
            #6d97e9 12px);
    border: 1px solid rgba(51, 103, 210, 0.22);
}

.chart-value {
    position: absolute;
    top: 16px;
    min-width: 36px;
    height: 28px;
    padding: 0 10px;
    border-radius: 8px;
    background: #1f2b38;
    color: #ffffff;
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.chart-value::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    width: 20px;
    height: 12px;
    background: #1f2b38;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.hero-chart-labels {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
    padding-left: 12px;
}

.hero-chart-labels span {
    text-align: center;
    color: #a7b0bb;
    font-size: 10px;
    font-weight: 700;
}

/* =======================
    Hero Section End 
======================= */



/* =======================
    Partners Section Start 
=======================*/
.partners-inner {
    position: relative;
    top: 150px;
    z-index: 99;
}

.partners-section {
    position: relative;
    z-index: 3;
    margin-top: -6px;
    padding: 38px 0 70px;
    background: linear-gradient(180deg, rgba(1, 8, 22, 0) 0%, #010816 16%);
}

.partners-inner {
    text-align: center;
}

.partners-inner h2 {
    color: var(--teal);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 34px;
}

.partners-slider {
    overflow: hidden;
}

.partners-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    justify-items: center;
    gap: 28px 36px;
}

.partner-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item img {
    max-width: 138px;
    max-height: 28px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.98;
}

.mobile-clone {
    display: none;
}

/* ======================= 
    Partners Section End 
======================= */

/* =======================
    Reveal Section Start 
======================= */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 0.15s;
}

/* =======================
    Reveal Section End 
======================= */

/* =======================
    Responsive Section Start 
======================= */
@media (min-width: 1550px) {
    .hero-curve-line {
        width: 100%;
    }
}

@media (max-width: 1150px) {
    .hero-layout {
        grid-template-columns: 1fr 425px;
        gap: 30px;
    }

    .hero-content {
        max-width: 100%;
        padding-top: 6px;
    }

    .hero-badge,
    .hero-content h1,
    .hero-content p {
        text-align: left;
    }

    .hero-actions {
        justify-content: unset;
    }

    .hero-image-wrap {
        max-width: 530px;
        margin: 0 auto;
    }

    .hero-chart-card {
        left: -8px;
    }

    .partners-track {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {

    .desktop-nav,
    .header-actions .header-btn {
        display: none;
    }

    .hero-curve-line {
        bottom: -65px;
    }

    .partners-inner {
        top: 126px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero-section {
        padding: 60px 0 140px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 100%;
        padding-top: 6px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-badge,
    .hero-content h1,
    .hero-content p {
        text-align: center;
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .site-header {
        background: rgba(2, 11, 31, 0.97);
    }

    .header-row {
        min-height: 64px;
    }

    .announcement-track {
        gap: 34px;
        padding: 12px 0;
    }

    .announcement-item {
        font-size: 13px;
    }

    .hero-section {
        padding: 65px 0 80px;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.08;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .hero-actions {
        gap: 12px;
    }

    .hero-btn {
        width: 140px;
    }

    .hero-image-wrap {
        max-height: 150px;
        max-width: 100%;
    }

    .hero-main-image {
        width: 100%;
        max-width: 320px;
        height: 545px;
        margin: 0 auto;
    }

    .hero-stat-card {
        position: relative;
        top: -390px;
        right: -40px;
        width: 100%;
        max-width: 290px;
        margin: -42px auto 0;
        padding: 10px 8px;
        gap: 12px;
        justify-content: space-between;
        min-height: 48px;
    }

    .hero-chart-card {
        position: relative;
        left: auto;
        width: 100%;
        max-width: 390px;
        margin: 16px auto 0;
    }

    .hero-blue-orb {
        width: 1100px;
        height: 420px;
        bottom: -110px;
        filter: blur(30px);
    }

    .hero-dark-oval {
        width: 1150px;
        height: 240px;
        bottom: -150px;
        filter: blur(18px);
    }

    .hero-curve-line {
        width: 1100px;
        height: 150px;
        bottom: 18px;
    }

    .partners-section {
        padding: 30px 0 54px;
    }

    .partners-inner h2 {
        font-size: 17px;
        margin-bottom: 24px;
    }

    .partners-track {
        display: flex;
        align-items: center;
        gap: 28px;
        width: max-content;
        animation: mobilePartnersSlide 18s linear infinite;
    }

    .partner-item {
        min-width: 128px;
    }

    .partner-item img {
        max-width: 120px;
        max-height: 24px;
    }

    .mobile-clone {
        display: flex;
    }

    @keyframes mobilePartnersSlide {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    .partners-inner {
        top: 40px;
    }
}

@media (max-width: 520px) {
    .hero-badge {
        padding: 5px 12px 5px 6px;
        gap: 7px;
    }

    .hero-badge-pill {
        min-width: 38px;
        height: 23px;
        font-size: 12px;
    }

    .hero-badge-text {
        font-size: 13px;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-stat-btn {
        width: 108px;
        margin-left: 0;
    }

    .hero-chart-card {
        padding: 18px 14px 14px;
        width: 296px;
        left: -46px;
        top: -296px;
    }

    .hero-chart-content {
        grid-template-columns: 20px 1fr;
        gap: 10px;
        height: 150px;
    }

    .hero-chart-bars {
        gap: 7px;
    }

    .hero-chart-labels {
        gap: 7px;
    }

    .hero-chart-bars {
        height: 140px;
    }

    .hero-chart-yaxis {
        height: 140px;
    }

    .hero-card-more {
        position: absolute;
        top: -2px;
        right: 11px;
    }

    .hero-stat-btn::after {
        top: 6px;
    }
}

/* =======================
    Responsive Section End 
======================= */



/* =======================
    Why Choose Section Start
======================= */
.why-choose-section {
    position: relative;
    padding: 60px 0 60px;
    background: linear-gradient(180deg, #020b1f 0%, #010816 100%);
    overflow: hidden;
}

.why-choose-section::before {
    content: "";
    position: absolute;
    top: 235px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 430px;
    background: radial-gradient(circle, rgba(16, 165, 224, 0.1) 0%, rgba(5, 37, 89, 0.04) 42%, transparent 72%);
    filter: blur(26px);
    pointer-events: none;
}

.why-choose-heading {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 56px;
    text-align: center;
}

.why-choose-badge {
    width: fit-content;
    min-height: 36px;
    margin: 0 auto 24px;
    padding: 0 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.why-choose-heading h2 {
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -0.045em;
    font-weight: 600;
    color: #fcfdff;
    margin-bottom: 16px;
}

.why-choose-heading p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
}

.why-choose-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.why-choose-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-card {
    position: relative;
    width: 100%;
    border-radius: 22px;
    border: 1px solid rgba(85, 128, 180, 0.2);
    background:
        radial-gradient(circle at 69% 18%, rgba(0, 172, 255, 0.12) 0%, rgba(0, 75, 150, 0.04) 28%, transparent 55%),
        linear-gradient(180deg, rgba(2, 17, 43, 0.98) 0%, rgba(1, 9, 25, 0.99) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 16px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.why-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, rgba(117, 180, 255, 0.1), rgba(255, 255, 255, 0.015));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.65;
}

.why-card-primary {
    min-height: 266px;
    padding: 42px 38px 36px;
    border: none;
    border-radius: 22px;
    background: linear-gradient(183deg, #1650a9 0%, #177cf1 100%);
    box-shadow: 0 28px 70px rgba(0, 98, 211, 0.15);
}

.why-card-primary::after {
    display: none;
}

.why-card-chart {
    min-height: 642px;
    padding: 30px 38px 36px;
}

.why-card-saving {
    min-height: 610px;
    padding: 30px 38px 28px;
}

.why-card-bottom {
    min-height: 232px;
    padding: 31px 38px 28px;
}

.why-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.why-card h3 {
    font-size: 24px;
    line-height: 1.28;
    font-weight: 600;
    color: #f7fbff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.why-card p {
    max-width: 400px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.52);
}

.why-card-primary h3 {
    font-size: 24px;
}

.why-card-primary p {
    max-width: 360px;
    color: rgba(255, 255, 255, 0.84);
}

.expense-card {
    margin-top: 32px;
    background: #f4f4f5;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15);
}

.expense-item {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 14px;
    padding: 15px 26px 15px 18px;
    align-items: center;
}

.expense-item+.expense-item {
    border-top: 1px solid rgba(23, 39, 65, 0.07);
}

.expense-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e8edef;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.expense-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.expense-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.expense-top h4 {
    color: #20242d;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.expense-top span {
    color: #444850;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.expense-top span small {
    color: #8a8e95;
    font-size: 11px;
    font-weight: 400;
}

.expense-meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    line-height: 1;
}

.expense-meta strong {
    color: #252a34;
    font-size: 15px;
    font-weight: 700;
}

.expense-meta span {
    color: #8c9097;
    font-size: 15px;
    font-weight: 400;
}

.expense-bar {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: #dfdfe1;
    overflow: hidden;
    position: relative;
}

.expense-fill {
    width: 0;
    height: 100%;
    display: block;
    border-radius: inherit;
    transition: width 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.expense-fill-blue {
    background: linear-gradient(90deg, #2674ff 0%, #2366da 100%);
}

.expense-fill-cyan {
    background: linear-gradient(90deg, #12a8d8 0%, #1495bf 100%);
}

.expense-fill-green {
    background: linear-gradient(90deg, #68d0b8 0%, #5ec9af 100%);
}

.saving-widget {
    margin-top: 30px;
    background: #f4f4f5;
    border-radius: 15px;
    padding: 20px 18px 18px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15);
}

.saving-widget-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.saving-widget-top h4 {
    color: #181d25;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.saving-widget-top a {
    color: #2874ff;
    font-size: 14px;
    font-weight: 700;
}

.saving-widget-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(26, 35, 53, 0.07);
    margin-bottom: 18px;
}

.saving-widget-toolbar>div:first-child span {
    display: block;
    color: #8a8f96;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.saving-widget-toolbar>div:first-child strong {
    display: block;
    color: #171c23;
    font-size: 20px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.saving-widget-toolbar>div:first-child strong span {
    display: inline;
    color: inherit;
    font-size: 0.72em;
    font-weight: inherit;
    margin: 0;
}

.saving-select-wrap {
    position: relative;
    flex-shrink: 0;
}

.saving-select-btn {
    min-width: 90px;
    height: 34px;
    padding: 0 12px 0 14px;
    border-radius: 999px;
    background: #f8f8f8;
    border: 1px solid rgba(20, 26, 36, 0.12);
    color: #2d2f35;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.saving-select-btn ion-icon {
    font-size: 13px;
    color: #7b7f86;
    transition: transform 0.3s ease;
}

.saving-select-wrap.active .saving-select-btn ion-icon {
    transform: rotate(180deg);
}

.saving-select-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 138px;
    padding: 8px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(20, 26, 36, 0.07);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.28s ease;
    z-index: 8;
}

.saving-select-wrap.active .saving-select-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.saving-select-menu button {
    width: 100%;
    height: 36px;
    padding: 0 12px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    color: #1f2430;
    font-size: 11px;
    font-weight: 500;
    transition: 0.25s ease;
}

.saving-select-menu button:hover {
    background: #f3f6fb;
    color: #226fff;
}

.saving-chart-wrap {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    align-items: end;
}

.saving-y-axis {
    height: 214px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 4px;
    padding-bottom: 26px;
}

.saving-y-axis span {
    color: #6f747b;
    font-size: 14px;
    font-weight: 500;
}

.saving-chart-area {
    position: relative;
    height: 214px;
}

.saving-grid-lines {
    position: absolute;
    inset: 0 0 26px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.saving-grid-lines span {
    display: block;
    width: 100%;
    border-top: 1px dashed rgba(115, 120, 127, 0.22);
}

.saving-highlight {
    position: absolute;
    bottom: 26px;
    width: 28px;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(180deg, rgba(86, 145, 233, 0.48) 0%, rgba(201, 216, 235, 0.18) 100%);
    opacity: 0.9;
    transform: translateX(-50%);
    transition: left 0.55s ease, height 0.55s ease;
}

.saving-line-chart {
    position: absolute;
    inset: 0 0 26px 0;
    width: 100%;
    height: calc(100% - 26px);
    overflow: visible;
}

.saving-line-chart path {
    fill: none;
    stroke: #1f6dff;
    stroke-width: 0.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: d 0.55s ease;
}

.saving-point {
    position: absolute;
    width: 16px;
    height: 16px;
    transform: translate(-50%, -50%);
    transition: left 0.55s ease, top 0.55s ease;
    z-index: 3;
    left: 58.4% !important;
}

.saving-point span {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    background: #1f6dff;
    border: 2px solid #f4f4f5;
    box-shadow: 0 0 0 2px rgba(31, 109, 255, 0.08);
}

.saving-x-axis {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
}

.saving-x-axis span {
    text-align: center;
    color: #6f747b;
    font-size: 14px;
    font-weight: 500;
}

.saving-x-axis span.active {
    color: #31353c;
    font-weight: 700;
}

.why-card-chart,
.why-card-saving,
.why-card-bottom {
    transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.why-card-chart:hover,
.why-card-saving:hover,
.why-card-bottom:hover {
    transform: translateY(-4px);
    border-color: rgba(94, 164, 255, 0.28);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.16);
}

@media (max-width: 1150px) {
    .why-choose-heading h2 {
        font-size: 38px;
    }

    .why-choose-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .why-card-primary,
    .why-card-chart,
    .why-card-saving,
    .why-card-bottom {
        min-height: auto;
    }
}

@media (max-width: 991px) {
    .why-choose-section {
        padding: 80px 0 40px;
    }

    .why-choose-heading {
        margin-bottom: 40px;
    }

    .why-choose-heading h2 {
        font-size: 34px;
    }

    .why-choose-heading p,
    .why-card p {
        font-size: 14px;
    }

    .why-choose-col {
        gap: 20px;
    }

    .why-card-primary,
    .why-card-chart,
    .why-card-saving,
    .why-card-bottom {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .expense-item {
        grid-template-columns: 62px 1fr;
        padding: 14px 18px;
    }

    .expense-top h4 {
        font-size: 16px;
    }

    .expense-top span,
    .expense-top span small,
    .expense-meta strong,
    .expense-meta span {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .why-choose-section {
        padding: 50px 0 40px;
    }

    .why-choose-badge {
        min-height: 34px;
        padding: 0 14px;
        font-size: 12px;
        margin-bottom: 16px;
    }

    .why-choose-heading h2 {
        font-size: 29px;
        line-height: 1.14;
        margin-bottom: 14px;
    }

    .why-choose-heading p {
        font-size: 13px;
        line-height: 1.75;
    }

    .why-choose-grid,
    .why-choose-col {
        gap: 18px;
        grid-template-columns: 1fr;
    }

    .why-card h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .why-card p {
        font-size: 13px;
    }

    .saving-widget {
        margin-top: 24px;
        padding: 18px 14px 16px;
    }

    .saving-widget-top h4 {
        font-size: 16px;
    }

    .saving-widget-top a {
        font-size: 12px;
    }

    .saving-widget-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .saving-select-btn {
        width: 100%;
    }

    .saving-chart-wrap {
        grid-template-columns: 24px 1fr;
        gap: 10px;
    }

    .saving-y-axis {
        height: 190px;
        padding-bottom: 22px;
    }

    .saving-chart-area {
        height: 190px;
    }

    .saving-grid-lines {
        inset: 0 0 22px 0;
    }

    .saving-line-chart {
        inset: 0 0 22px 0;
        height: calc(100% - 22px);
    }

    .saving-highlight {
        bottom: 22px;
        width: 24px;
    }

    .saving-x-axis span,
    .saving-y-axis span {
        font-size: 10px;
    }

    .expense-card {
        margin-top: 24px;
    }

    .expense-item {
        grid-template-columns: 54px 1fr;
        gap: 12px;
        padding: 14px;
    }

    .expense-icon {
        width: 42px;
        height: 42px;
    }

    .expense-icon img {
        width: 20px;
        height: 20px;
    }

    .expense-top {
        align-items: center;
    }

    .expense-top h4 {
        font-size: 15px;
    }

    .expense-top span,
    .expense-top span small,
    .expense-meta strong,
    .expense-meta span {
        font-size: 12px;
    }
}

@media (max-width: 520px) {

    .why-card-primary,
    .why-card-chart,
    .why-card-saving,
    .why-card-bottom {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .why-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 18px;
    }

    .saving-widget {
        border-radius: 14px;
    }

    .saving-widget-toolbar>div:first-child strong {
        font-size: 18px;
    }

    .saving-chart-wrap {
        grid-template-columns: 22px 1fr;
    }

    .expense-item {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .expense-content {
        width: 100%;
    }

    .expense-top {
        flex-wrap: wrap;
    }

    .expense-top span {
        white-space: normal;
    }
}

/* =======================
    Why Choose Section End
======================= */



/* =======================
    CRM Showcase Section Start
======================= */
.crm-showcase-section {
    position: relative;
    padding: 60px 0 60px;
    background: linear-gradient(180deg, #010816 0%, #010917 100%);
    overflow: hidden;
}

.crm-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px 76px;
    align-items: center;
}

.crm-text-block {
    max-width: 470px;
}

.crm-mini-badge {
    width: fit-content;
    min-height: 36px;
    padding: 0 16px;
    margin-bottom: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.crm-text-block h2 {
    max-width: 460px;
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -0.05em;
    font-weight: 600;
    color: #fbfdff;
    margin-bottom: 26px;
}

.crm-text-block>p {
    max-width: 430px;
    font-size: 16px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.crm-feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.crm-feature-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 500;
}

.crm-feature-list ion-icon {
    font-size: 22px;
    color: #67ddd1;
    flex-shrink: 0;
}

.crm-visual-card {
    position: relative;
}

.crm-visual-card-top {
    width: 100%;
    max-width: 470px;
    margin-left: auto;
    padding-top: 8px;
    padding-right: 8px;
}

.crm-visual-card-bottom {
    width: 100%;
    max-width: 470px;
    padding-top: 14px;
}

.crm-visual-image-wrap {
    width: 430px;
    height: 520px;
    margin-left: auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.crm-visual-image-wrap-bottom {
    width: 430px;
    height: 520px;
    margin-left: 0;
}

.crm-visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.crm-gender-card {
    position: absolute;
    left: -140px;
    top: 84px;
    width: 332px;
    background: #f4f4f5;
    border-radius: 16px;
    padding: 16px 16px 14px;
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
}

.crm-card-dots {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.crm-card-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #9ca3af;
}

.crm-gender-card-head h3 {
    color: #20242d;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 16px;
}

.crm-gender-chart {
    position: relative;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crm-gender-bubble {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.crm-gender-bubble strong {
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
}

.crm-gender-bubble-blue {
    width: 162px;
    height: 162px;
    left: 8px;
    top: 8px;
    background: #3669c9;
    color: #ffffff;
}

.crm-gender-bubble-light {
    width: 142px;
    height: 142px;
    right: 0;
    top: -10px;
    background: #dedfe3;
    color: #212734;
}

.crm-gender-divider {
    height: 1px;
    background: rgba(28, 35, 48, 0.08);
    margin: 4px 0 10px;
}

.crm-gender-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.crm-gender-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #808692;
    font-size: 11px;
    font-weight: 500;
}

.crm-gender-legend-item strong {
    color: #252a34;
    font-weight: 700;
}

.legend-dot {
    width: 14px;
    height: 6px;
    border-radius: 999px;
    display: inline-block;
}

.legend-dot-blue {
    background: #246bdf;
}

.legend-dot-dark {
    background: #1e2430;
}

.crm-small-card {
    position: absolute;
    background: #f4f4f5;
    border-radius: 16px;
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
}

.crm-small-card-top {
    top: 54px;
    right: -60px;
    width: 255px;
    min-height: 90px;
    padding: 20px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.crm-small-card-bottom {
    left: 163px;
    bottom: 55px;
    width: 312px;
    min-height: 96px;
    padding: 18px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.crm-small-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: #edf2f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.crm-small-card-icon ion-icon {
    font-size: 24px;
    color: #266bdb;
}

.crm-small-card-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 1;
}

.crm-small-card-content strong {
    color: #202633;
    font-size: 18px;
    font-weight: 800;
}

.crm-small-card-content span {
    color: #9ca3af;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.crm-small-card-more {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #8d95a2;
}

.crm-small-card-more ion-icon {
    font-size: 17px;
}

.crm-small-card-btn {
    margin-left: auto;
    min-width: 92px;
    height: 36px;
    padding: 0 14px;
    border-radius: 10px;
    background: #1f2b3b;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.crm-small-card-btn::after {
    content: "";
    position: absolute;
    left: 86%;
    bottom: 8px;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: #1f2b38;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    top: 24px;
    transform: rotate(78deg);
}

.crm-text-block-bottom {
    max-width: 500px;
}

.crm-text-block-bottom h2 {
    max-width: 500px;
    margin-bottom: 28px;
}

.crm-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.crm-stat-item strong {
    display: block;
    color: #63ddd0;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 14px;
}

.crm-stat-item h3 {
    color: #f8fbff;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    margin-bottom: 10px;
}

.crm-stat-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.7;
}

.crm-gender-card,
.crm-small-card,
.crm-visual-image-wrap {
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.crm-visual-card:hover .crm-gender-card,
.crm-visual-card:hover .crm-small-card,
.crm-visual-card:hover .crm-visual-image-wrap {
    transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 1150px) {
    .crm-showcase-grid {
        gap: 56px 42px;
    }

    .crm-text-block h2 {
        font-size: 40px;
    }

    .crm-visual-card-top,
    .crm-visual-card-bottom {
        max-width: 100%;
    }

    .crm-visual-image-wrap {
        width: 340px;
        height: 430px;
    }

    .crm-visual-image-wrap-bottom {
        width: 316px;
        height: 402px;
    }

    .crm-gender-card {
        left: 0;
        top: 76px;
    }

    .crm-small-card-top {
        right: 0;
    }
}

@media (max-width: 991px) {
    .crm-showcase-section {
        padding: 40px 0 40px;
    }

    .crm-showcase-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .crm-text-block,
    .crm-text-block-bottom {
        max-width: 100%;
    }

    .crm-text-block h2,
    .crm-text-block-bottom h2 {
        max-width: 100%;
        font-size: 38px;
    }

    .crm-visual-card-top,
    .crm-visual-card-bottom {
        margin: 0 auto;
    }

    .crm-text-block-top {
        order: 1;
    }

    .crm-visual-card-top {
        order: 2;
    }

    .crm-visual-card-bottom {
        order: 3;
        height: 550px;
    }

    .crm-text-block-bottom {
        order: 4;
    }

    .crm-visual-image-wrap {
        width: 455px;
        height: 430px;
    }

    .crm-small-card-top {
        right: 150px;
    }
}

@media (max-width: 767px) {
    .crm-showcase-section {
        padding: 40px 0 40px;
    }

    .crm-mini-badge {
        min-height: 34px;
        padding: 0 14px;
        margin-bottom: 18px;
        font-size: 12px;
    }

    .crm-text-block h2,
    .crm-text-block-bottom h2 {
        font-size: 30px;
        line-height: 1.12;
        margin-bottom: 18px;
    }

    .crm-text-block>p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .crm-feature-list {
        gap: 14px;
    }

    .crm-feature-list li {
        font-size: 14px;
    }

    .crm-visual-image-wrap {
        width: 100%;
        max-width: 330px;
        height: 400px;
        margin: 0 auto;
    }

    .crm-visual-image-wrap-bottom {
        max-width: 320px;
        height: 390px;
        margin: 0 auto;
    }

    .crm-gender-card {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 330px;
        margin: -44px auto 0;
    }

    .crm-gender-chart {
        height: 172px;
    }

    .crm-gender-bubble-blue {
        width: 146px;
        height: 146px;
        left: 6px;
        top: 8px;
    }

    .crm-gender-bubble-light {
        width: 126px;
        height: 126px;
        right: 18px;
        top: -5px;
    }

    .crm-gender-bubble strong {
        font-size: 20px;
    }

    .crm-small-card-top {
        position: relative;
        top: -455px;
        left: -80px;
        right: auto;
        bottom: auto;
        width: 210px;
        max-width: 330px;
        margin: 16px auto 0;
    }

    .crm-small-card-bottom {
        position: relative;
        top: -155px;
        left: 40px;
        right: auto;
        bottom: auto;
        width: 275px;
        max-width: 330px;
        margin: 16px auto 0;
    }

    .crm-small-card-bottom {
        gap: 12px;
    }

    .crm-small-card-btn {
        min-width: 84px;
        height: 34px;
        font-size: 11px;
    }

    .crm-stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 520px) {

    .crm-text-block h2,
    .crm-text-block-bottom h2 {
        font-size: 27px;
    }

    .crm-visual-image-wrap {
        max-width: 285px;
    }

    .crm-gender-card {
        position: relative;
        top: -250px;
        left: -50px;
        width: 100%;
        max-width: 330px;
        margin: -44px auto 0;
    }

    .crm-gender-card,
    .crm-small-card-top,
    .crm-small-card-bottom {
        max-width: 280px;
    }

    .crm-visual-card-top {
        order: 2;
        height: 405px;
    }

    .crm-gender-card {
        padding: 14px 14px 12px;
    }

    .crm-gender-chart {
        height: 156px;
    }

    .crm-gender-bubble-blue {
        width: 132px;
        height: 132px;
    }

    .crm-small-card-bottom {
        position: relative;
        top: -215px;
        left: 40px;
        right: auto;
        bottom: auto;
        width: 275px;
        max-width: 330px;
        margin: 16px auto 0;
    }

    .crm-small-card-top {
        position: relative;
        top: -365px;
        left: -80px;
        right: auto;
        bottom: auto;
        width: 210px;
        max-width: 330px;
        margin: 16px auto 0;
    }

    .crm-visual-card-bottom {
        order: 3;
        height: 435px;
    }

    .crm-gender-bubble-light {
        width: 125px;
        height: 125px;
    }

    .crm-small-card-top,
    .crm-small-card-bottom {
        min-height: 76px;
        padding: 10px 10px;
    }

    .crm-small-card-content strong {
        font-size: 16px;
    }

    .crm-small-card-content span {
        font-size: 9px;
    }

    .crm-small-card-btn {
        min-width: 78px;
        padding: 0 10px;
    }

    .crm-small-card-more {
        top: 4px;
        right: 14px;
    }

    .crm-small-card-btn::after {
        left: 84%;
        top: 15px;
    }
}

/* =======================
    CRM Showcase Section End
======================= */


/* =======================
   Features Section Start
======================= */
.features-section {
    position: relative;
    padding: 60px 0 60px;
    background: linear-gradient(180deg, #010816 0%, #010917 100%);
    overflow: hidden;
}

.features-heading {
    max-width: 860px;
    margin: 0 auto 84px;
    text-align: center;
}

.features-badge {
    width: fit-content;
    min-height: 38px;
    padding: 0 17px;
    margin: 0 auto 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.94);
    font-size: 13px;
    font-weight: 500;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.features-heading h2 {
    max-width: 620px;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -0.055em;
    font-weight: 600;
}

.features-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    line-height: 1.75;
}

.features-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 488px);
    gap: 80px;
    align-items: center;
}

.features-left {
    position: relative;
    display: grid;
    grid-template-columns: 8px 1fr;
    gap: 28px;
    align-items: start;
    min-height: 520px;
}

.features-progress-line {
    position: relative;
    width: 4px;
    height: 494px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    margin-top: 6px;
    overflow: hidden;
}

.features-progress-active {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 154px;
    border-radius: inherit;
    background: linear-gradient(180deg, #0688ff 0%, #13bfff 100%);
    box-shadow:
        0 0 18px rgba(15, 130, 255, 0.2),
        0 0 28px rgba(19, 191, 255, 0.12);
    transition: top 0.45s ease, height 0.45s ease;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 58px;
}

.feature-item {
    cursor: pointer;
    opacity: 0.58;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.feature-item:hover {
    opacity: 0.88;
    transform: translateX(4px);
}

.feature-item h3 {
    color: #ffffff;
    font-size: 21px;
    line-height: 1.28;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin: 0 0 18px;
}

.feature-item p {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 16px;
    line-height: 1.72;
    margin: 0;
    transition: color 0.35s ease;
}

.feature-item-active {
    opacity: 1;
}

.feature-item-active p {
    color: rgba(255, 255, 255, 0.86);
}

.features-right {
    width: 100%;
}

.features-visual-frame {
    position: relative;
    width: 100%;
    max-width: 488px;
    min-height: 482px;
    margin-left: auto;
    padding: 31px;
    border-radius: 24px;
    border: 1px solid rgba(106, 145, 188, 0.26);
    background:
        radial-gradient(circle at 60% 16%, rgba(0, 132, 255, 0.12) 0%, rgba(0, 61, 147, 0.04) 34%, transparent 60%),
        linear-gradient(180deg, rgba(2, 16, 40, 0.98) 0%, rgba(1, 9, 24, 0.995) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 20px 52px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.features-visual-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, rgba(120, 180, 255, 0.12), rgba(255, 255, 255, 0.015));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.features-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 424px;
    background: #f3f3f4;
    border-radius: 15px;
    padding: 28px 34px 24px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
    transition: opacity 0.32s ease, transform 0.32s ease;
}

.features-card.is-switching {
    opacity: 0;
    transform: translateY(10px);
}

.features-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.features-card__top h4 {
    margin: 0;
    color: #1a1a1a;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.features-card__top a {
    color: #0496ed;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    text-decoration: none;
}

.features-card__body {
    padding-top: 18px;
}

.features-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.features-card__meta span {
    display: block;
    color: rgba(26, 26, 26, 0.48);
    font-size: 15px;
    line-height: 1.25;
    margin-bottom: 6px;
}

.features-card__meta strong {
    display: block;
    color: #171717;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
}

.features-card__filter {
    height: 40px;
    padding: 0 14px 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: #f7f7f7;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    cursor: pointer;
}

.features-chart {
    position: relative;
    height: 228px;
    padding-top: 12px;
}

.features-chart__grid {
    position: absolute;
    inset: 0 0 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.features-chart__grid span {
    display: block;
    border-top: 1px dashed rgba(17, 24, 39, 0.1);
}

.features-chart__bars {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}

.features-chart__item {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.features-chart__bar-wrap {
    height: 180px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 12px;
}

.features-chart__bar {
    width: 28px;
    border-radius: 20px;
    background: #dbdde3;
    transition: height 0.45s ease, background 0.35s ease, transform 0.35s ease;
}

.features-chart__item.is-active .features-chart__bar {
    background: #0a63d8;
}

.features-chart__label {
    color: rgba(26, 26, 26, 0.56);
    font-size: 14px;
    line-height: 1.2;
}

.features-visual-image.is-hidden {
    display: none;
}

.features-visual-frame:hover {
    transform: translateY(-4px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 26px 62px rgba(0, 0, 0, 0.22);
}

@media (max-width: 1150px) {
    .features-heading h2 {
        font-size: 48px;
    }

    .features-showcase {
        grid-template-columns: minmax(0, 1fr) minmax(0, 450px);
        gap: 52px;
    }

    .features-visual-frame {
        max-width: 450px;
        min-height: 452px;
        padding: 24px;
    }

    .features-card {
        max-width: 100%;
        padding: 26px 24px 22px;
    }
}

@media (max-width: 991px) {
    .features-section {
        padding: 40px 0 40px;
    }

    .features-heading {
        margin-bottom: 56px;
    }

    .features-heading h2 {
        font-size: 40px;
        max-width: 560px;
    }

    .features-heading p {
        font-size: 15px;
    }

    .features-showcase {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .features-left {
        min-height: auto;
    }

    .features-progress-line {
        min-height: 420px;
        height: 100%;
    }

    .features-right {
        display: flex;
        justify-content: center;
    }

    .features-visual-frame {
        margin-left: 0;
        max-width: 520px;
        width: 100%;
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .features-section {
        padding: 40px 0 40px;
    }

    .features-badge {
        min-height: 34px;
        padding: 0 14px;
        margin-bottom: 18px;
        font-size: 12px;
    }

    .features-heading {
        margin-bottom: 40px;
    }

    .features-heading h2 {
        font-size: 32px;
        line-height: 1.12;
        margin-bottom: 15px;
    }

    .features-heading p {
        font-size: 14px;
        line-height: 1.75;
    }

    .features-showcase {
        gap: 34px;
    }

    .features-left {
        grid-template-columns: 8px 1fr;
        gap: 18px;
    }

    .features-progress-line {
        min-height: 350px;
    }

    .features-list {
        gap: 34px;
    }

    .feature-item h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .feature-item p {
        font-size: 14px;
        line-height: 1.72;
    }

    .features-visual-frame {
        padding: 16px;
        border-radius: 20px;
    }

    .features-card {
        padding: 20px 16px 18px;
        border-radius: 14px;
    }

    .features-card__top {
        padding-bottom: 16px;
    }

    .features-card__top h4 {
        font-size: 18px;
    }

    .features-card__top a {
        font-size: 13px;
    }

    .features-card__meta {
        gap: 12px;
        margin-bottom: 18px;
    }

    .features-card__meta span {
        font-size: 13px;
    }

    .features-card__meta strong {
        font-size: 18px;
    }

    .features-card__filter {
        height: 36px;
        padding: 0 12px 0 14px;
        font-size: 13px;
        gap: 8px;
    }

    .features-chart {
        height: 204px;
    }

    .features-chart__bar-wrap {
        height: 154px;
        margin-bottom: 10px;
    }

    .features-chart__bar {
        width: 22px;
    }

    .features-chart__label {
        font-size: 13px;
    }
}

@media (max-width: 520px) {
    .features-heading h2 {
        font-size: 28px;
    }

    .features-left {
        grid-template-columns: 6px 1fr;
        gap: 14px;
    }

    .features-progress-line {
        min-height: 320px;
        width: 4px;
    }

    .feature-item h3 {
        font-size: 17px;
    }

    .feature-item p {
        font-size: 13px;
    }

    .features-card__top {
        align-items: flex-start;
        flex-direction: column;
    }

    .features-card__meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .features-card__filter {
        margin-top: 2px;
    }

    .features-chart__bars {
        gap: 10px;
    }

    .features-chart__bar {
        width: 20px;
    }
}

/* =======================
   Features Section End
======================= */



/* =======================
   Testimonial Section Start
======================= */
.testimonial-section {
    position: relative;
    padding: 60px 0 60px;
    overflow: hidden;
    background: radial-gradient(circle at left bottom, rgba(47, 205, 255, 0.42) 0%, rgba(20, 134, 210, 0.18) 18%, transparent 34%), linear-gradient(90deg, #010917 0%, #010817 38%, #020816 100%);
}

.testimonial-heading {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.035) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.94);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}

.testimonial-heading h2 {
    max-width: 650px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -0.05em;
    font-weight: 600;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.testimonial-card {
    background: #f2f2f3;
    border-radius: 14px;
    padding: 31px 32px 28px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonial-card-sm {
    grid-column: span 2;
}

.testimonial-card-lg {
    grid-column: span 4;
}

.testimonial-text {
    color: #2a2a2a;
    font-size: 15px;
    line-height: 1.78;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0 0 18px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
}

.testimonial-rating img {
    display: block;
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author__avatar {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #d9d9d9;
}

.testimonial-author__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author__info h3 {
    margin: 0 0 3px;
    color: #232323;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
}

.testimonial-author__info span {
    display: block;
    color: rgba(35, 35, 35, 0.88);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 400;
}

/* =======================
   Large Tablet
======================= */
@media (max-width: 1100px) {
    .testimonial-heading h2 {
        font-size: 46px;
    }

    .testimonial-card {
        padding: 28px 24px 24px;
    }
}

/* =======================
   Tablet
======================= */
@media (max-width: 991px) {
    .testimonial-section {
        padding: 40px 0 80px;
    }

    .testimonial-heading {
        margin-bottom: 42px;
    }

    .testimonial-heading h2 {
        font-size: 40px;
        max-width: 560px;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .testimonial-card-sm,
    .testimonial-card-lg {
        grid-column: span 1;
    }

    .testimonial-card {
        min-height: 270px;
    }
}

/* =======================
   Mobile
======================= */
@media (max-width: 767px) {
    .testimonial-section {
        padding: 40px 0 80px;
    }

    .testimonial-section .container {
        width: min(100% - 24px, 1010px);
    }

    .testimonial-badge {
        min-height: 34px;
        padding: 0 14px;
        margin-bottom: 18px;
        font-size: 12px;
    }

    .testimonial-heading {
        margin-bottom: 34px;
    }

    .testimonial-heading h2 {
        font-size: 32px;
        line-height: 1.14;
        max-width: 100%;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .testimonial-card {
        min-height: auto;
        padding: 22px 18px 20px;
        border-radius: 12px;
    }

    .testimonial-text {
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.72;
    }

    .testimonial-rating {
        margin-bottom: 18px;
        gap: 5px;
    }

    .testimonial-rating img {
        width: 18px;
        height: 18px;
    }

    .testimonial-author__avatar {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .testimonial-author__info h3 {
        font-size: 14px;
    }

    .testimonial-author__info span {
        font-size: 12px;
    }
}

@media (max-width: 520px) {
    .testimonial-heading h2 {
        font-size: 28px;
    }

    .testimonial-card {
        padding: 20px 16px 18px;
    }
}

/* =======================
   Testimonial Section End
======================= */



/* =======================
   Highlights Section Start
======================= */
.highlights-section {
    position: relative;
    padding: 120px 0 60px;
    background: linear-gradient(180deg, #010816 0%, #010917 100%);
    overflow: hidden;
}

.highlights-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 72px;
    align-items: start;
}

.highlights-content {
    padding-top: 2px;
}

.highlights-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    margin-bottom: 28px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.94);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}

.highlights-content h2 {
    max-width: 288px;
    margin: 0 0 26px;
    color: #ffffff;
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -0.055em;
    font-weight: 600;
}

.highlights-content p {
    max-width: 285px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
}

.highlights-btn {
    min-width: 128px;
    height: 42px;
    padding: 0 22px;
    border-radius: 12px;
    background: #f4f4f5;
    color: #171717;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    transition: transform 0.3s ease, background 0.3s ease;
}

.highlights-btn:hover {
    transform: translateY(-2px);
    background: #ffffff;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.highlight-card {
    min-height: 270px;
    padding: 30px 30px 26px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(2, 10, 26, 0.28);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(3, 12, 30, 0.48);
}

.highlight-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.highlight-card__icon img {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.highlight-card h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.highlight-card p {
    max-width: 255px;
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 400;
}

/* =======================
   Large Tablet
======================= */
@media (max-width: 1100px) {
    .highlights-layout {
        grid-template-columns: 260px minmax(0, 1fr);
        gap: 48px;
    }

    .highlights-content h2 {
        font-size: 48px;
        max-width: 260px;
    }

    .highlights-grid {
        gap: 24px;
    }

    .highlight-card {
        padding: 26px 24px 24px;
    }
}

/* =======================
   Tablet
======================= */
@media (max-width: 991px) {
    .highlights-section {
        padding: 80px 0 40px;
    }

    .highlights-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .highlights-content h2 {
        max-width: 560px;
        font-size: 42px;
    }

    .highlights-content p {
        max-width: 540px;
        margin-bottom: 28px;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .highlight-card {
        min-height: 240px;
    }
}

/* =======================
   Mobile
======================= */
@media (max-width: 767px) {
    .highlights-section {
        padding: 80px 0 40px;
    }

    .highlights-section .container {
        width: min(100% - 24px, 1010px);
    }

    .highlights-badge {
        min-height: 34px;
        padding: 0 14px;
        margin-bottom: 20px;
        font-size: 12px;
    }

    .highlights-content h2 {
        max-width: 100%;
        font-size: 34px;
        line-height: 1.1;
        margin-bottom: 18px;
    }

    .highlights-content p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.72;
        margin-bottom: 24px;
    }

    .highlights-btn {
        min-width: 120px;
        height: 40px;
        font-size: 14px;
        border-radius: 10px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .highlight-card {
        min-height: auto;
        padding: 22px 18px 20px;
        border-radius: 14px;
    }

    .highlight-card__icon {
        width: 42px;
        height: 42px;
        margin-bottom: 24px;
    }

    .highlight-card__icon img {
        width: 42px;
        height: 42px;
    }

    .highlight-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .highlight-card p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 520px) {
    .highlights-content h2 {
        font-size: 30px;
    }

    .highlight-card {
        padding: 20px 16px 18px;
    }
}

.highlights-content,
.highlight-card {
    will-change: transform, opacity;
}

.highlight-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.highlight-card:hover {
    transform: translateY(-6px);
}

.reveal-up {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.22s;
}

.reveal-delay-3 {
    transition-delay: 0.32s;
}

.reveal-delay-4 {
    transition-delay: 0.42s;
}

.reveal-delay-5 {
    transition-delay: 0.52s;
}

/* =======================
   Highlights Section End
======================= */


/* =======================
    How It Works Section Start
======================= */
.how-works-section {
    position: relative;
    padding: 60px 0 90px;
    background: linear-gradient(180deg, #010816 0%, #010917 100%);
    overflow: hidden;
}

.how-works-heading {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.how-works-badge {
    width: fit-content;
    min-height: 38px;
    margin: 0 auto 24px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 500;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.how-works-heading h2 {
    color: #fcfdff;
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -0.055em;
    font-weight: 600;
    margin-bottom: 18px;
}

.how-works-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.48);
    font-size: 16px;
    line-height: 1.8;
}

.how-works-slider-wrap {
    position: relative;
}

.how-works-slider-viewport {
    position: relative;
    overflow: hidden;
    width: calc(100% + 220px);
    padding-right: 220px;
}

.how-works-slider-track {
    display: flex;
    align-items: stretch;
    gap: 32px;
    will-change: transform;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.how-works-card {
    flex: 0 0 calc((100% - 64px) / 2.22);
    position: relative;
    min-height: 590px;
    border-radius: 22px;
    border: 1px solid rgba(86, 130, 186, 0.22);
    background: radial-gradient(circle at 60% 16%, rgba(0, 132, 255, 0.12) 0%, rgba(0, 61, 147, 0.04) 34%, transparent 60%), linear-gradient(180deg, rgba(2, 16, 40, 0.98) 0%, rgba(1, 9, 24, 0.995) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 16px 40px rgba(0, 0, 0, 0.12);
    padding: 30px 30px 28px;
    overflow: hidden;
    transition: transform 0.45s ease, border-color 0.45s ease, opacity 0.45s ease;
}

.how-works-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, rgba(117, 180, 255, 0.1), rgba(255, 255, 255, 0.015));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.68;
}

.how-works-card.is-active {
    border-color: rgba(108, 176, 255, 0.26);
}

.how-works-card-image-wrap {
    width: 100%;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    background: #f4f4f5;
    margin-bottom: 28px;
}

.how-works-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.how-works-card-content h3 {
    color: #f8fbff;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.how-works-card-content p {
    max-width: 380px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 16px;
    line-height: 1.72;
}

.how-works-controls {
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 56px;
}

.how-works-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.how-works-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e1efe6;
    opacity: 0.95;
    transition: all 0.35s ease;
    border: none;
    cursor: pointer;
    padding: 0;
}

.how-works-dot.is-active {
    width: 26px;
    border-radius: 999px;
    background: #1671ea;
}

.how-works-arrows {
    display: flex;
    align-items: center;
    gap: 14px;
}

.how-works-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    border: none;
    cursor: pointer;
}

.how-works-arrow ion-icon {
    font-size: 22px;
}

.how-works-arrow-prev {
    background: #f3f4f6;
    color: #166de9;
}

.how-works-arrow-next {
    background: #1671ea;
    color: #ffffff;
}

.how-works-arrow:hover {
    transform: translateY(-2px);
}

.how-works-card:hover {
    transform: translateY(-6px);
    border-color: rgba(95, 166, 255, 0.3);
}

@media (min-width: 1600px) {
    .how-works-section .container {
        width: min(100% - 48px, 1440px);
        margin: 0 auto;
    }

    .how-works-slider-wrap {
        max-width: 1320px;
        margin: 0 auto;
        overflow: hidden;
    }

    .how-works-slider-viewport {
        width: calc(100% + 200px);
        padding-left: -18px;
        max-width: 1600px;
    }

    .how-works-card-image-wrap {
        width: 100%;
        height: 455px;
    }
}

@media (max-width: 1150px) {
    .how-works-heading h2 {
        font-size: 48px;
    }

    .how-works-slider-viewport {
        width: calc(100% + 140px);
        padding-right: 140px;
    }

    .how-works-card {
        flex: 0 0 calc((100% - 32px) / 1.7);
        min-height: 560px;
        padding: 24px 24px 24px;
    }

    .how-works-card-image-wrap {
        height: 360px;
    }

    .how-works-controls {
        padding: 0 20px;
    }
}

@media (max-width: 991px) {
    .how-works-section {
        padding: 40px 0 80px;
    }

    .how-works-heading {
        margin-bottom: 42px;
    }

    .how-works-heading h2 {
        font-size: 40px;
    }

    .how-works-heading p {
        font-size: 15px;
    }

    .how-works-slider-viewport {
        width: calc(100% + 140px);
        padding-right: 290px;
    }

    .how-works-slider-track {
        gap: 22px;
    }

    .how-works-card {
        flex: 0 0 78%;
        min-height: 520px;
        padding: 22px 22px 22px;
    }

    .how-works-card-image-wrap {
        height: 380px;
        margin-bottom: 24px;
    }

    .how-works-card-content h3 {
        font-size: 18px;
    }

    .how-works-card-content p {
        font-size: 15px;
    }

    .how-works-controls {
        margin-top: 28px;
        padding: 0;
    }
}

@media (max-width: 767px) {
    .how-works-section {
        padding: 40px 0 62px;
    }

    .how-works-badge {
        min-height: 34px;
        padding: 0 14px;
        margin-bottom: 18px;
        font-size: 12px;
    }

    .how-works-heading {
        margin-bottom: 34px;
    }

    .how-works-heading h2 {
        font-size: 32px;
        line-height: 1.12;
        margin-bottom: 14px;
    }

    .how-works-heading p {
        font-size: 14px;
        line-height: 1.75;
    }

    .how-works-slider-viewport {
        width: 100%;
        padding-right: 0;
    }

    .how-works-slider-track {
        gap: 16px;
    }

    .how-works-card {
        flex: 0 0 88%;
        min-height: 452px;
        border-radius: 18px;
        padding: 18px 18px 20px;
    }

    .how-works-card-image-wrap {
        height: 250px;
        border-radius: 14px;
        margin-bottom: 20px;
    }

    .how-works-card-content h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .how-works-card-content p {
        font-size: 14px;
        line-height: 1.72;
    }

    .how-works-controls {
        margin-top: 24px;
        flex-direction: row;
        align-items: center;
    }

    .how-works-dot {
        width: 10px;
        height: 10px;
    }

    .how-works-dot.is-active {
        width: 22px;
    }

    .how-works-arrow {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 520px) {
    .how-works-heading h2 {
        font-size: 28px;
    }

    .how-works-card {
        flex: 0 0 92%;
        min-height: 416px;
        padding: 16px 16px 18px;
    }

    .how-works-card-image-wrap {
        height: 320px;
    }

    .how-works-card-content h3 {
        font-size: 16px;
    }

    .how-works-card-content p {
        font-size: 13px;
    }

    .how-works-controls {
        gap: 14px;
    }

    .how-works-arrows {
        gap: 10px;
    }

    .how-works-arrow {
        width: 42px;
        height: 42px;
    }

    .how-works-arrow ion-icon {
        font-size: 20px;
    }
}

/* =======================
    How It Works Section End
======================= */



/* =======================
   Blog Section Start
======================= */
.blog-section {
    position: relative;
    padding: 110px 0 110px;
    background:
        radial-gradient(circle at left top, rgba(69, 212, 255, 0.35) 0%, rgba(19, 118, 215, 0.2) 18%, transparent 38%),
        linear-gradient(180deg, #010816 0%, #010917 100%);
    overflow: hidden;
}

.blog-section::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 200px;
    transform: translateX(-50%);
    width: 720px;
    height: 420px;
    background: radial-gradient(circle, rgba(5, 96, 182, 0.16) 0%, rgba(3, 35, 84, 0.08) 42%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
}

.blog-heading {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 54px;
    text-align: center;
}

.blog-badge {
    width: fit-content;
    min-height: 38px;
    margin: 0 auto 24px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 500;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.blog-heading h2 {
    color: #fdfefe;
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -0.055em;
    font-weight: 600;
}

.blog-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
}

.blog-side {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.blog-card {
    display: block;
    border-radius: 22px;
    border: 1px solid rgba(96, 134, 180, 0.28);
    background:
        linear-gradient(180deg, rgba(3, 15, 37, 0.9) 0%, rgba(1, 10, 25, 0.96) 100%);
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 20px 45px rgba(0, 0, 0, 0.14);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(126, 183, 255, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 28px 55px rgba(0, 0, 0, 0.2);
}

.blog-card-large {
    min-height: 595px;
    padding: 18px 18px 22px;
}

.blog-card-small {
    min-height: 288px;
    padding: 18px;
    display: grid;
    grid-template-columns: 254px 1fr;
    gap: 26px;
    align-items: center;
}

.blog-card-large .blog-card-image-wrap {
    width: 100%;
    height: 415px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 28px;
}

.blog-card-small .blog-card-image-wrap {
    width: 100%;
    height: 252px;
    border-radius: 18px;
    overflow: hidden;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.04);
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blog-card-read {
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
}

.blog-card-content h3 {
    color: #fdfefe;
    font-size: 22px;
    line-height: 1.32;
    letter-spacing: -0.035em;
    font-weight: 500;
    margin-bottom: 12px;
}

.blog-card-large .blog-card-content h3 {
    font-size: 23px;
    max-width: 520px;
}

.blog-card-small .blog-card-content h3 {
    max-width: 270px;
}

.blog-card-content p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    line-height: 1.7;
    max-width: 520px;
}

.blog-card-small .blog-card-content p {
    max-width: 270px;
}

.blog-action {
    position: relative;
    z-index: 2;
    margin-top: 36px;
    display: flex;
    justify-content: center;
}

.blog-view-btn {
    min-width: 114px;
    height: 44px;
    padding: 0 24px;
    border-radius: 10px;
    background: linear-gradient(180deg, #18a0ff 0%, #0782f2 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 12px 28px rgba(8, 128, 244, 0.22);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(8, 128, 244, 0.28);
}

@media (max-width: 1150px) {
    .blog-heading h2 {
        font-size: 42px;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-card-large {
        min-height: auto;
    }

    .blog-side {
        grid-template-columns: 1fr 1fr;
    }

    .blog-card-small {
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: auto;
    }

    .blog-card-small .blog-card-image-wrap {
        height: 260px;
    }

    .blog-card-small .blog-card-content h3,
    .blog-card-small .blog-card-content p {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .blog-section {
        padding: 80px 0 80px;
    }

    .blog-heading {
        margin-bottom: 40px;
    }

    .blog-heading h2 {
        font-size: 38px;
    }

    .blog-card-large .blog-card-image-wrap {
        height: 360px;
        margin-bottom: 22px;
    }

    .blog-card-content h3 {
        font-size: 20px;
    }

    .blog-card-content p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .blog-section {
        padding: 62px 0 62px;
    }

    .blog-badge {
        min-height: 34px;
        padding: 0 14px;
        margin-bottom: 18px;
        font-size: 12px;
    }

    .blog-heading {
        margin-bottom: 30px;
    }

    .blog-heading h2 {
        font-size: 32px;
        line-height: 1.12;
    }

    .blog-layout,
    .blog-side {
        gap: 16px;
    }

    .blog-side {
        grid-template-columns: 1fr;
    }

    .blog-card {
        border-radius: 18px;
    }

    .blog-card-large,
    .blog-card-small {
        padding: 14px;
    }

    .blog-card-large .blog-card-image-wrap {
        height: 240px;
        border-radius: 14px;
        margin-bottom: 18px;
    }

    .blog-card-small {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-card-small .blog-card-image-wrap {
        height: 220px;
        border-radius: 14px;
    }

    .blog-card-read {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .blog-card-content h3,
    .blog-card-large .blog-card-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
        max-width: 100%;
    }

    .blog-card-content p {
        font-size: 14px;
        line-height: 1.72;
        max-width: 100%;
    }

    .blog-action {
        margin-top: 28px;
    }

    .blog-view-btn {
        min-width: 108px;
        height: 42px;
        font-size: 14px;
    }
}

@media (max-width: 520px) {
    .blog-heading h2 {
        font-size: 28px;
    }

    .blog-card-large .blog-card-image-wrap {
        height: 210px;
    }

    .blog-card-small .blog-card-image-wrap {
        height: 190px;
    }

    .blog-card-content h3,
    .blog-card-large .blog-card-content h3 {
        font-size: 17px;
    }

    .blog-card-content p {
        font-size: 13px;
    }
}

/* =======================
   Blog Section End
======================= */



/* =======================
   Integrations Section Start
======================= */
.integrations-section {
    position: relative;
    background: linear-gradient(180deg, #010816 0%, #010817 100%);
    padding: 80px 0 0;
}

.integrations-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center top, rgba(0, 123, 255, 0.08) 0%, rgba(0, 82, 184, 0.04) 26%, transparent 48%);
    pointer-events: none;
}

.integrations-bg-arcs {
    position: absolute;
    left: 50%;
    bottom: -150px;
    transform: translateX(-50%);
    width: 100%;
    height: 360px;
    background-image: url("../images/integration-bg-arcs.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    pointer-events: none;
    z-index: 0;
}

.integrations-heading {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto 54px;
    text-align: center;
}

.integrations-badge {
    width: fit-content;
    min-height: 38px;
    margin: 0 auto 24px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 500;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.integrations-heading h2 {
    color: #fcfdff;
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -0.055em;
    font-weight: 600;
    margin-bottom: 18px;
}

.integrations-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    line-height: 1.8;
}

.integrations-cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.integration-card {
    position: relative;
    min-height: 235px;
    padding: 32px 28px 28px;
    border-radius: 18px;
    border: 1px solid rgba(88, 129, 180, 0.3);
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 180, 255, 0.16) 0%, rgba(0, 89, 160, 0.08) 22%, transparent 52%),
        linear-gradient(180deg, rgba(2, 16, 40, 0.94) 0%, rgba(1, 9, 24, 0.98) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 16px 40px rgba(0, 0, 0, 0.12);
    text-align: center;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.integration-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, rgba(117, 180, 255, 0.1), rgba(255, 255, 255, 0.015));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
}

.integration-card:hover {
    transform: translateY(-6px);
    border-color: rgba(113, 180, 255, 0.38);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 24px 54px rgba(0, 0, 0, 0.18);
}

.integration-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.integration-card-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.integration-card-icon-green {
    background: #89e2bf;
}

.integration-card-icon-cyan {
    background: #89d7e7;
}

.integration-card-icon-red {
    background: #ff7272;
}

.integration-card h3 {
    color: #f9fcff;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.integration-card p {
    max-width: 220px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.45);
    font-size: 16px;
    line-height: 1.65;
}

.integration-connector {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(104, 223, 210, 0.1) 0%, rgba(104, 223, 210, 0.8) 50%, rgba(104, 223, 210, 0.1) 100%);
    top: 110px;
    z-index: 1;
    pointer-events: none;
}

.integration-connector-1 {
    left: calc(25% - 12px);
    width: 48px;
    transform: translateX(100%);
}

.integration-connector-2 {
    left: calc(50% - 12px);
    width: 48px;
    transform: translateX(100%);
}

.integration-connector-3 {
    left: calc(75% - 12px);
    width: 48px;
    transform: translateX(100%);
}

@media (max-width: 1150px) {
    .integrations-heading h2 {
        font-size: 42px;
    }

    .integrations-cards {
        gap: 18px;
    }

    .integration-card {
        padding: 28px 20px 24px;
    }

    .integration-card p {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .integrations-section {
        padding: 40px 0 60px;
    }

    .integrations-bg-arcs {
        width: 100%;
        height: 780px;
        bottom: -155px;
    }

    .integrations-heading {
        margin-bottom: 40px;
    }

    .integrations-heading h2 {
        font-size: 38px;
    }

    .integrations-heading p {
        font-size: 15px;
    }

    .integrations-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .integration-card {
        min-height: 220px;
    }

    .integration-connector {
        display: none;
    }
}

@media (max-width: 767px) {
    .integrations-section {
        padding: 80px 0 40px;
    }

    .integrations-bg-arcs {
        display: none;
    }

    .integrations-badge {
        min-height: 34px;
        padding: 0 14px;
        margin-bottom: 18px;
        font-size: 12px;
    }

    .integrations-heading {
        margin-bottom: 30px;
    }

    .integrations-heading h2 {
        font-size: 32px;
        line-height: 1.12;
        margin-bottom: 14px;
    }

    .integrations-heading p {
        font-size: 14px;
        line-height: 1.75;
    }

    .integrations-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .integration-card {
        min-height: auto;
        padding: 24px 18px 22px;
        border-radius: 16px;
    }

    .integration-card-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 20px;
    }

    .integration-card-icon img {
        width: 24px;
        height: 24px;
    }

    .integration-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .integration-card p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.72;
    }
}

@media (max-width: 520px) {
    .integrations-heading h2 {
        font-size: 28px;
    }

    .integration-card {
        padding: 22px 16px 20px;
    }

    .integration-card h3 {
        font-size: 17px;
    }

    .integration-card p {
        font-size: 13px;
    }
}

/* =======================
   Integrations Section End
======================= */



/* =======================
   FAQ Section Start
======================= */
.faq-section {
    position: relative;
    margin-top: 140px;
    background: radial-gradient(circle at left center, rgba(24, 143, 255, 0.12) 0%, rgba(12, 68, 146, 0.06) 18%, transparent 38%), linear-gradient(180deg, #010917 0%, #010917 100%);
    overflow: hidden;
    padding: 90px 0 90px;
}

.faq-section::before {
    content: "";
    position: absolute;
    left: -220px;
    bottom: -180px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(21, 154, 255, 0.18) 0%, transparent 68%);
    filter: blur(30px);
    pointer-events: none;
}

.faq-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 46px;
    align-items: start;
}

.faq-content {
    max-width: 340px;
    padding-top: 2px;
}

.faq-badge {
    width: fit-content;
    min-height: 38px;
    padding: 0 16px;
    margin-bottom: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 500;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.faq-content h2 {
    color: #fcfdff;
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -0.055em;
    font-weight: 600;
    margin-bottom: 28px;
}

.faq-content p {
    max-width: 300px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 34px;
}

.faq-btn {
    min-width: 128px;
    height: 42px;
    padding: 0 22px;
    border-radius: 12px;
    background: #f4f4f5;
    color: #171717;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-btn:hover {
    transform: translateY(-2px);
    background: #ffffff;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    border-radius: 14px;
    border: 1px solid rgba(88, 129, 180, 0.28);
    background: linear-gradient(180deg, rgba(3, 15, 37, 0.74) 0%, rgba(1, 10, 25, 0.88) 100%);
    overflow: hidden;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.faq-item:hover {
    border-color: rgba(118, 180, 255, 0.34);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.faq-item.active {
    border-color: rgba(118, 180, 255, 0.34);
}

.faq-question {
    width: 100%;
    min-height: 68px;
    padding: 18px 18px 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    color: #fcfdff;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 500;
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    transition: background 0.35s ease, transform 0.35s ease;
}

.faq-icon i {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.faq-icon i:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-icon {
    background: rgba(20, 152, 255, 0.16);
}

.faq-item.active .faq-icon i:last-child {
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
    opacity: 0;
}

.faq-answer-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer {
    padding: 0 22px 20px 22px;
}

.faq-answer p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 15px;
    line-height: 1.78;
}

/* =======================
   FAQ Responsive
======================= */
@media (max-width: 1150px) {
    .faq-content h2 {
        font-size: 42px;
    }

    .faq-layout {
        grid-template-columns: 320px minmax(0, 1fr);
        gap: 30px;
    }

    .faq-question {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .faq-section {
        padding: 40px 0 60px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .faq-content {
        max-width: 100%;
    }

    .faq-content h2 {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .faq-content p {
        max-width: 560px;
        margin-bottom: 28px;
    }

    .faq-accordion {
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 40px 0 80px;
        margin-top: 0;
    }

    .faq-badge {
        min-height: 34px;
        padding: 0 14px;
        margin-bottom: 18px;
        font-size: 12px;
    }

    .faq-content h2 {
        font-size: 32px;
        line-height: 1.12;
        margin-bottom: 16px;
    }

    .faq-content p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 24px;
    }

    .faq-btn {
        min-width: 120px;
        height: 40px;
        border-radius: 10px;
        font-size: 14px;
    }

    .faq-accordion {
        gap: 14px;
    }

    .faq-item {
        border-radius: 12px;
    }

    .faq-question {
        min-height: 60px;
        padding: 14px 14px 14px 16px;
        font-size: 16px;
        gap: 14px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        border-radius: 7px;
    }

    .faq-icon i {
        width: 14px;
    }

    .faq-answer {
        padding: 0 16px 16px 16px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.72;
    }
}

@media (max-width: 520px) {
    .faq-content h2 {
        font-size: 28px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 13px;
    }
}

/* =======================
   FAQ Section End
======================= */



/* =======================
   Footer Section Start
======================= */
.site-footer {
    position: relative;
    padding: 80px 0 30px;
    background:
        radial-gradient(circle at center bottom, rgba(32, 165, 255, 0.32) 0%, rgba(12, 102, 182, 0.18) 18%, rgba(4, 38, 84, 0.06) 34%, transparent 56%),
        linear-gradient(180deg, #010816 0%, #010917 100%);
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -210px;
    transform: translateX(-50%);
    width: 860px;
    height: 420px;
    background: radial-gradient(circle, rgba(36, 184, 255, 0.18) 0%, rgba(20, 120, 210, 0.12) 26%, transparent 68%);
    filter: blur(34px);
    pointer-events: none;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr;
    gap: 40px 60px;
    align-items: start;
    padding-bottom: 42px;
}

.footer-brand {
    max-width: 380px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #ffffff;
    align-items: center;
}

.footer-logo > img{
    padding-right: 8px;
}

.footer-logo span {
    color: rgba(255, 255, 255, 0.38);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.56);
    font-size: 16px;
    line-height: 1.75;
}

.footer-links-col h3 {
    color: #fbfdff;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-links-col a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links-col a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.footer-social-links a {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255, 255, 255, 0.38);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    color: #f5f8fb;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

/* =======================
   Footer Responsive
======================= */
@media (max-width: 1150px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1.2fr;
        gap: 36px 32px;
    }

    .footer-brand p,
    .footer-links-col a {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .site-footer {
        padding: 46px 0 24px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 28px;
        padding-bottom: 34px;
    }

    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 40px 0 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-bottom: 28px;
    }

    .footer-logo {
        margin-bottom: 18px;
        font-size: 17px;
    }

    .footer-brand p,
    .footer-links-col a {
        font-size: 14px;
        line-height: 1.72;
    }

    .footer-links-col h3 {
        margin-bottom: 14px;
        font-size: 14px;
    }

    .footer-links-col ul {
        gap: 12px;
    }

    .footer-bottom p {
        font-size: 14px;
    }
}

@media (max-width: 520px) {
    .site-footer {
        padding: 36px 0 20px;
    }

    .footer-brand p,
    .footer-links-col a,
    .footer-bottom p {
        font-size: 13px;
    }
}

/* =======================
   Footer Section End
======================= */