/* Angels Page Styles - Using Home-Pro Template Structure */

/* Background alternating sections for consistency */
.section.bg-glass {
    background: var(--bg-secondary);
    position: relative;
}

.section.bg-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(212, 161, 77, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section .container {
    position: relative;
    z-index: 1;
}

/* Hero Section - Consistent with other pages */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    z-index: 0;
}

.hero-animation-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(142, 68, 173, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    color: var(--text-accent);
    font-weight: 600;
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Hero Guarantee Items */
.hero-guarantee-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

.guarantee-item i {
    color: var(--accent-green);
    font-size: 1.1rem;
    min-width: 20px;
}

/* Hero CTA Buttons - Match Home Page Styling */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-normal);
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-primary);
    box-shadow: var(--shadow-lg), var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(212, 161, 77, 0.6);
    color: var(--bg-primary);
}

.btn-secondary {
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.3) 0%, 
        rgba(0, 255, 171, 0.2) 50%,
        rgba(34, 197, 94, 0.3) 100%);
    border: 1px solid rgba(16, 185, 129, 0.6);
    color: #fff;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, 
        rgba(71, 30, 133, 0.4) 0%, 
        rgba(139, 92, 246, 0.3) 50%,
        rgba(71, 30, 133, 0.4) 100%);
    border-color: rgba(71, 30, 133, 0.8);
    color: #ffffff;
    box-shadow: 0 0 30px rgba(71, 30, 133, 0.5);
    transform: translateY(-3px);
}

.angels-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.angels-stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.angels-stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Angels Visual */
.angels-hero-visual {
    position: relative;
}

.angels-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.angels-img {
    width: 100%;
    height: auto;
    transition: opacity 0.5s ease;
}

/* What Are Angels Section */
.what-are-angels-section {
    padding: 6rem 0;
}

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

.angels-definition {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.angels-definition h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.angels-definition p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.angels-features {
    display: grid;
    gap: 1.5rem;
}

.angels-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.angels-feature i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.angels-feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.angels-feature-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* How Angels Work Section */
.how-angels-work-section {
    padding: 6rem 0;
}

.how-angels-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.angels-step {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
}

.angels-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem;
}

.angels-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.angels-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Angels Types Section */
.angels-types-section {
    padding: 6rem 0;
}

.angels-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.angel-type-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.angel-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-green));
}

.angel-type-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
}

.angel-type-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.angel-type-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.angel-type-features {
    list-style: none;
    padding: 0;
}

.angel-type-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.angel-type-features li i {
    color: var(--primary-green);
    font-size: 1rem;
}

/* Beginner Guide Section */
.beginner-guide-section {
    padding: 6rem 0;
}

.beginner-guide-content {
    max-width: 1000px;
    margin: 0 auto;
}

.beginner-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.beginner-warning h3 {
    color: #FFC107;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.beginner-warning p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.beginner-steps {
    display: grid;
    gap: 2rem;
}

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

.beginner-step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.beginner-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.beginner-step h4 {
    font-size: 1.2rem;
    font-weight: 700;
}

.beginner-step p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.beginner-step ul {
    color: var(--text-secondary);
    padding-left: 1.5rem;
}

.beginner-step li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Safety Section */
.safety-section {
    padding: 6rem 0;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.safety-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.safety-card.warning {
    border-color: rgba(255, 193, 7, 0.3);
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), rgba(255, 152, 0, 0.05));
}

.safety-card.success {
    border-color: rgba(40, 167, 69, 0.3);
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(25, 135, 84, 0.05));
}

.safety-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.safety-card.warning .safety-icon {
    background: linear-gradient(135deg, #FFC107, #FF9800);
    color: white;
}

.safety-card.success .safety-icon {
    background: linear-gradient(135deg, #28A745, #198754);
    color: white;
}

.safety-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.safety-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.angels-cta-section {
    padding: 6rem 0;
}

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

.angels-cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.angels-cta-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cta-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.cta-stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-visual {
    position: relative;
}

.cta-image-carousel {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-img {
    width: 100%;
    height: auto;
    transition: opacity 0.5s ease;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content,
    .what-are-angels-content,
    .angels-cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .btn-primary, .btn-secondary {
        min-width: 200px;
        justify-content: center;
    }
    
    .angels-image-slider {
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .how-angels-work-grid,
    .angels-types-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .angels-hero-visual {
        order: -1;
    }
}

@media (max-width: 480px) {
    .angels-hero h1 {
        font-size: 2rem;
    }
    
    .angels-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .angels-step,
    .angel-type-card,
    .safety-card {
        padding: 1.5rem;
    }
    
    .angels-definition {
        padding: 2rem;
    }
}

/* ===== STRATEGY OVERVIEW SECTION ===== */
.strategy-overview-section {
    padding: 5rem 0;
    background: var(--glass-dark);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

.strategy-overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(212, 161, 77, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.strategy-card {
    background: var(--glass-light);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.strategy-card .card-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--bg-primary);
    box-shadow: var(--gold-glow);
}

.strategy-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.strategy-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== PEGASUS STRATEGY SECTION ===== */
.pegasus-strategy-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.pegasus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.pegasus-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pegasus-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--glass-light);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.pegasus-feature:hover {
    transform: translateX(10px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-md);
}

.pegasus-feature .feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--bg-primary);
    box-shadow: var(--gold-glow);
}

.pegasus-feature .feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pegasus-feature .feature-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* ===== ANGELS VISUAL SECTION ===== */
.angels-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
}

/* Hero Visual Section */
.hero-visual {
    position: relative;
    z-index: 2;
}

.angels-image-slider {
    position: relative;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.angels-image-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    transition: opacity 1s ease-in-out;
    border-radius: 15px;
    object-fit: cover;
}

.angels-image-slider img:first-child {
    display: block;
    opacity: 1;
}

.angels-image-slider img.active {
    display: block;
    opacity: 1;
}

.hero-stats-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.hero-stats-card h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

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

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

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== HALL OF ANGELS SECTION ===== */
.hall-of-angels-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.hall-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.hall-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.hall-stat {
    background: var(--glass-light);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.hall-stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-md);
}

.hall-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.hall-stat .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== BEGINNER GUIDE SECTION ===== */
.beginner-guide-section {
    padding: 5rem 0;
    background: var(--section-bg-light);
}

.guide-steps-container {
    margin-top: 3rem;
}

.guide-steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.guide-steps-row:last-child {
    margin-bottom: 0;
}

.guide-step {
    background: var(--glass-light);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.guide-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.guide-step .step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-primary);
    font-size: 0.9rem;
    box-shadow: var(--gold-glow);
}

.guide-step .step-icon {
    width: 60px;
    height: 60px;
    background: var(--glass-accent);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1.5rem;
    font-size: 1.5rem;
    color: var(--text-accent);
}

.guide-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.guide-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== FAQ SECTION ===== */
.angels-faq-section {
    padding: 5rem 0;
    background: var(--glass-dark);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

.angels-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(212, 161, 77, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--glass-light);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-normal);
}

.faq-question:hover {
    color: var(--text-accent);
}

.faq-question .faq-icon {
    font-size: 0.9rem;
    color: var(--text-accent);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.angels-cta-section {
    padding: 5rem 0;
    background: var(--glass-dark);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    color: var(--text-primary);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-primary);
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg), var(--gold-glow);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(212, 161, 77, 0.6);
    color: var(--bg-primary);
}

.cta-buttons .btn-secondary {
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.3) 0%, 
        rgba(0, 255, 171, 0.2) 50%,
        rgba(34, 197, 94, 0.3) 100%);
    border: 1px solid rgba(16, 185, 129, 0.6);
    color: #fff;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(20px);
    padding: 1rem 2rem;
}

.cta-buttons .btn-secondary:hover {
    background: linear-gradient(135deg, 
        rgba(71, 30, 133, 0.4) 0%, 
        rgba(139, 92, 246, 0.3) 50%,
        rgba(71, 30, 133, 0.4) 100%);
    border-color: rgba(71, 30, 133, 0.8);
    color: #ffffff;
    box-shadow: 0 0 30px rgba(71, 30, 133, 0.5);
    transform: translateY(-3px);
}

/* ===== RISK DISCLAIMER ===== */
.risk-disclaimer {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.risk-disclaimer .disclaimer-icon {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.risk-disclaimer h4 {
    color: #ffc107;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.risk-disclaimer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .guide-steps-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pegasus-content,
    .hall-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .btn-primary, .btn-secondary {
        min-width: 200px;
        justify-content: center;
    }

    .angels-image-slider {
        max-width: 100%;
        margin-top: 2rem;
    }

    .guide-steps-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .strategy-grid {
        grid-template-columns: 1fr;
    }

    .hall-stats {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .angels-image-slider {
        height: 250px;
    }

    .hero-visual {
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .strategy-card,
    .guide-step {
        padding: 1.5rem;
    }

    .pegasus-feature {
        padding: 1rem;
    }

    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 1.5rem 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.strategy-card,
.guide-step,
.pegasus-feature {
    animation: slideInUp 0.6s ease forwards;
}

.hall-stat {
    animation: fadeInScale 0.6s ease forwards;
}

/* Delay animations for staggered effect */
.strategy-card:nth-child(2) { animation-delay: 0.1s; }
.strategy-card:nth-child(3) { animation-delay: 0.2s; }
.guide-step:nth-child(2) { animation-delay: 0.1s; }
.guide-step:nth-child(3) { animation-delay: 0.2s; }
.guide-step:nth-child(4) { animation-delay: 0.3s; }

/* Hero Stats Card Styling */
.stats-note {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(212, 161, 77, 0.1);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(212, 161, 77, 0.2);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.stats-note i {
    color: var(--text-accent);
    margin-right: 0.5rem;
}

.stats-note strong {
    color: var(--text-primary);
}

/* Hall Features Styling */
.hall-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.hall-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 0;
}

.hall-feature i {
    color: var(--accent-green);
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 20px;
}

/* Static FAQ Styling */
.faq-item-static {
    background: var(--glass-light);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.faq-item-static:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-md);
}

.faq-question-static {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-question-static i {
    color: var(--text-accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-answer-static {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== NEW STYLES FOR STATIC FAQ AND IMPROVED FEATURES ===== */

/* Static FAQ Items */
.faq-item-static {
    background: var(--glass-light);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    padding: 2rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.faq-item-static:hover {
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faq-question-static {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-question-static i {
    color: var(--primary-gold);
    font-size: 1.1rem;
    min-width: 20px;
}

.faq-answer-static {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Hero Stats Card Updates */
.hero-stats-card {
    background: var(--glass-light);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.hero-stats-card h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1rem;
}

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

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.stats-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(212, 161, 77, 0.1);
    border: 1px solid rgba(212, 161, 77, 0.3);
    border-radius: var(--border-radius-sm);
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stats-note i {
    color: var(--primary-gold);
}

.stats-note strong {
    color: var(--text-primary);
}

/* Hall Features */
.hall-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.hall-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
}

.hall-feature:hover {
    transform: translateX(5px);
    border-color: var(--primary-gold);
}

.hall-feature i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    min-width: 20px;
}

.hall-feature span {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Guide Steps Layout - 3x3 Grid */
.guide-steps-container {
    margin-top: 3rem;
}

.guide-steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.guide-steps-row:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .guide-steps-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hall-features {
        gap: 0.75rem;
    }
    
    .faq-item-static {
        padding: 1.5rem;
    }
    
    .faq-question-static {
        font-size: 1.1rem;
    }
}
