* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #000000;
    --bg-dark-secondary: #0a0a0a;
    --bg-card: #1a1a1a;
    --gold: #FFD700;
    --gold-light: #FFE55C;
    --gold-dark: #D4AF37;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-light-gray: #d0d0d0;
    --border-gray: #2a2a2a;
    --border-gold: rgba(255, 215, 0, 0.3);
    --green: #22c55e;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0; 
        transform: translateY(40px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes slideInLeft {
    from { 
        opacity: 0; 
        transform: translateX(-40px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes slideInRight {
    from { 
        opacity: 0; 
        transform: translateX(40px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.5s forwards;
}

.animate-fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.7s forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HEADER NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 8px 0;
    background-color: rgba(0, 0, 0, 0.95);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.02em;
    text-decoration: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.btn-register {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 60px;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--border-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-title-line {
    display: block;
    color: var(--text-white);
}

.hero-title-line.gold {
    color: var(--gold);
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
    position: relative;
}

.hero-title-line.gold::after {
    content: '.';
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-trial {
    font-size: 1.1rem;
    color: #22c55e;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-disclaimer {
    font-size: 0.85rem;
    color: #ef4444;
    margin-bottom: 28px;
    font-weight: 500;
}

.hero-buttons {
    display: block;
    margin-bottom: 0;
}

.btn-get-started {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    border: none;
    padding: 16px 48px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.btn-get-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-get-started:hover::before {
    left: 100%;
}

.btn-get-started:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-get-started svg {
    transition: transform 0.3s ease;
}

.btn-get-started:hover svg {
    transform: translateX(4px);
}

.btn-learn-more {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-gray);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-learn-more:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 20px;
}

.hero-chart {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-gray);
}

/* ============================================
   MAIN CONTENT SECTION
   ============================================ */

.main-content {
    padding: 60px 0;
    background-color: var(--bg-dark);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.content-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 2px;
    margin-bottom: 8px;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light-gray);
}

.content-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.btn-how-it-works {
    background-color: var(--bg-card);
    color: var(--text-white);
    border: 1px solid var(--border-gray);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-how-it-works:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15);
}

.cta-subtext {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.feature-card {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    border: 1px solid var(--border-gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.2);
    transform: translateY(-8px);
}

.card-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 2px solid var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .card-border {
    opacity: 0.5;
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.card-icon-svg {
    width: 40px;
    height: 40px;
    color: var(--gold);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 10px var(--gold));
}

.card-icon-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    color: var(--text-white);
}

.card-description {
    color: var(--text-gray);
    text-align: center;
    line-height: 1.7;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 80px 0;
    background-color: var(--bg-dark-secondary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    text-align: left;
    padding: 28px;
    background-color: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-item:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.12);
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gold);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.1));
    transform: scale(1.05);
}

.feature-icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-white);
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

.feature-text {
    flex: 1;
}

/* ============================================
   PLANS SECTION
   ============================================ */

.plans {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.plans-trial {
    font-size: 1.15rem;
    color: #22c55e;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.plan-card {
    background-color: var(--bg-card);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    border: 1px solid var(--border-gray);
    transition: all 0.4s ease;
}

.plan-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.15);
}

.plan-card.featured {
    border-color: var(--gold);
    border-width: 2px;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
    animation: glow 3s ease-in-out infinite;
}

.plan-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-gray);
}

.plan-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.price-period {
    font-size: 1.25rem;
    color: var(--text-gray);
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.plan-features li {
    padding: 14px 0;
    color: var(--text-light-gray);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--green), #16a34a);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translateY(-1px);
}

.btn-subscribe {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-subscribe::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-subscribe:hover::before {
    left: 100%;
}

.btn-subscribe:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.5);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    padding: 80px 0;
    background-color: var(--bg-dark-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
    opacity: 0.3;
}

.step-item {
    text-align: center;
    padding: 40px 24px;
    position: relative;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    transition: all 0.4s ease;
}

.step-item:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    font-size: 2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 1;
}

.step-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-white);
}

.step-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-gray);
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer p strong {
    color: var(--text-white);
}

.faq-answer a {
    color: var(--gold);
    text-decoration: underline;
}

/* ============================================
   SUPPORT SECTION
   ============================================ */

.support {
    padding: 100px 0;
    background-color: var(--bg-dark-secondary);
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 40px;
}

.support-info h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.support-info > p {
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.support-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.support-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border-gold);
}

.support-icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.support-feature h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.support-feature p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.support-form-container {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-gray);
}

.support-form-container .form-group {
    margin-bottom: 24px;
}

.support-form-container .form-group label {
    display: block;
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.support-form-container .form-group input,
.support-form-container .form-group select,
.support-form-container .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background-color: var(--bg-dark-secondary);
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    min-height: 50px;
}

.support-form-container .form-group input:focus,
.support-form-container .form-group select:focus,
.support-form-container .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.support-form-container .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.support-form-container .form-group select option {
    background-color: var(--bg-dark-secondary);
    color: var(--text-white);
}

.support-form-container .form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.btn-submit-contact {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-contact:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-submit-contact:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#contact-form-status {
    margin-top: 20px;
    padding: 16px;
    border-radius: 10px;
    text-align: center;
    display: none;
}

#contact-form-status.success {
    display: block;
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid #22c55e;
}

#contact-form-status.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid #ef4444;
}

/* ============================================
   DISCLAIMER SECTION
   ============================================ */

.disclaimer {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 48px;
    border-radius: 20px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.disclaimer-box h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--gold);
}

.disclaimer-box p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.disclaimer-box strong {
    color: var(--text-white);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--bg-dark-secondary);
    padding: 60px 0 40px;
    border-top: 1px solid var(--border-gray);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
}

.footer p {
    color: var(--text-gray);
    margin: 8px 0;
}

.footer-disclaimer {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* ============================================
   MODAL
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-card);
    padding: 48px;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-gray);
    animation: slideUp 0.4s ease-out;
}

.modal-content h2 {
    color: var(--text-white);
    margin-bottom: 12px;
    font-size: 1.75rem;
}

.modal-content > p {
    color: var(--text-gray);
    margin-bottom: 24px;
}

.close {
    color: var(--text-gray);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 24px;
    top: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close:hover {
    color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
}

.oauth-section {
    margin-top: 24px;
}

.btn-discord-oauth {
    width: 100%;
    padding: 16px 24px;
    background: #5865F2;
    color: var(--text-white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.btn-discord-oauth:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

.btn-discord-oauth svg {
    width: 20px;
    height: 20px;
}

.oauth-description {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.oauth-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.oauth-divider::before,
.oauth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-gray);
}

.oauth-divider span {
    padding: 0 16px;
}

.oauth-toggle {
    text-align: center;
    margin-top: 16px;
}

.oauth-toggle a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.oauth-toggle a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.manual-section {
    margin-top: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--bg-dark-secondary);
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-help {
    display: block;
    margin-top: 8px;
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

.form-help a {
    color: var(--gold);
}

.btn-submit-checkout {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-checkout:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-submit-checkout:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#checkout-status {
    margin-top: 20px;
    padding: 16px;
    border-radius: 10px;
    text-align: center;
}

#checkout-status.loading {
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    border: 1px solid var(--gold);
}

#checkout-status.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid #ef4444;
}

#checkout-status.success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid #22c55e;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid::before {
        display: none;
    }
}

@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .support-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-chart {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
        margin-right: 8px;
    }
    
    .btn-register {
        padding: 10px 16px;
        font-size: 0.875rem;
    }
    
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--bg-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid var(--border-gray);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 16px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-gray);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .hero {
        padding: 90px 0 50px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-disclaimer {
        font-size: 0.8rem;
    }
    
    .btn-get-started {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    
    .hero-chart {
        max-width: 280px;
    }
    
    .logo-image {
        height: 36px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-item {
        padding: 20px;
        gap: 16px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item,
    .step-item {
        padding: 32px 20px;
    }
    
    .plan-card {
        padding: 36px 24px;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 16px 20px;
    }
    
    .disclaimer-box {
        padding: 32px 24px;
    }
    
    .support-form-container {
        padding: 32px 24px;
    }
    
    .modal-content {
        padding: 32px 24px;
        margin: 20px;
    }
    
    .footer-logo-image {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .btn-register {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .btn-get-started,
    .btn-learn-more {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-wrapper svg {
        width: 28px;
        height: 28px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .plan-card {
        padding: 28px 20px;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .disclaimer-box {
        padding: 24px 20px;
    }
    
    .disclaimer-box h3 {
        font-size: 1.25rem;
    }
    
    .nav {
        width: 100%;
    }
    
    .modal-content {
        padding: 24px 20px;
        border-radius: 16px;
    }
}
