/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo-text {
    font-size: 12px;
    color: #C9A961;
    letter-spacing: 0.5px;
}

.btn-reserve {
    background: #C9A961;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reserve:hover {
    background: #B89851;
    transform: scale(1.05);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #0a0a0f 0%, #1a1a2e 100%);
    background-image: url('https://images.unsplash.com/photo-1419242902214-272b3f66ee7a?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 0.3em;
    color: #C9A961;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title-accent {
    display: block;
    font-family: Georgia, serif;
    font-style: italic;
    color: #C9A961;
    margin-top: 12px;
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: #ddd;
    margin-bottom: 48px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 36px;
    font-weight: 300;
    color: #C9A961;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #C9A961;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #B89851;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #000;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Section Common */
section {
    padding: 100px 0;
}

.section-intro {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #C9A961;
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 300;
    color: #333;
    margin-bottom: 16px;
}

.section-title .accent {
    font-family: Georgia, serif;
    font-style: italic;
    color: #C9A961;
}

.section-description {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Intro Content */
.intro-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.intro-content p {
    margin-bottom: 24px;
}

.quote-box {
    background: linear-gradient(to right, #FFF8F0, white);
    border-left: 4px solid #C9A961;
    padding: 32px;
    margin: 48px 0;
    border-radius: 8px;
}

.quote {
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    color: #C9A961;
    margin: 0;
}

/* Modules */
.section-modules {
    background: white;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

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

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.module-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.module-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.module-card:hover .module-image img {
    transform: scale(1.1);
}

.module-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.module-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 10;
}

.module-number {
    font-size: 14px;
    color: #C9A961;
    font-weight: 600;
    margin-bottom: 8px;
}

.module-title {
    font-size: 20px;
    color: white;
    font-weight: 300;
}

.module-content {
    padding: 24px;
}

.module-content ul {
    list-style: none;
}

.module-content li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.module-content li::before {
    content: '•';
    color: #C9A961;
    font-weight: bold;
    flex-shrink: 0;
}

/* Audience */
.section-audience {
    background: linear-gradient(to bottom, #F5F5F0, white);
}

.audience-list {
    max-width: 900px;
    margin: 0 auto;
}

.audience-item {
    display: flex;
    gap: 24px;
    background: white;
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.audience-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.audience-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #C9A961;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
}

.audience-item p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

/* Benefits */
.section-benefits {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    background: linear-gradient(to right, #F9F5F1, white);
    padding: 20px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: linear-gradient(to right, #F5EFE7, #FFF);
    transform: translateX(4px);
}

.check {
    color: #C9A961;
    font-size: 20px;
    font-weight: bold;
}

/* Pricing */
.section-pricing {
    background: white;
}

.pricing-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FAF8F5, white);
    border: 2px solid #C9A961;
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.price {
    font-size: 64px;
    font-weight: 300;
    color: #C9A961;
    margin-bottom: 16px;
}

.price-subtitle {
    color: #666;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #555;
}

.pricing-note {
    background: white;
    padding: 24px;
    border-radius: 12px;
    font-size: 14px;
    font-style: italic;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-large {
    width: 100%;
    padding: 20px 40px;
    font-size: 18px;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #1a1a1a, #000);
    color: white;
    padding: 80px 0 32px;
}

.footer-newsletter {
    text-align: center;
    margin-bottom: 60px;
}

.footer-newsletter h3 {
    font-size: 32px;
    font-weight: 300;
    color: #C9A961;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 500px;
    margin: 32px auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    font-size: 16px;
}

.newsletter-form button {
    padding: 16px 32px;
    background: #C9A961;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: #C9A961;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 16px;
}

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

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

.footer-col a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #C9A961;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #C9A961;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-stats {
        gap: 32px;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .audience-item {
        flex-direction: column;
        text-align: center;
    }
}
