@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;0,900;1,700;1,900&family=Roboto:wght@400;500;700&display=swap');

/* DESIGN TOKENS */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-card: #171717;
    --bg-card-highlight: #1f1f1f;
    --color-yellow: #ffcc00;
    --color-yellow-hover: #e5b800;
    --color-text-white: #ffffff;
    --color-text-paragraph: #d4d4d4;
    --color-text-muted: #a3a3a3;
    --color-border: #262626;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(255, 204, 0, 0.25);
    --shadow-glow-hover: 0 0 30px rgba(255, 204, 0, 0.45);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* CSS RESET & GENERAL STYLES */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--color-text-paragraph);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-white);
}

strong {
    color: var(--color-text-white);
}

/* UTILITY CLASSES */
.container {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-yellow {
    color: var(--color-yellow);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-yellow) 0%, #facc15 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BUTTONS */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-yellow);
    color: #000000 !important;
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: var(--transition-smooth);
    width: 100%;
    text-align: center;
}

.btn-cta:hover {
    background-color: var(--color-yellow-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-hover);
}

.btn-cta:active {
    transform: translateY(-1px);
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/hero-bg.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.85) 60%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-tagline {
    color: var(--color-yellow);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    font-style: italic;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-paragraph);
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 680px;
}

.hero-cta {
    margin-top: 16px;
}

/* SECTION HEADERS */
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* PROGRAM INFO SECTION */
.program-info {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.info-card {
    background-color: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-text-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 1.1rem;
    color: var(--color-text-paragraph);
}

.info-list {
    margin-top: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.05rem;
}

.info-list-item svg {
    color: var(--color-yellow);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

/* BENEFITS GRID SECTION */
.benefits {
    padding: 60px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--bg-primary);
    border: 1px solid var(--color-border);
    padding: 20px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    border-color: rgba(255, 204, 0, 0.4);
    transform: translateY(-2px);
}

.benefit-card svg {
    color: var(--color-yellow);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.benefit-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-white);
    line-height: 1.3;
}

/* BIO SECTION */
.bio {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.bio-card {
    background-color: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.bio-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    width: 100%;
}

.bio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
}

.bio-card:hover .bio-image {
    filter: grayscale(0%);
}

.bio-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bio-label {
    color: var(--color-yellow);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.bio-name {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
}

.bio-description {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 1.1rem;
    color: var(--color-text-paragraph);
}

/* FAQ SECTION */
.faq {
    padding: 80px 0;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--color-border);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-primary);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 204, 0, 0.25);
}

.faq-btn {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-white);
    line-height: 1.4;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

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

.faq-item.active {
    border-color: var(--color-yellow);
}

.faq-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease-out;
    background-color: rgba(0, 0, 0, 0.2);
}

.faq-content p {
    padding: 0 24px 24px 24px;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    white-space: pre-line;
}

/* PRICING SECTION */
.pricing {
    padding: 100px 0;
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.pricing-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.pricing .container {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.pricing-logo {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: -0.5px;
    margin-bottom: 32px;
}

.pricing-card {
    background-color: var(--bg-card-highlight);
    border-left: 4px solid var(--color-yellow);
    border-radius: 0 16px 16px 0;
    padding: 40px 32px;
    box-shadow: var(--shadow-premium), 0 0 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.price-title {
    font-size: 1.65rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.05rem;
}

.price-list-item svg {
    color: var(--color-yellow);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    fill: rgba(255, 204, 0, 0.15);
}

.price-subtext {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-text-white);
    line-height: 1.4;
}

/* FOOTER */
.footer {
    background-color: var(--color-yellow);
    color: #000000;
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    border-top: 1px solid var(--color-yellow-hover);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    align-items: center;
}

/* MEDIA QUERIES (RESPONSIVENESS) */
@media (min-width: 768px) {
    .btn-cta {
        width: auto;
        padding: 18px 44px;
        font-size: 1.15rem;
    }
    
    .hero {
        padding: 120px 0;
    }
    
    .hero-content {
        gap: 32px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 40px;
    }
    
    .benefits-grid > div:last-child {
        grid-column: 1 / span 2;
        justify-self: start;
        width: calc(50% - 20px);
    }
    
    .bio-card {
        flex-direction: row;
        padding: 40px;
        align-items: stretch;
    }
    
    .bio-image-wrapper {
        width: 40%;
        height: auto;
        min-height: 380px;
    }
    
    .bio-content {
        width: 60%;
        padding: 12px 0 12px 16px;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: row;
        gap: 8px;
    }
    
    .footer-divider {
        display: inline;
    }
}

.footer-divider {
    display: none;
}
