/* America's Best Lenders - Comic Book Superhero Style */

:root {
    --primary-red: #DC143C;
    --cyan-blue: #00A4E0;
    --burgundy: #8B1F2D;
    --text-dark: #000000;
    --bg-white: #FFFFFF;
    --bg-light: #F5F5F5;
    --shadow: 0 4px 6px rgba(0,0,0,0.3);
}

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

body {
    font-family: 'Arial Black', 'Impact', 'Helvetica', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
}

/* Header & Navigation */
.hero-header {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--primary-red) 100%);
    color: white;
    padding-bottom: 80px;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(0,0,0,0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.superhero-badge {
    width: 60px;
    height: 60px;
    background: url('../ABL Shield copy (00B).jpg') center/cover;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: var(--shadow);
}

.brand-name {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.8);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    transition: transform 0.2s;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.nav-links a:hover {
    transform: translateY(-2px);
}

.phone-cta {
    background: var(--cyan-blue);
    color: white !important;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 900;
    border: 3px solid var(--text-dark);
    box-shadow: 3px 3px 0px rgba(0,0,0,0.8);
}

.apply-btn {
    background: white;
    color: var(--primary-red) !important;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 900;
    border: 3px solid var(--text-dark);
    box-shadow: 3px 3px 0px rgba(0,0,0,0.8);
}

/* Hero Content */
.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.super-headline {
    font-size: 72px;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 20px;
    text-shadow: 5px 5px 0px rgba(0,0,0,0.8);
    text-transform: uppercase;
    letter-spacing: -2px;
}

.super-headline .accent {
    color: var(--cyan-blue);
    display: block;
}

.hero-tagline {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 900;
    border: 2px solid rgba(255,255,255,0.5);
    text-transform: uppercase;
    font-size: 14px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-primary {
    display: inline-block;
    background: var(--cyan-blue);
    color: white;
    padding: 20px 40px;
    border-radius: 5px;
    font-size: 22px;
    font-weight: 900;
    text-decoration: none;
    border: 4px solid var(--text-dark);
    box-shadow: 5px 5px 0px rgba(0,0,0,0.8);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 8px 8px 0px rgba(0,0,0,0.8);
}

.cta-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

/* Hero Character - Shield */
.hero-character {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.superhero-mascot {
    width: 300px;
    height: 300px;
    background: url('../ABL Shield copy (00B).jpg') center/contain no-repeat;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

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

/* Sections */
.rates-section,
.loan-options-section,
.why-section,
.testimonials-section,
.apply-section {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 56px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-red);
    text-shadow: 4px 4px 0px var(--text-dark);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
}

/* Rate Cards */
.rate-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.rate-card {
    background: white;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 5px 5px 0px var(--text-dark);
    border: 4px solid var(--text-dark);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.rate-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0px var(--text-dark);
}

.rate-card.featured {
    border-color: var(--cyan-blue);
    background: linear-gradient(135deg, #FFF 0%, #F0F8FF 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 900;
    font-size: 14px;
    border: 3px solid var(--text-dark);
    box-shadow: 3px 3px 0px rgba(0,0,0,0.8);
    text-transform: uppercase;
}

.loan-type {
    font-size: 28px;
    font-weight: 900;
    color: var(--burgundy);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.rate-display {
    text-align: center;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 25px;
    border: 3px solid var(--text-dark);
}

.rate-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-red);
    text-shadow: 3px 3px 0px var(--text-dark);
}

.rate-label {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 700;
    text-transform: uppercase;
}

.loan-features {
    list-style: none;
    margin-bottom: 25px;
}

.loan-features li {
    padding: 10px 0;
    border-bottom: 2px solid #eee;
    font-weight: 700;
}

.loan-features li:before {
    content: "★ ";
    color: var(--cyan-blue);
    font-weight: 900;
    margin-right: 8px;
    font-size: 18px;
}

.btn-secondary {
    display: block;
    background: var(--burgundy);
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 900;
    text-decoration: none;
    text-align: center;
    border: 3px solid var(--text-dark);
    box-shadow: 3px 3px 0px rgba(0,0,0,0.8);
    transition: background 0.3s, transform 0.2s;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
}

.rates-disclaimer {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 20px;
}

/* Superpowers Grid */
.superpowers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.superpower-card {
    background: white;
    border-radius: 10px;
    padding: 35px;
    text-align: center;
    border: 4px solid var(--text-dark);
    box-shadow: 5px 5px 0px var(--text-dark);
    transition: transform 0.3s;
}

.superpower-card:hover {
    transform: scale(1.05);
}

.power-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.superpower-card h3 {
    font-size: 22px;
    color: var(--burgundy);
    margin-bottom: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.superpower-card p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Why Section */
.why-section {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--primary-red) 100%);
    color: white;
}

.why-section .section-title {
    color: white;
    text-shadow: 4px 4px 0px rgba(0,0,0,0.5);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

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

.why-number {
    font-size: 72px;
    font-weight: 900;
    color: var(--cyan-blue);
    text-shadow: 4px 4px 0px rgba(0,0,0,0.5);
}

.why-text {
    font-size: 18px;
    margin-top: 10px;
    font-weight: 700;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 35px;
    border: 4px solid var(--text-dark);
    box-shadow: 5px 5px 0px var(--text-dark);
}

.stars {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--cyan-blue);
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.testimonial-author {
    font-weight: 900;
    color: var(--burgundy);
    text-transform: uppercase;
}

/* Apply Section */
.apply-section {
    background: var(--bg-light);
    text-align: center;
}

.apply-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-phone {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 20px 40px;
    border-radius: 5px;
    font-size: 22px;
    font-weight: 900;
    text-decoration: none;
    border: 4px solid var(--text-dark);
    box-shadow: 5px 5px 0px rgba(0,0,0,0.8);
    transition: transform 0.2s;
    text-transform: uppercase;
}

.btn-phone:hover {
    transform: translateY(-3px);
}

.or {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--cyan-blue);
    font-weight: 900;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.footer-col a:hover {
    color: var(--cyan-blue);
}

.footer-legal {
    border-top: 2px solid rgba(255,255,255,0.2);
    padding-top: 30px;
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
}

.footer-legal p {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .super-headline {
        font-size: 48px;
    }
    
    .nav-links {
        display: none;
    }
    
    .apply-cta {
        flex-direction: column;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .superhero-mascot {
        width: 200px;
        height: 200px;
    }
}