﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #333;
    background: #fff;
    line-height: 1.7;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

/* ===== NAVBAR ===== */
nav {
    background: #fff;
    border-bottom: 2px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 68px;
}

.logo {
    font-family: 'Nunito', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a4fa0;
}

    .logo span {
        color: #e05c00;
    }

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

    .nav-links a {
        color: #555;
        font-size: 0.95rem;
        font-weight: 600;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: #1a4fa0;
        }

.nav-btn {
    background: #e05c00;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Nunito', sans-serif;
    transition: background 0.2s;
}

    .nav-btn:hover {
        background: #c44f00;
    }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #1a4fa0 0%, #1e5bc4 60%, #1a4fa0 100%);
    color: #fff;
    padding: 70px 24px 60px;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.25;
}

    .hero h1 span {
        color: #fbbf24;
    }

.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.75;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-white {
    background: #fff;
    color: #1a4fa0;
    padding: 13px 30px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

    .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

.btn-ghost {
    background: transparent;
    color: #fff;
    padding: 13px 30px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    border: 2px solid rgba(255,255,255,0.6);
    transition: all 0.2s;
}

    .btn-ghost:hover {
        background: rgba(255,255,255,0.1);
        border-color: #fff;
    }

.hero-platforms {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 28px;
}

    .hero-platforms p {
        font-size: 0.8rem;
        color: rgba(255,255,255,0.65);
        margin-bottom: 16px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.platform-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.platform-chip {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    padding: 16px 24px;
    text-align: center;
}

.trust-bar-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #555;
    font-weight: 600;
}

    .trust-item .icon {
        font-size: 1.1rem;
    }

/* ===== SECTION SHARED ===== */
.section {
    padding: 24px 24px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e05c00;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .section-label::before {
        content: '';
        display: inline-block;
        width: 24px;
        height: 2px;
        background: #e05c00;
    }

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1rem;
    color: #666;
    max-width: 580px;
    line-height: 1.75;
    margin-bottom: 40px;
}

/* ===== WHY CHOOSE ===== */
.why-section {
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.why-card {
    background: #f7f9ff;
    border: 1.5px solid #e4ecff;
    border-radius: 12px;
    padding: 28px 24px;
    transition: all 0.25s;
}

    .why-card:hover {
        border-color: #1a4fa0;
        box-shadow: 0 6px 24px rgba(26,79,160,0.1);
        transform: translateY(-3px);
    }

.why-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1.5px solid #e4ecff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* ===== FEATURES ===== */
.features-section {
    background: #f7f9ff;
}

.features-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.tab-btn {
    padding: 9px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
}

    .tab-btn.active, .tab-btn:hover {
        background: #1a4fa0;
        color: #fff;
        border-color: #1a4fa0;
    }

.feature-panel {
    display: none;
}

    .feature-panel.active {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

.feature-item {
    background: #fff;
    border: 1.5px solid #e4ecff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.fi-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.fi-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.fi-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-section {
    background: #fff;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    position: relative;
}

    .steps-row::before {
        content: '';
        position: absolute;
        top: 36px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, #1a4fa0, #e05c00);
        z-index: 0;
    }

.step-box {
    text-align: center;
    padding: 0 20px 24px;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #1a4fa0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 auto 20px;
    border: 4px solid #fff;
    box-shadow: 0 4px 16px rgba(26,79,160,0.25);
}

.step-box:nth-child(2) .step-circle {
    background: #2563c4;
}

.step-box:nth-child(3) .step-circle {
    background: #c44f00;
}

.step-box:nth-child(4) .step-circle {
    background: #e05c00;
}

.step-box h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.step-box p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about-section {
    background: #f7f9ff;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    color: #555;
    font-size: 0.975rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-highlight {
    background: #fff;
    border-left: 4px solid #e05c00;
    border-radius: 0 10px 10px 0;
    padding: 20px 22px;
    margin-top: 24px;
}

    .about-highlight p {
        color: #333;
        font-size: 0.95rem;
        font-style: italic;
        margin: 0;
    }

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-box {
    background: #fff;
    border: 1.5px solid #e4ecff;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-num {
    font-family: 'Nunito', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a4fa0;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: #777;
    font-weight: 600;
}

/* ===== SECURITY ===== */
.security-section {
    background: #fff;
}

.security-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.sec-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sec-point {
    background: #f7f9ff;
    border: 1.5px solid #e4ecff;
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.sp-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.sec-point h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.sec-point p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.trust-card {
    background: #1a4fa0;
    border-radius: 14px;
    padding: 32px 28px;
    color: #fff;
}

    .trust-card h3 {
        font-size: 1.3rem;
        font-weight: 800;
        margin-bottom: 12px;
        color: #fff;
    }

    .trust-card > p {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.8);
        margin-bottom: 24px;
        line-height: 1.7;
    }

.api-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.api-row {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    font-weight: 600;
}

.api-verified {
    background: #16a34a;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 100px;
}

/* ===== SECTION SHARED ===== */
.section {
    padding: 64px 24px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e05c00;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .section-label::before {
        content: '';
        display: inline-block;
        width: 24px;
        height: 2px;
        background: #e05c00;
    }

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1rem;
    color: #666;
    max-width: 680px;
    line-height: 1.75;
    margin-bottom: 40px;
}

/* ===== PRODUCTS GRID ===== */
.products-section {
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 24px;
}

.product-card {
    background: #fff;
    border: 2px solid #e4ecff;
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.product-text p {
    color: #555;
    font-size: 0.975rem;
    margin-bottom: 16px;
    line-height: 1.8;
}
    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #1a4fa0, #1e5bc4);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .product-card:hover {
        border-color: #1a4fa0;
        box-shadow: 0 8px 30px rgba(91,44,111,0.15);
        transform: translateY(-4px);
    }

        .product-card:hover::before {
            opacity: 1;
        }

.product-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a4fa0, #1e5bc4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(91,44,111,0.2);
}

.product-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a4fa0;
    line-height: 1;
}

.product-tagline {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.product-features {
    margin-bottom: 24px;
}

    .product-features h4 {
        font-size: 0.875rem;
        font-weight: 700;
        color: #1a4fa0;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .product-features ul {
        list-style: none;
        padding: 0;
    }

    .product-features li {
        padding: 8px 0 8px 28px;
        color: #555;
        font-size: 0.9rem;
        position: relative;
        line-height: 1.6;
    }

        .product-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #e05c00;
            font-weight: 700;
            font-size: 1.1rem;
        }

.product-benefit {
    background: #f7f9ff;
    border-left: 3px solid #1a4fa0;
    border-radius: 0 8px 8px 0;
    padding: 16px 18px;
    margin-top: 20px;
}

    .product-benefit strong {
        display: block;
        color: #1a4fa0;
        font-weight: 700;
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .product-benefit p {
        color: #666;
        font-size: 0.875rem;
        line-height: 1.6;
        margin: 0;
    }

/* ===== ECOSYSTEM ===== */
.ecosystem-section {
    background: #f7f9ff;
}

.ecosystem-visual {
    background: #fff;
    border: 2px solid #e4ecff;
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.ecosystem-diagram {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.eco-item {
    background: linear-gradient(135deg, #1a4fa0, #1e5bc4);
    color: #fff;
    padding: 24px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(91,44,111,0.2);
}

.eco-center {
    grid-column: 1 / -1;
    background: #e05c00;
    font-size: 1.3rem;
    padding: 32px 20px;
}

.ecosystem-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.eco-benefit {
    background: #fff;
    border: 1.5px solid #e4ecff;
    border-radius: 12px;
    padding: 24px;
    text-align: left;
}

    .eco-benefit h4 {
        color: #1a4fa0;
        font-weight: 700;
        margin-bottom: 8px;
        font-size: 1rem;
    }

    .eco-benefit p {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 0;
    }

/* ===== HOW IT WORKS ===== */
.how-section {
    background: #fff;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    position: relative;
}

    .steps-row::before {
        content: '';
        position: absolute;
        top: 36px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, #1a4fa0, #e05c00);
        z-index: 0;
    }

.step-box {
    text-align: center;
    padding: 0 20px 24px;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #1a4fa0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 auto 20px;
    border: 4px solid #fff;
    box-shadow: 0 4px 16px rgba(91,44,111,0.25);
}

.step-box:nth-child(2) .step-circle {
    background: #1e5bc4;
}

.step-box:nth-child(3) .step-circle {
    background: #c44f00;
}

.step-box:nth-child(4) .step-circle {
    background: #e05c00;
}

.step-box h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.step-box p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.7;
}





/* ===== CONTACT ===== */
.contact-section {
    background: #f7f9ff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 12px;
}

.contact-info > p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.75;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-card {
    background: #fff;
    border: 1.5px solid #e4ecff;
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    gap: 14px;
    align-items: center;
}

.cc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cc-label {
    font-size: 0.75rem;
    color: #999;
    font-weight: 600;
    margin-bottom: 2px;
}

.cc-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #222;
}

.contact-form {
    background: #fff;
    border: 1.5px solid #e4ecff;
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

    .contact-form h3 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 22px;
        color: #1a1a1a;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.fg {
    margin-bottom: 16px;
}

    .fg label {
        display: block;
        font-size: 0.825rem;
        font-weight: 700;
        color: #444;
        margin-bottom: 6px;
    }

    .fg input, .fg textarea, .fg select {
        width: 100%;
        background: #f7f9ff;
        border: 1.5px solid #dde4f0;
        border-radius: 8px;
        padding: 11px 14px;
        font-family: 'Open Sans', sans-serif;
        font-size: 0.9rem;
        color: #333;
        outline: none;
        transition: border-color 0.2s;
    }

        .fg input:focus, .fg textarea:focus, .fg select:focus {
            border-color: #1a4fa0;
            background: #fff;
        }

    .fg textarea {
        height: 120px;
        resize: vertical;
    }

.form-submit {
    width: 100%;
    background: #e05c00;
    color: #fff;
    padding: 13px;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

    .form-submit:hover {
        background: #c44f00;
    }







/* ===== FOOTER ===== */
footer {
    background: #1a1a2e;
    color: rgba(255,255,255,0.6);
    padding: 48px 24px 28px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 24px;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 12px;
    display: block;
}

    .footer-brand .logo span {
        color: #e05c00;
    }

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.75;
}

.footer-col h5 {
    font-family: 'Nunito', sans-serif;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    padding: 4px 0;
    transition: color 0.2s;
}

    .footer-col a:hover {
        color: #fff;
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 8px;
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

    .fade-up.in {
        opacity: 1;
        transform: translateY(0);
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 820px) {
    .about-layout, .security-layout,
    .contact-layout, .footer-top {
        grid-template-columns: 1fr;
    }

    .feature-panel.active {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .steps-row::before {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        gap: 28px;
    }

    .bx bx-mobile {
        font-size: 2.875rem;
    }

    .bx bx-envelope {
        font-size: 2.875rem;
    }
}
/*PRICING PLAN CSS*/


/* ===== PRICING SECTION ===== */
.pricing-section {
    background: #f7f9ff;
    padding: 64px 24px;
}

    .pricing-section .section-inner {
        max-width: 1100px;
        margin: 0 auto;
    }

/* TOGGLE */
.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 44px;
}

.toggle-label {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #555;
}

    .toggle-label.active {
        color: #1a4fa0;
    }

.toggle-switch {
    width: 52px;
    height: 28px;
    background: #1a4fa0;
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background 0.2s;
    flex-shrink: 0;
}

.toggle-knob {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.25s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.toggle-switch.yearly .toggle-knob {
    transform: translateX(24px);
}

.save-badge {
    background: #e05c00;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    font-family: 'Nunito', sans-serif;
}

/* PRICING GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

/* BASE CARD */
.pricing-card {
    background: #fff;
    border: 2px solid #e4ecff;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 36px rgba(26, 79, 160, 0.12);
        border-color: #1a4fa0;
    }

    /* ELITE - HIGHLIGHTED */
    .pricing-card.featured {
        border-color: #1a4fa0;
        box-shadow: 0 12px 40px rgba(26, 79, 160, 0.18);
        transform: translateY(-6px);
        z-index: 2;
    }

        .pricing-card.featured:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(26, 79, 160, 0.22);
        }

/* TOP STRIPE */
.card-stripe {
    height: 5px;
    background: #e4ecff;
}

.pricing-card.pro .card-stripe {
    background: linear-gradient(90deg, #64748b, #94a3b8);
}

.pricing-card.featured .card-stripe {
    background: linear-gradient(90deg, #1a4fa0, #e05c00);
}

.pricing-card.max .card-stripe {
    background: linear-gradient(90deg, #7c3aed, #e05c00);
}

/* POPULAR BADGE */
.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #e05c00;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.5px;
}

/* CARD HEADER */
.pricing-header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid #f0f4ff;
}

.plan-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.pro .plan-icon {
    background: #f1f5f9;
}

.featured .plan-icon {
    background: linear-gradient(135deg, #1a4fa0, #1e5bc4);
    box-shadow: 0 4px 14px rgba(26,79,160,0.25);
}

.max .plan-icon {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    box-shadow: 0 4px 14px rgba(124,58,237,0.25);
}

.plan-name {
    font-family: 'Nunito', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.featured .plan-name {
    color: #1a4fa0;
}

.max .plan-name {
    color: #7c3aed;
}

.plan-desc {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* PRICE */
.price-wrap {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 6px;
}

.price-currency {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 6px;
}

.price-amount {
    font-family: 'Nunito', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
}

.featured .price-amount {
    color: #1a4fa0;
}

.max .price-amount {
    color: #7c3aed;
}

.price-period {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 6px;
}

.price-yearly-note {
    font-size: 0.78rem;
    color: #e05c00;
    font-weight: 600;
    display: none;
}

    .price-yearly-note.show {
        display: block;
    }

/* CARD BODY - FEATURES */
.pricing-body {
    padding: 22px 28px;
}

.features-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 14px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid #f5f7ff;
    font-size: 0.875rem;
    color: #444;
    line-height: 1.5;
}

    .feature-row:last-child {
        border-bottom: none;
    }

.feature-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

    .feature-check.yes {
        background: #dcfce7;
        color: #16a34a;
    }

    .feature-check.no {
        background: #f1f5f9;
        color: #cbd5e1;
    }

.feature-row.muted {
    color: #bbb;
}

/* DIVIDER - PRODUCTS INCLUDED */
.products-included {
    padding: 16px 28px;
    background: #f7f9ff;
    border-top: 1px solid #e4ecff;
    border-bottom: 1px solid #e4ecff;
}

.pi-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 10px;
}

.pi-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.pi-chip {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    border: 1.5px solid;
}

    .pi-chip.sync {
        background: #eff6ff;
        color: #1a4fa0;
        border-color: #bfdbfe;
    }

    .pi-chip.sell {
        background: #f0fdf4;
        color: #16a34a;
        border-color: #bbf7d0;
    }

    .pi-chip.scan {
        background: #fff7ed;
        color: #e05c00;
        border-color: #fed7aa;
    }

    .pi-chip.ship {
        background: #f5f3ff;
        color: #7c3aed;
        border-color: #ddd6fe;
    }

    .pi-chip.gray {
        background: #f1f5f9;
        color: #94a3b8;
        border-color: #e2e8f0;
    }

/* CTA BUTTON */
.pricing-cta {
    padding: 22px 28px;
}

.cta-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

.pro .cta-btn {
    background: #fff;
    color: #1a4fa0;
    border-color: #1a4fa0;
}

    .pro .cta-btn:hover {
        background: #1a4fa0;
        color: #fff;
    }

.featured .cta-btn {
    background: #1a4fa0;
    color: #fff;
    border-color: #1a4fa0;
    box-shadow: 0 4px 16px rgba(26,79,160,0.3);
}

    .featured .cta-btn:hover {
        background: #163f85;
        box-shadow: 0 6px 24px rgba(26,79,160,0.4);
        transform: translateY(-1px);
    }

.max .cta-btn {
    background: #7c3aed;
    color: #fff;
    border-color: #7c3aed;
    box-shadow: 0 4px 16px rgba(124,58,237,0.25);
}

    .max .cta-btn:hover {
        background: #6d28d9;
        box-shadow: 0 6px 24px rgba(124,58,237,0.35);
        transform: translateY(-1px);
    }

/* BOTTOM NOTE */
.pricing-note {
    text-align: center;
    margin-top: 36px;
    font-size: 0.875rem;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

    .pricing-note span {
        display: flex;
        align-items: center;
        gap: 6px;
        font-weight: 600;
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

        .pricing-card.featured:hover {
            transform: translateY(-5px);
        }
}

/* ==============================
     TICKER SECTION
  ============================== */
.ticker-section {
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
    background: #fff;
    padding: 6px 0;
}

/* label row */
.ticker-label-row {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 20px 4px;
    border-bottom: 1px solid #f0f0f0;
}

.ticker-section-label {
    font-family: 'Nunito', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 3px 14px;
    border-radius: 100px;
    margin-right: 10px;
}

    .ticker-section-label.blue {
        background: #eef2ff;
        color: #1a4fa0;
    }

    .ticker-section-label.orange {
        background: #fff3ea;
        color: #e05c00;
    }

/* scrolling rows */
.ticker-row {
    overflow: hidden;
    position: relative;
    padding: 8px 0;
}

    .ticker-row::before,
    .ticker-row::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100px;
        z-index: 2;
        pointer-events: none;
    }

    .ticker-row::before {
        left: 0;
        background: linear-gradient(90deg, #fff 50%, transparent 100%);
    }

    .ticker-row::after {
        right: 0;
        background: linear-gradient(270deg, #fff 50%, transparent 100%);
    }

.ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 0;
}

    .ticker-track.row1 {
        animation: scroll-left 35s linear infinite;
    }

    .ticker-track.row2 {
        animation: scroll-right 38s linear infinite;
    }

    .ticker-track:hover {
        animation-play-state: paused;
    }

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* logo pill */
.logo-pill {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 20px 7px 10px;
    margin: 0 6px;
    background: #f8f9fc;
    border: 1.5px solid #eaecf4;
    border-radius: 50px;
    white-space: nowrap;
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    transition: all 0.2s;
    cursor: default;
    flex-shrink: 0;
}

    .logo-pill:hover {
        background: #fff;
        border-color: #1a4fa0;
        color: #1a4fa0;
        box-shadow: 0 2px 10px rgba(26,79,160,0.1);
        transform: translateY(-1px);
    }

.logo-img-wrap {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    padding: 4px;
}

    .logo-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }