/* ========================================
   LHW PARTNERSHIP - PREMIUM FINTECH THEME
   Clean, Professional, Sophisticated
   ======================================== */

body {
    background: #FFFFFF !important;
}

/* ==================== HERO SECTION ==================== */

.lhw-hero-premium {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 50%, #F0F2F5 100%);
    overflow: hidden;
    padding: 8rem 0 6rem;
}

.lhw-hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(184, 134, 11, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.lhw-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 2rem;
}

.lhw-logo-hero {
    max-width: 200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.lhw-logo-hero img {
    width: 100%;
    height: auto;
}

.lhw-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.12) 0%, rgba(184, 134, 11, 0.06) 100%);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 24px;
    color: #B8860B;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.lhw-hero-subtitle {
    font-size: 1.15rem;
    color: #4A4A4A;
    line-height: 1.7;
    font-weight: 500;
}

.lhw-hero-subtitle .accent {
    color: #B8860B;
    font-weight: 700;
}

/* ==================== ABOUT SECTION ==================== */

.lhw-about-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

.lhw-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.lhw-text-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.lhw-description {
    font-size: 1.05rem;
    color: #4A4A4A;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Stats Card */
.lhw-stats-card {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.lhw-stats-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 2rem;
    text-align: center;
}

.lhw-stat {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.lhw-stat:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: #B8860B;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.95rem;
    color: #6A6A6A;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ==================== BENEFITS SECTION ==================== */

.lhw-benefits-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #0A0A0A;
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-header p {
    font-size: 1.1rem;
    color: #6A6A6A;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.benefit-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(184, 134, 11, 0.3);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.12) 0%, rgba(184, 134, 11, 0.06) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.benefit-card p {
    font-size: 1rem;
    color: #6A6A6A;
    line-height: 1.7;
}

/* ==================== DOCUMENT SECTION ==================== */

.lhw-document-section {
    padding: 6rem 0;
    background: #F8F9FA;
}

.document-card {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.document-header {
    text-align: center;
    margin-bottom: 2rem;
}

.document-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 0.5rem;
}

.document-date {
    font-size: 1rem;
    color: #6A6A6A;
    font-weight: 500;
}

.document-viewer {
    background: #F8F9FA;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.document-viewer iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
    background: #FFFFFF;
}

.document-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.doc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.doc-btn-primary {
    background: #B8860B;
    color: #FFFFFF;
    border: none;
}

.doc-btn-primary:hover {
    background: #9A6F09;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.3);
}

.doc-btn-secondary {
    background: transparent;
    color: #B8860B;
    border: 2px solid #B8860B;
}

.doc-btn-secondary:hover {
    background: rgba(184, 134, 11, 0.1);
    transform: translateY(-2px);
}

/* ==================== KEY HIGHLIGHTS ==================== */

.letter-highlights {
    margin-top: 3rem;
}

.letter-highlights h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 2rem;
    text-align: center;
}

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

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: #F8F9FA;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #FFFFFF;
    border-color: rgba(184, 134, 11, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.highlight-text strong {
    color: #0A0A0A;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.highlight-text p {
    color: #6A6A6A;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ==================== MEMBERSHIP PATH ==================== */

.lhw-path-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

.lhw-path-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0A0A0A;
    text-align: center;
    margin-bottom: 4rem;
}

.membership-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.membership-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #B8860B 0%, rgba(184, 134, 11, 0.3) 100%);
}

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #FFFFFF;
    border: 3px solid rgba(184, 134, 11, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: #B8860B;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-step.completed .step-number {
    background: linear-gradient(135deg, #B8860B 0%, #9A6F09 100%);
    color: #FFFFFF;
    border-color: #B8860B;
}

.timeline-step.active .step-number {
    background: linear-gradient(135deg, #00D4FF 0%, #00B8E6 100%);
    color: #FFFFFF;
    border-color: #00D4FF;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3);
}

.step-content {
    flex: 1;
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.timeline-step.completed .step-content {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.08) 0%, rgba(184, 134, 11, 0.03) 100%);
    border-color: rgba(184, 134, 11, 0.2);
}

.timeline-step.active .step-content {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 212, 255, 0.03) 100%);
    border-color: rgba(0, 212, 255, 0.2);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 1rem;
    color: #6A6A6A;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.step-status {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6A6A6A;
}

.timeline-step.completed .step-status {
    background: rgba(184, 134, 11, 0.15);
    color: #B8860B;
}

.timeline-step.active .step-status {
    background: rgba(0, 212, 255, 0.15);
    color: #00D4FF;
}

/* ==================== CTA SECTION ==================== */

.lhw-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 50%, #F0F2F5 100%);
    position: relative;
}

.lhw-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(184, 134, 11, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: #4A4A4A;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== RESPONSIVE DESIGN ==================== */

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

@media (max-width: 968px) {
    .lhw-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .lhw-stats-card {
        position: relative;
        top: 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline-step {
        flex-direction: row;
    }
    
    .membership-timeline::before {
        left: 40px;
    }
}

@media (max-width: 768px) {
    .lhw-hero-premium {
        padding: 6rem 0 4rem;
        min-height: 60vh;
    }
    
    .lhw-hero-title {
        font-size: 2rem;
    }
    
    .lhw-logo-hero {
        max-width: 280px;
        padding: 1.5rem;
    }
    
    .lhw-text-content h2,
    .section-header h2,
    .lhw-path-section h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .document-viewer iframe {
        height: 400px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
