/* UES Landing Page Styles */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo img {
    vertical-align: middle;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f59e0b;
}

/* ===== BUTTONS ===== */
.cta-button {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.secondary-button {
    background: transparent;
    color: white;
    border: 2px solid #475569;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.secondary-button:hover {
    border-color: #f59e0b;
    color: #f59e0b;
}

.urgent-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    margin-right: 1rem;
}

.urgent-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}

.urgent-secondary {
    background: transparent;
    color: #1e293b;
    border: 2px solid #1e293b;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.urgent-secondary:hover {
    background: #1e293b;
    color: white;
}

.cta-white {
    background: white;
    color: #f59e0b;
}

.cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-highlight {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-top: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.hero-buttons .cta-button {
    order: 1;
}

.hero-buttons p {
    order: 2;
    margin: 0;
    white-space: nowrap;
    font-size: 1.2rem;
    font-weight: 600;
}

.hero-buttons .secondary-button {
    order: 3;
}


/* ==== LEAD MAGNET SECTION ==== */
.lead-magnet-banner {
    /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%); */
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #f0fdf4 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.lead-magnet-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="riskGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%2364748b08" stroke-width="1"/><circle fill="%2364748b05" cx="10" cy="10" r="1"/></pattern></defs><rect width="100" height="100" fill="url(%23riskGrid)"/></svg>');
    opacity: 0.6;
}

.magnet-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.risk-banner-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.risk-banner-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.risk-assessment-button {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.risk-assessment-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}

.risk-assessment-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);
    transition: left 0.5s;
}

.risk-assessment-button:hover::before {
    left: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .risk-assessment-banner {
        padding: 2rem 0;
    }
    
    .risk-banner-content {
        padding: 0 1rem;
    }
    
    .risk-banner-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .risk-banner-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .risk-assessment-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Icon styling */
.risk-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}


/* ===== STATS SECTION ===== */
.stats {
    background: white;
    padding: 5rem 0 0 0;
    position: relative;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (max-width: 1000px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.stat-item {
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f59e0b;
    display: block;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
    margin-top: 0.5rem;
}




/* QUALIFICATION SECTION */
.qualification {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.qualification-content {
    text-align: center;
    margin-bottom: 3rem;
}

.qualification-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.qualification-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.qualification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.qualification-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.qualification-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.qualification-card-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.qualification-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fbbf24;
    margin: 0;
}

.qualification-card p {
    color: #e2e8f0;
    line-height: 1.6;
    margin: 0;
}

.qualification-cta {
    text-align: center;
}

.qualification-eligibility-box {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.qualification-eligibility-box h3 {
    color: #10b981;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.qualification-eligibility-box p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.qualification-button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qualification-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.qualification-disclaimer {
    color: #9ca3af;
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .qualification-content h2 {
        font-size: 2rem;
    }
    
    .qualification-content p {
        font-size: 1rem;
    }
    
    .qualification-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .qualification-card {
        padding: 1.5rem;
    }
    
    .qualification-eligibility-box {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}




/* ===== ACT NOW SECTION ===== */
.act-now {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.act-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="modernGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%2364748b15" stroke-width="1"/><circle fill="%2364748b08" cx="10" cy="10" r="1.5"/></pattern></defs><rect width="100" height="100" fill="url(%23modernGrid)"/></svg>');
    opacity: 0.6;
}

.act-now-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.act-now-header {
    text-align: center;
    margin-bottom: 4rem;
}

.act-now h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.act-now-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.act-now-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Column - Deadline Focus */
.deadline-column {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(30, 41, 59, 0.1);
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    
}

.deadline-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #dc2626 0%, #f59e0b 50%, #dc2626 100%);
    border-radius: 25px 25px 0 0;
}

.deadline-icon {
    font-size: 4rem;
    display: block;
}

.deadline-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.deadline-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Countdown Display */
.countdown-display {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.countdown-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(245, 158, 11, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

.countdown-label {
    font-size: 1rem;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.countdown-text {
    font-size: 0.9rem;
    color: #cbd5e1;
    position: relative;
    z-index: 2;
}

/* Savings Highlight */
.savings-highlight {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #f59e0b;
    margin-top: 1.5rem;
}

.savings-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d97706;
    margin-bottom: 0.5rem;
}

.savings-text {
    font-size: 1rem;
    color: #92400e;
    font-weight: 600;
}

/* Right Column - Motivators */
.motivators-column h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
}

.motivator-card {
    background: white;
    padding: 1rem 2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(30, 41, 59, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.motivator-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(30, 41, 59, 0.12);
}

.motivator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 0 0 0 20px;
}

.motivator-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.motivator-icon {
    font-size: 1.8rem;
    margin-right: 1rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 0.5rem;
    border-radius: 10px;
}

.motivator-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
}

.motivator-text {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.motivator-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #f59e0b;
}


/* Urgent CTA */
.urgent-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px dashed #e2e8f0;
}




/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}




/* ===== SERVICES SECTION ===== */
.services {
    padding: 6rem 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    line-height: 1.7;
}




/* ===== BENEFITS SECTION ===== */
.benefits {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    list-style: none;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-text {
    font-weight: 600;
}

/* Calculator CTA */
#calcCTA:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}


/* Currency Input */
.currency-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.currency-input-wrapper::before {
    content: '$';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #374151;
    font-weight: 600;
    z-index: 1;
    pointer-events: none;
}

.currency-input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2rem;
    border-radius: 8px;
    border: 2px solid #d1d5db;
    font-size: 1rem;
    font-weight: 500;
    background: white;
    transition: border-color 0.2s ease;
}

.currency-input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* THREE SCENARIO BUTTONS */
.scenario-selector {
    text-align: center;
    margin: 1.5rem 0;
}

.scenario-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.scenario-button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #cbd5e1;
    padding: 10px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 100px;
}

.scenario-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.scenario-button.active {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: #10b981;
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.scenario-button-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.scenario-button-subtitle {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.scenario-results {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scenario-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #10b981;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.scenario-details {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.scenario-assumption {
    color: #9ca3af;
    font-size: 0.8rem;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .scenario-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .scenario-button {
        width: 140px;
    }
    
    .scenario-amount {
        font-size: 1.7rem;
    }
}



/* ===== CASE STUDIES SECTION ===== */
.case-studies {
    padding: 6rem 0;
    background: #f8fafc;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.case-study-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.case-header {
    padding: 2rem;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
}

.case-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.case-type {
    color: #f59e0b;
    font-weight: 600;
    font-size: 0.9rem;
}

.case-content {
    padding: 2rem;
}

.case-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-highlights {
    list-style: none;
}

.case-highlights li {
    padding: 0.5rem 0;
    color: #1e293b;
    font-weight: 500;
    border-bottom: 1px solid #e2e8f0;
}

.case-highlights li:last-child {
    border-bottom: none;
}

.case-highlights li::before {
    content: '→';
    color: #f59e0b;
    font-weight: bold;
    margin-right: 0.5rem;
}

.case-value {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    text-align: center;
}

.case-value-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #d97706;
    margin-bottom: 0.5rem;
}

.case-value-text {
    color: #92400e;
    font-weight: 600;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f59e0b;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f59e0b;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-links { 
        display: none; 
    }
    
    .hero {
        padding-top: 4rem;
    }
    
    .hero-content {
        padding-top: 3rem;
        padding-bottom: 4rem;
    }
    
    .hero h1 { 
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero p { 
        font-size: 1.1rem;
        margin-top: 2rem;
        margin-bottom: 3rem;
    }
    
    .hero-buttons { 
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .stats {
        padding-top: 5rem;
    }
    
    .benefits-content { 
        grid-template-columns: 1fr; 
        gap: 2rem; 
    }
    
    .act-now-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem; 
    }
    
    .act-now h2 { 
        font-size: 2.2rem; 
    }
    
    .deadline-column { 
        padding: 2rem; 
    }
    
    .deadline-title { 
        font-size: 1.6rem; 
    }
    
    .countdown-number { 
        font-size: 2.2rem; 
    }
    
    .savings-amount { 
        font-size: 2rem; 
    }
    
    .motivator-card { 
        padding: 1.5rem; 
    }
    
    .urgent-cta { 
        margin-top: 2rem; 
    }
    
    .urgent-primary { 
        margin-right: 0; 
        margin-bottom: 1rem; 
        width: 100%; 
        text-align: center; 
    }
    
    .urgent-secondary { 
        width: 100%; 
        text-align: center; 
    }
    
    .container { 
        padding: 0 1rem; 
    }
}