﻿/* ========================================
   염승환 Landing Page Styles
   Color Palette: Dune Gold (#D9C2A7, #C9B28E, #B7B7B7)
   Font: Gowun Dodum
======================================== */

:root {
    --primary-gold: #D9C2A7;
    --secondary-gold: #C9B28E;
    --accent-gray: #B7B7B7;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --light-text: #f5f5f5;
    --muted-text: #999999;
    --card-bg: rgba(217, 194, 167, 0.08);
    --card-border: rgba(217, 194, 167, 0.15);
    --gradient-gold: linear-gradient(135deg, #D9C2A7 0%, #C9B28E 50%, #B7B7B7 100%);
    --gradient-dark: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Gowun Dodum', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Live Notification Bubble
======================================== */
.notification-bubble {
    position: fixed;
    bottom: 120px;
    left: 24px;
    background: rgba(217, 194, 167, 0.95);
    color: var(--dark-bg);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(217, 194, 167, 0.3);
    z-index: 1000;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
}

.notification-bubble.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.notification-content i {
    color: var(--secondary-gold);
    background: var(--dark-bg);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ========================================
   Hero Section
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 24px;
    overflow: hidden;
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    animation: parallaxFloat 20s ease-in-out infinite;
}

@keyframes parallaxFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-2%, 2%) scale(1.02); }
    50% { transform: translate(2%, -2%) scale(1); }
    75% { transform: translate(-1%, -1%) scale(1.01); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9) 0%, rgba(26, 26, 26, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--primary-gold);
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 16px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title-accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-highlight {
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(217, 194, 167, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--muted-text);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--primary-gold);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-gold);
    font-weight: 400;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--muted-text);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--card-border);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-family: inherit;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(217, 194, 167, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(217, 194, 167, 0.4);
}

.hero-cta i {
    font-size: 1rem;
}

.hero-image {
    position: relative;
    z-index: 2;
    margin-left: 60px;
}

.image-frame {
    position: relative;
    width: 380px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--card-border);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 194, 167, 0.2) 0%, transparent 50%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-gold);
    animation: bounce 2s ease-in-out infinite;
    z-index: 3;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ========================================
   Section Styles
======================================== */
.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.parallax-element {
    position: absolute;
    pointer-events: none;
}

.parallax-circle-1 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 194, 167, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.parallax-circle-2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 178, 142, 0.06) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
}

.parallax-dot-pattern {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(rgba(217, 194, 167, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.parallax-glow {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 194, 167, 0.15) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-tag.center {
    justify-content: center;
    display: flex;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-title.center {
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    color: var(--muted-text);
    line-height: 1.8;
    margin-bottom: 32px;
}

.section-description.center {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-description strong {
    color: var(--primary-gold);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-grid.left-image .content-image {
    order: 1;
}

.content-grid.left-image .content-text {
    order: 2;
}

.content-grid.right-image .content-image {
    order: 2;
}

.content-grid.right-image .content-text {
    order: 1;
}

.content-image .image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--card-border);
}

.content-image .image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.content-image .image-container:hover img {
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--primary-gold);
    border-radius: 16px;
    opacity: 0.3;
    pointer-events: none;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--card-border);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.section-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 14px 28px;
    font-size: 1rem;
    font-family: inherit;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-cta:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

/* Schedule Cards */
.schedule-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.schedule-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 20px 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.schedule-card:hover {
    border-color: var(--primary-gold);
    transform: translateX(8px);
}

.schedule-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.schedule-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--light-text);
}

.schedule-info p {
    font-size: 0.9rem;
    color: var(--muted-text);
}

/* Video Preview */
.video-preview {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--card-border);
}

.video-preview img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.video-preview:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(217, 194, 167, 0.4);
}

.video-preview:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    margin-left: 4px;
}

/* ========================================
   Benefits Section
======================================== */
.benefits-section {
    background: var(--darker-bg);
}

.section-header {
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px 28px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(217, 194, 167, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--dark-bg);
    font-size: 1.6rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--light-text);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--muted-text);
    line-height: 1.6;
}

.benefits-cta {
    text-align: center;
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-family: inherit;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(217, 194, 167, 0.3);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(217, 194, 167, 0.4);
}

/* ========================================
   Testimonials Section
======================================== */
.testimonials-carousel {
    position: relative;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: 20px;
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-quote {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--light-text);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 1.1rem;
    color: var(--primary-gold);
}

.author-role {
    font-size: 0.9rem;
    color: var(--muted-text);
}

.testimonial-nav {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn.active {
    background: var(--primary-gold);
}

.nav-btn:hover {
    background: rgba(217, 194, 167, 0.5);
}

/* ========================================
   Final CTA Section
======================================== */
.final-cta-section {
    background: var(--darker-bg);
    text-align: center;
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-description {
    font-size: 1.2rem;
    color: var(--muted-text);
    margin-bottom: 48px;
    line-height: 1.8;
}

.join-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.3rem;
    font-weight: 500;
}

.step span {
    font-size: 0.95rem;
    color: var(--muted-text);
}

.step-arrow {
    color: var(--primary-gold);
    font-size: 1.2rem;
    opacity: 0.5;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--darker-bg);
    padding: 40px 0 120px;
    border-top: 1px solid var(--card-border);
}

.footer-content {
    text-align: center;
}

.footer-text {
    color: var(--muted-text);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-text i {
    color: var(--primary-gold);
}

.footer-links {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--muted-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-links .divider {
    color: var(--card-border);
    margin: 0 12px;
}

.copyright {
    color: var(--muted-text);
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ========================================
   Fixed Bottom CTA
======================================== */
.fixed-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    background: linear-gradient(to top, var(--darker-bg) 0%, rgba(15, 15, 15, 0.95) 100%);
    z-index: 999;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.fixed-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border: none;
    padding: 16px 48px;
    font-size: 1.1rem;
    font-family: inherit;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(217, 194, 167, 0.4);
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(217, 194, 167, 0.4); }
    50% { box-shadow: 0 8px 48px rgba(217, 194, 167, 0.6); }
}

.fixed-cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 48px rgba(217, 194, 167, 0.5);
}

.fixed-cta-btn i:first-child {
    font-size: 1.2rem;
}

.fixed-cta-btn i:last-child {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.fixed-cta-btn:hover i:last-child {
    transform: translateX(4px);
}

/* ========================================
   Responsive Styles
======================================== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 24px 80px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        margin-left: 0;
        margin-top: 40px;
    }

    .image-frame {
        width: 300px;
        height: 380px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .content-grid.left-image .content-image,
    .content-grid.right-image .content-image {
        order: 1;
    }

    .content-grid.left-image .content-text,
    .content-grid.right-image .content-text {
        order: 2;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .hero {
        min-height: auto;
        padding: 80px 16px 60px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-subtitle br {
        display: none;
    }

    /* Stats保持一行 */
    .hero-stats {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        margin-bottom: 24px;
        flex-wrap: nowrap;
    }

    .stat-item {
        flex: 1;
        min-width: 0;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .stat-divider {
        width: 1px;
        height: 30px;
        flex-shrink: 0;
    }

    .hero-cta {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .hero-image {
        margin-top: 32px;
    }

    /* 图片调整为更合适的尺寸 */
    .image-frame {
        width: 200px;
        height: 260px;
        border-radius: 16px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 14px;
        margin-bottom: 16px;
    }

    .scroll-indicator {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 32px 24px;
    }

    .join-steps {
        flex-direction: column;
        gap: 20px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .notification-bubble {
        left: 16px;
        right: 16px;
        bottom: 100px;
    }

    .fixed-cta-btn {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .schedule-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 16px 50px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    /* Stats一行紧凑展示 */
    .hero-stats {
        gap: 8px;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .stat-divider {
        height: 24px;
    }

    .image-frame {
        width: 180px;
        height: 230px;
    }

    .hero-cta {
        padding: 12px 20px;
        font-size: 0.9rem;
        gap: 8px;
    }

    .hero-cta .btn-icon {
        width: 22px;
        height: 22px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .fixed-cta-btn span {
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.35rem;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .stat-divider {
        display: none;
    }

    .hero-stats {
        gap: 6px;
    }

    .image-frame {
        width: 160px;
        height: 200px;
    }
}

/* ========================================
   Parallax Scroll Effects
======================================== */
[data-parallax] {
    transition: transform 0.1s ease-out;
}

/* Smooth Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.hero-content,
.hero-image {
    animation: slideUp 1s ease-out forwards;
    opacity: 0;
}

.hero-content {
    animation-delay: 0.2s;
}

.hero-image {
    animation-delay: 0.4s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Button Icon Image
======================================== */
.btn-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
}

.hero-cta .btn-icon,
.primary-cta .btn-icon,
.fixed-cta-btn .btn-icon {
    width: 28px;
    height: 28px;
}

.section-cta .btn-icon {
    width: 22px;
    height: 22px;
}

/* ========================================
   Modal Styles
======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--dark-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid var(--card-border);
    background: var(--card-bg);
}

.modal-header h3 {
    font-size: 1.4rem;
    color: var(--primary-gold);
    font-weight: 400;
}

.modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--muted-text);
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(217, 194, 167, 0.1);
    color: var(--primary-gold);
}

.modal-body {
    padding: 32px;
    overflow-y: auto;
    line-height: 1.8;
}

.modal-body h4 {
    font-size: 1.1rem;
    color: var(--primary-gold);
    margin: 24px 0 12px 0;
    font-weight: 400;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    color: var(--muted-text);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.modal-body ul {
    list-style: none;
    margin-bottom: 16px;
    padding-left: 0;
}

.modal-body ul li {
    color: var(--muted-text);
    font-size: 0.95rem;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.modal-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
}

.modal-date {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid var(--card-border);
    color: var(--accent-gray);
    font-size: 0.85rem;
}

.disclaimer-warning {
    background: rgba(217, 194, 167, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.disclaimer-warning i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.disclaimer-warning p {
    margin: 0;
    color: var(--light-text);
}

.disclaimer-warning strong {
    color: var(--primary-gold);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        max-height: 90vh;
        border-radius: 16px;
    }

    .modal-header {
        padding: 20px 24px;
    }

    .modal-header h3 {
        font-size: 1.2rem;
    }

    .modal-body {
        padding: 24px;
    }

    .modal-body h4 {
        font-size: 1rem;
    }

    .modal-body p,
    .modal-body ul li {
        font-size: 0.9rem;
    }

    .disclaimer-warning {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .disclaimer-warning i {
        align-self: center;
    }
}

