/**
 * Hero Section Enhancements - High Converting Design
 * VisionPlus Wealth
 */

/* ========== Limited Time Offer Banner ========== */
.offer-banner-wrapper {
    position: relative;
    z-index: 999;
    width: 100%;
    display: block;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
    max-height: 200px;
    opacity: 1;
    margin-bottom: 0;
}

.offer-banner {
    background: linear-gradient(135deg, #0A4D8C 0%, #07294e  100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    display: block;
    width: 100%;
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Premium How It Works Section */
.how-it-works-premium {
    padding: 90px 0;
    /*background: linear-gradient(135deg, #f6f7fb 0%, #ffffff 100%);*/
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: #e8eefc;
    color: #0A4D8C;
    padding: 6px 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-top: 15px;
    color: #1d1d1d;
}

.section-subtitle {
    color: #6f7287;
    margin-top: 10px;
}

.steps-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 35px;
    margin-top: 50px;
}

.step-premium {
    flex: 1;
    background: #F5F7FA;
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 1px solid #f0f1f5;
}

.step-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0px 18px 35px rgba(0, 0, 0, 0.1);
}

.step-icon-premium {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #07294e 0%, #0A4D8C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: white;
    font-size: 28px;
    box-shadow: 0px 8px 20px rgba(49, 85, 248, 0.25);
}

.step-premium h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e1e2d;
}

.step-premium p {
    color: #6f7287;
    line-height: 1.6;
    font-size: 15px;
}

/* Mobile */
@media (max-width: 992px) {
    .steps-wrapper {
        flex-direction: column;
        gap: 25px;
    }
}



.premium-team-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.premium-team-card .img1 img {
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.premium-team-card .img1:hover img {
    transform: scale(1.05);
}

.premium-team-card .social-links {
    margin-top: 12px;
    list-style: none;
    padding: 0;
}

.premium-team-card .social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border-radius: 50%;
    color: #1e1e2d;
    font-size: 16px;
    transition: all 0.3s ease;
}

.premium-team-card .social-links li a:hover {
    background: #07294e;
    color: #fff;
    transform: translateY(-3px);
}

.premium-team-card .team-name {
    font-weight: 700;
    font-size: 18px;
    color: #1e1e2d;
    text-decoration: none;
}

.premium-team-card .team-role {
    color: #6f7287;
    font-size: 14px;
}

.how-it-works-premium {
    /*background: #f8f9fc;*/
}

.steps-wrapper .step-premium {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.steps-wrapper .step-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.step-icon-premium {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var( linear-gradient(135deg, #07294e 0%, #0A4D8C 100%));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
    transition: transform 0.3s ease;
}

.step-premium:hover .step-icon-premium {
    transform: scale(1.1);
}

.section-header .section-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #07294e;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    font-weight: 700;
    font-size: 32px;
    color: #1e1e2d;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #6f7287;
}

.offer-banner .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 3vw, 24px);
    flex: 1;
    color: white;
    font-weight: 500;
}

.offer-left,
.offer-center,
.offer-right {
    display: flex;
    align-items: center;
}

.offer-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.offer-badge.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
}

.offer-text {
    font-size: clamp(13px, 1.5vw, 15px);
    line-height: 1.4;
    text-align: center;
}

.offer-text strong {
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.offer-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.25);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.offer-countdown i {
    font-size: 14px;
    animation: tick 1s infinite;
}

@keyframes tick {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.countdown-text strong {
    font-weight: 800;
    margin-left: 4px;
}

.offer-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.offer-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) rotate(90deg);
}

.offer-close i {
    font-size: 14px;
}

/* Banner hidden state - smooth collapse */
.offer-banner-wrapper.hidden {
    max-height: 0 !important;
    opacity: 0 !important;
    margin-bottom: 0 !important;
    pointer-events: none;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
}

/* Banner visible state */
.offer-banner-wrapper:not(.hidden) {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 0;
}

/* Ensure header doesn't overlap banner */
.homepage4-body {
    position: relative;
    z-index: 998;
}

header.homepage4-body {
    margin-top: 0;
    clear: both;
}

/* ========== Professional Hero Floating Cards ========== */
.hero-image-wrapper {
    position: relative;
    min-height: 500px;
}

.hero-floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    cursor: default;
    max-width: 280px;
    will-change: transform;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(5, 43, 81, 0.05) 0%,
        rgba(10, 77, 140, 0.08) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.hero-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.16),
        0 12px 24px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.hero-card:hover::before {
    opacity: 1;
}

/* Card Positioning - Senior Developer Strategic Placement */
.hero-card:nth-child(1) {
    top: 8%;
    left: -6%;
    transform-origin: center;
}

.hero-card:nth-child(2) {
    top: 42%;
    right: -8%;
    transform-origin: center;
}

.hero-card:nth-child(3) {
    bottom: 12%;
    left: 2%;
    transform-origin: center;
}

/* Card Icon - Professional Styling */
.hero-card .card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #07294e 0%, #0A4D8C 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow:
        0 8px 24px rgba(5, 43, 81, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-card .card-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-card:hover .card-icon {
    transform: rotate(5deg) scale(1.08);
    box-shadow:
        0 12px 32px rgba(5, 43, 81, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-card:hover .card-icon::before {
    opacity: 1;
}

.hero-card .card-icon i {
    color: #ffffff;
    font-size: 28px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.hero-card:hover .card-icon i {
    transform: scale(1.1);
}

/* Card Content - Typography Excellence */
.hero-card .card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-card .card-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.hero-card:hover .card-content h4 {
    color: #07294e;
}

.hero-card .card-content p {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0;
}

/* ========== Hero Subtitle Styling ========== */
.hero-subtitle {
    display: block;
    font-size: 0.65em;
    font-weight: 500;
    opacity: 0.92;
    margin-top: 12px;
    line-height: 1.4;
    color: inherit;
}

/* ========== Hero Section Gradient Overlay ========== */
.hero4-section-area {
    position: relative;
    overflow: hidden;
}

.hero4-section-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(7, 41, 78, 0.03) 0%,
        rgba(7, 41, 78, 0.015) 50%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero4-section-area .container {
    position: relative;
    z-index: 2;
}

/* ========== Premium Floating Card Animations ========== */
.hero-card {
    opacity: 0;
    transform: translateY(30px);
    animation: premiumFadeInUp 0.8s ease-out forwards;
}

.hero-card:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-card:nth-child(2) {
    animation-delay: 0.35s;
}

.hero-card:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes premiumFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Animation - Smooth & Professional */
.floating {
    animation: professionalFloat 6s ease-in-out infinite;
}

.floating-delay-1 {
    animation-delay: 1s;
}

.floating-delay-2 {
    animation-delay: 2s;
}

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

/* Hover: Pause floating animation for better UX */
.hero-card:hover {
    animation-play-state: paused;
}

/* Responsive Design - Mobile Optimization */
@media (max-width: 1200px) {
    .hero-card:nth-child(1) {
        top: 5%;
        left: -8%;
        max-width: 240px;
    }

    .hero-card:nth-child(2) {
        top: 40%;
        right: -10%;
        max-width: 240px;
    }

    .hero-card:nth-child(3) {
        bottom: 8%;
        left: 0;
        max-width: 240px;
    }

    .hero-card {
        padding: 20px 24px;
    }

    .hero-card .card-icon {
        width: 56px;
        height: 56px;
    }

    .hero-card .card-icon i {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .hero-floating-cards {
        display: none;
    }

    .hero-image-wrapper {
        min-height: auto;
    }
}

/* Accessibility - Focus States */
.hero-card:focus-within {
    outline: 3px solid rgba(10, 77, 140, 0.5);
    outline-offset: 4px;
    transform: translateY(-8px) scale(1.03);
}

/* Print Styles */
@media print {
    .hero-floating-cards {
        display: none !important;
    }
}

/* Performance: Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .floating,
    .floating-delay-1,
    .floating-delay-2 {
        animation: none;
    }

    .hero-card {
        opacity: 1;
        transform: translateY(0);
        animation: none;
        transition: none;
    }
}

/* ========== Urgency Tag ========== */
.urgency-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 10px 20px;
    border-radius: 30px;
    color: #92400e;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    animation: slideInRight 0.6s ease-out;
}

.urgency-tag i {
    color: #f59e0b;
    animation: flash 1.5s infinite;
}

@keyframes flash {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

@keyframes slideInRight {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ========== Power Headline ========== */
.hero-power-headline {
    font-size: 3.2rem !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    color: #1e293b !important;
    margin-bottom: 16px !important;
}

.highlight-gradient {
    background: linear-gradient(135deg, #07294e 0%, #0A4D8C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    display: inline-block;
}

.headline-subtext {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #64748b;
    margin-top: 12px;
    line-height: 1.4;
}

/* ========== Value Proposition Items ========== */
.hero-value-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
}

.value-prop-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #07294e 0%, #0A4D8C 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    color: white;
    font-size: 20px;
}

.value-text {
    display: flex;
    flex-direction: column;
}

.value-text strong {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.value-text span {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

/* ========== Quick Amount Selector ========== */
.quick-amount-selector {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
}

.selector-label {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.amount-btn {
    padding: 14px 8px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover {
    border-color: #0A4D8C;
    color: #0A4D8C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(77, 97, 214, 0.2);
}

.amount-btn.active {
    background: linear-gradient(135deg, #07294e 0%, #0A4D8C 100%);
    color: white;
    border-color: #0A4D8C;
    box-shadow: 0 4px 15px rgba(5, 43, 81, 0.4);
}

.estimate-text {
    text-align: center;
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

.monthly-estimate {
    font-size: 1.5rem;
    font-weight: 800;
    color: #10b981;
}

/* ========== Enhanced CTA Buttons ========== */
.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-cta {
    position: relative;
    background: linear-gradient(135deg, #07294e 0%, #0A4D8C 100%) !important;
    color: white !important;
    padding: 18px 36px !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(5, 43, 81, 0.4) !important;
    transition: all 0.3s ease !important;
    overflow: visible !important;
}

.btn-primary-cta:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(10, 77, 140, 0.5) !important;
}

.btn-primary-cta i {
    margin-right: 8px;
}

.btn-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    animation: bounce 2s infinite;
}

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

.pulse-border {
    animation: pulseBorder 2s infinite !important;
}

@keyframes pulseBorder {
    0%, 100% { box-shadow: 0 10px 30px rgba(5, 43, 81, 0.4); }
    50% { box-shadow: 0 10px 40px rgba(77, 97, 214, 0.6), 0 0 0 8px rgba(77, 97, 214, 0.1); }
}

.btn-secondary-cta {
    background: white !important;
    color: #0A4D8C !important;
    border: 2px solid #0A4D8C !important;
    padding: 18px 36px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
}

.btn-secondary-cta:hover {
    background: #0A4D8C !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

/* ========== Guarantee Badge ========== */
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f0fdf4;
    padding: 12px 20px;
    border-radius: 12px;
    border: 2px solid #86efac;
    color: #166534;
    font-size: 0.95rem;
}

.guarantee-badge i {
    color: #10b981;
    font-size: 1.5rem;
}

/* ========== Enhanced Trust Indicators ========== */
.trust-indicators.enhanced {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-indicators.enhanced .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-weight: 500;
    font-size: 0.9rem;
}

.trust-indicators.enhanced .trust-item i {
    color: #0A4D8C;
    font-size: 1.1rem;
}

/* ========== Live Activity Notification ========== */
.live-activity {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #10b981;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.activity-indicator {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: ping 1.5s infinite;
    position: relative;
}

.activity-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #10b981;
    border-radius: 50%;
    animation: ping 1.5s infinite;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.activity-text {
    font-size: 0.95rem;
    color: #475569;
}

.activity-text strong {
    font-weight: 700;
    color: #1e293b;
}

/* ========== Floating Stat Cards ========== */
.enhanced-hero-image {
    position: relative;
}

.floating-stat-card {
    position: absolute;
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
    animation: floatCard 3s ease-in-out infinite;
}

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

.floating-stat-card.card-1 {
    top: 10%;
    left: -50px;
    animation-delay: 0s;
}

.floating-stat-card.card-2 {
    top: 45%;
    right: -50px;
    animation-delay: 0.5s;
}

.floating-stat-card.card-3 {
    bottom: 15%;
    left: -30px;
    animation-delay: 1s;
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #07294e 0%, #0A4D8C 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    color: white;
    font-size: 24px;
}

.stat-content h4 {
    font-size: 1.75rem;
    font-weight: 900;
    color: #1e293b;
    margin: 0;
    line-height: 1;
}

.stat-content p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 4px 0 0 0;
    font-weight: 600;
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
    /* Offer Banner Tablet */
    .offer-banner .container {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .offer-content {
        gap: clamp(10px, 2vw, 16px);
    }

    .offer-badge {
        font-size: 13px;
        padding: 7px 14px;
    }

    .offer-text {
        font-size: clamp(12px, 1.8vw, 14px);
    }

    .offer-countdown {
        font-size: 13px;
        padding: 7px 14px;
    }

    .offer-close {
        width: 28px;
        height: 28px;
        right: 10px;
    }

    .offer-close i {
        font-size: 12px;
    }

    /* Other elements */
    .hero-power-headline {
        font-size: 2.5rem !important;
    }

    .hero-value-props {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .amount-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-stat-card {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Hero Subtitle Mobile */
    .hero-subtitle {
        font-size: 0.7em;
        margin-top: 10px;
    }

    /* Gradient Overlay Mobile */
    .hero4-section-area::before {
        width: 80%;
        background: linear-gradient(
            to right,
            rgba(7, 41, 78, 0.02) 0%,
            transparent 100%
        );
    }

    /* Offer Banner Mobile */
    .offer-banner .container {
        padding-top: 12px;
        padding-bottom: 12px;
        padding-right: 45px; /* Space for close button */
    }

    .offer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .offer-left,
    .offer-center,
    .offer-right {
        justify-content: center;
        width: 100%;
    }

    .offer-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .offer-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .offer-countdown {
        font-size: 12px;
        padding: 6px 14px;
    }

    .offer-countdown i {
        font-size: 12px;
    }

    .offer-close {
        width: 30px;
        height: 30px;
        right: 8px;
    }

    .offer-close i {
        font-size: 13px;
    }

    /* Other elements */
    .hero-power-headline {
        font-size: 2rem !important;
    }

    .headline-subtext {
        font-size: 1rem;
    }

    .hero-value-props {
        padding: 16px;
    }

    .value-prop-item {
        flex-direction: column;
        text-align: center;
    }

    .quick-amount-selector {
        padding: 20px 16px;
    }

    .amount-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .amount-btn {
        padding: 12px 8px;
        font-size: 0.9rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta-group a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .btn-primary-cta,
    .btn-secondary-cta {
        padding: 16px 24px !important;
        font-size: 1rem !important;
    }

    .trust-indicators.enhanced {
        gap: 20px;
    }

    .trust-indicators.enhanced .trust-item {
        font-size: 0.85rem;
    }

    .trust-indicators.enhanced .trust-item i {
        font-size: 1rem;
    }

    .live-activity {
        width: 100%;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /* Offer Banner Small Mobile */
    .offer-banner .container {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 12px;
        padding-right: 42px;
    }

    .offer-content {
        gap: 8px;
    }

    .offer-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .offer-text {
        font-size: 12px;
    }

    .offer-text strong {
        display: inline-block;
    }

    .offer-countdown {
        font-size: 11px;
        padding: 5px 12px;
    }

    .countdown-text {
        font-size: 11px;
    }

    .offer-close {
        width: 26px;
        height: 26px;
        right: 6px;
    }

    .offer-close i {
        font-size: 11px;
    }

    /* Other elements */
    .hero-power-headline {
        font-size: 1.75rem !important;
    }

    .urgency-tag {
        font-size: 12px;
        padding: 8px 16px;
    }

    .amount-options {
        grid-template-columns: 1fr 1fr;
    }

    .monthly-estimate {
        font-size: 1.25rem;
    }
}

/* ========== Print Styles ========== */
@media print {
    .offer-banner,
    .urgency-tag,
    .quick-amount-selector,
    .floating-stat-card {
        display: none !important;
    }
}

/* ========== Accessibility Enhancements ========== */
.amount-btn:focus,
.btn-primary-cta:focus,
.btn-secondary-cta:focus {
    outline: 3px solid #0A4D8C;
    outline-offset: 2px;
}

/* ========== Dark Mode Support (Optional) ========== */
@media (prefers-color-scheme: dark) {
    .quick-amount-selector {
        background: #1e293b;
        border-color: #334155;
    }

    .selector-label {
        color: #f1f5f9;
    }

    .amount-btn {
        background: #334155;
        border-color: #475569;
        color: #cbd5e1;
    }

    .amount-btn:hover {
        border-color: #6366f1;
        color: #6366f1;
    }

    .estimate-text {
        color: #cbd5e1;
    }

    .floating-stat-card {
        background: #1e293b;
    }

    .stat-content h4 {
        color: #f1f5f9;
    }

    .stat-content p {
        color: #94a3b8;
    }
}

/* ========== Premium Auto-Scrolling Value Banner ========== */
.value-scroll-banner {
    padding: 10px 0;
    /*background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);*/
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: #ffffff;
}

.value-scroll-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 50%, rgba(77, 97, 214, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 50%, rgba(99, 102, 241, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

/* Scroll Container */
.scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Scroll Track - Infinite Loop */
.scroll-track {
    display: flex;
    gap: 60px;
    animation: autoScroll 40s linear infinite;
    will-change: transform;
}

/* Pause on hover */
.scroll-track:hover {
    animation-play-state: paused;
}

/* Auto-scroll animation */
@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Scroll Item */
.scroll-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 36px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px) saturate(180%);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06),
        0 4px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    min-width: 320px;
    position: relative;
    overflow: hidden;
}

.scroll-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(77, 97, 214, 0.02) 0%,
        rgba(99, 102, 241, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-item:hover {
    transform: translateY(-4px);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.1),
        0 6px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(77, 97, 214, 0.15);
}

.scroll-item:hover::before {
    opacity: 1;
}

/* Icon Styling */
.scroll-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #07294e 0%, #0A4D8C 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow:
        0 8px 20px rgba(77, 97, 214, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.scroll-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.scroll-item:hover .scroll-icon {
    transform: rotate(5deg) scale(1.05);
    box-shadow:
        0 12px 28px rgba(77, 97, 214, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.scroll-item:hover .scroll-icon::after {
    transform: scale(1);
}

.scroll-icon i {
    color: #ffffff;
    font-size: 28px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-item:hover .scroll-icon i {
    transform: scale(1.1);
}

/* Content Styling */
.scroll-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.scroll-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.scroll-item:hover .scroll-content h4 {
    color: #0A4D8C;
}

.scroll-content p {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 991px) {
    .value-scroll-banner {
        padding: 40px 0;
    }

    .scroll-track {
        gap: 40px;
        animation-duration: 35s;
    }

    .scroll-item {
        padding: 20px 30px;
        min-width: 280px;
        gap: 16px;
    }

    .scroll-icon {
        width: 52px;
        height: 52px;
    }

    .scroll-icon i {
        font-size: 24px;
    }

    .scroll-content h4 {
        font-size: 1rem;
    }

    .scroll-content p {
        font-size: 0.8125rem;
    }
}

@media (max-width: 768px) {
    .value-scroll-banner {
        padding: 35px 0;
    }

    .scroll-track {
        gap: 30px;
        animation-duration: 30s;
    }

    .scroll-item {
        padding: 18px 24px;
        min-width: 260px;
        gap: 14px;
    }

    .scroll-icon {
        width: 48px;
        height: 48px;
    }

    .scroll-icon i {
        font-size: 22px;
    }

    .scroll-content h4 {
        font-size: 0.95rem;
    }

    .scroll-content p {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .value-scroll-banner {
        padding: 30px 0;
    }

    .scroll-track {
        gap: 24px;
        animation-duration: 25s;
    }

    .scroll-item {
        padding: 16px 20px;
        min-width: 240px;
        gap: 12px;
    }

    .scroll-icon {
        width: 44px;
        height: 44px;
    }

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

    .scroll-content h4 {
        font-size: 0.9rem;
    }

    .scroll-content p {
        font-size: 0.7rem;
    }
}

/* Accessibility - Pause on reduced motion */
@media (prefers-reduced-motion: reduce) {
    .scroll-track {
        animation: none;
    }

    .scroll-track:hover {
        animation: none;
    }
}
