:root {
    --color-bg: #090b10;
    --color-bg-secondary: #11141d;
    --color-text: #e2e8f0;
    --color-text-muted: #94a3b8;
    --color-primary: #d4af37; /* Luxury Gold */
    --color-primary-hover: #b08d27;
    --color-accent: #0f172a;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2, h3, .logo-text {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--color-primary);
    color: #000;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #000;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: background 0.3s ease;
}

.header.scrolled {
    background: rgba(9, 11, 16, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.logo-text {
    font-size: 24px;
    color: var(--color-primary);
    letter-spacing: 2px;
}

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

.header-menu__nav-link {
    font-size: 15px;
    color: var(--color-text);
    transition: color 0.3s ease;
    outline: none;
}

.header-menu__nav-link:hover,
.header-menu__nav-link:focus-visible {
    color: var(--color-primary);
}

.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    padding: 8px;
    margin-left: 12px;
    z-index: 200;
}

/* Language Switcher */
.header-menu__lang {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.lang-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    padding: 8px 12px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 30px;
}

.lang-select:hover, .lang-select:focus {
    border-color: var(--color-primary);
}

.lang-select option {
    background: #090B10;
    color: var(--color-text);
}

/* Contact Floating Menu */
.contact-menu-wrapper {
    position: relative;
    display: inline-block;
}

.contact-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(20, 24, 34, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 12px;
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
    z-index: 100;
}

.contact-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Triangle Pointer */
.contact-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(20, 24, 34, 0.85);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-dropdown__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--color-text);
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
}

.contact-dropdown__item svg {
    color: var(--color-primary);
    transition: transform 0.2s ease;
}

.contact-dropdown__item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-primary);
}

.contact-dropdown__item:hover svg {
    transform: scale(1.1);
}

/* Main Background Ambient Circles */


/* Main Background Ambient Circles */
.bg-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-circles__big {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.bg-circles__big_1 {
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    top: -100px;
    right: -100px;
}

.bg-circles__big_2 {
    width: 800px;
    height: 800px;
    background: #1e3a8a;
    bottom: -200px;
    left: -200px;
}

/* Sections */
section {
    padding: 64px 20px;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.begin-header {
    padding-top: 120px;
}

.begin-header__row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.begin-header__left {
    flex: 1;
}

.begin-header__title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.begin-header__desc {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.begin-header__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.begin-header__item {
    font-weight: 500;
    position: relative;
    padding-left: 24px;
}

.begin-header__item::before {
    content: "•";
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1;
}

.begin-header__bg {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 5;
}

.hero-slider__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    opacity: 0;
    animation: fadeSlider 10s infinite;
}

.hero-slider__img--1 {
    animation-delay: 0s;
}

.hero-slider__img--2 {
    animation-delay: 5s;
}

@keyframes fadeSlider {
    0% { opacity: 0; }
    10% { opacity: 1; }
    40% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 0; }
}

/* About Section */
.begin-about__inner {
    padding: 40px;
    text-align: center;
}

.begin-about__title {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.begin-about__text {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.begin-about__text strong {
    color: var(--color-text);
}

/* What are You Getting */
.begin-get__title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
}

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

.begin-get__item {
    background: var(--color-bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    transition: transform 0.3s ease;
}

.begin-get__item:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.icon-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #b08d27 100%);
    margin-bottom: 24px;
    opacity: 0.8;
}

.begin-get__item-title {
    font-size: 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 12px;
}

.begin-get__item-params {
    font-size: 14px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.begin-get__item-desc {
    color: var(--color-text-muted);
    margin-bottom: 30px;
    font-size: 15px;
}

/* What you'll learn */
.begin-program__title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
}

.begin-program__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.begin-program__item {
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.begin-program__item-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Packages */
.begin-challenge__inner {
    display: flex;
    padding: 40px;
    gap: 40px;
    align-items: center;
}

.begin-challenge__left {
    flex: 1;
}

.begin-challenge__title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.begin-challenge__desc {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.begin-challenge__right {
    flex: 1;
}

.begin-challenge__price-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--glass-border);
}

.begin-challenge__price-item:last-child {
    border-bottom: none;
}

.begin-challenge__price-col {
    font-size: 18px;
}

.begin-challenge__price-col.highlight {
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
}

/* Consultation Form */
.begin-consult__inner {
    padding: 40px;
    text-align: center;
}

.begin-consult__title {
    font-size: 36px;
    margin-bottom: 32px;
}

.begin-consult__form {
    max-width: 800px;
    margin: 0 auto;
}

.begin-consult__form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.begin-consult__text-input {
    width: 100%;
    padding: 16px 24px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.begin-consult__text-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.begin-consult__agree {
    margin-bottom: 30px;
    color: var(--color-text-muted);
    font-size: 14px;
}

/* FAQ Section */
.begin-faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.begin-faq__title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 24px;
    font-size: 18px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '';
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(-180deg);
    background-color: var(--color-primary);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

.faq-answer {
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--color-text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 24px;
}

/* Footer */
.footer {
    padding: 48px 20px 24px;
    border-top: 1px solid var(--glass-border);
    margin-top: 48px;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer__disclaimer {
    font-size: 12px;
    color: rgba(148, 163, 184, 0.6);
    line-height: 1.8;
}

.footer__disclaimer p {
    margin-bottom: 16px;
}

/* Testimonials Section */
.begin-testimonials {
    padding: 64px 0;
    position: relative;
    z-index: 10;
}

.begin-testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.begin-testimonials__title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-primary);
}

.begin-testimonials__marquee {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.begin-testimonials__marquee::before,
.begin-testimonials__marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.begin-testimonials__marquee::before {
    left: 0;
    background: linear-gradient(to right, #090b10, transparent);
}

.begin-testimonials__marquee::after {
    right: 0;
    background: linear-gradient(to left, #090b10, transparent);
}

.begin-testimonials__marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 80s linear infinite;
}

.begin-testimonials__marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    width: 400px;
    margin: 0 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.testimonial-content {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--color-primary);
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #888;
    font-size: 14px;
}


/* Responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .begin-header__row, .begin-challenge__inner, .begin-about__inner {
        flex-direction: column;
        gap: 32px;
    }
    
    .begin-header__bg {
        width: 100%;
    }
    
    .begin-get__row, .begin-program__list, .begin-consult__form-row {
        grid-template-columns: 1fr;
    }
    
    .header-menu__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(9, 11, 16, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 150;
        margin: 0;
        padding: 0;
    }

    .header-menu__nav.mobile-menu-active {
        right: 0;
    }

    .header-menu__nav-item {
        margin: 16px 0;
    }

    .header-menu__nav-link {
        font-size: 24px;
        font-weight: 600;
    }

    .hamburger-btn {
        display: block;
    }

    .header-menu__control {
        display: none;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    section {
        padding: 48px 16px;
    }

    .begin-header {
        padding-top: 100px;
    }

    .begin-about__inner, .begin-challenge__inner, .begin-consult__inner {
        padding: 24px;
    }
    
    .begin-get__item {
        padding: 24px;
    }

    .faq-question {
        padding: 16px;
    }
    
    .faq-answer {
        padding: 0 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 16px 16px;
    }
}
