/* ========================================
   VMESTOTATOO Landing Page Styles
   Color Palette: #FFD700 (Gold), #FFFFE0 (Light Yellow)
   ======================================== */

/* CSS Variables */
:root {
    --gold: #FFD700;
    --gold-dark: #E6C200;
    --gold-light: #FFE44D;
    --cream: #FFFFE0;
    --cream-dark: #F5F5C3;
    --black: #0a0a0a;
    --dark: #1a1a1a;
    --dark-gray: #2a2a2a;
    --gray: #666;
    --light-gray: #999;
    --white: #fff;
    
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    --gradient-dark: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
    
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 30px rgba(255, 215, 0, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.highlight {
    color: var(--gold);
    position: relative;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 12px 28px;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 40%),
        var(--gradient-dark);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-text h1 {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-gray);
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.hero-image-decor {
    position: absolute;
    inset: -20px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    z-index: -1;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--light-gray);
    font-size: 0.85rem;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(10px); }
}

/* For Who Section */
.for-who {
    padding: 120px 0;
    background: var(--black);
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.for-who-card {
    background: linear-gradient(145deg, rgba(255, 255, 224, 0.03) 0%, rgba(255, 215, 0, 0.02) 100%);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.for-who-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--dark);
}

.for-who-card h3 {
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.for-who-card p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* Results Section */
.results {
    padding: 120px 0;
    background: var(--dark);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.result-card {
    background: rgba(255, 255, 224, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: var(--radius-md);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.result-card:hover {
    background: rgba(255, 215, 0, 0.05);
    transform: scale(1.02);
}

.result-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
}

.result-label {
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.result-text p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image.main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-image.secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    border: 4px solid var(--dark);
    box-shadow: var(--shadow-lg);
}

.about-image.secondary img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.about-content .section-badge {
    display: inline-block;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-lead {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 24px;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
}

.about-text {
    margin-bottom: 40px;
}

.about-text p {
    color: var(--light-gray);
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 50px;
}

.about-stat {
    display: flex;
    flex-direction: column;
}

.about-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.about-stat-label {
    font-size: 0.9rem;
    color: var(--light-gray);
}

/* Program Section */
.program {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
}

.program-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.program-phase {
    background: rgba(255, 255, 224, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.program-phase:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.program-phase.bonus {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.02) 100%);
    border-color: rgba(255, 215, 0, 0.3);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px 40px;
    background: rgba(255, 215, 0, 0.03);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.phase-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    min-width: 60px;
}

.phase-header h3 {
    flex: 1;
    color: var(--white);
}

.phase-badge {
    padding: 6px 16px;
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
}

.phase-content {
    padding: 30px 40px;
}

.phase-content ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 40px;
    list-style: none;
}

.phase-content li {
    position: relative;
    padding-left: 24px;
    color: var(--light-gray);
}

.phase-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

/* Works Section */
.works {
    padding: 120px 0;
    background: var(--black);
}

.works-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.work-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.work-overlay span {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.work-item:hover img {
    transform: scale(1.1);
}

.work-item:hover .work-overlay {
    opacity: 1;
}

/* Process Section */
.process {
    padding: 120px 0;
    background: var(--dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.process-step {
    position: relative;
    padding: 40px 30px;
    background: rgba(255, 255, 224, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.process-step:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 20px;
}

.step-content h3 {
    color: var(--gold);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

.process-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-height: 400px;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Transformation Section */
.transformation {
    padding: 120px 0;
    background: var(--black);
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.transformation-card {
    padding: 50px 40px;
    border-radius: var(--radius-lg);
}

.transformation-card.before {
    background: rgba(100, 100, 100, 0.1);
    border: 1px solid rgba(100, 100, 100, 0.2);
}

.transformation-card.after {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.02) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.transformation-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.transformation-card.before h3 {
    color: var(--light-gray);
}

.transformation-card.after h3 {
    color: var(--gold);
}

.transformation-subtitle {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 24px;
}

.transformation-card ul {
    list-style: none;
}

.transformation-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    color: var(--light-gray);
}

.transformation-card.before li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-size: 1.2rem;
    font-weight: bold;
}

.transformation-card.after li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1rem;
    font-weight: bold;
}

.transformation-arrow {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
}

.transformation-arrow svg {
    width: 28px;
    height: 28px;
    stroke: var(--dark);
}

/* Included Section */
.included {
    padding: 120px 0;
    background: var(--dark);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.included-item {
    padding: 32px;
    background: rgba(255, 255, 224, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.included-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.05);
}

.included-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.included-item h4 {
    color: var(--cream);
    margin-bottom: 8px;
    font-size: 1rem;
}

.included-item p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: var(--black);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    transition: var(--transition);
}

.faq-question:hover span {
    color: var(--gold);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--light-gray);
    line-height: 1.7;
}

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

/* CTA Section */
.cta {
    padding: 120px 0;
    background: 
        radial-gradient(ellipse at center, rgba(255, 215, 0, 0.15) 0%, transparent 70%),
        var(--dark);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 20px;
    color: var(--cream);
}

.cta-content > p {
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-buttons .btn svg {
    width: 20px;
    height: 20px;
}

.cta-note {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--black);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--gray);
    margin-top: 16px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .for-who-grid,
    .results-grid,
    .works-gallery,
    .process-steps,
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links,
    .nav-btn {
        display: none;
    }
    
    .burger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-image-wrapper img {
        height: 400px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 40px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image.secondary {
        right: 20px;
        bottom: -20px;
    }
    
    .transformation-grid {
        grid-template-columns: 1fr;
    }
    
    .transformation-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .for-who-grid,
    .results-grid,
    .works-gallery,
    .process-steps,
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .phase-content ul {
        grid-template-columns: 1fr;
    }
    
    .phase-header {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
        max-width: 300px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-image {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-image {
    animation-delay: 0.2s;
}

/* Glass effect */
.glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Selection */
::selection {
    background: var(--gold);
    color: var(--dark);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}
