/* ============================================
   SHIPPING CALCULATOR PAGE STYLES
   ============================================ */

/* Hero Section */
.calculator-hero-section {
    padding: 100px 0 30px;
    min-height: auto;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.shape.shape-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.shape.shape-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

.calculator-hero-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-badge-wrapper {
    animation: fadeInUp 0.6s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 3;
    margin-bottom: 1rem;
}

.hero-badge span {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.hero-badge .bi-star-fill {
    color: #fbbf24;
}

.hero-content-center {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease;
    margin-bottom: 1rem !important;
    position: relative;
    z-index: 2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 20px;
    display: block;
    width: 100%;
    color: #ffffff !important;
    visibility: visible;
    opacity: 1;
}

.trust-badges {
    animation: fadeInUp 1s ease;
    margin-bottom: 1.5rem !important;
    position: relative;
    z-index: 2;
    clear: both;
}

.trust-badge-item {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.trust-badge-item i {
    font-size: 22px;
}

.trust-badge-item span {
    font-weight: 600;
    font-size: 15px;
}

.hero-stats {
    animation: fadeInUp 1.2s ease;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
    clear: both;
}

.stat-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 150px;
    flex: 0 0 auto;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    opacity: 0.95;
    font-weight: 500;
}

.hero-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    z-index: 1;
}

/* Calculator Form Section */
.calculator-form-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.calculator-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    padding: 30px;
    position: relative;
    border: 1px solid #e5e7eb;
}

.calculator-assistant {
    position: absolute;
    top: -20px;
    right: 30px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    z-index: 10;
    animation: bounce 2s infinite;
}

.calculator-form-title {
    color: #1f2937;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px !important;
}

.calculator-form-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.form-label-icon {
    font-size: 18px;
}

.form-label-text {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.form-control-lg-custom {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.input-icon .bi-check-circle-fill {
    display: none;
    color: #10b981;
}

.form-help-text {
    font-size: 12px;
    margin-top: 6px !important;
}

.error-message {
    font-size: 12px;
    display: none;
    margin-top: 4px !important;
}

.calculate-btn {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border: none;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}

.btn-loader {
    display: none;
}

/* Live Estimate Card */
.live-estimate-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    border: 2px solid #bae6fd;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    position: sticky;
    top: 80px;
}

.live-indicator {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    margin-bottom: 12px !important;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

.live-estimate-title {
    color: #1e40af;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px !important;
}

.live-estimate-subtitle {
    font-size: 14px;
}

.estimate-placeholder-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.estimate-placeholder-icon i {
    font-size: 40px;
    color: #3b82f6;
}

.estimate-placeholder-text {
    font-size: 15px;
    font-weight: 500;
}

.estimate-placeholder-subtext {
    font-size: 13px;
}

.trust-indicators {
    border-top: 2px solid #bae6fd;
    margin-top: 16px !important;
    padding-top: 16px !important;
}

.trust-item-icon {
    width: 20px;
    height: 20px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-item-icon i {
    font-size: 11px;
}

.trust-item-text {
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}

/* Features Section */
.calculator-features-section {
    padding: 100px 0;
    background: #ffffff;
}

.features-section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: -0.5px;
}

.features-section-subtitle {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.feature-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon i {
    font-size: 32px;
}

.feature-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    position: relative;
    z-index: 1;
}

.feature-card-text {
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Feature Card Variants */
.feature-card .card-bg.card-bg-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.feature-card .card-bg.card-bg-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.feature-card .card-bg.card-bg-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
}

.feature-card .card-bg.card-bg-yellow {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(217, 119, 6, 0.05) 100%);
}

.feature-card .card-bg.card-bg-red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
}

.feature-card .card-bg.card-bg-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(8, 145, 178, 0.05) 100%);
}

.feature-icon.feature-icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.feature-icon.feature-icon-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.feature-icon.feature-icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.feature-icon.feature-icon-yellow {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.feature-icon.feature-icon-red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.feature-icon.feature-icon-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

/* Assistant Suggestions Section */
.assistant-suggestions-section {
    padding: 10px 0;
  
    position: relative;
    overflow: hidden;
}

.assistant-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
}

.assistant-card:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.assistant-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    position: relative;
    flex-shrink: 0;
}

.assistant-avatar i {
    font-size: 28px;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #2563eb;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
    opacity: 0.6;
}

.assistant-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px !important;
}

.assistant-subtitle {
    font-size: 14px;
    color: #64748b;
}

.suggestions-list {
    margin-top: 24px;
}

.suggestion-item {
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 14px;
    padding: 20px !important;
    margin-bottom: 16px !important;
    border: 1px solid transparent;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.suggestion-item:last-child {
    margin-bottom: 0 !important;
}

.suggestion-item.suggestion-yellow {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-left: 4px solid #f59e0b;
    border-color: #fde68a;
}

.suggestion-item.suggestion-blue {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid #3b82f6;
    border-color: #bfdbfe;
}

.suggestion-item.suggestion-purple {
    background: linear-gradient(135deg, #faf5ff 0%, #e9d5ff 100%);
    border-left: 4px solid #8b5cf6;
    border-color: #ddd6fe;
}

.suggestion-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.suggestion-icon.suggestion-icon-yellow {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.suggestion-icon.suggestion-icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.suggestion-icon.suggestion-icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.suggestion-icon i {
    font-size: 20px;
}

.suggestion-title {
    color: #1f2937;
    font-size: 16px;
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.suggestion-text {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 0;
}

/* CTA Section */
.calculator-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.shape.shape-3 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.shape.shape-4 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
}

.calculator-cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-description {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-btn {
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.cta-btn.btn-light {
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-btn.btn-outline-light {
    border: 3px solid white;
    background: transparent;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Form Rows with Flexbox */
.form-row-1,
.form-row-3 {
    display: flex;
    gap: 16px;
    width: 100%;
}

.form-row-1 .form-group,
.form-row-3 .form-group {
    flex: 1;
    min-width: 0;
}

.form-row-2 {
    width: 100%;
}

.form-row-button {
    width: 100%;
    margin-top: 8px;
}

/* Responsive for form rows */
@media (max-width: 768px) {
    .form-row-1,
    .form-row-3 {
        flex-direction: column;
        gap: 0;
    }
    
    .form-row-1 .form-group,
    .form-row-3 .form-group {
        margin-bottom: 16px;
    }
}

/* Form Enhancements */
.calculator-form .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
    transform: translateY(-1px);
}

.calculator-form .form-control:valid {
    border-color: #10b981;
}

.calculate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5) !important;
}

.calculate-btn:active {
    transform: translateY(-1px);
}

/* Feature Cards Hover */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
    border-color: #2563eb !important;
}

.feature-card:hover .card-bg {
    opacity: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Trust Badge Hover */
.trust-badge-item:hover {
    background: rgba(255,255,255,0.25) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Suggestion Items Hover */
.suggestion-item:hover {
    transform: translateX(4px) translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-color: currentColor;
}

.suggestion-item.suggestion-yellow:hover {
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
}

.suggestion-item.suggestion-blue:hover {
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.suggestion-item.suggestion-purple:hover {
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.25);
}

/* CTA Buttons */
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3) !important;
}

/* Estimate Results */
.estimate-result-card {
    background: white;
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 14px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease;
}

.estimate-result-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
    transform: translateX(5px);
}

.estimate-result-card.best-value {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .calculator-hero-section {
        padding: 20px 0 25px !important;
        min-height: auto !important;
    }
    
    .hero-title {
        font-size: 32px !important;
        line-height: 1.4 !important;
        margin-bottom: 2rem !important;
        padding: 0 15px !important;
        display: block !important;
        width: 100% !important;
    }
    
    .hero-content-center {
        padding: 0 10px !important;
    }
    
    .hero-badge {
        padding: 8px 16px !important;
        font-size: 12px !important;
    }
    
    .calculator-card {
        padding: 24px 16px !important;
    }
    
    .calculator-form-title {
        font-size: 24px !important;
    }
    
    .calculator-form-description {
        font-size: 14px !important;
    }
    
    .calculator-assistant {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        margin-bottom: 20px;
        display: inline-block;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 12px !important;
        margin-bottom: 2rem !important;
    }
    
    .trust-badge-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px !important;
        margin: 0 auto;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px !important;
        align-items: center;
    }
    
    .stat-box {
        width: 100%;
        max-width: 280px;
        padding: 24px 30px !important;
    }
    
    .stat-number {
        font-size: 36px !important;
    }
    
    .stat-label {
        font-size: 14px !important;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
    
    .assistant-card {
        padding: 24px 16px !important;
    }
    
    .assistant-avatar {
        width: 56px !important;
        height: 56px !important;
    }
    
    .assistant-avatar i {
        font-size: 24px !important;
    }
    
    .assistant-title {
        font-size: 20px !important;
    }
    
    .assistant-subtitle {
        font-size: 13px !important;
    }
    
    .suggestion-item {
        padding: 16px !important;
        gap: 12px !important;
    }
    
    .suggestion-icon {
        width: 36px !important;
        height: 36px !important;
    }
    
    .suggestion-icon i {
        font-size: 18px !important;
    }
    
    .suggestion-title {
        font-size: 15px !important;
    }
    
    .suggestion-text {
        font-size: 13px !important;
    }
    
    .calculator-cta-section h2 {
        font-size: 32px !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px !important;
        padding: 0 15px !important;
        display: block !important;
        width: 100% !important;
        line-height: 1.5 !important;
    }
    
    .hero-content-center {
        padding: 0 10px !important;
    }
    
    .trust-badge-item {
        padding: 10px 18px !important;
        font-size: 14px !important;
    }
    
    .stat-box {
        padding: 20px 24px !important;
    }
    
    .stat-number {
        font-size: 32px !important;
    }
}

/* ============================================
   LOGISTICS ENCYCLOPEDIA PAGE STYLES
   ============================================ */

/* Hero Section */
.encyclopedia-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.encyclopedia-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.encyclopedia-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.encyclopedia-hero-badge i {
    font-size: 18px;
}

.encyclopedia-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.encyclopedia-hero-tagline {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    line-height: 1.4;
}

.encyclopedia-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Intro Section */
.encyclopedia-intro-section {
    padding: 80px 0;
    background: #ffffff;
}

.encyclopedia-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.3;
}

.encyclopedia-section-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
}

.encyclopedia-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
}

.encyclopedia-highlight-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 16px 24px;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    margin-top: 20px;
}

.encyclopedia-highlight-box i {
    font-size: 24px;
    color: #f59e0b;
}

.encyclopedia-highlight-box span {
    font-size: 16px;
    font-weight: 600;
    color: #92400e;
}

.encyclopedia-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.encyclopedia-main-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Topics Section */
.encyclopedia-topics-section {
    padding: 80px 0;
    background: #f8fafc;
}

.encyclopedia-topic-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.encyclopedia-topic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.encyclopedia-topic-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 36px;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.encyclopedia-icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.encyclopedia-icon-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.encyclopedia-icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.encyclopedia-icon-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.encyclopedia-icon-red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.encyclopedia-icon-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.encyclopedia-topic-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.encyclopedia-topic-text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Steps Section */
.encyclopedia-steps-section {
    padding: 80px 0;
    background: #ffffff;
}

.encyclopedia-step-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.encyclopedia-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.encyclopedia-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.encyclopedia-step-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.encyclopedia-step-text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section */
.encyclopedia-benefits-section {
    padding: 80px 0;
    background: #f8fafc;
}

.encyclopedia-benefit-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.encyclopedia-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.encyclopedia-benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.encyclopedia-benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.encyclopedia-benefit-text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Audience Section */
.encyclopedia-audience-section {
    padding: 80px 0;
    background: #ffffff;
}

.encyclopedia-audience-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.encyclopedia-audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.encyclopedia-audience-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.encyclopedia-audience-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.encyclopedia-audience-text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.encyclopedia-stats-section {
    padding: 80px 0;
    background: #f8fafc;
}

.encyclopedia-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.encyclopedia-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.6;
}

.encyclopedia-feature-list li i {
    color: #10b981;
    font-size: 20px;
    flex-shrink: 0;
}

.encyclopedia-stats-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
}

.encyclopedia-stats-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
    text-align: center;
}

.encyclopedia-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.encyclopedia-stat-item {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.encyclopedia-stat-item:hover {
    background: #e0f2fe;
    transform: translateY(-3px);
}

.encyclopedia-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 8px;
    line-height: 1;
}

.encyclopedia-stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.4;
}

/* CTA Section */
.encyclopedia-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.encyclopedia-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.encyclopedia-cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.encyclopedia-cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.encyclopedia-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.encyclopedia-btn-primary,
.encyclopedia-btn-secondary {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.encyclopedia-btn-primary {
    background: #ffffff;
    color: #2563eb;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.encyclopedia-btn-primary:hover {
    background: #f3f4f6;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #2563eb;
}

.encyclopedia-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 3px solid #ffffff;
}

.encyclopedia-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: #ffffff;
}

/* Responsive Styles for Encyclopedia */
@media (max-width: 992px) {
    .encyclopedia-hero-title {
        font-size: 36px;
    }
    
    .encyclopedia-hero-tagline {
        font-size: 20px;
    }
    
    .encyclopedia-hero-subtitle {
        font-size: 16px;
    }
    
    .encyclopedia-section-title {
        font-size: 28px;
    }
    
    .encyclopedia-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .encyclopedia-hero-section {
        padding: 80px 0 60px;
    }
    
    .encyclopedia-hero-title {
        font-size: 32px;
    }
    
    .encyclopedia-hero-tagline {
        font-size: 18px;
    }
    
    .encyclopedia-hero-subtitle {
        font-size: 15px;
    }
    
    .encyclopedia-intro-section,
    .encyclopedia-topics-section,
    .encyclopedia-steps-section,
    .encyclopedia-benefits-section,
    .encyclopedia-audience-section,
    .encyclopedia-stats-section {
        padding: 60px 0;
    }
    
    .encyclopedia-section-title {
        font-size: 24px;
    }
    
    .encyclopedia-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .encyclopedia-cta-section {
        padding: 80px 0;
    }
    
    .encyclopedia-cta-title {
        font-size: 32px;
    }
    
    .encyclopedia-cta-subtitle {
        font-size: 18px;
    }
    
    .encyclopedia-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .encyclopedia-btn-primary,
    .encyclopedia-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .encyclopedia-hero-title {
        font-size: 28px;
    }
    
    .encyclopedia-hero-tagline {
        font-size: 16px;
    }
    
    .encyclopedia-hero-subtitle {
        font-size: 14px;
    }
    
    .encyclopedia-topic-card,
    .encyclopedia-step-card,
    .encyclopedia-benefit-card,
    .encyclopedia-audience-card {
        padding: 24px;
    }
    
    .encyclopedia-cta-title {
        font-size: 28px;
    }
    
    .encyclopedia-cta-subtitle {
        font-size: 16px;
    }
}

/* ============================================
   VIDEOS & PODCAST PAGE STYLES - NEW DESIGN
   ============================================ */

/* Theme Colors */
:root {
    --vp-primary: #2563eb;
    --vp-primary-dark: #1e40af;
    --vp-accent: #ff6b35;
    --vp-accent-dark: #e55a2b;
    --vp-text: #1e293b;
    --vp-text-light: #64748b;
    --vp-bg: #f8fafc;
    --vp-card-bg: #ffffff;
    --vp-border: #e2e8f0;
}

/* Hero Section */
.vp-hero-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.vp-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.vp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.vp-hero-badge i {
    font-size: 18px;
}

.vp-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.vp-hero-tagline {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    line-height: 1.4;
}

.vp-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured Content Section */
.vp-featured-section {
    padding: 80px 0;
    background: #ffffff;
}

.vp-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.vp-section-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
}

.vp-featured-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vp-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.vp-featured-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #f3f4f6;
}

.vp-thumbnail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vp-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(37, 99, 235, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

.vp-featured-card:hover .vp-play-overlay {
    opacity: 1;
}

.vp-play-overlay:hover {
    background: rgba(37, 99, 235, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.vp-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.vp-featured-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vp-category {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    width: fit-content;
}

.vp-featured-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.4;
}

.vp-featured-text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Videos Section */
.vp-videos-section {
    padding: 80px 0;
    background: #f8fafc;
}

.vp-video-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.vp-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: #2563eb;
}

.vp-video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: #f3f4f6;
}

.vp-video-content {
    padding: 16px;
}

.vp-video-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.4;
}

.vp-video-meta {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.vp-view-all-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #2563eb;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #2563eb;
}

.vp-view-all-btn:hover {
    background: #1e40af;
    border-color: #1e40af;
    transform: translateY(-2px);
    color: white;
}

/* Podcasts Section */
.vp-podcasts-section {
    padding: 80px 0;
    background: #ffffff;
}

.vp-podcast-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    display: flex;
    gap: 20px;
    height: 100%;
}

.vp-podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #2563eb;
}

.vp-podcast-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.vp-podcast-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vp-podcast-category {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
    width: fit-content;
}

.vp-podcast-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    line-height: 1.4;
}

.vp-podcast-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
}

.vp-podcast-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 12px;
    color: #9ca3af;
}

.vp-podcast-duration,
.vp-podcast-date {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Subscribe Section */
.vp-subscribe-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.vp-subscribe-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.vp-subscribe-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.vp-subscribe-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.vp-subscribe-form {
    max-width: 500px;
    margin: 0 auto 40px;
}

.vp-form-group {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vp-form-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    background: transparent;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    outline: none;
}

.vp-form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.vp-subscribe-btn {
    padding: 14px 28px;
    background: #ffffff;
    color: #2563eb;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vp-subscribe-btn:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.vp-subscribe-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.vp-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
}

.vp-feature-item i {
    color: #10b981;
    font-size: 18px;
}

/* Section Intro */
.vp-section-intro {
    margin-bottom: 30px;
    padding: 20px 0;
}

.vp-section-intro-text {
    font-size: 15px;
    color: var(--vp-text-light);
    line-height: 1.7;
    margin: 0;
    max-width: 90%;
}

/* Privacy Note */
.vp-privacy-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    font-style: italic;
}

/* Modal Info */
.vp-modal-info {
    padding: 25px;
    background: #1a1a1a;
    color: white;
}

.vp-modal-info-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.vp-modal-info-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* Collaborate Section */
.vp-collaborate-section {
    padding: 80px 0;
    background: var(--vp-bg);
}

.vp-collaborate-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--vp-text);
    margin-bottom: 16px;
}

.vp-collaborate-subtitle {
    font-size: 16px;
    color: var(--vp-text-light);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.vp-collaborate-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--vp-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vp-collaborate-btn:hover {
    background: var(--vp-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    color: white;
}

/* Card Duration */
.vp-card-duration {
    font-size: 11px;
    color: var(--vp-text-light);
    font-weight: 500;
    margin-left: 10px;
}

.vp-sidebar-post-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vp-sidebar-post-duration {
    font-size: 10px;
    color: var(--vp-text-light);
    font-weight: 500;
}

/* Video Modal */
.vp-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vp-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.vp-modal-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    z-index: 10001;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.vp-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.vp-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.vp-modal-content {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
}

.vp-modal-content iframe,
.vp-modal-content video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Styles for Videos & Podcast Page */
@media (max-width: 992px) {
    .vp-hero-title {
        font-size: 36px;
    }
    
    .vp-hero-tagline {
        font-size: 20px;
    }
    
    .vp-hero-subtitle {
        font-size: 16px;
    }
    
    .vp-section-title {
        font-size: 28px;
    }
    
    .vp-subscribe-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .vp-hero-section {
        padding: 80px 0 60px;
    }
    
    .vp-hero-title {
        font-size: 32px;
    }
    
    .vp-hero-tagline {
        font-size: 18px;
    }
    
    .vp-hero-subtitle {
        font-size: 15px;
    }
    
    .vp-featured-section,
    .vp-videos-section,
    .vp-podcasts-section {
        padding: 60px 0;
    }
    
    .vp-section-title {
        font-size: 24px;
    }
    
    .vp-subscribe-section {
        padding: 80px 0;
    }
    
    .vp-subscribe-title {
        font-size: 28px;
    }
    
    .vp-subscribe-subtitle {
        font-size: 18px;
    }
    
    .vp-form-group {
        flex-direction: column;
    }
    
    .vp-subscribe-btn {
        width: 100%;
        justify-content: center;
    }
    
    .vp-subscribe-features {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .vp-hero-title {
        font-size: 28px;
    }
    
    .vp-hero-tagline {
        font-size: 16px;
    }
    
    .vp-featured-card,
    .vp-podcast-card {
        padding: 20px;
    }
    
    .vp-subscribe-title {
        font-size: 24px;
    }
    
    .vp-subscribe-subtitle {
        font-size: 16px;
    }
}

/* ============================================
   ALL FEATURES PAGE STYLES
   ============================================ */

/* Page Hero Section */
.page-hero-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    font-weight: 500;
}

.page-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Page Content Section */
.page-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.page-content-section.bg-light {
    background: #f8fafc;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.section-text {
    font-size: 16px;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Feature Category Cards */
.feature-category-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-category-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 28px;
}

.category-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.category-count {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.category-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.category-features-list li {
    font-size: 14px;
    color: #374151;
    padding: 6px 0;
    border-bottom: 1px solid #f3f4f6;
}

.category-features-list li:last-child {
    border-bottom: none;
}

/* Feature Cards (Enhanced) */
.feature-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 28px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.feature-text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 12px;
}

.feature-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Tech Card */
.tech-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.tech-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

/* Security Badge Card */
.security-badge-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.security-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    min-width: 120px;
}

.security-badge-item i {
    font-size: 32px;
    color: #2563eb;
}

.security-badge-item span {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

/* Plan Feature Cards */
.plan-feature-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.plan-feature-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
}

.plan-feature-card.featured-plan {
    border-color: #2563eb;
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2563eb;
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features-list li {
    font-size: 15px;
    color: #374151;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features-list li i {
    font-size: 18px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 16px;
    color: #374151;
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* ============================================
   ALL FEATURES PAGE STYLES
   ============================================ */

/* All Features Hero Section */
.all-features-hero-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.all-features-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.all-features-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.all-features-hero-section .container {
    position: relative;
    z-index: 2;
}

.all-features-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.all-features-hero-badge i {
    font-size: 18px;
}

.all-features-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.all-features-hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    line-height: 1.4;
}

.all-features-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.all-features-hero-description p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* All Features CTA Section */
.all-features-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.all-features-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.all-features-cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.all-features-cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.all-features-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.all-features-cta-btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.all-features-cta-btn.btn-light {
    background: #ffffff;
    color: #2563eb;
    border: 2px solid #ffffff;
}

.all-features-cta-btn.btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.all-features-cta-btn.btn-outline-light {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.all-features-cta-btn.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* All Features Image Wrapper */
.all-features-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.all-features-section-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.all-features-image-wrapper:hover .all-features-section-image {
    transform: scale(1.05);
}

/* All Features Banner Section */
.all-features-banner-section {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: #ffffff;
    text-align: center;
}

.all-features-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.all-features-banner-section .container {
    position: relative;
    z-index: 2;
}

.all-features-banner-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.all-features-banner-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles for All Features */
@media (max-width: 768px) {
    .all-features-hero-section {
        min-height: 400px;
        padding: 80px 0 40px;
    }
    
    .all-features-hero-title {
        font-size: 36px;
    }
    
    .all-features-hero-subtitle {
        font-size: 20px;
    }
    
    .all-features-hero-description {
        font-size: 16px;
    }
    
    .all-features-cta-title {
        font-size: 32px;
    }
    
    .all-features-cta-subtitle {
        font-size: 18px;
    }
    
    .all-features-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .all-features-cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .all-features-banner-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .all-features-banner-title {
        font-size: 32px;
    }
    
    .all-features-banner-subtitle {
        font-size: 18px;
    }
    
    .all-features-section-image {
        margin-bottom: 20px;
    }
}

/* ============================================
   SERVICEABLE PINCODES PAGE STYLES
   ============================================ */

/* Pincodes Hero Section */
.pincodes-hero-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.pincodes-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.pincodes-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

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

.pincodes-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.pincodes-hero-badge i {
    font-size: 18px;
}

.pincodes-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pincodes-hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    line-height: 1.4;
}

.pincodes-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.pincodes-hero-description p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Pincodes Image Wrapper */
.pincodes-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.pincodes-section-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pincodes-image-wrapper:hover .pincodes-section-image {
    transform: scale(1.05);
}

/* Pincodes CTA Section */
.pincodes-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pincodes-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.pincodes-cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pincodes-cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pincodes-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.pincodes-cta-btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.pincodes-cta-btn.btn-light {
    background: #ffffff;
    color: #2563eb;
    border: 2px solid #ffffff;
}

.pincodes-cta-btn.btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pincodes-cta-btn.btn-outline-light {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.pincodes-cta-btn.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Styles for Pincodes */
@media (max-width: 768px) {
    .pincodes-hero-section {
        min-height: 400px;
        padding: 80px 0 40px;
    }
    
    .pincodes-hero-title {
        font-size: 36px;
    }
    
    .pincodes-hero-subtitle {
        font-size: 20px;
    }
    
    .pincodes-hero-description {
        font-size: 16px;
    }
    
    .pincodes-cta-title {
        font-size: 32px;
    }
    
    .pincodes-cta-subtitle {
        font-size: 18px;
    }
    
    .pincodes-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pincodes-cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .pincodes-section-image {
        margin-bottom: 20px;
    }
}

/* ============================================
   MULTIPLE PICKUP LOCATIONS PAGE STYLES
   ============================================ */

/* Pickup Hero Section */
.pickup-hero-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.pickup-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.pickup-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

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

.pickup-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.pickup-hero-badge i {
    font-size: 18px;
}

.pickup-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pickup-hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    line-height: 1.4;
}

.pickup-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.pickup-hero-description p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Pickup Image Wrapper */
.pickup-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.pickup-section-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pickup-image-wrapper:hover .pickup-section-image {
    transform: scale(1.05);
}

/* Pickup CTA Section */
.pickup-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pickup-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.pickup-cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pickup-cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pickup-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.pickup-cta-btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.pickup-cta-btn.btn-light {
    background: #ffffff;
    color: #2563eb;
    border: 2px solid #ffffff;
}

.pickup-cta-btn.btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pickup-cta-btn.btn-outline-light {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.pickup-cta-btn.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Styles for Pickup */
@media (max-width: 768px) {
    .pickup-hero-section {
        min-height: 400px;
        padding: 80px 0 40px;
    }
    
    .pickup-hero-title {
        font-size: 36px;
    }
    
    .pickup-hero-subtitle {
        font-size: 20px;
    }
    
    .pickup-hero-description {
        font-size: 16px;
    }
    
    .pickup-cta-title {
        font-size: 32px;
    }
    
    .pickup-cta-subtitle {
        font-size: 18px;
    }
    
    .pickup-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pickup-cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .pickup-section-image {
        margin-bottom: 20px;
    }
}

/* ============================================
   MULTIPLE PICKUP LOCATIONS - MODERN LAYOUT
   ============================================ */

/* Modern Hero Section */
.pickup-hero-section-modern {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.pickup-hero-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.pickup-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.pickup-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 20s infinite ease-in-out;
}

.pickup-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.pickup-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.pickup-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.pickup-hero-section-modern .container {
    position: relative;
    z-index: 2;
}

.pickup-hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pickup-hero-badge-modern i {
    font-size: 18px;
}

.pickup-hero-title-modern {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.pickup-hero-subtitle-modern {
    font-size: 26px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    line-height: 1.4;
}

.pickup-hero-description-modern {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.pickup-hero-description-modern p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.pickup-hero-stats-modern {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pickup-stat-item-modern {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pickup-stat-number-modern {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.pickup-stat-label-modern {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pickup-stat-divider-modern {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.pickup-hero-image-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pickup-hero-image-modern img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.pickup-hero-image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* Section Badge */
.pickup-section-badge-modern {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* Section Titles */
.pickup-section-title-modern {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.pickup-section-subtitle-modern {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.pickup-section-text-modern {
    font-size: 17px;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 20px;
}

.pickup-section-text-modern p {
    margin-bottom: 16px;
}

/* Overview Section */
.pickup-overview-section-modern {
    padding: 100px 0;
    background: #ffffff;
}

.pickup-feature-highlights-modern {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.pickup-highlight-item-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-weight: 600;
    font-size: 15px;
}

.pickup-highlight-item-modern i {
    font-size: 18px;
}

.pickup-overview-card-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
}

.pickup-overview-card-modern:hover {
    border-color: #2563eb;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    transform: translateY(-5px);
}

.pickup-card-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: 32px;
}

.pickup-card-title-modern {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.pickup-card-text-modern {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 24px;
}

.pickup-card-features-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pickup-card-feature-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    font-size: 15px;
}

.pickup-card-feature-modern i {
    color: #2563eb;
    font-size: 18px;
}

/* Features Section */
.pickup-features-section-modern {
    padding: 100px 0;
    background: #f8fafc;
}

.pickup-feature-card-modern {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.pickup-feature-card-modern:hover {
    border-color: #2563eb;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    transform: translateY(-8px);
}

.pickup-feature-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: 32px;
}

.pickup-feature-title-modern {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.pickup-feature-text-modern {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* How It Works Section */
.pickup-how-it-works-section-modern {
    padding: 100px 0;
    background: #ffffff;
}

.pickup-step-card-modern {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.pickup-step-card-modern:hover {
    border-color: #2563eb;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    transform: translateY(-8px);
}

.pickup-step-number-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.pickup-step-title-modern {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.pickup-step-text-modern {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section */
.pickup-benefits-section-modern {
    padding: 100px 0;
    background: #f8fafc;
}

.pickup-benefit-card-modern {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pickup-benefit-card-modern:hover {
    border-color: #2563eb;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    transform: translateY(-8px);
}

.pickup-benefit-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: 32px;
}

.pickup-benefit-title-modern {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.pickup-benefit-text-modern {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* Use Cases Section */
.pickup-use-cases-section-modern {
    padding: 100px 0;
    background: #ffffff;
}

.pickup-use-case-card-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.pickup-use-case-card-modern:hover {
    border-color: #2563eb;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    transform: translateY(-8px);
}

.pickup-use-case-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: 32px;
}

.pickup-use-case-title-modern {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.pickup-use-case-text-modern {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Technical Section */
.pickup-technical-section-modern {
    padding: 100px 0;
    background: #f8fafc;
}

.pickup-tech-features-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.pickup-tech-feature-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    font-size: 16px;
}

.pickup-tech-feature-modern i {
    color: #10b981;
    font-size: 20px;
}

.pickup-stats-card-modern {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pickup-stats-title-modern {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
    text-align: center;
}

.pickup-stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pickup-stat-box-modern {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.pickup-stat-box-modern:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.pickup-stat-number-modern {
    font-size: 32px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 8px;
    line-height: 1;
}

.pickup-stat-label-modern {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section */
.pickup-cta-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pickup-cta-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.pickup-cta-section-modern .container {
    position: relative;
    z-index: 2;
}

.pickup-cta-title-modern {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.pickup-cta-subtitle-modern {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pickup-cta-buttons-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.pickup-cta-btn-modern {
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
}

.pickup-cta-btn-primary-modern {
    background: #ffffff;
    color: #2563eb;
    border-color: #ffffff;
}

.pickup-cta-btn-primary-modern:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.pickup-cta-btn-secondary-modern {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
}

.pickup-cta-btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive Styles for Modern Layout */
@media (max-width: 768px) {
    .pickup-hero-section-modern {
        min-height: 500px;
        padding: 100px 0 60px;
    }
    
    .pickup-hero-title-modern {
        font-size: 36px;
    }
    
    .pickup-hero-subtitle-modern {
        font-size: 20px;
    }
    
    .pickup-hero-description-modern {
        font-size: 16px;
    }
    
    .pickup-hero-stats-modern {
        gap: 20px;
    }
    
    .pickup-stat-number-modern {
        font-size: 24px;
    }
    
    .pickup-section-title-modern {
        font-size: 32px;
    }
    
    .pickup-cta-title-modern {
        font-size: 32px;
    }
    
    .pickup-cta-subtitle-modern {
        font-size: 18px;
    }
    
    .pickup-cta-buttons-modern {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pickup-cta-btn-modern {
        width: 100%;
        max-width: 300px;
    }
    
    .pickup-stats-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .pickup-feature-highlights-modern {
        flex-direction: column;
        gap: 16px;
    }
}

/* ============================================
   EMAIL & SMS NOTIFICATIONS - MODERN LAYOUT
   ============================================ */

/* Modern Hero Section */
.notification-hero-section-modern {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.notification-hero-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.notification-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.notification-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: notificationFloat 20s infinite ease-in-out;
}

.notification-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.notification-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.notification-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes notificationFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.notification-hero-section-modern .container {
    position: relative;
    z-index: 2;
}

.notification-hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.notification-hero-badge-modern i {
    font-size: 18px;
}

.notification-hero-title-modern {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.notification-hero-subtitle-modern {
    font-size: 26px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    line-height: 1.4;
}

.notification-hero-description-modern {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.notification-hero-description-modern p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.notification-hero-stats-modern {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.notification-stat-item-modern {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notification-stat-number-modern {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.notification-stat-label-modern {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notification-stat-divider-modern {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.notification-hero-image-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.notification-hero-image-modern img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.notification-hero-image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: notificationPulse 3s infinite ease-in-out;
}

@keyframes notificationPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* Section Badge */
.notification-section-badge-modern {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    color: #ffffff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* Section Titles */
.notification-section-title-modern {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.notification-section-subtitle-modern {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.notification-section-text-modern {
    font-size: 17px;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 20px;
}

.notification-section-text-modern p {
    margin-bottom: 16px;
}

/* Overview Section */
.notification-overview-section-modern {
    padding: 100px 0;
    background: #ffffff;
}

.notification-feature-highlights-modern {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.notification-highlight-item-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--vp-primary);
    font-weight: 600;
    font-size: 15px;
}

.notification-highlight-item-modern i {
    font-size: 18px;
}

.notification-overview-card-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
}

.notification-overview-card-modern:hover {
    border-color: var(--vp-primary);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    transform: translateY(-5px);
}

.notification-card-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: 32px;
}

.notification-card-title-modern {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.notification-card-text-modern {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 24px;
}

.notification-card-features-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notification-card-feature-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    font-size: 15px;
}

.notification-card-feature-modern i {
    color: #6366f1;
    font-size: 18px;
}

/* Features Section */
.notification-features-section-modern {
    padding: 100px 0;
    background: #f8fafc;
}

.notification-feature-card-modern {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.notification-feature-card-modern:hover {
    border-color: #6366f1;
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
    transform: translateY(-8px);
}

.notification-feature-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: 32px;
}

.notification-feature-title-modern {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.notification-feature-text-modern {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Milestones Section */
.notification-milestones-section-modern {
    padding: 100px 0;
    background: #ffffff;
}

.notification-milestone-card-modern {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.notification-milestone-card-modern:hover {
    border-color: #6366f1;
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
    transform: translateY(-8px);
}

.notification-milestone-number-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.notification-milestone-icon-modern {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #6366f1;
    font-size: 28px;
}

.notification-milestone-title-modern {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.notification-milestone-text-modern {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section */
.notification-benefits-section-modern {
    padding: 100px 0;
    background: #f8fafc;
}

.notification-benefit-card-modern {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.notification-benefit-card-modern:hover {
    border-color: #6366f1;
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
    transform: translateY(-8px);
}

.notification-benefit-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: 32px;
}

.notification-benefit-title-modern {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.notification-benefit-text-modern {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* Use Cases Section */
.notification-use-cases-section-modern {
    padding: 100px 0;
    background: #ffffff;
}

.notification-use-case-card-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.notification-use-case-card-modern:hover {
    border-color: #6366f1;
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
    transform: translateY(-8px);
}

.notification-use-case-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: 32px;
}

.notification-use-case-title-modern {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.notification-use-case-text-modern {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Technical Section */
.notification-technical-section-modern {
    padding: 100px 0;
    background: #f8fafc;
}

.notification-tech-features-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.notification-tech-feature-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    font-size: 16px;
}

.notification-tech-feature-modern i {
    color: #10b981;
    font-size: 20px;
}

.notification-stats-card-modern {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.notification-stats-title-modern {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
    text-align: center;
}

.notification-stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.notification-stat-box-modern {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.notification-stat-box-modern:hover {
    border-color: #6366f1;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
}

.notification-stat-number-modern {
    font-size: 32px;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 8px;
    line-height: 1;
}

.notification-stat-label-modern {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section */
.notification-cta-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.notification-cta-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.notification-cta-section-modern .container {
    position: relative;
    z-index: 2;
}

.notification-cta-title-modern {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.notification-cta-subtitle-modern {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.notification-cta-buttons-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.notification-cta-btn-modern {
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
}

.notification-cta-btn-primary-modern {
    background: #ffffff;
    color: #6366f1;
    border-color: #ffffff;
}

.notification-cta-btn-primary-modern:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.notification-cta-btn-secondary-modern {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
}

.notification-cta-btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive Styles for Notification Layout */
@media (max-width: 768px) {
    .notification-hero-section-modern {
        min-height: 500px;
        padding: 100px 0 60px;
    }
    
    .notification-hero-title-modern {
        font-size: 36px;
    }
    
    .notification-hero-subtitle-modern {
        font-size: 20px;
    }
    
    .notification-hero-description-modern {
        font-size: 16px;
    }
    
    .notification-hero-stats-modern {
        gap: 20px;
    }
    
    .notification-stat-number-modern {
        font-size: 24px;
    }
    
    .notification-section-title-modern {
        font-size: 32px;
    }
    
    .notification-cta-title-modern {
        font-size: 32px;
    }
    
    .notification-cta-subtitle-modern {
        font-size: 18px;
    }
    
    .notification-cta-buttons-modern {
        flex-direction: column;
        align-items: stretch;
    }
    
    .notification-cta-btn-modern {
        width: 100%;
        max-width: 300px;
    }
    
    .notification-stats-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .notification-feature-highlights-modern {
        flex-direction: column;
        gap: 16px;
    }
}

/* ============================================
   EMAIL & SMS NOTIFICATIONS - PROFESSIONAL LAYOUT
   ============================================ */

/* Professional Hero Section */
.notif-hero-pro {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.notif-hero-bg-pro {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.notif-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.notif-hero-pro .container {
    position: relative;
    z-index: 1;
}

.notif-hero-badge-pro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.5px;
}

.notif-badge-icon {
    color: var(--vp-primary);
    font-size: 16px;
}

.notif-hero-title-pro {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.notif-hero-desc-pro {
    font-size: 22px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.4;
}

.notif-hero-text-pro {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 550px;
}

.notif-hero-text-pro p {
    margin-bottom: 16px;
    color: #64748b;
}

.notif-hero-metrics-pro {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.notif-metric-pro {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.notif-metric-value-pro {
    font-size: 36px;
    font-weight: 800;
    color: var(--vp-primary);
    line-height: 1;
}

.notif-metric-label-pro {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notif-metric-divider-pro {
    width: 1px;
    background: #e2e8f0;
}

.notif-hero-visual-pro {
    position: relative;
    padding: 20px;
}

.notif-visual-img-pro {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
    background: #ffffff;
    padding: 8px;
}

.notif-visual-img-pro img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.notif-visual-cards-pro {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.notif-card-float-pro {
    position: absolute;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    animation: notifFloat 3s ease-in-out infinite;
}

.notif-card-1-pro {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.notif-card-2-pro {
    bottom: 15%;
    left: -8%;
    animation-delay: 1.5s;
}

.notif-card-float-pro i {
    font-size: 24px;
    color: var(--vp-primary);
}

.notif-card-float-pro span {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

@keyframes notifFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Section Label */
.notif-section-label-pro {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--vp-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

/* Section Heading */
.notif-section-heading-pro {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.notif-section-body-pro {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.notif-section-body-pro p {
    margin-bottom: 16px;
    color: #475569;
}

/* Overview Section */
.notif-overview-pro {
    padding: 100px 0;
    background: #ffffff;
}

.notif-overview-grid-pro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.notif-grid-item-pro {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
}

.notif-grid-item-pro:hover {
    border-color: var(--vp-primary);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
}

.notif-grid-icon-pro {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 22px;
}

.notif-grid-title-pro {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.notif-grid-text-pro {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Features Section */
.notif-features-pro {
    padding: 100px 0;
    background: #f8fafc;
}

.notif-feature-box-pro {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.notif-feature-box-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vp-primary) 0%, var(--vp-accent) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.notif-feature-box-pro:hover::before {
    transform: scaleX(1);
}

.notif-feature-box-pro:hover {
    border-color: var(--vp-primary);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-6px);
}

.notif-feature-icon-wrapper-pro {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--vp-primary);
    font-size: 28px;
    transition: all 0.3s ease;
}

.notif-feature-box-pro:hover .notif-feature-icon-wrapper-pro {
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    color: #ffffff;
    transform: scale(1.1);
}

.notif-feature-heading-pro {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.notif-feature-desc-pro {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Milestones Timeline Section */
.notif-milestones-pro {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.notif-timeline-pro {
    position: relative;
    padding: 40px 0;
}

.notif-timeline-line-pro {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--vp-primary) 0%, var(--vp-accent) 100%);
    transform: translateY(-50%);
    z-index: 0;
}

.notif-timeline-item-pro {
    position: relative;
    z-index: 1;
    text-align: center;
}

.notif-timeline-marker-pro {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 3px solid var(--vp-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.notif-timeline-item-pro:hover .notif-timeline-marker-pro {
    background: var(--vp-primary);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.notif-timeline-number-pro {
    font-size: 24px;
    font-weight: 800;
    color: var(--vp-primary);
    transition: color 0.3s ease;
}

.notif-timeline-item-pro:hover .notif-timeline-number-pro {
    color: #ffffff;
}

.notif-timeline-content-pro {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.notif-timeline-item-pro:hover .notif-timeline-content-pro {
    border-color: var(--vp-primary);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
    transform: translateY(-4px);
}

.notif-timeline-icon-pro {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--vp-primary);
    font-size: 24px;
    transition: all 0.3s ease;
}

.notif-timeline-item-pro:hover .notif-timeline-icon-pro {
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    color: #ffffff;
}

.notif-timeline-title-pro {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.notif-timeline-text-pro {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section */
.notif-benefits-pro {
    padding: 100px 0;
    background: #f8fafc;
}

.notif-benefit-card-pro {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
}

.notif-benefit-card-pro:hover {
    border-color: #6366f1;
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.12);
    transform: translateY(-6px);
}

.notif-benefit-header-pro {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.notif-benefit-icon-pro {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.notif-benefit-card-pro:hover .notif-benefit-icon-pro {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #ffffff;
}

.notif-benefit-title-pro {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.notif-benefit-text-pro {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Use Cases Section */
.notif-use-cases-pro {
    padding: 100px 0;
    background: #ffffff;
}

.notif-use-case-box-pro {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.notif-use-case-box-pro::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notif-use-case-box-pro:hover::after {
    opacity: 1;
}

.notif-use-case-box-pro:hover {
    border-color: var(--vp-primary);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-6px);
}

.notif-use-case-icon-pro {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.notif-use-case-heading-pro {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.notif-use-case-desc-pro {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Technical Section */
.notif-technical-pro {
    padding: 100px 0;
    background: #f8fafc;
}

.notif-tech-list-pro {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.notif-tech-list-item-pro {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 16px;
    font-weight: 500;
}

.notif-tech-list-item-pro i {
    color: #10b981;
    font-size: 20px;
    flex-shrink: 0;
}

.notif-stats-panel-pro {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.notif-stats-heading-pro {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 32px;
    text-align: center;
}

.notif-stats-row-pro {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.notif-stat-box-pro {
    flex: 1;
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.notif-stat-box-pro:hover {
    border-color: var(--vp-primary);
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
}

.notif-stat-value-pro {
    font-size: 36px;
    font-weight: 800;
    color: var(--vp-primary);
    margin-bottom: 8px;
    line-height: 1;
}

.notif-stat-label-pro {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section */
.notif-cta-pro {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.notif-cta-bg-pro {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

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

.notif-cta-heading-pro {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.notif-cta-text-pro {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.notif-cta-actions-pro {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.notif-btn-pro {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
}

.notif-btn-primary-pro {
    background: #ffffff;
    color: var(--vp-primary);
    border-color: #ffffff;
}

.notif-btn-primary-pro:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.notif-btn-secondary-pro {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
}

.notif-btn-secondary-pro:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Styles for Professional Layout */
@media (max-width: 992px) {
    .notif-timeline-line-pro {
        display: none;
    }
    
    .notif-overview-grid-pro {
        grid-template-columns: 1fr;
    }
    
    .notif-stats-row-pro {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .notif-hero-pro {
        padding: 100px 0 60px;
    }
    
    .notif-hero-title-pro {
        font-size: 36px;
    }
    
    .notif-hero-desc-pro {
        font-size: 18px;
    }
    
    .notif-hero-text-pro {
        font-size: 15px;
    }
    
    .notif-hero-metrics-pro {
        gap: 24px;
    }
    
    .notif-metric-value-pro {
        font-size: 28px;
    }
    
    .notif-section-heading-pro {
        font-size: 32px;
    }
    
    .notif-cta-heading-pro {
        font-size: 32px;
    }
    
    .notif-cta-text-pro {
        font-size: 18px;
    }
    
    .notif-cta-actions-pro {
        flex-direction: column;
        align-items: stretch;
    }
    
    .notif-btn-pro {
        width: 100%;
        max-width: 300px;
    }
    
    .notif-card-float-pro {
        display: none;
    }
}

/* CTA Section */
.page-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: #ffffff;
    color: #2563eb;
    border: 2px solid #ffffff;
}

.cta-buttons .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-light {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero-title {
        font-size: 32px;
    }
    
    .page-hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   VIDEOS & PODCAST - CATEGORY TABS & CAROUSEL
   ============================================ */

/* ============================================
   NEW GRID LAYOUT DESIGN - MATCHING IMAGE
   ============================================ */

/* Content Section */
.vp-content-section {
    padding: 50px 0 80px;
    background: var(--vp-bg);
}

/* Category Tabs - Professional Style */
.vp-category-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    background: transparent;
    padding: 0;
}

.vp-tab-btn {
    padding: 12px 28px;
    background: white;
    border: 1px solid var(--vp-border);
    border-radius: 8px;
    color: var(--vp-text);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    min-width: 120px;
    text-align: center;
}

.vp-tab-btn:hover {
    border-color: var(--vp-primary);
    color: var(--vp-primary);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.vp-tab-btn.active {
    background: var(--vp-primary);
    border-color: var(--vp-primary);
    color: white;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.vp-tab-btn.active:hover {
    background: var(--vp-primary-dark);
    border-color: var(--vp-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Featured Large Card - Clean Design */
.vp-featured-large {
    margin-bottom: 50px;
}

.vp-featured-card-large {
    background: var(--vp-card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 0;
    border: 1px solid var(--vp-border);
    transition: all 0.3s ease;
}

.vp-featured-card-large:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.vp-featured-thumbnail-large {
    position: relative;
    width: 100%;
    padding-top: 52%;
    overflow: hidden;
    background: #000;
    border-radius: 12px 12px 0 0;
}

.vp-featured-thumbnail-large img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vp-featured-card-large:hover .vp-featured-thumbnail-large img {
    transform: scale(1.05);
}

.vp-play-overlay-large {
    position: absolute;
    bottom: 25px;
    left: 25px;
    width: 70px;
    height: 70px;
    background: var(--vp-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    z-index: 2;
}

.vp-play-overlay-large:hover {
    background: var(--vp-accent-dark);
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.vp-featured-content-large {
    padding: 35px 40px;
}

.vp-featured-title-large {
    font-size: 28px;
    font-weight: 700;
    color: var(--vp-text);
    margin-bottom: 12px;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.vp-featured-meta {
    margin-bottom: 18px;
}

.vp-featured-date {
    font-size: 12px;
    color: var(--vp-text-light);
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.vp-featured-description {
    font-size: 15px;
    color: var(--vp-text-light);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 90%;
}

.vp-featured-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vp-play-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--vp-accent);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.vp-play-now-btn:hover {
    background: var(--vp-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.vp-share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vp-share-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--vp-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vp-share-btn {
    width: 40px;
    height: 40px;
    background: var(--vp-border);
    border: none;
    border-radius: 6px;
    color: var(--vp-text);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vp-share-btn:hover {
    background: var(--vp-primary);
    color: white;
}

/* Carousel Section */
.vp-carousel-section {
    margin-top: 40px;
}

.vp-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.vp-carousel-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--vp-text);
    margin: 0;
}

.vp-carousel-nav {
    display: flex;
    gap: 10px;
}

.vp-carousel-btn-prev,
.vp-carousel-btn-next {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid var(--vp-border);
    border-radius: 8px;
    color: var(--vp-text);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vp-carousel-btn-prev:hover:not(:disabled),
.vp-carousel-btn-next:hover:not(:disabled) {
    background: var(--vp-primary);
    border-color: var(--vp-primary);
    color: white;
    transform: translateY(-2px);
}

.vp-carousel-btn-prev:disabled,
.vp-carousel-btn-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.vp-carousel-wrapper-inner {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.vp-carousel-container-inner {
    overflow: hidden;
    width: 100%;
}

.vp-carousel-track-inner {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    will-change: transform;
}

.vp-carousel-card-item {
    flex: 0 0 calc((100% - (9 * 20px)) / 10);
    min-width: 0;
}

.vp-carousel-dots-inner {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.vp-carousel-dot-item {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--vp-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.vp-carousel-dot-item:hover {
    background: var(--vp-text-light);
    transform: scale(1.2);
}

.vp-carousel-dot-item.active {
    background: var(--vp-accent);
    width: 30px;
    border-radius: 5px;
}

/* Content Grid - 2 Cards Per Row */
.vp-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    width: 100%;
}

.vp-grid-card {
    background: var(--vp-card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--vp-border);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.vp-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: rgba(37, 99, 235, 0.2);
}

.vp-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--vp-accent);
    color: white;
    padding: 5px 11px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

.vp-card-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 58%;
    overflow: hidden;
    background: #000;
    border-radius: 12px 12px 0 0;
}

.vp-card-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vp-grid-card:hover .vp-card-thumbnail img {
    transform: scale(1.08);
}

.vp-play-overlay-small {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 48px;
    height: 48px;
    background: var(--vp-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.5);
    z-index: 2;
}

.vp-play-overlay-small:hover {
    background: var(--vp-accent-dark);
    transform: scale(1.15);
    box-shadow: 0 5px 18px rgba(255, 107, 53, 0.6);
}

.vp-card-content {
    padding: 22px;
}

.vp-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--vp-text);
    margin-bottom: 8px;
    line-height: 1.5;
    letter-spacing: -0.2px;
}

.vp-card-meta {
    margin-bottom: 10px;
}

.vp-card-date {
    font-size: 11px;
    color: var(--vp-text-light);
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.vp-card-description {
    font-size: 13px;
    color: var(--vp-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vp-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vp-play-now-btn-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: var(--vp-accent);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    flex: 1;
    justify-content: center;
}

.vp-play-now-btn-small:hover {
    background: var(--vp-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.vp-share-btn-small {
    width: 38px;
    height: 38px;
    background: var(--vp-border);
    border: none;
    border-radius: 6px;
    color: var(--vp-text);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vp-share-btn-small:hover {
    background: var(--vp-primary);
    color: white;
    transform: translateY(-2px);
}

/* Sidebar - Fixed, No Scroll */
.vp-sidebar {
    background: var(--vp-card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
}

.col-lg-4 {
    position: relative;
}

/* Sidebar Scrollbar */
.vp-sidebar::-webkit-scrollbar {
    width: 6px;
}

.vp-sidebar::-webkit-scrollbar-track {
    background: var(--vp-bg);
    border-radius: 10px;
}

.vp-sidebar::-webkit-scrollbar-thumb {
    background: var(--vp-border);
    border-radius: 10px;
}

.vp-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--vp-text-light);
}

/* Sidebar Sections */
.vp-sidebar-section {
    margin-bottom: 35px;
}

.vp-sidebar-section:last-child {
    margin-bottom: 0;
}

.vp-sidebar-section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--vp-text);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--vp-border);
}

.vp-all-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Sidebar Post Item */
.vp-sidebar-post-item {
    display: flex;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

.vp-sidebar-post-item:hover {
    background: var(--vp-bg);
    transform: translateX(5px);
}

.vp-sidebar-post-thumbnail {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.vp-sidebar-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vp-sidebar-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--vp-accent);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.vp-play-overlay-tiny {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--vp-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.vp-sidebar-post-item:hover .vp-play-overlay-tiny {
    opacity: 1;
}

.vp-sidebar-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vp-sidebar-post-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--vp-text);
    margin-bottom: 5px;
    line-height: 1.4;
}

.vp-sidebar-post-date {
    font-size: 11px;
    color: var(--vp-text-light);
    font-weight: 500;
}

.vp-sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--vp-text);
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--vp-border);
    padding-bottom: 15px;
}

.vp-popular-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vp-popular-item {
    display: flex;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

.vp-popular-item:hover {
    background: var(--vp-bg);
    transform: translateX(5px);
}

.vp-popular-thumbnail {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.vp-popular-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vp-play-overlay-tiny {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--vp-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
}

.vp-popular-item:hover .vp-play-overlay-tiny {
    opacity: 1;
}

.vp-popular-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vp-popular-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--vp-text);
    margin-bottom: 5px;
    line-height: 1.4;
}

.vp-popular-date {
    font-size: 12px;
    color: var(--vp-text-light);
}

/* Empty State */
.vp-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--vp-text-light);
}

.vp-empty-state p {
    font-size: 16px;
}

/* Main Content Area Improvements */
.col-lg-8 {
    padding-right: 30px;
    overflow: visible;
}

.col-lg-8::-webkit-scrollbar-track {
    background: var(--vp-bg);
    border-radius: 10px;
}

.col-lg-8::-webkit-scrollbar-thumb {
    background: var(--vp-border);
    border-radius: 10px;
}

.col-lg-8::-webkit-scrollbar-thumb:hover {
    background: var(--vp-text-light);
}

/* Clean Spacing */
.vp-category-content {
   
    border-radius: 0 0 8px 8px;
    padding: 0;
    min-height: 400px;
}

.vp-category-content.active {
    display: block;
}

/* Responsive */
@media (max-width: 1200px) {
    .vp-carousel-card-item {
        flex: 0 0 calc((100% - (7 * 20px)) / 8);
    }
}

@media (max-width: 992px) {
    .vp-carousel-card-item {
        flex: 0 0 calc((100% - (5 * 20px)) / 6);
    }
    
    .vp-sidebar {
        margin-top: 40px;
        position: static;
        max-height: none;
    }
    
    .col-lg-8 {
        padding-right: 15px;
        max-height: none;
        overflow: visible;
    }
}

@media (max-width: 768px) {
    .vp-carousel-card-item {
        flex: 0 0 calc((100% - (3 * 20px)) / 4);
    }
}

@media (max-width: 576px) {
    .vp-carousel-card-item {
        flex: 0 0 calc((100% - (1 * 20px)) / 2);
    }
}

@media (max-width: 768px) {
    .vp-featured-title-large {
        font-size: 22px;
    }
    
    .vp-featured-content-large {
        padding: 25px;
    }
    
    .vp-card-title {
        font-size: 15px;
    }
    
    .vp-card-content {
        padding: 18px;
    }
    
    .vp-tab-btn {
        padding: 14px 18px;
        font-size: 11px;
    }
    
    .vp-category-tabs {
        padding: 0 10px;
    }
    
    .vp-content-section {
        padding: 40px 0 60px;
    }
}

.vp-category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.vp-tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 24px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: #475569;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vp-tab-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-2px);
}

.vp-tab-btn.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

.vp-tab-btn i {
    font-size: 18px;
}

/* Category Content */
.vp-category-content {
    display: none;
}

.vp-category-content.active {
    display: block;
}

/* Carousel Wrapper */
.vp-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.vp-carousel-container {
    overflow: hidden;
    position: relative;
}

.vp-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.vp-carousel-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 0;
}

/* Carousel Navigation Buttons */
.vp-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.vp-carousel-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.vp-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.vp-carousel-btn:disabled:hover {
    background: white;
    border-color: #e2e8f0;
    color: inherit;
    transform: translateY(-50%);
}

.vp-carousel-prev {
    left: 0;
}

.vp-carousel-next {
    right: 0;
}

.vp-carousel-btn i {
    font-size: 20px;
    color: #2563eb;
}

.vp-carousel-btn:hover i {
    color: white;
}

.vp-carousel-btn:disabled i {
    color: #94a3b8;
}

/* Carousel Dots */
.vp-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.vp-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.vp-carousel-dot:hover {
    background: #94a3b8;
    transform: scale(1.2);
}

.vp-carousel-dot.active {
    background: #2563eb;
    width: 32px;
    border-radius: 6px;
}

/* Empty State */
.vp-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
}

.vp-empty-state p {
    font-size: 18px;
}

/* Responsive Carousel */
@media (max-width: 1200px) {
    .vp-carousel-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .vp-carousel-wrapper {
        padding: 0 50px;
    }
    
    .vp-carousel-card {
        flex: 0 0 100%;
    }
    
    .vp-carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .vp-tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .vp-carousel-wrapper {
        padding: 0 40px;
    }
    
    .vp-category-tabs {
        gap: 10px;
    }
    
    .vp-tab-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ============================================
   PR (PRESS RELEASE) PAGE STYLES
   ============================================ */

/* Hero Section */
.pr-hero-section {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.pr-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.pr-hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.pr-hero-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.pr-hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 10%;
    animation-delay: 5s;
}

.pr-hero-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: -50px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.pr-hero-content {
    position: relative;
    z-index: 1;
}

.pr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.pr-hero-badge i {
    font-size: 16px;
}

.pr-hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.pr-hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 50px 0;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.pr-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.pr-hero-stat-item {
    text-align: center;
}

.pr-hero-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pr-hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.pr-hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.pr-hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    animation: bounce 2s infinite;
    z-index: 1;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Latest Press Releases Section */
.pr-latest-releases-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.pr-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pr-section-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 36px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    }
}

.pr-section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.pr-section-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pr-releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pr-release-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: flex;
    flex-direction: column;
}

.pr-release-card-inner {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pr-release-card:hover .pr-release-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.pr-release-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    position: relative;
}

.pr-release-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pr-release-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    font-size: 48px;
}

.pr-release-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #ffffff;
    font-size: 48px;
}

.pr-release-card:hover .pr-release-overlay {
    opacity: 1;
}

.pr-release-card:hover .pr-release-image img {
    transform: scale(1.1);
}

.pr-release-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pr-release-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.pr-release-date {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pr-release-date i {
    font-size: 14px;
    color: #2563eb;
}

.pr-release-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pr-release-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 14px;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.pr-release-excerpt {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.pr-release-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 10px 0;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.pr-release-link:hover {
    color: #1e40af;
    gap: 14px;
}

.pr-release-link i {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.pr-release-link:hover i {
    transform: translateX(6px);
}

.pr-empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #6b7280;
    font-size: 16px;
}

.pr-empty-icon {
    font-size: 64px;
    color: #d1d5db;
    margin-bottom: 20px;
}

/* Press Release Detail Section */
.pr-detail-section {
    padding: 80px 0;
    background: #f8fafc;
}

.pr-detail-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

.pr-detail-content p {
    margin-bottom: 20px;
}

.pr-detail-content p:last-child {
    margin-bottom: 0;
}

/* Company Overview Section */
.pr-company-overview-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.pr-company-content-wrapper {
    padding-right: 40px;
}

.pr-section-icon-small {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.pr-section-title-left {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.pr-company-content {
    font-size: 17px;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 32px;
}

.pr-company-content p {
    margin-bottom: 20px;
}

.pr-company-content p:last-child {
    margin-bottom: 0;
}

.pr-company-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
}

.pr-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f8fafc;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    border: 1px solid #e5e7eb;
}

.pr-feature-item i {
    color: #2563eb;
    font-size: 18px;
}

.pr-company-stats-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pr-company-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.pr-company-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.pr-stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.pr-stat-icon {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.pr-stat-number {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pr-stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pr-company-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pr-highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.pr-highlight-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.pr-highlight-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    flex-shrink: 0;
}

.pr-highlight-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.pr-highlight-content p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Media Contact Section */
.pr-media-contact-section {
    padding: 80px 0;
    background: #f8fafc;
}

.pr-contact-info {
    max-width: 800px;
    margin: 0 auto;
}

.pr-contact-item {
    margin-bottom: 32px;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pr-contact-item:last-child {
    margin-bottom: 0;
}

.pr-contact-label {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.pr-contact-text {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.pr-contact-text a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.pr-contact-text a:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* Social Share Section */
.pr-social-share-section {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.pr-social-share-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.pr-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    background: #f8fafc;
    color: #374151;
}

.pr-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pr-share-btn i {
    font-size: 18px;
}

.pr-share-facebook:hover {
    background: #1877f2;
    color: #ffffff;
    border-color: #1877f2;
}

.pr-share-twitter:hover {
    background: #1da1f2;
    color: #ffffff;
    border-color: #1da1f2;
}

.pr-share-linkedin:hover {
    background: #0077b5;
    color: #ffffff;
    border-color: #0077b5;
}

.pr-share-email:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.pr-share-copy:hover {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
}

/* Responsive Styles for PR Page */
@media (max-width: 992px) {
    .pr-hero-section {
        padding: 150px 0 100px;
        min-height: 500px;
    }
    
    .pr-hero-title {
        font-size: 48px;
    }
    
    .pr-hero-subtitle {
        font-size: 20px;
    }
    
    .pr-hero-stats {
        gap: 30px;
    }
    
    .pr-hero-stat-number {
        font-size: 36px;
    }
    
    .pr-section-title {
        font-size: 36px;
    }
    
    .pr-section-title-left {
        font-size: 36px;
    }
    
    .pr-releases-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }
    
    .pr-company-content-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .pr-company-stats-wrapper {
        margin-top: 0;
    }
    
    .pr-stat-number {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .pr-hero-section {
        padding: 140px 0 80px;
        min-height: 450px;
    }
    
    .pr-hero-badge {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .pr-hero-title {
        font-size: 36px;
    }
    
    .pr-hero-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .pr-hero-stats {
        gap: 20px;
        margin-top: 40px;
    }
    
    .pr-hero-stat-number {
        font-size: 32px;
    }
    
    .pr-hero-stat-label {
        font-size: 12px;
    }
    
    .pr-hero-stat-divider {
        height: 30px;
    }
    
    .pr-latest-releases-section,
    .pr-detail-section,
    .pr-company-overview-section,
    .pr-media-contact-section,
    .pr-social-share-section {
        padding: 70px 0;
    }
    
    .pr-section-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .pr-section-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .pr-section-subtitle {
        font-size: 16px;
    }
    
    .pr-section-title-left {
        font-size: 32px;
    }
    
    .pr-section-icon-small {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .pr-releases-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pr-release-image {
        height: 200px;
    }
    
    .pr-release-title {
        font-size: 20px;
    }
    
    .pr-company-stats {
        padding: 40px 30px;
    }
    
    .pr-stat-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }
    
    .pr-stat-number {
        font-size: 48px;
    }
    
    .pr-stat-label {
        font-size: 16px;
    }
    
    .pr-company-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .pr-highlight-item {
        padding: 20px;
    }
    
    .pr-social-share-buttons {
        gap: 12px;
    }
    
    .pr-share-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .pr-hero-section {
        padding: 120px 0 60px;
        min-height: 400px;
    }
    
    .pr-hero-badge {
        padding: 6px 16px;
        font-size: 11px;
        margin-bottom: 20px;
    }
    
    .pr-hero-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .pr-hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .pr-hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    
    .pr-hero-stat-divider {
        display: none;
    }
    
    .pr-hero-stat-number {
        font-size: 28px;
    }
    
    .pr-hero-stat-label {
        font-size: 11px;
    }
    
    .pr-section-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .pr-section-title {
        font-size: 28px;
    }
    
    .pr-section-subtitle {
        font-size: 15px;
    }
    
    .pr-section-title-left {
        font-size: 28px;
    }
    
    .pr-section-icon-small {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .pr-release-content {
        padding: 24px;
    }
    
    .pr-release-title {
        font-size: 18px;
    }
    
    .pr-release-excerpt {
        font-size: 14px;
    }
    
    .pr-company-stats {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .pr-stat-icon {
        font-size: 36px;
    }
    
    .pr-stat-number {
        font-size: 40px;
    }
    
    .pr-stat-label {
        font-size: 14px;
    }
    
    .pr-feature-item {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .pr-highlight-item {
        padding: 16px;
    }
    
    .pr-highlight-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .pr-highlight-content h4 {
        font-size: 16px;
    }
    
    .pr-highlight-content p {
        font-size: 13px;
    }
    
    .pr-contact-item {
        padding: 20px;
    }
    
    .pr-social-share-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pr-share-btn {
        justify-content: center;
        width: 100%;
    }
}

/* ============================================
   DELIVERY BOOST PAGE STYLES
   ============================================ */

.boost-hero-section {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.boost-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    z-index: 0;
}

.boost-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.boost-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    animation: boostFloat 15s infinite ease-in-out;
}

.boost-particle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.boost-particle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 5s;
}

.boost-particle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 30%;
    animation-delay: 10s;
}

@keyframes boostFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(30px, -30px) scale(1.1); opacity: 0.6; }
}

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

.boost-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.boost-hero-badge i {
    color: var(--vp-primary);
    font-size: 16px;
}

.boost-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.boost-hero-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.4;
}

.boost-hero-description {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 550px;
}

.boost-hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.boost-stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.boost-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--vp-primary);
    line-height: 1;
}

.boost-stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.boost-stat-divider {
    width: 1px;
    background: #e2e8f0;
}

.boost-hero-visual {
    position: relative;
    padding: 20px;
}

.boost-hero-image {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
    width: 100%;
    height: auto;
}

.boost-hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    border-radius: 16px;
    animation: boostPulse 3s infinite ease-in-out;
}

@keyframes boostPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.boost-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--vp-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.boost-section-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.boost-section-text {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.boost-overview-section {
    padding: 100px 0;
    background: #ffffff;
}

.boost-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.boost-grid-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
}

.boost-grid-card:hover {
    border-color: var(--vp-primary);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
}

.boost-grid-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 22px;
}

.boost-grid-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.boost-grid-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.boost-features-section {
    padding: 100px 0;
    background: #f8fafc;
}

.boost-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.boost-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vp-primary) 0%, var(--vp-accent) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.boost-feature-card:hover::before {
    transform: scaleX(1);
}

.boost-feature-card:hover {
    border-color: var(--vp-primary);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-6px);
}

.boost-feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--vp-primary);
    font-size: 28px;
    transition: all 0.3s ease;
}

.boost-feature-card:hover .boost-feature-icon-wrapper {
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    color: #ffffff;
    transform: scale(1.1);
}

.boost-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.boost-feature-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.boost-how-it-works-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.boost-process-timeline {
    position: relative;
    padding: 40px 0;
}

.boost-process-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--vp-primary) 0%, var(--vp-accent) 100%);
    transform: translateY(-50%);
    z-index: 0;
}

.boost-process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.boost-process-step:hover {
    border-color: var(--vp-primary);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
    transform: translateY(-4px);
}

.boost-process-number {
    width: 50px;
    height: 50px;
    background: var(--vp-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.boost-process-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--vp-primary);
    font-size: 24px;
    transition: all 0.3s ease;
}

.boost-process-step:hover .boost-process-icon {
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    color: #ffffff;
}

.boost-process-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.boost-process-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.boost-benefits-section {
    padding: 100px 0;
    background: #f8fafc;
}

.boost-benefit-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
}

.boost-benefit-card:hover {
    border-color: var(--vp-primary);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-6px);
}

.boost-benefit-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.boost-benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vp-primary);
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.boost-benefit-card:hover .boost-benefit-icon {
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    color: #ffffff;
}

.boost-benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.boost-benefit-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.boost-use-cases-section {
    padding: 100px 0;
    background: #ffffff;
}

.boost-use-case-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.boost-use-case-box:hover {
    border-color: var(--vp-primary);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-6px);
}

.boost-use-case-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.boost-use-case-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.boost-use-case-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.boost-technical-section {
    padding: 100px 0;
    background: #f8fafc;
}

.boost-tech-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.boost-tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 16px;
    font-weight: 500;
}

.boost-tech-item i {
    color: #10b981;
    font-size: 20px;
    flex-shrink: 0;
}

.boost-stats-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.boost-stats-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 32px;
    text-align: center;
}

.boost-stats-grid {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.boost-stat-box {
    flex: 1;
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.boost-stat-box:hover {
    border-color: var(--vp-primary);
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
}

.boost-stat-value-large {
    font-size: 36px;
    font-weight: 800;
    color: var(--vp-primary);
    margin-bottom: 8px;
    line-height: 1;
}

.boost-stat-label-large {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.boost-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.boost-cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

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

.boost-cta-title {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.boost-cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.boost-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.boost-btn {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
}

.boost-btn-primary {
    background: #ffffff;
    color: var(--vp-primary);
    border-color: #ffffff;
}

.boost-btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.boost-btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
}

.boost-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ============================================
   PRINT SHIPPING LABELS PAGE STYLES
   ============================================ */

.label-hero-section {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.label-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

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

.label-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.label-hero-badge i {
    color: var(--vp-primary);
    font-size: 16px;
}

.label-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.label-hero-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.4;
}

.label-hero-description {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 550px;
}

.label-hero-visual {
    position: relative;
    padding: 20px;
}

.label-visual-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
}

.label-visual-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.label-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, transparent 100%);
}

.label-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--vp-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.label-section-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.label-section-text {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.label-overview-section {
    padding: 100px 0;
    background: #ffffff;
}

.label-features-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.label-preview-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #475569;
    flex: 1;
    min-width: 150px;
}

.label-preview-item i {
    color: var(--vp-primary);
    font-size: 18px;
}

.label-features-section {
    padding: 100px 0;
    background: #f8fafc;
}

.label-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.label-feature-card:hover {
    border-color: var(--vp-primary);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-6px);
}

.label-feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.label-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.label-feature-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.label-how-it-works-section {
    padding: 100px 0;
    background: #ffffff;
}

.label-step-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.label-step-card:hover {
    border-color: var(--vp-primary);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-6px);
}

.label-step-number {
    width: 50px;
    height: 50px;
    background: var(--vp-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.label-step-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--vp-primary);
    font-size: 24px;
    transition: all 0.3s ease;
}

.label-step-card:hover .label-step-icon {
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    color: #ffffff;
}

.label-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.label-step-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.label-benefits-section {
    padding: 100px 0;
    background: #f8fafc;
}

.label-benefit-item {
    display: flex;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.label-benefit-item:hover {
    border-color: var(--vp-primary);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-6px);
}

.label-benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vp-primary);
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.label-benefit-item:hover .label-benefit-icon {
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    color: #ffffff;
}

.label-benefit-content {
    flex: 1;
}

.label-benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.label-benefit-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.label-use-cases-section {
    padding: 100px 0;
    background: #ffffff;
}

.label-use-case-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.label-use-case-card:hover {
    border-color: var(--vp-primary);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-6px);
}

.label-use-case-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.label-use-case-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.label-use-case-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.label-technical-section {
    padding: 100px 0;
    background: #f8fafc;
}

.label-tech-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.label-tech-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 16px;
    font-weight: 500;
}

.label-tech-feature i {
    color: #10b981;
    font-size: 20px;
    flex-shrink: 0;
}

.label-stats-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.label-stats-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 32px;
    text-align: center;
}

.label-stats-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.label-stat-item {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.label-stat-item:hover {
    border-color: var(--vp-primary);
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
}

.label-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--vp-primary);
    margin-bottom: 8px;
    line-height: 1;
}

.label-stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.label-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.label-cta-title {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.label-cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.label-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.label-btn {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
}

.label-btn-primary {
    background: #ffffff;
    color: var(--vp-primary);
    border-color: #ffffff;
}

.label-btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.label-btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
}

.label-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ============================================
   RETURN MANAGEMENT PAGE STYLES
   ============================================ */

.return-hero-section {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.return-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.return-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    animation: returnFloat 20s infinite ease-in-out;
}

.return-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.return-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 10s;
}

@keyframes returnFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

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

.return-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.return-hero-badge i {
    color: var(--vp-primary);
    font-size: 16px;
}

.return-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.return-hero-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.4;
}

.return-hero-description {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 550px;
}

.return-hero-highlights {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.return-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}

.return-highlight i {
    color: var(--vp-primary);
    font-size: 16px;
}

.return-hero-visual {
    position: relative;
    padding: 20px;
}

.return-hero-image {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
    width: 100%;
    height: auto;
}

.return-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--vp-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.return-section-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.return-section-text {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.return-overview-section {
    padding: 100px 0;
    background: #ffffff;
}

.return-overview-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.return-overview-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.return-overview-card:hover {
    border-color: var(--vp-primary);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
}

.return-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #ffffff;
    font-size: 22px;
}

.return-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.return-card-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.return-features-section {
    padding: 100px 0;
    background: #f8fafc;
}

.return-feature-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.return-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vp-primary) 0%, var(--vp-accent) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.return-feature-box:hover::before {
    transform: scaleX(1);
}

.return-feature-box:hover {
    border-color: var(--vp-primary);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-6px);
}

.return-feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--vp-primary);
    font-size: 28px;
    transition: all 0.3s ease;
}

.return-feature-box:hover .return-feature-icon-wrapper {
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    color: #ffffff;
    transform: scale(1.1);
}

.return-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.return-feature-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.return-how-it-works-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.return-workflow {
    position: relative;
    padding: 40px 0;
}

.return-workflow-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--vp-primary) 0%, var(--vp-accent) 100%);
    transform: translateY(-50%);
    z-index: 0;
}

.return-workflow-step {
    position: relative;
    z-index: 1;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.return-workflow-step:hover {
    border-color: var(--vp-primary);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
    transform: translateY(-4px);
}

.return-workflow-number {
    width: 50px;
    height: 50px;
    background: var(--vp-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.return-workflow-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--vp-primary);
    font-size: 24px;
    transition: all 0.3s ease;
}

.return-workflow-step:hover .return-workflow-icon {
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    color: #ffffff;
}

.return-workflow-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.return-workflow-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.return-benefits-section {
    padding: 100px 0;
    background: #f8fafc;
}

.return-benefit-card {
    display: flex;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.return-benefit-card:hover {
    border-color: var(--vp-primary);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-6px);
}

.return-benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vp-primary);
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.return-benefit-card:hover .return-benefit-icon {
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    color: #ffffff;
}

.return-benefit-content {
    flex: 1;
}

.return-benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.return-benefit-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.return-use-cases-section {
    padding: 100px 0;
    background: #ffffff;
}

.return-use-case-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.return-use-case-box:hover {
    border-color: var(--vp-primary);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-6px);
}

.return-use-case-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.return-use-case-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.return-use-case-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.return-technical-section {
    padding: 100px 0;
    background: #f8fafc;
}

.return-tech-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.return-tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 16px;
    font-weight: 500;
}

.return-tech-item i {
    color: #10b981;
    font-size: 20px;
    flex-shrink: 0;
}

.return-stats-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.return-stats-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 32px;
    text-align: center;
}

.return-stats-grid {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.return-stat-box {
    flex: 1;
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.return-stat-box:hover {
    border-color: var(--vp-primary);
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
}

.return-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--vp-primary);
    margin-bottom: 8px;
    line-height: 1;
}

.return-stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.return-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.return-cta-title {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.return-cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.return-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.return-btn {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
}

.return-btn-primary {
    background: #ffffff;
    color: var(--vp-primary);
    border-color: #ffffff;
}

.return-btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.return-btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
}

.return-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ============================================
   DELIGHT TRACKING PAGE STYLES
   ============================================ */

.delight-hero-section {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.delight-hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(255, 107, 53, 0.03) 100%);
    z-index: 0;
}

.delight-hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.delight-animation-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(37, 99, 235, 0.1);
    animation: delightPulse 4s infinite ease-in-out;
}

.delight-circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.delight-circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 15%;
    animation-delay: 1.5s;
}

.delight-circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 30%;
    animation-delay: 3s;
}

@keyframes delightPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

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

.delight-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.delight-hero-badge i {
    color: var(--vp-primary);
    font-size: 16px;
}

.delight-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.delight-hero-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.4;
}

.delight-hero-description {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 550px;
}

.delight-hero-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.delight-feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.delight-feature-tag i {
    color: var(--vp-primary);
    font-size: 16px;
}

.delight-hero-visual {
    position: relative;
    padding: 20px;
}

.delight-visual-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
}

.delight-hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.delight-visual-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    animation: delightGlow 3s infinite ease-in-out;
}

@keyframes delightGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.delight-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--vp-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.delight-section-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.delight-section-text {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.delight-overview-section {
    padding: 100px 0;
    background: #ffffff;
}

.delight-overview-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.delight-overview-item {
    display: flex;
    gap: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.delight-overview-item:hover {
    border-color: var(--vp-primary);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
}

.delight-item-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    flex-shrink: 0;
}

.delight-item-content {
    flex: 1;
}

.delight-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.delight-item-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.delight-features-section {
    padding: 100px 0;
    background: #f8fafc;
}

.delight-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.delight-feature-card:hover {
    border-color: var(--vp-primary);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-6px);
}

.delight-feature-icon-box {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.delight-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.delight-feature-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.delight-how-it-works-section {
    padding: 100px 0;
    background: #ffffff;
}

.delight-step-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.delight-step-card:hover {
    border-color: var(--vp-primary);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-6px);
}

.delight-step-badge {
    width: 50px;
    height: 50px;
    background: var(--vp-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.delight-step-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--vp-primary);
    font-size: 24px;
    transition: all 0.3s ease;
}

.delight-step-card:hover .delight-step-icon {
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    color: #ffffff;
}

.delight-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.delight-step-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.delight-benefits-section {
    padding: 100px 0;
    background: #f8fafc;
}

.delight-benefit-item {
    display: flex;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.delight-benefit-item:hover {
    border-color: var(--vp-primary);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-6px);
}

.delight-benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vp-primary);
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.delight-benefit-item:hover .delight-benefit-icon {
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    color: #ffffff;
}

.delight-benefit-content {
    flex: 1;
}

.delight-benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.delight-benefit-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.delight-use-cases-section {
    padding: 100px 0;
    background: #ffffff;
}

.delight-use-case-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.delight-use-case-box:hover {
    border-color: var(--vp-primary);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-6px);
}

.delight-use-case-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.delight-use-case-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.delight-use-case-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.delight-technical-section {
    padding: 100px 0;
    background: #f8fafc;
}

.delight-tech-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.delight-tech-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 16px;
    font-weight: 500;
}

.delight-tech-feature i {
    color: #10b981;
    font-size: 20px;
    flex-shrink: 0;
}

.delight-stats-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.delight-stats-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 32px;
    text-align: center;
}

.delight-stats-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.delight-stat-item {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.delight-stat-item:hover {
    border-color: var(--vp-primary);
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
}

.delight-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--vp-primary);
    margin-bottom: 8px;
    line-height: 1;
}

.delight-stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.delight-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.delight-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

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

.delight-cta-title {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.delight-cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.delight-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.delight-btn {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
}

.delight-btn-primary {
    background: #ffffff;
    color: var(--vp-primary);
    border-color: #ffffff;
}

.delight-btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.delight-btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
}

.delight-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Styles for All 4 Pages */
@media (max-width: 992px) {
    .boost-process-line,
    .return-workflow-line {
        display: none;
    }
    
    .boost-overview-grid,
    .return-overview-cards {
        grid-template-columns: 1fr;
    }
    
    .boost-stats-grid,
    .return-stats-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .boost-hero-title,
    .label-hero-title,
    .return-hero-title,
    .delight-hero-title {
        font-size: 36px;
    }
    
    .boost-hero-subtitle,
    .label-hero-subtitle,
    .return-hero-subtitle,
    .delight-hero-subtitle {
        font-size: 18px;
    }
    
    .boost-section-title,
    .label-section-title,
    .return-section-title,
    .delight-section-title {
        font-size: 32px;
    }
    
    .boost-cta-title,
    .label-cta-title,
    .return-cta-title,
    .delight-cta-title {
        font-size: 32px;
    }
    
    .boost-cta-buttons,
    .label-cta-buttons,
    .return-cta-buttons,
    .delight-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .boost-btn,
    .label-btn,
    .return-btn,
    .delight-btn {
        width: 100%;
        max-width: 300px;
    }
}