/* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--navy) 0%, #12265E 55%, #0A1F50 100%);
            color: var(--white);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                              linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(27,94,234,.25) 0%, transparent 70%);
            top: -150px;
            right: -100px;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-pretag {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 16px;
            letter-spacing: 1px;
        }

        .hero h1 {
            color: var(--white);
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
            margin-bottom: 24px;
            max-width: 800px;
        }

        .hero-body {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            max-width: 700px;
            margin-bottom: 36px;
        }

        .hero-ctas {
            display: flex;
            gap: 16px;
            margin-bottom: 48px;
            flex-wrap: wrap;
        }

        .hero-partners {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            align-items: center;
            margin-top: 40px;
        }

        .partner-pill {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 8px 16px;
            border-radius: 100px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 600;
            transition: all .22s;
        }

        .partner-pill:hover {
            background: rgba(255,255,255,.18);
            border-color: rgba(255,255,255,.35);
            transform: translateY(-2px);
        }

        /* Stats Strip */
        .stats-strip {
            background: linear-gradient(135deg, var(--orange) 0%, #FF8040 100%);
            color: var(--white);
            padding: 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            text-align: center;
        }

        .stat-item {
            padding: 32px 16px;
            border-right: 1px solid rgba(255,255,255,.2);
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-num {
            font-size: clamp(26px, 3vw, 40px);
            font-weight: 900;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 13px;
            font-weight: 600;
            color: rgba(255,255,255,.85);
            margin: 0;
        }

        /* Problem Section */
        .problem-items {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 36px;
        }

        .problem-card {
            background: var(--white);
            padding: 28px;
            border-radius: 14px;
            border: 1px solid var(--border);
            transition: all .28s;
            position: relative;
            overflow: hidden;
        }

        .problem-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,90,31,.03) 0%, rgba(255,90,31,.01) 100%);
            opacity: 0;
            transition: opacity .3s;
        }

        .problem-card:hover {
            transform: translateY(-5px);
            border-color: var(--orange);
            box-shadow: 0 16px 44px rgba(255, 90, 31, 0.12);
        }

        .problem-card:hover::before {
            opacity: 1;
        }

        .problem-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 16px;
            transition: transform .25s;
        }

        .problem-card:hover .problem-icon {
            transform: scale(1.12);
        }

        .problem-card h3 {
            color: var(--navy);
            margin-bottom: 10px;
            font-size: 17px;
        }

        .problem-card p {
            color: var(--muted);
            margin-bottom: 0;
            font-size: 14px;
            position: relative;
        }

        /* Feature Items */
        .feature-items {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 36px;
        }

        .feature-item {
            display: flex;
            gap: 16px;
            padding: 22px;
            border-radius: 14px;
            border: 1px solid var(--border);
            background: var(--white);
            transition: all .25s;
            position: relative;
        }

        .section-light .feature-item {
            background: var(--white);
        }

        .section-white .feature-item {
            background: var(--bg);
        }

        .feature-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(15,27,53,.1);
            border-color: transparent;
        }

        .feature-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: transform .25s;
        }

        .feature-item:hover .feature-icon {
            transform: scale(1.12);
        }

        /* Icon color variants */
        .ic-blue { background: #EEF3FF; color: #1B5EEA; }
        .ic-orange { background: #FFF0EB; color: #FF5A1F; }
        .ic-green { background: #F0FDF4; color: #16A34A; }
        .ic-purple { background: #F3E8FF; color: #7C3AED; }
        .ic-red { background: #FEF2F2; color: #DC2626; }
        .ic-teal { background: #F0FDFA; color: #0D9488; }

        .feature-content h3 {
            margin-top: 0;
            margin-bottom: 6px;
            font-size: 15px;
            font-weight: 800;
            color: var(--navy);
        }

        .feature-content p {
            margin-bottom: 0;
            color: var(--muted);
            font-size: 13.5px;
            line-height: 1.6;
        }

        /* Result Callout */
        .result-callout {
            background: linear-gradient(135deg, var(--blue-l) 0%, rgba(27, 94, 234, 0.05) 100%);
            border-left: 4px solid var(--blue);
            padding: 24px;
            border-radius: var(--r);
            margin-top: 32px;
            font-weight: 600;
            color: var(--navy);
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin-top: 32px;
        }

        .card {
            background: var(--white);
            padding: 24px;
            border-radius: var(--r);
            border: 1px solid var(--border);
            transition: all 0.3s;
            text-align: center;
        }

        .section-light .card {
            background: var(--white);
        }

        .section-white .card {
            background: var(--bg);
        }

        .card:hover {
            border-color: var(--orange);
            box-shadow: 0 8px 24px rgba(255, 90, 31, 0.08);
            transform: translateY(-4px);
        }

        .card h3 {
            color: var(--navy);
        }

        .card p {
            color: var(--muted);
            margin-bottom: 0;
            font-size: 15px;
        }

        /* Dashboard Feature */
        .dashboard-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 32px;
        }

        .dashboard-item {
            background: var(--white);
            padding: 26px;
            border-radius: 14px;
            border: 1px solid var(--border);
            transition: all .25s;
        }

        .section-light .dashboard-item {
            background: var(--white);
        }

        .dashboard-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(15,27,53,.1);
            border-color: transparent;
        }

        .dash-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin-bottom: 14px;
            transition: transform .25s;
        }

        .dashboard-item:hover .dash-icon {
            transform: scale(1.12);
        }

        .dashboard-item h4 {
            color: var(--navy);
            font-size: 15px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .dashboard-item p {
            color: var(--muted);
            margin-bottom: 0;
            font-size: 13.5px;
            line-height: 1.6;
        }

        /* Settlement Options */
        .settlement-options {
            background: var(--blue-l);
            padding: 24px;
            border-radius: var(--r);
            margin: 28px 0;
            text-align: center;
        }

        .settlement-options h3 {
            color: var(--navy);
            margin-bottom: 16px;
            margin-top: 0;
        }

        .settlement-pills {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .settlement-pill {
            background: var(--white);
            border: 2px solid var(--blue);
            color: var(--blue);
            padding: 12px 28px;
            border-radius: 100px;
            font-weight: 800;
            font-size: 14px;
            transition: all .22s;
            cursor: default;
        }

        .settlement-pill:hover {
            background: var(--blue);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(27,94,234,.2);
        }

        /* Ideal For Cards */
        .ideal-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 32px;
        }

        .ideal-card {
            background: var(--white);
            border: 1px solid var(--border);
            padding: 32px 24px;
            border-radius: 16px;
            text-align: center;
            transition: all .28s;
            position: relative;
            overflow: hidden;
        }

        .ideal-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(27,94,234,.03) 0%, rgba(255,90,31,.03) 100%);
            opacity: 0;
            transition: opacity .3s;
        }

        .ideal-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(15,27,53,.12);
            border-color: transparent;
        }

        .ideal-card:hover::before {
            opacity: 1;
        }

        .ideal-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 0 auto 14px;
            transition: transform .25s;
        }

        .ideal-card:hover .ideal-icon {
            transform: scale(1.12);
        }

        .ideal-card h3 {
            color: var(--navy);
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 8px;
            position: relative;
        }

        .ideal-card p {
            color: var(--muted);
            font-size: 13.5px;
            margin-bottom: 0;
            position: relative;
            line-height: 1.6;
        }

        /* FAQ */
        .faq-items {
            max-width: 800px;
            margin: 36px auto 0;
        }

        .faq-item {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--r);
            margin-bottom: 16px;
            overflow: hidden;
        }

        .section-light .faq-item {
            background: var(--white);
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 600;
            color: var(--navy);
            transition: background 0.2s;
        }

        .faq-item:hover .faq-question {
            background: var(--bg);
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
            color: var(--orange);
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: var(--muted);
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 20px 20px;
            max-height: 500px;
        }

        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, var(--orange) 0%, #FF8040 100%);
            color: var(--white);
            padding: 72px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: rgba(255,255,255,.08);
            top: -250px;
            left: -100px;
        }

        .cta-banner::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255,255,255,.06);
            bottom: -150px;
            right: -50px;
        }

        .cta-banner .container {
            position: relative;
            z-index: 2;
        }

        .cta-banner h2 {
            color: var(--white);
            margin-bottom: 12px;
        }

        .cta-banner p {
            color: rgba(255,255,255,.9);
            font-size: 18px;
            margin-bottom: 32px;
        }

        .cta-banner-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        
        
        .entry-content .btn {
            padding: 14px 28px;
            border-radius: 10px;
            font-weight: 800;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.25s;
            text-decoration: none;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-align: center;
        }

        .entry-content .btn-primary {
            background: var(--orange);
            color: var(--white);
            box-shadow: 0 4px 14px rgba(255,90,31,.3);
        }

        .entry-content .btn-primary:hover {
            background: var(--orange-h);
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(255,90,31,.45);
        }

        .entry-content .btn-outline {
            border: 1.5px solid var(--navy);
            color: var(--navy);
            background: transparent;
        }

        .entry-content .btn-outline:hover {
            background: var(--navy);
            color: var(--white);
        }

        .entry-content .btn-outline-white {
            border: 1.5px solid var(--white) !important;
            color: var(--white);
            background: transparent;
        }

        .entry-content .btn-outline-white:hover {
            background: rgba(255,255,255,.12);
            transform: translateY(-2px);
        }
        
        
        

.page-d2c-shipping-new .container {
    max-width: 100%;
}

.page-d2c-shipping-new .container div#content {
    padding-top: 0;
}

.page-d2c-shipping-new .container .col-lg-12 {
    padding: 0;
}

.page-d2c-shipping-new .container.hero-content {
    padding: 0 9rem;
}

.page-d2c-shipping-new .container section.section-light {
    padding: 80px 9rem;
    background: #f6f8ff;
}

.page-d2c-shipping-new  section.section-white {
    padding: 80px 9rem;
}

.page-d2c-shipping-new .container div#content {
    padding-bottom: 0;
}

.page-d2c-shipping-new footer .container {
    max-width: 1430px;
}