:root {
    --bg-dark: #070707;
    --bg-panel: #111111;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-hover: rgba(255, 255, 255, 0.05);
    
    --accent: #c9f31d;
    --accent-hover: #b0d618;
    --accent-glow: rgba(201, 243, 29, 0.4);
    
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --border-glass: 1px solid rgba(255, 255, 255, 0.05);
    --border-accent: 1px solid rgba(201, 243, 29, 0.3);
    
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-700 { max-width: 700px; }

.accent-subtitle {
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: inline-block;
}

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

.text-outline-sm {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-main);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 0;
    border-bottom: var(--border-glass);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 1px;
}

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

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

.nav-list a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--accent-glow);
}

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

.nav-list a:hover {
    color: var(--text-main);
}

/* Dropdown Menu */
.nav-list .dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    z-index: 105;
}

.nav-list .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(201, 243, 29, 0.1);
    color: var(--accent);
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-nav {
    padding: 10px 24px;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
}

.btn-outline-nav:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-glow {
    padding: 16px 36px;
    font-size: 15px;
    background-color: var(--accent);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-glow:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 0 30px rgba(201, 243, 29, 0.6);
    transform: translateY(-2px);
}

.btn-glow-full {
    width: 100%;
    padding: 16px 24px;
    background-color: var(--accent);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-glow-full:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 0 30px rgba(201, 243, 29, 0.6);
}

.btn-outline-full {
    width: 100%;
    padding: 16px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
}

.btn-outline-full:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(201, 243, 29, 0.05);
}

.btn-link {
    font-size: 14px;
    color: var(--text-main);
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-color: rgba(255,255,255,0.3);
}

.btn-link:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

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

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 22vw;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.subtitle-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--bg-glass);
    border: var(--border-glass);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.subtitle-badge .dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.hero .title {
    font-size: clamp(60px, 6vw, 90px);
    margin-bottom: 25px;
    line-height: 1.05;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--text-main);
    font-size: clamp(50px, 5vw, 80px);
}

.hero .description {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item h4 {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(40px);
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.main-img {
    position: relative;
    z-index: 1;
    max-height: 85vh;
    object-fit: cover;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.glass-card {
    position: absolute;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--border-glass);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.floating-card-1 {
    bottom: 20%;
    left: -10%;
    animation: float-y 6s ease-in-out infinite;
}

.glass-card .icon {
    font-size: 24px;
    background: rgba(255,255,255,0.05);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.glass-card h5 {
    font-family: var(--font-body);
    font-size: 16px;
    text-transform: none;
    letter-spacing: 0;
}

.glass-card p {
    font-size: 12px;
    color: var(--accent);
}

@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0.6;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-main);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* Programs section */
.programs-overview {
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-panel));
}

.section-header h2 {
    font-size: clamp(40px, 4vw, 60px);
}

.section-header h2 span {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-main);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.program-card {
    position: relative;
    background: var(--bg-glass);
    border: var(--border-glass);
    padding: 40px 30px;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(201, 243, 29, 0.1), transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-accent);
    background: var(--bg-glass-hover);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.program-card:hover::before {
    opacity: 1;
}

.card-bg {
    position: absolute;
    top: -20px;
    right: 10px;
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    transition: var(--transition);
}

.program-card:hover .card-bg {
    color: rgba(201, 243, 29, 0.05);
    transform: scale(1.1);
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.card-content p {
    font-size: 15px;
    margin-bottom: 30px;
    min-height: 70px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-link .arrow {
    color: var(--accent);
    transition: var(--transition);
}

.program-card:hover .card-link .arrow {
    transform: translateX(5px);
}

/* About Section */
.about {
    background: var(--bg-panel);
    position: relative;
}

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

.about-image-col {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.image-frame img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--transition);
}

.image-frame:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.accent-border {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: 20px;
    z-index: -1;
    transition: var(--transition);
}

.image-frame:hover + .accent-border, 
.image-frame:hover ~ .accent-border {
    top: 10px;
    left: 10px;
}

.about-content h2 {
    font-size: clamp(40px, 4vw, 55px);
    margin-bottom: 30px;
}

.lead {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 20px;
}

.quote-box {
    background: var(--bg-glass);
    border-left: 4px solid var(--accent);
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 12px 12px 0;
}

.quote-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 243, 29, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Pricing */
.pricing {
    background: linear-gradient(to top, var(--bg-dark), var(--bg-panel));
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    align-items: center;
}

.price-card {
    background: var(--bg-glass);
    border: var(--border-glass);
    border-radius: 20px;
    padding: 50px 40px;
    transition: var(--transition);
    position: relative;
}

.price-card:hover {
    background: var(--bg-glass-hover);
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.price-card.popular {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(201, 243, 29, 0.3);
    padding: 60px 40px;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 40px rgba(201, 243, 29, 0.05);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--accent);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent);
    color: #000;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.price-header h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.popular .price-header h3 {
    color: var(--text-main);
}

.price {
    font-family: var(--font-heading);
    font-size: 55px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
}

.popular .price {
    color: var(--accent);
}

.price span {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
}

.features li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.card-action {
    margin-top: 40px;
}

/* FAQ & CTA */
.faq-cta {
    background: var(--bg-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(25,25,25,1) 0%, rgba(15,15,15,1) 100%);
    border: var(--border-glass);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-image {
    max-width: 150px;
    margin: 40px auto 0;
    opacity: 0.8;
}

.accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 10px;
}

.accordion-header {
    padding: 25px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--accent);
}

.accordion-header.active {
    color: var(--accent);
}

.accordion-header .icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.accordion-header .icon::before,
.accordion-header .icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: var(--transition);
}

.accordion-header .icon::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}

.accordion-header .icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}

.accordion-header.active .icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-body p {
    padding-bottom: 25px;
}

/* Footer */
.modern-footer {
    background: #000;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-brand h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-brand h2 span {
    color: var(--accent);
}

.footer-brand p {
    max-width: 350px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text-main);
}

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

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

.footer-links a:hover {
    color: var(--accent);
}

.c-icon {
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .stats {
        justify-content: center;
    }
    
    .floating-card-1 {
        left: 10%;
        bottom: 10%;
    }
    
    .about-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.popular {
        transform: scale(1);
    }
    
    .price-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        display: none;
        padding-left: 20px;
        margin-top: 10px;
    }
    
    .nav-list .dropdown:hover .dropdown-menu,
    .nav-list .dropdown:active .dropdown-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0 20px;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(7, 7, 7, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 100;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-list a {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .btn-outline-nav {
        display: none;
    }
    
    .hero-bg-text {
        font-size: 28vw;
    }
}
