* {
    margin    : 0;
    padding   : 0;
    box-sizing: border-box
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

/* Optimize font loading */
@font-face {
    font-family: 'Inter';
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-display: swap;
}

/* Prevent layout shift */
img {
    max-width: 100%;
    height: auto;
}

/* Optimize animations for performance */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: #e9ecef;
}

.header-cta-left {
    text-align: right;
}

.availability {
    display: block;
    color: #2c82c9;
    font-size: 0.9rem;
    font-weight: 600;
}

.wait-time {
    display: block;
    color: #4caf50;
    font-size: 0.8rem;
    font-weight: 500;
}

.header-cta-right {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e63946;
    font-size: 1.2rem;
    font-weight: 700;
}

.header-cta-right i {
    animation: pulse 2s infinite;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/Debt-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 100px 20px 60px;
    color: white;
    min-height: 600px;
    will-change: transform;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.free-badge {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    font-weight: 700;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.no-credit-badge {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.badge i {
    color: #4caf50;
}

.free-badge i,
.no-credit-badge i {
    color: white;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-phone-display {
    text-align: center;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.phone-number-large {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    animation: phoneGlow 2s ease-in-out infinite alternate;
}

.phone-subtitle {
    font-size: 1.1rem;
    color: #4caf50;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes phoneGlow {
    from {
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(76, 175, 80, 0.3);
    }
    to {
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 30px rgba(76, 175, 80, 0.6);
    }
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.risk-free-banner {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    animation: pulse 2s infinite;
    letter-spacing: 0.5px;
}

.risk-free-banner i {
    font-size: 1.2rem;
    color: white;
}

.primary-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, #2c82c9 0%, #1e5f99 100%);
    color: white;
    text-decoration: none;
    padding: 25px 40px;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(44, 130, 201, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
}

.primary-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 2s infinite;
}

.primary-cta:hover {
    background: linear-gradient(135deg, #1e5f99 0%, #164a7a 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(44, 130, 201, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.primary-cta i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.primary-cta i::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: phonePulse 2s infinite;
}

.primary-cta i::after {
    content: '';
    position: absolute;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: phonePulse 2s infinite 0.3s;
}

@keyframes phonePulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Professional CTA Enhancements */
.primary-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.primary-cta:hover::after {
    transform: translateX(100%);
}

.primary-cta:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 8px 25px rgba(44, 130, 201, 0.3);
}

.cta-text {
    text-align: left;
    position: relative;
}

.cta-main {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
}

.cta-sub {
    display: block;
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-status-below {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    animation: fadeInUp 0.6s ease-out;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.cta-status-below i {
    color: #4caf50;
    animation: blink 1.5s infinite;
}

.cta-status i {
    color: #4caf50;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.benefit i {
    color: #4caf50;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.indicator {
    text-align: center;
}

.number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c82c9;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.number:hover {
    transform: scale(1.05);
    color: #1e5f99;
}

.label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefits {
    padding: 60px 20px;
    background: white;
}

.benefit-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 2rem;
    color: #2c82c9;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Testimonial Section Styles */
.testimonial-section {
    overflow: hidden;
    position: relative;
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

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

.rating {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 30px;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.stars {
    color: #ffd700;
    font-size: 24px;
    letter-spacing: 2px;
}

.rating span {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-carousel {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial {
    flex: 0 0 100%;
    padding: 40px;
    box-sizing: border-box;
}

.testimonial-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-content:hover {
    transform: translateY(-5px);
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 40px;
    font-size: 120px;
    color: #2c82c9;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.quote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f0f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: #2c82c9;
    font-size: 24px;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.name {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.location {
    color: #666;
    font-size: 0.9rem;
}

.savings {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.savings i {
    font-size: 14px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.prev-testimonial,
.next-testimonial {
    background: white;
    color: #2c82c9;
    border: 2px solid #2c82c9;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 130, 201, 0.1);
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background: #2c82c9;
    color: white;
    transform: translateY(-2px);
}

.testimonial-dots {
    display: flex;
    gap: 12px;
    margin: 0 20px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #2c82c9;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 20px;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .testimonial-content {
        padding: 30px;
    }
    
    .quote {
        font-size: 1.1rem;
    }
    
    .author {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .savings {
        align-self: flex-start;
    }
}

.call-section {
    padding: 60px 20px;
    background: #2c82c9;
    color: white;
    text-align: center;
}

.call-content {
    max-width: 600px;
    margin: 0 auto;
}

.call-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.call-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.call-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e63946;
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.call-button:hover {
    background: #d12836;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.call-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.call-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.call-features i {
    color: #4caf50;
}

.credentials {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.credential-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.credential {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.credential:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.credential img {
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
}

.credential-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.credential-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.credential-verify {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2c82c9;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(44, 130, 201, 0.08);
    transition: all 0.2s ease;
}

.credential-verify:hover {
    background: rgba(44, 130, 201, 0.12);
}

.credential-verify i {
    font-size: 0.8rem;
}

.credentials-disclaimer {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
    padding: 20px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}

footer {
    background: #18181b;
    color: white;
    padding: 60px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-cta {
    margin-bottom: 40px;
}

.footer-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.sticky-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.sticky-call::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #2c82c9;
    border-radius: 50px;
    animation: ringWave 2s infinite;
    opacity: 0;
}

.sticky-call::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #2c82c9;
    border-radius: 50px;
    animation: ringWave 2s infinite 0.5s;
    opacity: 0;
}

@keyframes ringWave {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.sticky-call-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #2c82c9 0%, #2472b4 100%);
    color: white;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(44, 130, 201, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sticky-call-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 2s infinite;
}

.sticky-call-button:hover {
    background: linear-gradient(135deg, #2472b4 0%, #1c5c91 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 130, 201, 0.4);
}

.sticky-call-button i {
    font-size: 1.2rem;
    position: relative;
}

.sticky-call-button i::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: phonePulse 2s infinite;
}

.sticky-call-button i::after {
    content: '';
    position: absolute;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: phonePulse 2s infinite 0.3s;
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    .header-content {
        padding: 0 15px;
    }

    .logo img {
        height: 32px;
    }

    .header-cta-left {
        display: none;
    }

    .header-cta {
        padding: 8px 15px;
    }

    .header-cta-right span {
        display: none;
    }

    h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    h2 {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .hero {
        padding: 70px 15px 30px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-content {
        width: 100%;
    }

    .hero-badges {
        flex-direction: row;
        gap: 8px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 25px;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 6px 12px;
        border-radius: 20px;
        white-space: nowrap;
    }
    
    .free-badge {
        order: 1;
        flex: 0 0 auto;
    }
    
    .no-credit-badge {
        order: 2;
        flex: 0 0 auto;
    }
    
    .badge:not(.free-badge):not(.no-credit-badge) {
        order: 3;
        flex: 0 0 auto;
    }
    
    .risk-free-banner {
        padding: 12px 18px;
        font-size: 0.85rem;
        flex-direction: row;
        gap: 6px;
        margin-bottom: 16px;
        text-align: center;
        line-height: 1.3;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 10px;
    }
    
    .risk-free-banner i {
        font-size: 0.9rem;
    }

    .primary-cta {
        padding: 16px 24px;
        gap: 12px;
        margin-bottom: 20px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(44, 130, 201, 0.3);
        position: relative;
        overflow: hidden;
    }

    .cta-main {
        font-size: 1.1rem;
        letter-spacing: 0.2px;
        line-height: 1.2;
        font-weight: 700;
    }

    .cta-sub {
        font-size: 0.85rem;
        letter-spacing: 0.1px;
        line-height: 1.3;
        opacity: 0.95;
    }
    
    .primary-cta i {
        font-size: 1.3rem;
        margin-right: 4px;
    }
    
    .cta-status-below {
        font-size: 0.8rem;
        padding: 8px 16px;
        margin-top: 12px;
        max-width: 320px;
        line-height: 1.2;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .cta-container {
        padding: 0 15px;
    }

    .cta-benefits {
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 15px;
    }
    
    .benefit {
        font-size: 0.8rem;
        gap: 6px;
        padding: 5px 8px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        white-space: nowrap;
    }

    .trust-indicators {
        flex-direction: row;
        gap: 15px;
        padding: 20px 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .indicator {
        flex: 1;
        min-width: 120px;
        max-width: 150px;
    }
    
    .number {
        font-size: 1.5rem;
        margin-bottom: 3px;
    }
    
    .label {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial {
        padding: 20px;
    }

    .author {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .call-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .credential-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .credential {
        padding: 25px;
    }

    .credentials-disclaimer {
        margin: 30px 15px 0;
        padding: 15px;
    }

    .sticky-call::before,
    .sticky-call::after {
        border-radius: 15px;
    }
    
    .primary-cta i::before,
    .primary-cta i::after {
        animation-duration: 1.5s;
    }
    
    .sticky-call-button i::before,
    .sticky-call-button i::after {
        animation-duration: 1.5s;
    }
}

/* Savings Calculator Section */
.savings-calculator {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.calculator-content {
    max-width: 800px;
    margin: 0 auto;
}

.calculator-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.calculator-example {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.example-debt, .example-loan {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    min-width: 200px;
    backdrop-filter: blur(10px);
}

.example-debt h3, .example-loan h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.debt-amount, .loan-amount {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.monthly-payment {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b6b;
}

.example-arrow {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
}

.savings-result {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.savings-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #4ecdc4;
    margin-bottom: 10px;
}

.savings-total {
    font-size: 1.2rem;
    color: #ffd700;
}

.calculator-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #ff6b6b;
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.calculator-cta:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.calculator-cta i {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .calculator-content h2 {
        font-size: 2rem;
    }
    
    .calculator-example {
        flex-direction: column;
        gap: 20px;
    }
    
    .example-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    .savings-amount {
        font-size: 1.5rem;
    }
    
    .calculator-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    color: #333;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-header p {
    color: #666;
    font-size: 1.1rem;
}

.faq-grid {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-weight: 600;
    color: #2c82c9;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
}

/* Today's Special Offer Box */
.todays-offer {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 40px;
    margin: 60px auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(44, 130, 201, 0.1);
}

.offer-badge {
    background: #2c82c9;
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(44, 130, 201, 0.2);
}

.offer-title {
    color: #333;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 20px 0;
    text-align: center;
    line-height: 1.3;
}

.offer-value {
    background: rgba(44, 130, 201, 0.08);
    color: #2c82c9;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 30px 0;
    border: 1px solid rgba(44, 130, 201, 0.1);
}

.offer-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.offer-benefit {
    background: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.offer-benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.offer-benefit i {
    color: #4caf50;
    font-size: 1.4rem;
    margin-top: 3px;
}

.offer-benefit span {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.save-tag {
    display: inline-block;
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 4px;
}

.offer-cta {
    text-align: center;
    margin-top: 35px;
}

.offer-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #2c82c9;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(44, 130, 201, 0.25);
}

.offer-button:hover {
    background: #2472b4;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 130, 201, 0.3);
}

.offer-button i {
    font-size: 1.2rem;
}

.offer-expiry {
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

.offer-disclaimer {
    margin-top: 25px;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: left;
    padding: 15px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .todays-offer {
        margin: 30px 15px;
        padding: 30px 20px;
    }

    .offer-title {
        font-size: 1.8rem;
    }

    .offer-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .offer-benefit {
        padding: 20px;
    }

    .offer-button {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
}

.spot-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffd700;
    color: #d12836;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.5s ease-out, fadeOut 0.5s ease-in 4.5s;
    z-index: 1000;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes numberPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.number.animating {
    animation: numberPulse 0.6s ease-in-out;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

.countdown-timer {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 800;
}

.countdown-timer span {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Enhanced CTA Elements */
.cta-urgency {
    font-size: 0.9rem;
    color: #ff6b35;
    font-weight: 700;
    margin-top: 5px;
    animation: blink 1.5s infinite;
}

.offer-urgency {
    font-size: 0.85rem;
    color: #ff6b35;
    font-weight: 600;
    margin-top: 5px;
    text-align: center;
}

/* Phone Number Styling */
.phone-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: #e63946;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.call-now {
    font-size: 0.8rem;
    color: #4caf50;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-urgency {
    font-size: 0.8rem;
    color: #ff6b35;
    font-weight: 700;
    margin-top: 5px;
    text-align: center;
}

/* Live Activity Indicator */
.live-activity {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4caf50;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
}

.live-activity i {
    animation: blink 1s infinite;
    color: #4caf50;
}

/* Inactivity Popup */
.inactivity-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.4s ease-out;
}

.popup-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 45px 50px;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    animation: slideInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e63946, #2c82c9, #4caf50);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: #333;
}

.popup-header {
    margin-bottom: 25px;
}

.popup-content h3 {
    color: #e63946;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.popup-content p {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.4;
}

.popup-urgency {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 18px 25px;
    border-radius: 15px;
    margin: 25px 0;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    animation: pulse 2s infinite;
}

.popup-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #e63946 0%, #d12836 100%);
    color: white;
    padding: 22px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 900;
    margin: 25px 0;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(230, 57, 70, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.popup-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.popup-cta:hover::before {
    left: 100%;
}

.popup-cta:hover {
    background: linear-gradient(135deg, #d12836 0%, #c01826 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.popup-guarantee {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
    padding: 20px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #2e7d32;
    font-weight: 600;
}

.guarantee-item i {
    color: #4caf50;
    font-size: 1.1rem;
    font-weight: 900;
}

/* Scroll Popup */
.scroll-popup {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: #e63946;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    display: none;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
    animation: slideInRight 0.5s ease-out;
}

.scroll-popup-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.scroll-cta {
    background: white;
    color: #e63946;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.scroll-cta:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.close-scroll-popup {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sticky Call Button Enhancements */
.sticky-urgency {
    font-size: 0.7rem;
    color: #ff6b35;
    font-weight: 700;
    text-align: center;
    margin-top: 2px;
    animation: blink 2s infinite;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .urgency-banner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 12px 20px;
    }
    
    .countdown-timer {
        font-size: 1rem;
    }
    
    .popup-content {
        margin: 20px;
        padding: 35px 25px;
    }
    
    .popup-content h3 {
        font-size: 1.8rem;
    }
    
    .popup-content p {
        font-size: 1.1rem;
    }
    
    .popup-urgency {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    
    .popup-cta {
        padding: 18px 35px;
        font-size: 1.2rem;
    }
    
    .popup-guarantee {
        padding: 15px;
        gap: 10px;
    }
    
    .guarantee-item {
        font-size: 0.9rem;
    }
    
    .scroll-popup {
        bottom: 80px;
        right: 10px;
        left: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .scroll-popup-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .phone-number {
        font-size: 1.1rem;
    }
    
    .call-now {
        font-size: 0.7rem;
    }
}