*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--para-font-family);
    align-items: center;
    justify-content: center;
    overflow-x: inherit;
}


.hero-sec {
    background: var(--bg);
    background-image: url(../images/feture_hero_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: var(--space-64) 0;
   
}

.hero-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 92%);
    pointer-events: none;
}

.hero {

    width: 100%;
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: var(--space-48);
    align-items: center;
    position: relative;
    padding:  0;
}

.hero::before {
    content: '';
    position: absolute;
    left: -120px;
    top: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 86, 255, .10) 0%, transparent 70%);
    pointer-events: none;
}

.hero-left {
    animation: fadeUp .7s ease both;
}

.hero-left h1 {
    font-family: var(--heading-bold-font-family);
    font-size: clamp(2.5rem, 4.5vw, 2.9rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}

.hero-left p {
    font-size: var(--p-size-18);
    line-height: 1.7;
    color: var(--text-primary);
    max-width: 90%;
    margin-bottom: var(--space-32);
}

.hero-left .tagline {
    font-size: var(--p-size-16);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 36px;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 10px;
    font-family: inherit;
    font-size:var(--p-size-14);
    font-weight: 600;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s, background .18s;
    text-decoration: none;
    letter-spacing: 5%;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    border: 2px solid var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--bg-dark);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--bg-dark);
    color: #fff;
    transform: translateY(-2px);
    border: 2px solid var(--bg-dark);
}

.btn svg {
    flex-shrink: 0;
}

.hero-left .trust {
    font-size: 14px;
    color: var(--text-primary);
}

.hero-card {
    /* background: #fff; */
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(15, 22, 35, .10), 0 2px 8px rgba(15, 22, 35, .05);
    animation: fadeUp .7s .18s ease both;
    position: relative;
    overflow: hidden;
    background: linear-gradient(38.41deg, rgba(255, 255, 255, 0.9) 75.41%, rgba(0, 101, 242, 0.9) 181.56%);
    border: 2px solid #29273A1A
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(26, 86, 255, .08) 0%, transparent 70%);
    pointer-events: none;
}

.feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    transition: transform .2s;
    border-bottom: 1px solid rgba(128, 128, 128, 0.137);
   
   

}

.feature-item:first-child {
    padding-top: 0;
}
.feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-item:hover {
    transform: translateX(4px);
}

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 30px;
    background: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(15, 22, 35, .25);
}

.feat-icon svg {
    width: 24px;
    height: 24px;
}

.feat-text h3 {
    font-family: var(--heading-font-family);
    font-size: var(--p-size-18);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    /* letter-spacing: -0.01em; */
}

.feat-text p {
    font-size: var(--p-size-16);
    line-height: 1.6;
    color: var(--text-body);
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1280px) {
    .hero-sec{
        padding: 40px 0;
    }
    .hero-card {
        padding: var(--space-24);
    }
    .feature-item{
        padding: 12px 0;
    }
}

@media (max-width: 1160px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left {
        text-align: center;
    }

    .hero-left p {
        margin: 0 auto 18px;
    }
    .hero .btn-group {
        justify-content: center;
    }

     .hero-card {
        margin: 0 auto;
    }

}

@media (max-width:480px) {

    .hero-left p {
        font-size: var(--p-size-16);
    }

}




.feature-sec {
    margin: 0 auto;
    padding: var(--space-85) 0;
}

.page-header {
    margin-bottom: var(--space-48);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    margin-bottom: var(--space-16);
}

.eyebrow-line {
    width: 28px;
    height: 2px;
    background: var(--primary-color);
    border-radius: var(--radius-9999);
}

.eyebrow-text {
    font-family: var(--para-font-family);
    font-size: var(--p-size-14);
    font-weight: var(--font-600);
    letter-spacing: 0.1em;
    color: var(--primary-color);
    text-transform: uppercase;
}

.page-header h2 {
    font-family: var(--heading-bold-font-family);
    font-size: clamp(28px, 4vw, var(--h2-size-40));
    font-weight: var(--font-800);
    color: var(--text-nav);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-12);
}

.page-header p {
    font-size: var(--p-size-16);
    color: var(--text-primary);
    font-weight: var(--font-400);
}

.layout {
    display: grid;
    grid-template-columns: 248px 1fr;
    gap: var(--space-32);
    align-items: start;
}

.sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    padding: 12px var(--space-16);
    border-radius: var(--radius-10);
    cursor: pointer;
    transition: background .2s, color .2s;
    font-family: 'Poppins', sans-serif;
    font-size: var(--p-size-16);
    font-weight: var(--font-500);
    color: var(--text-primary);
    text-decoration: none;
    user-select: none;
    border: none;
    background: transparent;
    text-align: left;
    width: 100%;
}

.sidebar-item:hover {
    background: var(--color-hover-bg);
    color: var(--primary-color);
}

.sidebar-item.active {
    background: var(--primary-color);
    color: #fff;
    font-weight: var(--font-600);
}

.sidebar-item.active .sidebar-icon {
    color: #fff;
}

.sidebar-item:hover:not(.active) .sidebar-icon {
    color: var(--primary-color);
}

.sidebar-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text-primary);
    transition: color .2s;
}

.content {
    display: flex;
    flex-direction: column;
    gap: var(--space-48);
}

.content .feature-section:nth-child(odd) {
    background-color: var(--bg-light);
}

.content .feature-section:nth-child(even) {
    background: #f9faff;

}


.feature-section {
    background: var(--bg-light);
    border-radius: var(--radius-16);
    padding: var(--space-48);
    scroll-margin-top: var(--space-32);
}

.section-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-20);
    margin-bottom: var(--space-24);
}

.section-number {
    min-width: 52px;
    height: 52px;
    background: var(--receivable-bg);
    border-radius: var(--radius-10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: var(--p-size-18);
    font-weight: var(--font-700);
    color: var(--text-primary);
}

.section-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.section-title-row {
    display: flex;
    align-items: center;
    gap: var(--space-16);
    flex-wrap: wrap;
}

.section-title-row img {
    rotate: -45deg;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--h3-size-24);
    font-weight: var(--font-700);
    color: var(--text-nav);
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--p-size-16);
    font-weight: var(--font-500);
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity .2s;
    font-family: var(--para-font-family);
}

.section-link:hover {
    opacity: .75;
}

.section-desc {
    font-size: var(--p-size-16);
    color: var(--text-primary);
    line-height: var(--leading-relaxed);
    max-width: 600px;
    font-weight: var(--font-400);
}


.section-header-inner {
    border-left: 3px solid var(--primary-color);
    padding-left: var(--space-16);
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    margin-bottom: var(--space-20);
}

.card {
    background: var(--bg-main);
    border-radius: var(--radius-12);
    padding: var(--space-32);
    border: 1px solid var(--color-border);
    transition: box-shadow .2s;
}

.card:hover {
    box-shadow: var(--shadow-panel);
}

.card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--space-16);
    color: var(--text-primary);
}

.card h3 {
    font-family: var(--para-font-family);
    font-size: var(--p-size-20);
    font-weight: var(--font-600);
    color: var(--text-primary);
    margin-bottom: var(--space-12);
}

.card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

.card ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-12);
    font-size: var(--p-size-14);
    color: var(--text-primary);
    line-height: 1.55;
    font-size: var(--para-font-family);
}

.card ul li .arrow {
    color: var(--text-primary);
    background: url(../images/icons/arrow_right.svg);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.card ul li .arrow svg {
    width: 16px;
    height: 16px;
}

.biz-value {
    background: var(--receivable-bg);
    border-radius: 30px;
    padding: 14px var(--space-20);
    display: flex;
    align-items: center;
    gap: var(--space-8);
    font-size: var(--p-size-14);
    color: var(--text-status-blue);
}

.biz-value .arrow {
    font-size: 13px;
}

.biz-value strong {
    font-weight: var(--font-600);
}

@media (max-width: 900px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        flex-direction: row;
        gap: var(--space-8);
        margin-bottom: var(--space-24);
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 8px 0;
        overflow-x: auto;
        overflow-y: hidden;
        display: flex;
        flex-direction: row;
        white-space: nowrap;
    }

    .sidebar-item {
        width: auto;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {

    .hero-card {

        padding: var(--space-24) var(--space-20);
    }

    .breadcrumb-bar {
        padding: 14px var(--space-16);
    }

    .card {
        padding: var(--space-20);
    }

    .feature-section {
        padding: var(--space-32) var(--space-20);
    }
}


