/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e8e8e8;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    width: 100% !important;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo {
    margin: 0 !important;
    padding-left: 20px !important;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #e8e8e8;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #b8941f;
}

.header-right {
    display: flex !important;
    align-items: center !important;
    gap: 30px !important;
    margin: 0 !important;
    padding-right: 20px !important;
}

.cta-btn-header {
    background: linear-gradient(135deg, #b8941f, #9a7a1a);
    color: #0a0a0a;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 148, 31, 0.3);
}

.cta-btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 148, 31, 0.4);
    background: linear-gradient(135deg, #d4af37, #b8941f);
}

/* Mobile Menu Button - Hidden by default, only shown on mobile */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #b8941f;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile menu active state */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #e8e8e8;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(184, 148, 31, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 40px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.highlight {
    background: linear-gradient(45deg, #b8941f, #9a7a1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #b8941f;
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: #b8b8b8;
    font-weight: 300;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 50px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #b8941f;
    display: block;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #888;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    justify-content: center;
}

/* Instructor Section */
.instructor {
    padding: 120px 0;
    background: #111111;
    border-top: 1px solid rgba(184, 148, 31, 0.1);
}

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

.instructor-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
    color: #e8e8e8;
    font-weight: 700;
}

.instructor-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #b8941f;
    margin-bottom: 25px;
    font-weight: 600;
}

.instructor-info p {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #b8b8b8;
    line-height: 1.8;
}

.instructor-achievements {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(184, 148, 31, 0.05);
    border-radius: 15px;
    border-left: 4px solid #b8941f;
    transition: all 0.3s ease;
}

.achievement:hover {
    background: rgba(184, 148, 31, 0.1);
    transform: translateX(10px);
}

.achievement i {
    font-size: 1.8rem;
    color: #b8941f;
}

.achievement span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #e8e8e8;
}

.instructor-image {
    display: flex;
    justify-content: center;
}

.instructor-placeholder {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #b8941f, #9a7a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 5rem;
    box-shadow: 0 20px 40px rgba(184, 148, 31, 0.3);
}



/* Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #b8941f, #9a7a1a);
    color: #0a0a0a;
    box-shadow: 0 6px 20px rgba(184, 148, 31, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(184, 148, 31, 0.4);
    background: linear-gradient(135deg, #d4af37, #b8941f);
}

.cta-btn.secondary {
    background: rgba(184, 148, 31, 0.1);
    color: #b8941f;
    border: 2px solid rgba(184, 148, 31, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(184, 148, 31, 0.2);
    border-color: rgba(184, 148, 31, 0.5);
    transform: translateY(-2px);
}

.cta-btn.large {
    padding: 22px 45px;
    font-size: 1.3rem;
}

/* Mobile responsive scaling for large buttons */
@media (max-width: 768px) {
    .cta-btn.large {
        padding: 16px 32px;
        font-size: 1.1rem;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 480px) {
    .cta-btn.large {
        padding: 14px 28px;
        font-size: 1rem;
        max-width: 240px;
    }
}

@media (max-width: 360px) {
    .cta-btn.large {
        padding: 12px 24px;
        font-size: 0.9rem;
        max-width: 200px;
    }
}

.cta-btn.small {
    padding: 12px 24px;
    font-size: 0.9rem;
    border-radius: 8px;
}

.cta-btn.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}





/* Features Section */
.features {
    padding: 120px 0;
    background: #0a0a0a;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 80px;
    color: #e8e8e8;
    letter-spacing: -1px;
}



/* Horizontal Scrolling Features Animation - CLEAN VERSION WITHOUT BOXES */
.feature-category {
    margin-bottom: 60px;
    position: relative;
}

.feature-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #b8941f;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.feature-category h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b8941f, transparent);
}

/* Scrolling Container */
.feature-list {
    position: relative;
    height: 120px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(184, 148, 31, 0.1);
}

/* Scrolling Track */
.scrolling-track {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    animation: scrollLeft 20s linear infinite;
    align-items: center;
}

/* Individual Feature Cards */
.feature-card {
    flex-shrink: 0;
    width: 350px;
    height: 80px;
    background: linear-gradient(135deg, rgba(184, 148, 31, 0.1) 0%, rgba(184, 148, 31, 0.05) 100%);
    border: 1px solid rgba(184, 148, 31, 0.3);
    border-radius: 12px;
    margin-right: 30px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 148, 31, 0.2), transparent);
    animation: cardShimmer 3s infinite;
}

.feature-card i {
    font-size: 2rem;
    color: #b8941f;
    margin-right: 15px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(184, 148, 31, 0.4));
}

.feature-card-content {
    flex: 1;
}

.feature-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 1.2;
}

.feature-card p {
    font-family: 'Crimson Text', serif;
    font-size: 0.85rem;
    color: #cccccc;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Scrolling Animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes cardShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Different speeds for each category */
.feature-category:nth-child(2) .scrolling-track {
    animation-duration: 25s;
}

.feature-category:nth-child(3) .scrolling-track {
    animation-duration: 22s;
}

.feature-category:nth-child(4) .scrolling-track {
    animation-duration: 28s;
}

.feature-category:nth-child(5) .scrolling-track {
    animation-duration: 24s;
}

/* Hover Effects */
.feature-category:hover .scrolling-track {
    animation-play-state: paused;
}

.feature-card:hover {
    transform: scale(1.05);
    border-color: rgba(184, 148, 31, 0.6);
    background: linear-gradient(135deg, rgba(184, 148, 31, 0.2) 0%, rgba(184, 148, 31, 0.1) 100%);
}

/* Responsive Design for Features Section */
@media (max-width: 768px) {
    /* Mobile Header Layout */
    .header .container {
        justify-content: space-between !important;
        align-items: center;
    }
    
    .logo {
        order: 1;
    }
    
    .header-right {
        order: 3;
        gap: 15px;
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 30px;
        gap: 25px;
        z-index: 999;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-link {
        font-size: 1.1rem;
        color: #e8e8e8;
        text-align: center;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid rgba(184, 148, 31, 0.2);
    }
    
    .cta-btn-header {
        margin-top: 0;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .logo-img {
        height: 35px !important;
    }
    
    /* Better mobile spacing and font sizes */
    .container {
        padding: 0 12px;
    }
    
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 30px !important;
        line-height: 1.2 !important;
        padding: 0 10px !important;
    }
    
    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 12px !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 25px !important;
    }
    
    /* Urgency section mobile optimization */
    .urgency h2 {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }
    
    .urgency p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 20px !important;
    }
    
    .urgency-note {
        font-size: 0.85rem !important;
        margin-top: 15px !important;
    }
    
    .features {
        padding: 80px 0;
    }
    
    .feature-category {
        margin-bottom: 40px;
    }
    
    .feature-category h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .feature-list {
        height: 100px;
    }
    
    .feature-card {
        width: 280px;
        height: 70px;
        padding: 12px 15px;
        margin-right: 20px;
    }
    
    .feature-card i {
        font-size: 1.5rem;
        margin-right: 12px;
    }
    
    .feature-card h4 {
        font-size: 0.9rem;
    }
    
    .feature-card p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    /* Pricing Section - Fix $600 display */
    .price {
        display: flex !important;
        align-items: baseline !important;
        justify-content: center !important;
        gap: 5px !important;
        flex-wrap: nowrap !important;
    }
    
    .price .currency {
        font-size: 1.8rem !important;
        font-weight: 700 !important;
    }
    
    .price .amount {
        font-size: 3.2rem !important;
        font-weight: 800 !important;
        line-height: 1 !important;
    }
    
    .price .period {
        font-size: 0.9rem !important;
        margin-left: 8px !important;
    }
    
    .pricing-header {
        padding: 25px 15px;
    }
    
    .pricing-features {
        padding: 25px 15px;
    }
    
    .pricing-features h3 {
        font-size: 1.3rem !important;
        margin-bottom: 20px !important;
    }
    
    .feature-list {
        gap: 12px !important;
    }
    
    .feature-item {
        font-size: 0.9rem !important;
        padding: 8px 0 !important;
    }
    
    /* Community Section - 2x2 GRID */
    .community-features {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 12px !important;
        max-width: 100% !important;
    }
    
    .community-feature {
        background: rgba(184, 148, 31, 0.1) !important;
        border: 1px solid rgba(184, 148, 31, 0.3) !important;
        border-radius: 10px !important;
        padding: 15px 10px !important;
        text-align: center !important;
        min-height: 160px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .community-feature:hover {
        transform: translateY(-3px) !important;
        border-color: rgba(184, 148, 31, 0.6) !important;
    }
    
    .community-feature i,
    .feature-icon i {
        font-size: 1.5rem !important;
        color: #b8941f !important;
        margin-bottom: 10px !important;
        display: block !important;
    }
    
    .community-feature h4 {
        font-size: 0.85rem !important;
        margin-bottom: 8px !important;
        line-height: 1.1 !important;
        color: #e8e8e8 !important;
        font-weight: 600 !important;
    }
    
    .community-feature p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        color: #b8b8b8 !important;
        text-align: center !important;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .feature-category {
        margin-bottom: 30px;
    }
    
    .feature-category h3 {
        font-size: 1.3rem;
    }
    
    .feature-list {
        height: 90px;
    }
    
    .feature-card {
        width: 250px;
        height: 60px;
        padding: 10px 12px;
        margin-right: 15px;
    }
    
    .feature-card i {
        font-size: 1.3rem;
        margin-right: 10px;
    }
    
    .feature-card h4 {
        font-size: 0.8rem;
    }
    
    .feature-card p {
        font-size: 0.7rem;
    }
}

/* Why Different Section */
.why-different {
    padding: 120px 0;
    background: linear-gradient(135deg, #111111, #1a1a1a);
    color: #e8e8e8;
    border-top: 1px solid rgba(184, 148, 31, 0.1);
    border-bottom: 1px solid rgba(184, 148, 31, 0.1);
}

.why-content {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Reduced from 60px to 30px */
    align-items: center;
    text-align: center;
}

.why-text p {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: center;
}

.highlight-text {
    font-size: 1.4rem;
    color: #b8941f;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}



/* Ensure feature-list is visible in why-different section */
.why-different .container {
    max-width: 1200px !important; /* Match exactly with working section */
    width: 100% !important;
    padding: 0 20px !important; /* Match exactly with working section */
    margin: 0 auto !important; /* Center the container */
}

/* Make sure the feature-list takes the full container width */
.why-different .feature-list {
    display: block !important;
    margin-top: 20px !important;
    height: 120px !important;
    overflow: hidden !important;
    background: rgba(0, 0, 0, 0.2) !important;
    border-radius: 15px !important;
    border: 1px solid rgba(184, 148, 31, 0.1) !important;
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important; /* Ensure it takes full container width */
}

/* Ensure feature-list is visible in community section */
.community .feature-list {
    display: block !important;
    margin-top: 20px !important;
    height: 120px !important;
    overflow: hidden !important;
    background: rgba(0, 0, 0, 0.2) !important;
    border-radius: 15px !important;
    border: 1px solid rgba(184, 148, 31, 0.1) !important;
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important; /* Ensure it takes full container width */
}

.why-different .feature-list .scrolling-track {
    display: flex !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    height: 100% !important;
    animation: scrollLeft 20s linear infinite !important;
    align-items: center !important;
}

.why-different .feature-list .feature-card {
    flex-shrink: 0 !important;
    width: 350px !important;
    height: 80px !important;
    background: linear-gradient(135deg, rgba(184, 148, 31, 0.1) 0%, rgba(184, 148, 31, 0.05) 100%) !important;
    border: 1px solid rgba(184, 148, 31, 0.3) !important;
    border-radius: 12px !important;
    margin-right: 30px !important;
    padding: 15px 20px !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
}

.why-different .feature-list .feature-card i {
    font-size: 2rem !important;
    color: #b8941f !important;
    margin-right: 15px !important;
    flex-shrink: 0 !important;
    filter: drop-shadow(0 0 8px rgba(184, 148, 31, 0.4)) !important;
}

.why-different .feature-list .feature-card-content {
    flex: 1 !important;
}

.why-different .feature-list .feature-card h4 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 5px !important;
    line-height: 1.2 !important;
}

.why-different .feature-list .feature-card p {
    font-family: 'Crimson Text', serif !important;
    font-size: 0.85rem !important;
    color: #cccccc !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* Add shimmer effect and hover effects to match exactly */
.why-different .feature-list .feature-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(184, 148, 31, 0.2), transparent) !important;
    animation: cardShimmer 3s infinite !important;
}

.why-different .feature-list .feature-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(184, 148, 31, 0.3) !important;
    border-color: rgba(184, 148, 31, 0.5) !important;
}











/* Pricing Section - PROFESSIONAL DESIGN */
.pricing {
    padding: 80px 0;
    background: #0a0a0a;
}

/* Premium Pricing Container */
.premium-pricing-container {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-main-card {
    background: linear-gradient(145deg, #111111, #1a1a1a);
    border-radius: 24px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.pricing-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #b8941f, #d4af37, #b8941f);
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-badge {
    display: inline-block;
    background: rgba(184, 148, 31, 0.1);
    color: #b8941f;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid rgba(184, 148, 31, 0.3);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.currency {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
}

.amount {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.pricing-type {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #b8941f;
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing-value {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Features */
.pricing-features {
    margin-bottom: 50px;
}

.pricing-features h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(184, 148, 31, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    background: rgba(184, 148, 31, 0.1);
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #b8941f;
    font-size: 1.3rem;
}

.feature-content h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-content p {
    font-family: 'Crimson Text', serif;
    font-size: 0.95rem;
    color: #b8b8b8;
    line-height: 1.5;
    margin: 0;
}

/* Pricing CTA Section */
.pricing-cta-section {
    text-align: center;
}

.enroll-btn {
    background: linear-gradient(135deg, #b8941f, #9a7a1a);
    color: #0a0a0a;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(184, 148, 31, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 0 auto 30px;
    min-width: 280px;
}

.enroll-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 148, 31, 0.4);
    background: linear-gradient(135deg, #d4af37, #b8941f);
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b8941f;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-main-card {
        padding: 40px 25px;
        margin: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .amount {
        font-size: 4rem;
    }
    
    .trust-indicators {
        gap: 25px;
    }
    
    .enroll-btn {
        min-width: 250px;
        padding: 18px 30px;
    }
}

.pricing-subtitle {
    text-align: center;
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    color: #b8b8b8;
    margin-bottom: 60px;
}

.pricing-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #111111, #1a1a1a);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border: 1px solid rgba(184, 148, 31, 0.2);
}

.pricing-header {
    background: linear-gradient(135deg, #b8941f, #9a7a1a);
    color: #0a0a0a;
    padding: 40px 30px;
    text-align: center;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.currency {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.amount {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 800;
}

.period {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
}

.pricing-features {
    padding: 50px;
}

.pricing-features h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 35px;
    color: #b8941f;
    text-align: center;
    font-weight: 700;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
}

.pricing-feature i {
    color: #b8941f;
    font-size: 1.2rem;
}

.pricing-feature span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #e8e8e8;
}

.pricing-cta {
    padding: 0 50px 50px;
    text-align: center;
}

.pricing-note {
    margin-top: 25px;
    color: #888;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
}

/* Community Section */
.community {
    padding: 80px 0;
    background: #111111;
}

.community-subtitle {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    text-align: center;
}

.community-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.community-feature {
    text-align: center;
    padding: 25px 20px;
    background: rgba(212, 175, 55, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.community-feature:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.community-feature i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.community-feature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #e8e8e8;
    font-weight: 700;
}

.community-feature p {
    font-family: 'Crimson Text', serif;
    color: #b8b8b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Urgency Section */
.urgency {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    color: #e8e8e8;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.urgency-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 35px;
    font-weight: 800;
}

.urgency-content p {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: #b8b8b8;
}

.urgency-note {
    margin-top: 35px;
    font-size: 1.2rem;
    color: #d4af37;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.urgency-logo {
    margin-top: 40px;
    text-align: center;
}

.urgency-logo .logo-img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.urgency-logo p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #b8941f;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: #0a0a0a;
    color: #e8e8e8;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    text-align: center;
}

.footer-instructor {
    text-align: center;
    max-width: 800px;
}

.footer-instructor h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #b8941f;
    font-weight: 700;
}

.footer-instructor p {
    color: #e8e8e8;
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
}

.footer-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #d4af37;
    font-weight: 700;
}

.footer-info p {
    font-family: 'Crimson Text', serif;
    line-height: 1.8;
    color: #b8b8b8;
    font-size: 1.05rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, #111111, #1a1a1a);
    margin: 5% auto;
    padding: 0;
    border-radius: 25px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 25px;
    top: 25px;
    color: #888;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s ease;
}

.close:hover {
    color: #d4af37;
}

.payment-form {
    padding: 50px;
}

.payment-form h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 15px;
    color: #e8e8e8;
    font-size: 2.2rem;
    font-weight: 700;
}

.payment-form p {
    text-align: center;
    color: #b8b8b8;
    margin-bottom: 40px;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #e8e8e8;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    background: rgba(212, 175, 55, 0.05);
    color: #e8e8e8;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Enhanced Select Dropdown Styling */
.form-group select {
    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='%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-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

/* Select Option Styling */
.form-group select option {
    background-color: #1a1a1a;
    color: #e8e8e8;
    padding: 12px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    border: none;
    cursor: pointer;
}

.form-group select option:hover {
    background-color: #d4af37;
    color: #0a0a0a;
}

.form-group select option:checked {
    background-color: #d4af37;
    color: #0a0a0a;
    font-weight: 600;
}

.form-group select option:disabled {
    background-color: #2a2a2a;
    color: #888888;
    font-style: italic;
}

/* Payment Method Specific Styling */
.payment-method select {
    background-color: #1a1a1a;
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: #e8e8e8;
    font-weight: 500;
}

.payment-method select:focus {
    border-color: #d4af37;
    background-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.payment-method select option {
    background-color: #1a1a1a;
    color: #e8e8e8;
    padding: 15px;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.payment-method select option:hover {
    background-color: #d4af37;
    color: #0a0a0a;
    font-weight: 600;
}

.payment-method select option:checked {
    background-color: #d4af37;
    color: #0a0a0a;
    font-weight: 700;
}

.payment-method select option:disabled {
    background-color: #2a2a2a;
    color: #888888;
    font-style: italic;
    opacity: 0.7;
}

.order-summary {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-radius: 15px;
    margin: 35px 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.3rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    padding-top: 15px;
    margin-top: 15px;
    color: #d4af37;
}

.payment-instructions {
    padding: 50px;
    text-align: center;
}

.payment-instructions h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 35px;
    color: #e8e8e8;
    font-size: 2.2rem;
    font-weight: 700;
}

.payment-status {
    background: rgba(212, 175, 55, 0.05);
    padding: 35px;
    border-radius: 15px;
    margin: 35px 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #d4af37;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.countdown {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e8e8e8;
    font-family: 'Playfair Display', serif;
}

.payment-actions {
    margin-top: 35px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-bottom: 1px solid rgba(184, 148, 31, 0.2);
        z-index: 999;
    }
    
    /* Pricing Section Mobile Improvements - PROPER SCALING */
    .pricing-card {
        margin: 0 15px;
        border-radius: 15px;
        max-width: 100%;
    }
    
    .pricing-header {
        padding: 20px 15px;
    }
    
    .price .amount {
        font-size: 2.5rem !important;
        line-height: 1;
    }
    
    .price .currency {
        font-size: 1.5rem !important;
        line-height: 1;
    }
    
    .price .period {
        font-size: 0.9rem !important;
        line-height: 1;
    }
    
    .pricing-features {
        padding: 20px 15px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pricing-cta {
        padding: 0 15px 20px;
    }
    
    /* Ensure pricing section scales properly on mobile */
    .pricing-card {
        max-width: 100%;
        margin: 0 15px;
    }
    
    .pricing-header {
        padding: 20px 15px;
    }
    
    .price {
        flex-direction: column;
        gap: 5px;
    }
    
    .price .amount {
        font-size: 2.5rem !important;
        line-height: 1;
    }
    
    .price .currency {
        font-size: 1.5rem !important;
        line-height: 1;
    }
    
    .price .period {
        font-size: 0.9rem !important;
        line-height: 1;
    }
    
    .nav.active {
        display: flex !important;
        animation: slideDown 0.3s ease-out;
    }
    

    
    .nav-link {
        font-size: 1.1rem;
        padding: 15px 0;
        text-align: center;
        border-bottom: 1px solid rgba(184, 148, 31, 0.1);
        width: 100%;
    }
    
    /* Instructor Section Mobile Scaling */
    .instructor {
        padding: 60px 0;
    }
    
    .instructor-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .instructor-info h2 {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .instructor-info h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .instructor-info p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .instructor-achievements {
        gap: 15px;
    }
    
    .achievement {
        padding: 15px;
        gap: 12px;
    }
    
    .achievement i {
        font-size: 1.3rem;
    }
    

    
    .achievement span {
        font-size: 1rem;
    }
    
    .instructor-placeholder {
        width: 160px;
        height: 160px;
        font-size: 2.8rem;
    }
    
    /* Hide PFP icon on mobile phones */
    .instructor-image {
        display: none;
    }
    
    .cta-btn-header {
        padding: 15px 25px;
        font-size: 0.9rem;
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }
    
    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding: 100px 20px 40px;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem !important;
        margin-bottom: 15px;
        padding: 0 15px;
    }
    
    .hero-description {
        font-size: 1.1rem !important;
        margin-bottom: 30px;
        padding: 0 20px;
        line-height: 1.6;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
    }
    
    .stat-label {
        font-size: 0.9rem !important;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    
    .cta-btn {
        padding: 18px 35px !important;
        font-size: 1.1rem !important;
        width: 100%;
        text-align: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Features Section */
    .features {
        padding: 60px 20px !important;
    }
    
    .section-title {
        font-size: 2rem !important;
        margin-bottom: 40px;
        padding: 0 15px;
        text-align: center;
        line-height: 1.3;
    }
    
    .feature-category {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .feature-category h3 {
        font-size: 1.4rem !important;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .feature-list {
        height: auto !important;
        min-height: 100px;
    }
    
    .feature-item {
        font-size: 0.95rem !important;
        padding: 8px 0;
        line-height: 1.4;
    }
    
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }
    
    /* Modal adjustments */
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-width: 400px;
    }
    
    .payment-form {
        padding: 25px;
    }
    
    /* Header adjustments */
    .header {
        padding: 12px 0;
    }
    
    .logo-img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4rem !important;
        padding: 0 5px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        padding: 0 10px;
    }
    
    .hero-description {
        font-size: 1rem !important;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem !important;
        padding: 0 10px;
    }
    
    .feature-category {
        padding: 0 10px;
    }
    
    .feature-category h3 {
        font-size: 1.3rem !important;
    }
    
    .cta-btn {
        padding: 16px 30px !important;
        font-size: 1rem !important;
        max-width: 280px;
    }
    
    .cta-btn.large {
        padding: 18px 35px !important;
        font-size: 1.1rem !important;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 90px 15px 30px;
    }
    
    .features {
        padding: 50px 15px !important;
    }
    
    .modal-content {
        margin: 2% auto;
        width: 98%;
    }
    
    .payment-form {
        padding: 20px;
    }
    
    /* Instructor Section Small Mobile Scaling */
    .instructor {
        padding: 40px 0;
    }
    
    .instructor-info h2 {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .instructor-info h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .instructor-info p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .instructor-achievements {
        gap: 15px;
    }
    
    .achievement {
        padding: 15px;
        gap: 12px;
    }
    
    .achievement i {
        font-size: 1.3rem;
    }
    

    
    .achievement span {
        font-size: 0.9rem;
    }
    
    .instructor-placeholder {
        width: 150px;
        height: 150px;
        font-size: 2.5rem;
    }
    
    /* Hide PFP icon on small mobile phones */
    .instructor-image {
        display: none;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .hero-description {
        font-size: 0.95rem !important;
    }
    
    .section-title {
        font-size: 1.6rem !important;
    }
    
    .cta-btn {
        padding: 15px 25px !important;
        font-size: 0.95rem !important;
        max-width: 250px;
    }
    
    .container {
        padding: 0 8px;
    }
    
    .hero {
        padding: 85px 10px 25px;
    }
    
    .features {
        padding: 45px 10px !important;
    }
    
    /* Instructor Section Very Small Mobile Scaling */
    .instructor {
        padding: 30px 0;
    }
    
    .instructor-info h2 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .instructor-info h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .instructor-info p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .instructor-achievements {
        gap: 12px;
    }
    
    .achievement {
        padding: 12px;
        gap: 10px;
    }
    
    .achievement i {
        font-size: 1.1rem;
    }
    

    
    .achievement span {
        font-size: 0.85rem;
    }
    
    .instructor-placeholder {
        width: 100px;
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 1rem !important;
        line-height: 1.1;
        padding: 0 5px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
    }
    
    .hero-description {
        font-size: 0.85rem !important;
    }
    
    .hero {
        padding: 80px 8px 20px;
    }
    
    .container {
        padding: 0 5px;
    }
    
    .instructor-placeholder {
        height: 100px;
        font-size: 1.8rem;
    }
    
    /* Hide PFP icon on very small mobile phones */
    .instructor-image {
        display: none;
    }
    
    /* Payment Confirmed window mobile scaling for very small screens */
    .payment-instructions .payment-success h3 {
        font-size: 1.1rem !important;
    }
    
    .payment-instructions .payment-success p {
        font-size: 0.8rem !important;
    }
    
    .payment-instructions .success-icon {
        font-size: 2rem !important;
    }
    
    .payment-instructions .payment-success i {
        font-size: 2rem !important;
    }
}

@media (max-width: 280px) {
    .hero-title {
        font-size: 0.9rem !important;
        line-height: 1.1;
        padding: 0 3px;
    }
    
    .hero-subtitle {
        font-size: 0.8rem !important;
    }
    
    .hero-description {
        font-size: 0.75rem !important;
    }
    
    .hero {
        padding: 75px 5px 15px;
    }
    
    .container {
        padding: 0 3px;
    }
}

@media (max-width: 240px) {
    .hero-title {
        font-size: 0.8rem !important;
        line-height: 1.1;
        padding: 0 2px;
    }
    
    .hero-subtitle {
        font-size: 0.7rem !important;
    }
    
    .hero-description {
        font-size: 0.65rem !important;
    }
    
    .hero {
        padding: 70px 3px 10px;
    }
    
    .container {
        padding: 0 2px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Additional Styling for Payment Details */
.address-container {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(212, 175, 55, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Remove yellow background on mobile for payment address */
@media (max-width: 768px) {
    .address-container {
        background: transparent !important;
        border: none !important;
        padding: 10px 0 !important;
    }
}

/* PC Display - Move copy button below warning text */
@media (min-width: 769px) {
    .payment-address .copy-btn,
    .copy-btn {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        margin-top: 20px !important;
        display: block !important;
        width: 100% !important;
        max-width: 250px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
        border-radius: 8px !important;
    }
}

.wallet-address-text {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #e8e8e8;
}

.copy-btn {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #0a0a0a;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Mobile responsive scaling for copy buttons */
@media (max-width: 768px) {
    .copy-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .copy-btn {
        padding: 6px 10px;
        font-size: 0.65rem;
        border-radius: 4px;
    }
}

@media (max-width: 360px) {
    .copy-btn {
        padding: 5px 8px;
        font-size: 0.6rem;
        border-radius: 3px;
    }
}

.copy-btn:hover {
    background: linear-gradient(135deg, #e6c547, #d4af37);
    transform: translateY(-2px);
}

.payment-info h3, .payment-info h4 {
    color: #e8e8e8;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.payment-method, .payment-amount, .wallet-address, .payment-warning, .order-info {
    margin-bottom: 35px;
}

.crypto-note {
    color: #b8b8b8;
    font-style: italic;
    font-family: 'Crimson Text', serif;
}

.payment-warning {
    background: rgba(212, 175, 55, 0.1);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #d4af37;
}

/* Remove yellow warning background on mobile */
@media (max-width: 768px) {
    .payment-warning {
        background: transparent !important;
        border: none !important;
        padding: 15px 0 !important;
    }
}

.payment-warning p {
    color: #e8e8e8;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.payment-warning ul {
    color: #b8b8b8;
    margin-left: 25px;
}

.payment-warning li {
    margin-bottom: 8px;
    font-family: 'Crimson Text', serif;
}

.order-info {
    background: rgba(212, 175, 55, 0.05);
    padding: 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.order-info p {
    margin: 8px 0;
    color: #b8b8b8;
    font-family: 'Montserrat', sans-serif;
}

/* Contact Section */
.contact {
    background: #0a0a0a;
    padding: 60px 0;
    border-top: 1px solid rgba(184, 148, 31, 0.2);
}

.contact-content {
    text-align: center;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e8e8e8;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact p {
    font-size: 1.1rem;
    color: #b8b8b8;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap;
    max-width: 700px;
    margin: 0 auto;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: rgba(184, 148, 31, 0.1);
    border: 1px solid rgba(184, 148, 31, 0.3);
    min-width: 130px;
    justify-content: center;
}

.contact-btn:hover {
    background: rgba(184, 148, 31, 0.2);
    border-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 148, 31, 0.2);
}

.contact-btn i {
    font-size: 1.2rem;
    color: #b8941f;
}

.contact-btn span {
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact {
        padding: 50px 0;
    }
    
    .contact h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .contact p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .contact-buttons {
        gap: 12px;
        padding: 0 20px;
    }
    
    .contact-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
        min-width: 110px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 40px 0;
    }
    
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .contact p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .contact-buttons {
        gap: 10px;
        padding: 0 15px;
    }
    
    .contact-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
        min-width: 100px;
    }
}

/* Responsive Design for Community Section */
@media (max-width: 768px) {
    .community {
        padding: 60px 0;
    }
    
    .community-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .community-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .community-feature {
        padding: 20px 15px;
        text-align: center;
    }
    
    .community-feature i {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .community-feature h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .community-feature p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .community {
        padding: 50px 0;
    }
    
    .community-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .community-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 30px;
        padding: 0 15px;
    }
    
    .community-feature {
        padding: 18px 12px;
        text-align: center;
    }
    
    .community-feature i {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .community-feature h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .community-feature p {
        font-size: 0.85rem;
    }
}



/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN ENHANCEMENTS FOR TOMYHUB
   ========================================================================== */

/* Enhanced Mobile-First Approach with Multiple Breakpoints */

/* Extra Small Devices (Portrait Phones, less than 576px) */
@media (max-width: 575.98px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    /* Header Improvements */
    .header {
        padding: 10px 0;
    }
    
    .header .container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-top: 1px solid rgba(184, 148, 31, 0.2);
        z-index: 999;
    }
    
    .nav.active {
        display: flex;
    }
    

    
    .nav-link {
        font-size: 1rem;
        padding: 10px 0;
        text-align: center;
        border-bottom: 1px solid rgba(184, 148, 31, 0.1);
    }
    
    .cta-btn-header {
        padding: 10px 20px;
        font-size: 0.8rem;
        margin-top: 10px;
    }
    
    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1rem !important;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 0.8rem !important;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
        padding: 0 10px;
    }
    
    .cta-btn {
        padding: 16px 30px !important;
        font-size: 1rem !important;
        width: 100%;
        text-align: center;
    }
    
    /* Features Section */
    .features {
        padding: 60px 0 !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 40px;
        padding: 0 10px;
        text-align: center;
    }
    
    .feature-category {
        margin-bottom: 30px;
    }
    
    .feature-category h3 {
        font-size: 1.3rem !important;
        margin-bottom: 15px;
    }
    
    .feature-list {
        height: 80px !important;
    }
    
    .feature-card {
        width: 220px !important;
        height: 60px !important;
        padding: 8px 12px !important;
        margin-right: 12px !important;
    }
    
    .feature-card i {
        font-size: 1.2rem !important;
        margin-right: 8px !important;
    }
    
    .feature-card h4 {
        font-size: 0.75rem !important;
        margin-bottom: 3px !important;
    }
    
    .feature-card p {
        font-size: 0.65rem !important;
        line-height: 1.2 !important;
    }
    
    /* Instructor Section */
    .instructor {
        padding: 60px 0 !important;
    }
    
    .instructor-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }
    
    .instructor-info h2 {
        font-size: 2rem !important;
    }
    
    .instructor-info h3 {
        font-size: 1.5rem !important;
    }
    
    .instructor-info p {
        font-size: 1rem !important;
        margin-bottom: 25px;
    }
    
    .instructor-placeholder {
        width: 200px !important;
        height: 200px !important;
        font-size: 3rem !important;
    }
    
    /* Pricing Section */
    .pricing {
        padding: 60px 0 !important;
    }
    
    .pricing-card {
        margin: 0 10px;
        padding: 25px 20px !important;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem !important;
    }
    
    .price .amount {
        font-size: 3rem !important;
    }
    
    .pricing-features {
        padding: 20px 0;
    }
    
    .feature-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .pricing-feature {
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
    }
    
    .pricing-cta {
        padding: 25px 20px 20px;
    }
    
    .cta-btn.large {
        padding: 18px 25px !important;
        font-size: 1.1rem !important;
    }
    
    /* Urgency Section Mobile Improvements - PROPER SCALING */
    .urgency {
        padding: 60px 0 !important;
    }
    
    .urgency-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 20px;
        padding: 0 15px;
        text-align: center !important;
    }
    
    .urgency-content p {
        font-size: 1rem !important;
        margin-bottom: 25px;
        padding: 0 20px;
        text-align: center !important;
    }
    
    .urgency-logo {
        margin-top: 25px;
        text-align: center !important;
    }
    
    .urgency-logo .logo-img {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .urgency-logo p {
        font-size: 1rem !important;
        letter-spacing: 1px;
        text-align: center !important;
    }
    
    /* Modal Improvements */
    .modal-content {
        margin: 10px !important;
        padding: 20px !important;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .payment-form {
        padding: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px !important;
        font-size: 0.9rem !important;
    }
    
    .order-summary {
        padding: 15px !important;
        margin: 15px 0 !important;
    }
    
    /* Contact Section */
    .contact {
        padding: 40px 0 !important;
    }
    
    .contact h2 {
        font-size: 1.8rem !important;
    }
    
    .contact-buttons {
        flex-direction: column !important;
        gap: 10px;
        padding: 0 15px;
    }
    
    .contact-btn {
        padding: 12px 20px !important;
        font-size: 0.85rem !important;
    }
    
    /* Footer Mobile Improvements */
    .footer {
        padding: 60px 0 30px !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-info h4 {
        font-size: 1.3rem !important;
        margin-bottom: 20px;
    }
    
    .footer-info p {
        font-size: 1rem !important;
        line-height: 1.6;
        padding: 0 15px;
    }
    
    .footer-logo .logo-img {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .footer-logo p {
        font-size: 1.3rem;
        letter-spacing: 1px;
        color: #b8941f;
        font-weight: 600;
        text-align: center;
        line-height: 1.4;
    }
    
    .footer-logo {
    text-align: center;
    margin-top: 20px;
}

.footer-logo .logo-img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}
    
    /* Why Different Section */
    .why-different {
        padding: 60px 0 !important;
    }
    
    .why-content {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .why-text p {
        font-size: 1rem !important;
        margin-bottom: 15px;
    }
    
    .why-features {
        display: none !important;
    }
    
    /* Community Section */
    .community {
        padding: 60px 0 !important;
    }
    
    .community-features {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 15px;
    }
    
    .community-feature {
        padding: 20px 15px !important;
        text-align: center;
    }
    
    .community-feature i {
        font-size: 2rem !important;
        margin-bottom: 15px;
    }
    
    .community-feature h4 {
        font-size: 1rem !important;
        margin-bottom: 12px;
    }
    
    .community-feature p {
        font-size: 0.9rem !important;
    }
}

/* Small Devices (Landscape Phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .container {
        max-width: 540px;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.8rem !important;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .feature-card {
        width: 260px !important;
        height: 70px !important;
    }
    
    .instructor-content {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    
    .pricing-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
    
    .community-features {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px;
    }
}

/* Medium Devices (Tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .container {
        max-width: 720px;
    }
    

    
    .nav {
        display: flex !important;
    }
    
    .hero-title {
        font-size: 3.2rem !important;
    }
    
    .hero-stats {
        gap: 50px;
    }
    
    .feature-card {
        width: 300px !important;
        height: 75px !important;
    }
    

    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
    
    .community-features {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px;
    }
}

/* Large Devices (Desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 3.5rem !important;
    }
    
    .feature-card {
        width: 320px !important;
        height: 80px !important;
    }
    

    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px;
    }
    
    .community-features {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 25px;
    }
}

/* Extra Large Devices (Large Desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: 4rem !important;
    }
    
    .feature-card {
        width: 350px !important;
        height: 80px !important;
    }
}

/* XXL Devices (Larger Desktops, 1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 4.2rem !important;
    }
    
    .feature-card {
        width: 380px !important;
        height: 85px !important;
    }
}

/* Landscape Orientation Specific Styles */
@media screen and (orientation: landscape) and (max-height: 500px) {
    .hero {
        min-height: auto !important;
        padding: 100px 0 50px !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 15px !important;
    }
    
    .hero-subtitle {
        font-size: 1.3rem !important;
        margin-bottom: 10px !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
    }
    
    .hero-stats {
        margin-bottom: 25px !important;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-title,
    .section-title {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .feature-card i {
        transform: translateZ(0);
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .cta-btn,
    .contact-btn,
    .nav-link {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .feature-card:hover {
        transform: none !important;
    }
    
    .achievement:hover {
        transform: none !important;
    }
    
    /* Remove hover effects on touch devices */
    .cta-btn:hover,
    .contact-btn:hover,
    .nav-link:hover {
        transform: none !important;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scrolling-track {
        animation: none !important;
    }
    
    .feature-card::before {
        animation: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero-title,
    .section-title {
        color: #ffffff !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .cta-btn {
        border: 2px solid #ffffff;
    }
    
    .feature-card {
        border: 2px solid rgba(184, 148, 31, 0.8) !important;
    }
}

/* Foldable Device Support */
@media (min-width: 280px) and (max-width: 653px) and (min-height: 653px) {
    .hero-content {
        padding: 20px;
    }
    
    .pricing-card {
        margin: 0 20px !important;
    }
    
    .modal-content {
        margin: 20px !important;
    }
}

/* Ultra-wide Screen Support */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px !important;
    }
    
    .hero-content {
        max-width: 1200px;
    }
    
    .feature-card {
        width: 400px !important;
        height: 90px !important;
    }
}

/* Improved Mobile Menu JavaScript Support */
.nav-toggle {
    transition: transform 0.3s ease;
}

.nav-toggle.active {
    transform: rotate(90deg);
}

/* Enhanced Button Accessibility */
.cta-btn:focus,
.contact-btn:focus,
.nav-link:focus {
    outline: 2px solid #b8941f;
    outline-offset: 2px;
}

/* Improved Form Responsiveness */
@media (max-width: 575.98px) {
    .payment-form .form-row {
        flex-direction: column !important;
        gap: 15px;
    }
    
    .form-group.half-width {
        width: 100% !important;
    }
}

/* Enhanced Scrolling Performance */
.feature-list,
.scrolling-track {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Print Optimization */
@media print {
    .header,
    .cta-btn,
    .contact-buttons,
    .modal {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero,
    .features,
    .pricing {
        background: white !important;
        color: black !important;
    }
    
    .section-title,
    .hero-title {
        color: black !important;
    }
    
    .feature-card {
        border: 1px solid #000 !important;
        background: white !important;
        color: black !important;
    }
}

/* Desktop - Hide mobile menu button */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none !important;
    }
    
    .nav {
        display: flex !important;
    }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    /* Prevent horizontal scrolling */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    

    
    .nav-link, .cta-btn-header {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve mobile scrolling */
    .feature-list {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better mobile spacing */
    .hero-content {
        padding: 0 10px;
    }
    
    .feature-category {
        margin-bottom: 30px;
    }
    
    /* Mobile-optimized buttons */
    .cta-btn {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Mobile header improvements */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    /* Mobile content padding */
    .hero, .features, .pricing, .contact, .cta {
        padding-left: 15px;
        padding-right: 15px;
    }
}



/* Additional mobile optimizations */
@media (max-width: 768px) {
    /* Ensure proper spacing on mobile */
    .hero {
        padding-top: 120px;
    }
    
    .instructor {
        padding-top: 80px;
    }
    
    .features {
        padding-top: 80px;
    }
    
    .pricing {
        padding-top: 80px;
    }
    
    .community {
        padding-top: 80px;
    }
    
    .urgency {
        padding-top: 80px;
    }
    
    .contact {
        padding-top: 80px;
    }
    
    .footer {
        padding-top: 80px;
    }
    
    .footer-instructor h2 {
        font-size: 1.6rem !important;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .footer-instructor p {
        font-size: 1rem !important;
        line-height: 1.6;
        padding: 0 15px;
    }
    
    /* Improve mobile button sizing */
    .cta-btn {
        min-height: 48px;
        font-size: 1rem;
        padding: 15px 25px;
    }
    
    .cta-btn.large {
        min-height: 52px;
        font-size: 1.1rem;
        padding: 18px 30px;
    }
    
    /* Better mobile text sizing - PROPER SCALING */
    .hero-content {
        padding-top: 20px;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem !important;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 1.6rem !important;
        line-height: 1.3;
    }
    

    
    /* Better mobile navigation */
    .nav {
        display: none;
    }
    
    .header .container {
        justify-content: space-between;
    }
    
    .logo-img {
        height: 40px;
    }
    
    /* Better mobile spacing */
    .container {
        padding: 0 20px;
    }
    
    .header .container {
        padding: 0 40px;
        max-width: none;
        margin: 0;
    }
    
    .logo {
        margin-right: 100px;
    }
    
    .header-right {
        margin-left: auto;
        padding-right: 40px;
    }
    
    /* Mobile-optimized features */
    .feature-card {
        width: 280px !important;
        height: 70px !important;
        padding: 12px 15px !important;
        margin-right: 20px !important;
    }
    
    .feature-card i {
        font-size: 1.5rem !important;
        margin-right: 12px !important;
    }
    
    .feature-card h4 {
        font-size: 0.9rem !important;
        margin-bottom: 5px !important;
    }
    
    .feature-card p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
    }
    
    /* Mobile-optimized community features - 2x2 GRID */
    .community-features {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 15px !important;
    }
    
    .community-feature {
        padding: 15px 10px !important;
        text-align: center;
        min-height: auto !important;
    }
    
    .community-feature i {
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
    }
    
    .community-feature h4 {
        font-size: 0.9rem !important;
        margin-bottom: 8px !important;
        line-height: 1.2 !important;
    }
    
    .community-feature p {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
    }
}

/* Additional mobile breakpoint for very small screens */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.4rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.8rem !important;
    }
    
    .hero-description {
        font-size: 0.8rem !important;
    }
    
    .section-title {
        font-size: 1.3rem !important;
    }
    
    .container {
        padding: 0 5px;
    }
    
    .hero {
        padding: 80px 5px 20px;
    }
    
    .features {
        padding: 40px 5px !important;
    }
    
    .cta-btn {
        padding: 14px 20px !important;
        font-size: 0.9rem !important;
        max-width: 220px;
    }
    
    /* Pricing Section Very Small Screen - PROPER SCALING */
    .pricing-card {
        margin: 0 5px;
        border-radius: 12px;
    }
    
    .pricing-header {
        padding: 20px 12px;
    }
    
    .price .amount {
        font-size: 2rem !important;
    }
    
    .price .currency {
        font-size: 1.2rem !important;
    }
    
    .price .period {
        font-size: 0.8rem !important;
    }
    
    .pricing-features {
        padding: 20px 12px;
    }
    
    /* Community Section Very Small Screen - 2x2 GRID */
    .community-features {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
        padding: 0 10px;
    }
    
    .community-feature {
        padding: 12px 8px;
    }
    
    /* Ensure community features are properly sized on very small screens */
    .community-feature i {
        font-size: 1.2rem !important;
        margin-bottom: 6px;
    }
    
    .community-feature h4 {
        font-size: 0.8rem !important;
        margin-bottom: 6px;
        line-height: 1.2;
    }
    
    .community-feature p {
        font-size: 0.7rem !important;
        line-height: 1.2;
    }
    
    /* Urgency Section Very Small Screen - PROPER SCALING & CENTERING */
    .urgency-content h2 {
        font-size: 1.3rem !important;
        padding: 0 10px;
        text-align: center !important;
        margin: 0 auto 20px auto !important;
    }
    
    .urgency-content p {
        font-size: 0.8rem !important;
        padding: 0 15px;
        text-align: center !important;
        margin: 0 auto 30px auto !important;
    }
    
    .urgency-logo .logo-img {
        width: 35px;
        height: 35px;
        margin: 0 auto 10px auto !important;
        display: block !important;
    }
    
    .urgency-logo p {
        font-size: 0.9rem !important;
        text-align: center !important;
    }
    
    /* Footer Very Small Screen */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 25px;
        padding: 0 10px;
    }
    
    .footer-info p {
        font-size: 0.95rem !important;
        padding: 0 10px;
    }
    
    .footer-logo .logo-img {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }
    
    .footer-logo p {
        font-size: 1rem !important;
        line-height: 1.3;
    }
}

/* Focus Styles */
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Mobile Select Improvements */
@media (max-width: 768px) {
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 14px;
        padding-right: 50px;
    }
    
    .form-group select option {
        font-size: 16px;
        padding: 14px;
    }
    
    .payment-method select {
        font-size: 16px;
        padding: 14px;
    }
    
    .payment-method select option {
        font-size: 16px;
        padding: 14px;
    }
}

/* Payment Method Section Enhancements */
.payment-method {
    position: relative;
}

.payment-method label {
    color: #e8e8e8;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 12px;
    display: block;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-method select {
    width: 100%;
    background-color: #1a1a1a;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: #e8e8e8;
    font-weight: 500;
    font-size: 1rem;
    padding: 15px;
    padding-right: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.payment-method select:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background-color: #222222;
}

.payment-method select:focus {
    border-color: #d4af37;
    background-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    outline: none;
}

/* Enhanced Dropdown Arrow */
.payment-method select {
    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='%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-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

/* Payment Method Options */
.payment-method select option {
    background-color: #1a1a1a;
    color: #e8e8e8;
    padding: 15px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.payment-method select option:hover {
    background-color: #d4af37;
    color: #0a0a0a;
    font-weight: 600;
}

.payment-method select option:checked {
    background-color: #d4af37;
    color: #0a0a0a;
    font-weight: 700;
}

.payment-method select option:disabled {
    background-color: #2a2a2a;
    color: #888888;
    font-style: italic;
    opacity: 0.7;
}

/* Selected Option Highlight */
.payment-method select option[selected] {
    background-color: #d4af37;
    color: #0a0a0a;
    font-weight: 700;
}

/* Crypto Payment Styles */
.crypto-selection {
    margin: 30px 0;
}

.crypto-selection h4 {
    color: #b8941f;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.crypto-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.crypto-option {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid rgba(184, 148, 31, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.crypto-option:hover {
    border-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 148, 31, 0.2);
}

.crypto-icon {
    font-size: 2rem;
    margin-right: 20px;
    color: #b8941f;
}

.crypto-details {
    flex: 1;
}

.crypto-details h5 {
    color: #e8e8e8;
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.crypto-address {
    color: #888;
    font-family: monospace;
    font-size: 0.9rem;
    margin: 0;
    word-break: break-all;
}

.crypto-arrow {
    font-size: 1.5rem;
    color: #b8941f;
    margin-left: 20px;
}

.crypto-loading {
    text-align: center;
    color: #888;
    padding: 40px;
    font-style: italic;
}

.crypto-error {
    text-align: center;
    color: #e74c3c;
    padding: 40px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
}

/* Wallet Address Styles */
.wallet-address {
    margin: 25px 0;
}

.wallet-address h4 {
    color: #b8941f;
    margin-bottom: 15px;
}

.address-container {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(184, 148, 31, 0.3);
}

.wallet-code {
    flex: 1;
    background: rgba(184, 148, 31, 0.1);
    padding: 12px;
    border-radius: 6px;
    color: #e8e8e8;
    font-family: monospace;
    font-size: 0.9rem;
    word-break: break-all;
    border: 1px solid rgba(184, 148, 31, 0.2);
}

.copy-btn {
    background: linear-gradient(135deg, #b8941f, #9a7a1a);
    color: #0a0a0a;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    transform: translateY(-2px);
}

/* Payment Steps */
.payment-steps {
    margin: 25px 0;
}

.payment-steps h4 {
    color: #b8941f;
    margin-bottom: 15px;
}

.payment-steps ol {
    color: #e8e8e8;
    line-height: 1.8;
    padding-left: 20px;
}

.payment-steps li {
    margin-bottom: 8px;
}

/* Payment Actions */
.payment-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.payment-actions .cta-btn {
    min-width: 120px;
    padding: 12px 24px;
    font-size: 0.9rem;
    border-radius: 8px;
}

/* Small payment buttons for mobile and desktop */
.payment-actions .cta-btn.small {
    min-width: 100px;
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: 6px;
}

/* Payment Success */
.payment-success {
    text-align: center;
    padding: 20px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #28a745;
}

.success-icon i {
    font-size: 4rem;
    color: #28a745;
}

.payment-success h3 {
    color: #28a745;
    margin-bottom: 15px;
    font-size: 2rem;
}

.payment-success p {
    color: #e8e8e8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.success-details {
    background: rgba(40, 167, 69, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.success-details p {
    margin: 8px 0;
    color: #e8e8e8;
}



.community-join {
    margin-top: 25px;
    padding: 20px;
    text-align: center;
}



.community-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.community-btn:hover {
    background: linear-gradient(135deg, #e6c547, #d4af37);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
    color: white;
    text-decoration: none;
}

.community-btn i {
    font-size: 1.2rem;
}

.success-actions {
    margin-top: 30px;
}

/* Mobile Responsive Crypto Styles */
@media (max-width: 768px) {
    .community-join {
        padding: 18px;
        margin: 18px 0;
    }
    
    /* Payment Confirmed window mobile scaling */
    .payment-instructions .payment-success h3 {
        font-size: 1.3rem !important;
    }
    
    .payment-instructions .payment-success p {
        font-size: 0.9rem !important;
    }
    
    .payment-instructions .success-icon {
        font-size: 3rem !important;
    }
    
    .payment-instructions .success-icon i {
        font-size: 3rem !important;
    }
    
    .crypto-option {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .crypto-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .crypto-arrow {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .address-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .copy-btn {
        width: 100%;
        padding: 15px;
    }
    
    .payment-actions {
        flex-direction: column;
    }
    
    .payment-actions .cta-btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.8rem;
        min-width: 80px;
    }
}

/* Community button responsive scaling for smaller screens */
@media (max-width: 480px) {
    .community-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        max-width: 200px;
    }
    
    .community-join {
        padding: 15px;
        margin: 15px 0;
    }
    
    /* Payment Confirmed window mobile scaling for small screens */
    .payment-instructions .payment-success h3 {
        font-size: 1.2rem !important;
    }
    
    .payment-instructions .payment-success p {
        font-size: 0.85rem !important;
    }
    
    .payment-instructions .success-icon {
        font-size: 2.5rem !important;
    }
    
    .payment-instructions .success-icon i {
        font-size: 2.5rem !important;
    }
    

    
    /* Payment warning text mobile scaling - REMOVE YELLOW CONTAINER ON MOBILE */
    .payment-warning-text {
        font-size: 0.6rem !important;
        margin-top: 12px !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        color: #d4af37 !important;
    }
    
    /* Mobile copy button and wallet address layout - MOVE BUTTON BELOW WARNING */
    .payment-address .copy-btn {
        padding: 6px 12px !important;
        font-size: 0.65rem !important;
        height: auto !important;
        min-width: auto !important;
        background: #007bff !important;
        color: white !important;
        border: none !important;
        border-radius: 4px !important;
        margin-top: 15px !important;
        display: block !important;
        width: 100% !important;
        max-width: 200px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .payment-address div[style*="word-break: break-all"] {
        font-size: 0.7rem !important;
        line-height: 1.4 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        word-break: keep-all !important;
        white-space: normal !important;
    }
    
    .payment-warning-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        white-space: normal !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 360px) {
    .community-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        max-width: 180px;
    }
    
    .community-join {
        padding: 12px;
        margin: 12px 0;
    }
    
    .community-join h4 {
        font-size: 1rem;
    }
    
    .community-join p {
        font-size: 0.8rem;
    }
    
    /* Payment warning text very small mobile scaling - REMOVE YELLOW CONTAINER ON MOBILE */
    .payment-warning-text {
        font-size: 0.55rem !important;
        margin-top: 10px !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        color: #d4af37 !important;
    }
    
    /* Very small mobile copy button and wallet address layout - MOVE BUTTON BELOW WARNING */
    .payment-address .copy-btn {
        padding: 4px 8px !important;
        font-size: 0.6rem !important;
        height: auto !important;
        min-width: auto !important;
        background: #007bff !important;
        color: white !important;
        border: none !important;
        border-radius: 3px !important;
        margin-top: 12px !important;
        display: block !important;
        width: 100% !important;
        max-width: 180px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .payment-address div[style*="word-break: break-all"] {
        font-size: 0.65rem !important;
        line-height: 1.4 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        word-break: keep-all !important;
        white-space: normal !important;
    }
    
    .payment-warning-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        white-space: normal !important;
        line-height: 1.5 !important;
    }
}

.empty-state {
    text-align: center; 
    padding: 40px; 
    color: #888; 
    font-style: italic;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
}

/* Activity Table Styling */
.localhost-visit {
    background: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #ffc107;
}

.real-visit {
    background: rgba(40, 167, 69, 0.1);
    border-left: 3px solid #28a745;
}

.localhost-badge {
    background: #ffc107;
    color: #000;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 8px;
}

/* Activity table row hover effects */
.localhost-visit:hover {
    background: rgba(255, 193, 7, 0.2);
}

.real-visit:hover {
    background: rgba(40, 167, 69, 0.2);
}


/* MINIMAL PROFESSIONAL PRICING SECTION - NO BOXES */

.pricing-minimal {
    padding: 60px 0;
    background: #0a0a0a;
    text-align: center;
}

.pricing-header-minimal {
    margin-bottom: 50px;
}

/* Price Display - Compact and Professional */
.price-display-minimal {
    margin-bottom: 40px;
}

.pricing-badge-minimal {
    display: inline-block;
    background: rgba(184, 148, 31, 0.1);
    color: #b8941f;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(184, 148, 31, 0.2);
}

.pricing-amount-minimal {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    margin-bottom: 12px;
}

.currency-minimal {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
}

.amount-minimal {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.pricing-type-minimal {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #b8941f;
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-value-minimal {
    font-family: 'Crimson Text', serif;
    font-size: 0.95rem;
    color: #cccccc;
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Features Section - Clean List */
.features-section-minimal {
    margin-bottom: 35px;
    text-align: center;
}

.features-title-minimal {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.features-list-minimal {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.feature-row-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.feature-row-minimal:hover {
    color: #b8941f;
}

.feature-icon-minimal {
    color: #b8941f;
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

/* CTA Section - Compact */
.cta-section-minimal {
    margin-bottom: 30px;
    text-align: center;
}

.enroll-btn-minimal {
    background: linear-gradient(135deg, #b8941f, #9a7a1a);
    color: #0a0a0a;
    border: none;
    padding: 14px 32px;
    border-radius: 40px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(184, 148, 31, 0.3);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

.btn-text-minimal {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-subtitle-minimal {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Trust Indicators - Compact */
.trust-indicators-minimal {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    text-align: center;
}

.trust-item-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #b8941f;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
}

.trust-item-minimal i {
    font-size: 0.85rem;
}

/* Footer */
.pricing-footer-minimal {
    margin-top: 25px;
    text-align: center;
}

.pricing-note-minimal {
    font-family: 'Crimson Text', serif;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-minimal {
        padding: 50px 0;
    }
    
    .features-list-minimal {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 350px;
    }
    
    .amount-minimal {
        font-size: 3rem;
    }
    
    .currency-minimal {
        font-size: 1.5rem;
    }
    
    .trust-indicators-minimal {
        gap: 20px;
    }
    
    .enroll-btn-minimal {
        min-width: 200px;
        padding: 12px 28px;
    }
}

@media (max-width: 480px) {
    .amount-minimal {
        font-size: 2.5rem;
    }
    
    .currency-minimal {
        font-size: 1.3rem;
    }
    
    .features-list-minimal {
        max-width: 300px;
    }
    
    .feature-row-minimal {
        font-size: 0.8rem;
    }
    
    .enroll-btn-minimal {
        min-width: 180px;
        padding: 11px 25px;
    }
    
    .trust-indicators-minimal {
        flex-direction: column;
        gap: 12px;
    }
}

/* Additional Mobile Scaling Fixes */
@media (max-width: 480px) {
    .pricing-minimal {
        padding: 40px 20px;
    }
    
    .pricing-header-minimal {
        margin-bottom: 30px;
    }
    
    .price-display-minimal {
        margin-bottom: 30px;
    }
    
    .features-section-minimal {
        margin-bottom: 25px;
    }
    
    .features-list-minimal {
        max-width: 280px;
        gap: 8px;
    }
    
    .feature-row-minimal {
        font-size: 0.75rem;
        padding: 6px 0;
    }
    
    .cta-section-minimal {
        margin-bottom: 25px;
    }
    
    .enroll-btn-minimal {
        min-width: 160px;
        padding: 10px 20px;
    }
    
    .btn-text-minimal {
        font-size: 0.85rem;
    }
    
    .btn-subtitle-minimal {
        font-size: 0.7rem;
    }
    
    .trust-indicators-minimal {
        flex-direction: column;
        gap: 10px;
    }
    
    .trust-item-minimal {
        font-size: 0.75rem;
    }
    
    .pricing-footer-minimal {
        margin-top: 20px;
    }
    
    .pricing-note-minimal {
        font-size: 0.8rem;
        padding: 0 10px;
    }
}

@media (max-width: 360px) {
    .pricing-minimal {
        padding: 30px 15px;
    }
    
    .amount-minimal {
        font-size: 2.2rem;
    }
    
    .currency-minimal {
        font-size: 1.1rem;
    }
    
    .features-list-minimal {
        max-width: 250px;
    }
    
    .feature-row-minimal {
        font-size: 0.7rem;
    }
    
    .enroll-btn-minimal {
        min-width: 140px;
        padding: 8px 16px;
    }
    
    .btn-text-minimal {
        font-size: 0.8rem;
    }
}

/* Ensure no horizontal overflow on any device */
.pricing-minimal .container {
    overflow-x: hidden;
    max-width: 100%;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .pricing-minimal .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .pricing-minimal .container {
        padding: 0 10px;
    }
}

/* Fix potential text overflow issues */
.pricing-value-minimal,
.features-title-minimal,
.pricing-note-minimal {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Ensure button doesn't overflow on small screens */
.enroll-btn-minimal {
    max-width: 100%;
    box-sizing: border-box;
}

/* Fix trust indicators spacing on very small screens */
@media (max-width: 320px) {
    .trust-indicators-minimal {
        gap: 8px;
    }
    
    .trust-item-minimal {
        font-size: 0.7rem;
    }
    
    .pricing-minimal {
        padding: 25px 10px;
    }
}

/* Mobile-specific scrolling animation fixes */
@media (max-width: 768px) {
    .scrolling-track {
        animation-duration: 25s !important;
    }
    
    .feature-card {
        min-width: 280px !important;
        margin-right: 15px !important;
    }
    
    .why-different .feature-list .scrolling-track {
        animation-duration: 25s !important;
    }
    
    .community .feature-list .scrolling-track {
        animation-duration: 25s !important;
    }
}

@media (max-width: 480px) {
    .scrolling-track {
        animation-duration: 30s !important;
    }
    
    .feature-card {
        min-width: 250px !important;
        margin-right: 12px !important;
    }
    
    .why-different .feature-list .scrolling-track {
        animation-duration: 30s !important;
    }
    
    .community .feature-list .scrolling-track {
        animation-duration: 30s !important;
    }
    
    .feature-card-content h4 {
        font-size: 0.9rem !important;
    }
    
    .feature-card-content p {
        font-size: 0.75rem !important;
    }
}

@media (max-width: 360px) {
    .scrolling-track {
        animation-duration: 35s !important;
    }
    
    .feature-card {
        min-width: 220px !important;
        margin-right: 10px !important;
    }
    
    .why-different .feature-list .scrolling-track {
        animation-duration: 35s !important;
    }
    
    .community .feature-list .scrolling-track {
        animation-duration: 35s !important;
    }
    
    .feature-card-content h4 {
        font-size: 0.8rem !important;
    }
    
    .feature-card-content p {
        font-size: 0.7rem !important;
    }
}

/* Ensure smooth scrolling on all devices */
.scrolling-track {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Fix potential mobile touch issues */
.feature-card {
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

/* Ensure proper spacing on mobile */
@media (max-width: 768px) {
    .feature-list {
        margin-top: 15px !important;
        height: 100px !important;
    }
    
    .why-different .feature-list {
        margin-top: 15px !important;
        height: 100px !important;
    }
    
    .community .feature-list {
        margin-top: 15px !important;
        height: 100px !important;
    }
}

@media (max-width: 480px) {
    .feature-list {
        margin-top: 12px !important;
        height: 90px !important;
    }
    
    .why-different .feature-list {
        margin-top: 12px !important;
        height: 90px !important;
    }
    
    .community .feature-list {
        margin-top: 12px !important;
        height: 90px !important;
    }
}

/* Additional mobile header fixes */
@media (max-width: 768px) {
    .header .container {
        padding: 0 15px !important;
    }
    
    .logo {
        padding-left: 0 !important;
    }
    
    .header-right {
        padding-right: 0 !important;
    }
    
    .mobile-menu-btn {
        margin-left: 10px;
    }
    
    .nav.active {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-top: 1px solid rgba(184, 148, 31, 0.2);
        z-index: 1000;
        display: block;
    }
    
    .nav.active .nav-link,
    .nav.active .cta-btn-header {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(184, 148, 31, 0.1);
        text-align: center;
        margin: 0;
    }
    
    .nav.active .nav-link:last-child,
    .nav.active .cta-btn-header:last-child {
        border-bottom: none;
    }
    
    .nav.active .cta-btn-header {
        background: linear-gradient(135deg, #b8941f, #9a7a1a);
        color: #0a0a0a;
        border-radius: 25px;
        margin: 10px auto;
        max-width: 200px;
        font-weight: 600;
        padding: 10px 20px;
    }
    
    .nav.active .cta-btn-header:hover {
        background: linear-gradient(135deg, #d4af37, #b8941f);
        transform: translateY(-1px);
    }
}

@media (max-width: 480px) {
    .header .container {
        padding: 0 10px !important;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .cta-btn-header {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .mobile-menu-btn {
        margin-left: 8px;
    }
}

@media (max-width: 360px) {
    .header .container {
        padding: 0 8px !important;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .cta-btn-header {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .mobile-menu-btn {
        margin-left: 6px;
    }
}

/* Ensure mobile menu button is always visible on mobile */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav {
        display: none;
    }
    
    .nav.active {
        display: block;
    }
}

/* Fix potential mobile touch issues */
.mobile-menu-btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.nav-link {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Ensure smooth mobile animations */
.nav {
    transition: all 0.3s ease;
}

.nav.active {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Final mobile scaling fixes for hero and other sections */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
    }
    
    .hero-content {
        padding-top: 30px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .hero-stats {
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-cta {
        gap: 15px;
    }
    
    .cta-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .why-different .why-content {
        gap: 20px;
    }
    
    .why-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .highlight-text {
        font-size: 1rem;
    }
    
    .community-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .urgency-content h2 {
        font-size: 1.8rem;
    }
    
    .urgency-content p {
        font-size: 0.95rem;
    }
    
    .contact-content h2 {
        font-size: 1.8rem;
    }
    
    .contact-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px;
    }
    
    .hero-content {
        padding-top: 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-cta {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .why-different .why-content {
        gap: 15px;
    }
    
    .why-text p {
        font-size: 0.9rem;
    }
    
    .highlight-text {
        font-size: 0.95rem;
    }
    
    .community-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .urgency-content h2 {
        font-size: 1.6rem;
    }
    
    .urgency-content p {
        font-size: 0.9rem;
    }
    
    .contact-content h2 {
        font-size: 1.6rem;
    }
    
    .contact-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .hero {
        padding-top: 70px;
    }
    
    .hero-content {
        padding-top: 15px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .hero-stats {
        gap: 12px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .cta-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        max-width: 250px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .why-text p {
        font-size: 0.85rem;
    }
    
    .highlight-text {
        font-size: 0.9rem;
    }
}

/* Ensure no text overflow on any device */
.hero-title,
.hero-subtitle,
.hero-description,
.section-title,
.why-text p,
.highlight-text,
.community-subtitle,
.urgency-content h2,
.urgency-content p,
.contact-content h2,
.contact-content p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Fix potential mobile layout issues */
.container {
    box-sizing: border-box;
    width: 100%;
}

/* Ensure proper mobile spacing */
@media (max-width: 768px) {
    .features,
    .why-different,
    .community,
    .urgency,
    .contact {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .features,
    .why-different,
    .community,
    .urgency,
    .contact {
        padding: 40px 0;
    }
}

@media (max-width: 360px) {
    .features,
    .why-different,
    .community,
    .urgency,
    .contact {
        padding: 30px 0;
    }
}

/* Mobile/Desktop button visibility */
.mobile-only {
    display: none;
}

.desktop-only {
    display: inline-block;
}

@media (max-width: 768px) {
    .mobile-only {
        display: inline-block;
    }
    
    .desktop-only {
        display: none;
    }
}

/* Make feature cards smaller on mobile */
@media (max-width: 768px) {
    .why-different .feature-list .feature-card {
        width: 280px !important;
        height: 70px !important;
        padding: 12px 16px !important;
        margin-right: 20px !important;
    }
    
    .why-different .feature-list .feature-card-content h4 {
        font-size: 0.85rem !important;
        margin-bottom: 4px !important;
    }
    
    .why-different .feature-list .feature-card-content p {
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
    }
    
    .why-different .feature-list .feature-card i {
        font-size: 1rem !important;
        margin-right: 12px !important;
    }
}

@media (max-width: 480px) {
    .why-different .feature-list .feature-card {
        width: 240px !important;
        height: 65px !important;
        padding: 10px 14px !important;
        margin-right: 15px !important;
    }
    
    .why-different .feature-list .feature-card-content h4 {
        font-size: 0.8rem !important;
    }
    
    .why-different .feature-list .feature-card-content p {
        font-size: 0.65rem !important;
    }
    
    .why-different .feature-list .feature-card i {
        font-size: 0.9rem !important;
        margin-right: 10px !important;
    }
}

@media (max-width: 360px) {
    .why-different .feature-list .feature-card {
        width: 200px !important;
        height: 60px !important;
        padding: 8px 12px !important;
        margin-right: 12px !important;
    }
    
    .why-different .feature-list .feature-card-content h4 {
        font-size: 0.75rem !important;
    }
    
    .why-different .feature-list .feature-card-content p {
        font-size: 0.6rem !important;
    }
    
    .why-different .feature-list .feature-card i {
        font-size: 0.8rem !important;
        margin-right: 8px !important;
    }
}

.enroll-btn-minimal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 148, 31, 0.4);
    background: linear-gradient(135deg, #d4af37, #b8941f);
}

/* Fix payment modal button centering and styling */
.payment-form button[type="submit"] {
    display: block;
    margin: 30px auto 0 auto;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.payment-form button[type="submit"] i {
    margin-right: 8px;
}

/* Payment modal styling fixes - FINAL MOBILE FIX */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(184, 148, 31, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-height: 80vh;
    overflow-y: auto;
    margin: 0 auto;
}

.close {
    color: #b8941f;
    float: right;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    right: 12px;
    top: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #d4af37;
}

.payment-form {
    padding: 20px;
}

.payment-form h2 {
    color: #b8941f;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 6px;
    text-align: center;
}

.payment-form p {
    color: #cccccc;
    text-align: center;
    margin-bottom: 15px;
    font-size: 0.8rem;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 0.75rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid rgba(184, 148, 31, 0.3);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 0.75rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #b8941f;
    box-shadow: 0 0 0 2px rgba(184, 148, 31, 0.2);
}

.form-group small {
    color: #888;
    font-size: 0.65rem;
    margin-top: 3px;
    display: block;
}

.order-summary {
    background: rgba(184, 148, 31, 0.1);
    border: 1px solid rgba(184, 148, 31, 0.2);
    border-radius: 8px;
    padding: 10px;
    margin: 15px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    color: #ffffff;
    font-size: 0.75rem;
}

.summary-row.total {
    border-top: 1px solid rgba(184, 148, 31, 0.3);
    padding-top: 8px;
    margin-top: 8px;
    font-weight: 700;
    color: #b8941f;
    font-size: 0.9rem;
}

/* Hide the item details, only show total */
.summary-row:not(.total) {
    display: none;
}

/* Make the button MUCH smaller and compact */
.payment-form button[type="submit"] {
    display: block;
    margin: 15px auto 0 auto;
    text-align: center;
    width: 100%;
    max-width: 220px;
    padding: 10px 16px;
    font-size: 0.8rem;
    background: linear-gradient(135deg, #b8941f, #9a7a1a);
    color: #0a0a0a;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.payment-form button[type="submit"]:hover {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    transform: translateY(-2px);
}

.payment-form button[type="submit"] i {
    margin-right: 5px;
    font-size: 0.8rem;
}

/* Payment Instructions Modal Styling - Compact */
.payment-instructions {
    padding: 20px;
    text-align: center;
}

.payment-instructions h2 {
    color: #b8941f;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

#paymentDetails {
    background: rgba(184, 148, 31, 0.1);
    border: 1px solid rgba(184, 148, 31, 0.2);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    text-align: left;
}

.payment-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    color: #ffffff;
    font-size: 0.75rem;
}

.payment-detail-row .label {
    color: #b8941f;
    font-weight: 600;
}

.payment-detail-row .value {
    color: #ffffff;
    font-weight: 500;
}

.payment-address {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(184, 148, 31, 0.3);
    border-radius: 6px;
    padding: 10px;
    margin: 10px 0;
    word-break: break-all;
    font-family: monospace;
    font-size: 0.7rem;
    color: #b8941f;
    position: relative;
}

.copy-btn {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    background: linear-gradient(135deg, #b8941f, #9a7a1a);
    color: #0a0a0a;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: block;
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    transform: translateY(-2px) scale(1.02);
}

.payment-status {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin: 12px 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #ffc107;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.payment-actions {
    margin-top: 15px;
}

.payment-actions button {
    background: linear-gradient(135deg, #b8941f, #9a7a1a);
    color: #0a0a0a;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-actions button:hover {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    transform: translateY(-2px);
}

/* FINAL MOBILE SCALING - ULTRA COMPACT */
@media (max-width: 768px) {
    .modal-content {
        width: 92%;
        max-width: 380px;
        max-height: 75vh;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        position: fixed;
        margin: 0 auto;
    }
    
    .payment-form,
    .payment-instructions {
        padding: 15px;
    }
    
    .payment-form h2,
    .payment-instructions h2 {
        font-size: 1.2rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 6px 8px;
        font-size: 0.7rem;
    }
    
    .payment-form button[type="submit"] {
        max-width: 160px;
        padding: 8px 14px;
        font-size: 0.7rem;
        margin: 20px auto 0 auto;
        display: block;
    }
    
    /* Scale down copy button on mobile */
    .copy-btn {
        padding: 6px 10px;
        font-size: 0.6rem;
        border-radius: 3px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        max-width: 320px;
        max-height: 70vh;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        position: fixed;
        margin: 0 auto;
    }
    
    .payment-form,
    .payment-instructions {
        padding: 12px;
    }
    
    .payment-form h2,
    .payment-instructions h2 {
        font-size: 1.1rem;
    }
    
    .form-group {
        margin-bottom: 8px;
    }
    
    .form-group label {
        font-size: 0.7rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 5px 7px;
        font-size: 0.65rem;
    }
    
    .payment-form button[type="submit"] {
        max-width: 140px;
        padding: 7px 12px;
        font-size: 0.65rem;
        margin: 20px auto 0 auto;
        display: block;
    }
    
    /* Scale down copy button on small mobile */
    .copy-btn {
        padding: 5px 8px;
        font-size: 0.55rem;
        border-radius: 3px;
    }
    
    .order-summary {
        padding: 8px;
        margin: 10px 0;
    }
    
    .summary-row {
        font-size: 0.7rem;
    }
    
    .summary-row.total {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .modal-content {
        width: 98%;
        max-width: 280px;
        max-height: 65vh;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        position: fixed;
        margin: 0 auto;
    }
    
    .payment-form,
    .payment-instructions {
        padding: 10px;
    }
    
    .payment-form h2,
    .payment-instructions h2 {
        font-size: 1rem;
    }
    
    .form-group {
        margin-bottom: 6px;
    }
    
    .form-group label {
        font-size: 0.65rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 4px 6px;
        font-size: 0.6rem;
    }
    
    .payment-form button[type="submit"] {
        max-width: 120px;
        padding: 6px 10px;
        font-size: 0.6rem;
        margin: 20px auto 0 auto;
        display: block;
    }
    
    /* Scale down copy button on ultra small mobile */
    .copy-btn {
        padding: 4px 6px;
        font-size: 0.5rem;
        border-radius: 2px;
    }
    
    .order-summary {
        padding: 6px;
        margin: 8px 0;
    }
    
    .summary-row {
        font-size: 0.65rem;
    }
    
    .summary-row.total {
        font-size: 0.75rem;
    }
}

/* Fix the huge "START BUILDING YOUR EMPIRE TODAY" button */
.urgency .cta-btn.large {
    max-width: 280px;
    padding: 12px 24px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .urgency .cta-btn.large {
        max-width: 240px;
        padding: 10px 20px;
        font-size: 0.85rem;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 480px) {
    .urgency .cta-btn.large {
        max-width: 200px;
        padding: 8px 16px;
        font-size: 0.8rem;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 360px) {
    .urgency .cta-btn.large {
        max-width: 180px;
        padding: 7px 14px;
        font-size: 0.75rem;
        margin: 0 auto;
        display: block;
    }
}

/* Mobile-first responsive design */
@media (max-width: 768px) {
    /* Fix text wrapping issues on mobile */
    .payment-address {
        word-break: keep-all !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
    }
    
    .payment-address span,
    .payment-address div {
        word-break: keep-all !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
    }
    
    .payment-warning-text {
        word-break: keep-all !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
        line-height: 1.5 !important;
    }
    /* Main CTA Button - "START BUILDING YOUR EMPIRE TODAY" */
    .cta-btn.large {
        padding: 12px 20px !important;
        font-size: 14px !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        display: block !important;
        height: auto !important;
        line-height: 1.3 !important;
    }
    
    .urgency .cta-btn.large {
        padding: 10px 18px !important;
        font-size: 13px !important;
        max-width: 260px !important;
        margin: 0 auto !important;
        display: block !important;
    }

    /* Payment Modal - Perfect Centering */
    .modal-content {
        position: fixed !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 auto !important;
        width: 90% !important;
        max-width: 400px !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
    }

    /* Payment Form Button - "CREATE PAYMENT ORDER" */
    .payment-form button[type="submit"] {
        max-width: 250px !important;
        padding: 10px 16px !important;
        font-size: 13px !important;
        margin: 20px auto 0 auto !important;
        display: block !important;
        height: auto !important;
        line-height: 1.3 !important;
    }

    /* Payment Method Selection Field */
    .payment-form select,
    .payment-form .crypto-selector {
        max-width: 250px !important;
        padding: 8px 12px !important;
        font-size: 13px !important;
        margin: 0 auto !important;
        display: block !important;
    }

    /* Payment Action Buttons */
    .payment-actions .cta-btn {
        max-width: 200px !important;
        padding: 8px 14px !important;
        font-size: 12px !important;
        margin: 8px auto !important;
        display: block !important;
    }

    /* Copy Wallet Address Button - PROPER POSITIONING BELOW WARNING */
    .copy-btn {
        max-width: 180px !important;
        padding: 6px 12px !important;
        font-size: 11px !important;
        margin: 15px auto 0 auto !important;
        display: block !important;
        position: relative !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .cta-btn.large {
        padding: 10px 16px !important;
        font-size: 13px !important;
        max-width: 240px !important;
    }
    
    .urgency .cta-btn.large {
        padding: 8px 14px !important;
        font-size: 12px !important;
        max-width: 220px !important;
    }

    .modal-content {
        width: 95% !important;
        max-width: 350px !important;
    }

    .payment-form button[type="submit"] {
        max-width: 220px !important;
        padding: 8px 14px !important;
        font-size: 12px !important;
    }

    .payment-form select,
    .payment-form .crypto-selector {
        max-width: 220px !important;
        padding: 6px 10px !important;
        font-size: 12px !important;
    }

    .payment-actions .cta-btn {
        max-width: 180px !important;
        padding: 6px 12px !important;
        font-size: 11px !important;
    }

    .copy-btn {
        max-width: 160px !important;
        padding: 5px 10px !important;
        font-size: 10px !important;
        margin: 15px auto 0 auto !important;
        position: relative !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
    }
}

/* Ultra Small Mobile Devices */
@media (max-width: 360px) {
    .cta-btn.large {
        padding: 8px 14px !important;
        font-size: 12px !important;
        max-width: 200px !important;
    }
    
    .urgency .cta-btn.large {
        padding: 6px 12px !important;
        font-size: 11px !important;
        max-width: 180px !important;
    }

    .modal-content {
        width: 98% !important;
        max-width: 300px !important;
    }

    .payment-form button[type="submit"] {
        max-width: 200px !important;
        padding: 6px 12px !important;
        font-size: 11px !important;
    }

    .payment-form select,
    .payment-form .crypto-selector {
        max-width: 200px !important;
        padding: 5px 8px !important;
        font-size: 11px !important;
    }

    .payment-actions .cta-btn {
        max-width: 160px !important;
        padding: 5px 10px !important;
        font-size: 10px !important;
    }

    .copy-btn {
        max-width: 140px !important;
        padding: 4px 8px !important;
        font-size: 9px !important;
        margin: 15px auto 0 auto !important;
        position: relative !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
    }
}

/* FORCE MOBILE HERO TITLE SCALING - HIGHEST PRIORITY */
@media (max-width: 768px) {
    .hero .hero-content .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
        padding: 0 10px !important;
        hyphens: none !important;
        word-break: normal !important;
    }
}

@media (max-width: 480px) {
    .hero .hero-content .hero-title {
        font-size: 1.4rem !important;
        line-height: 1.2 !important;
        padding: 0 5px !important;
        hyphens: none !important;
        word-break: normal !important;
    }
}

@media (max-width: 360px) {
    .hero .hero-content .hero-title {
        font-size: 1.2rem !important;
        line-height: 1.1 !important;
        hyphens: none !important;
        word-break: normal !important;
    }
}

@media (max-width: 320px) {
    .hero .hero-content .hero-title {
        font-size: 1rem !important;
        line-height: 1.1 !important;
        padding: 0 5px !important;
        hyphens: none !important;
        word-break: normal !important;
    }
}

@media (max-width: 280px) {
    .hero .hero-content .hero-title {
        font-size: 0.9rem !important;
        line-height: 1.1 !important;
        padding: 0 3px !important;
        hyphens: none !important;
        word-break: normal !important;
    }
}

@media (max-width: 240px) {
    .hero .hero-content .hero-title {
        font-size: 0.8rem !important;
        line-height: 1.1 !important;
        padding: 0 2px !important;
        hyphens: none !important;
        word-break: normal !important;
    }
}



/* Marketplace Section */
.marketplace {
    padding: 120px 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(184, 148, 31, 0.1);
    text-align: center;
}

.marketplace .section-title {
    margin-bottom: 60px;
}

.marketplace-content {
    max-width: 800px;
    margin: 0 auto;
}

.marketplace-content p {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 40px;
}

.marketplace-cta .cta-btn {
    margin: 0 auto;
}

/* Responsive adjustments for Marketplace section */
@media (max-width: 768px) {
    .marketplace {
        padding: 80px 0;
    }

    .marketplace .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .marketplace-content p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .marketplace {
        padding: 60px 0;
    }

    .marketplace .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .marketplace-content p {
        font-size: 1rem;
        padding: 0 15px;
    }
}




/* Marketplace Page Styles */
.marketplace-page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/static/tomyhub_lincoln_logo_1.png") no-repeat center center/cover;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.marketplace-page-hero .section-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.marketplace-page-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.sellers-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #fff;
}

.sellers-section .section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #d4af37;
}

.seller-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.seller-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seller-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.seller-pfp {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid #d4af37;
    display: flex;
    justify-content: center;
    align-items: center;
}

.seller-pfp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-name {
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.seller-description {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 20px;
    flex-grow: 1;
}

.seller-stats {
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
    color: #eee;
}

.seller-stats .stat-item {
    margin-bottom: 8px;
}

.seller-stats .stat-item strong {
    color: #d4af37;
    margin-right: 5px;
}

.seller-stats .rating {
    color: #d4af37;
    font-size: 1.1rem;
}

/* Responsive adjustments for Marketplace page */
@media (max-width: 768px) {
    .marketplace-page-hero {
        padding: 80px 0;
    }

    .marketplace-page-hero .section-title {
        font-size: 2.8rem;
    }

    .marketplace-page-hero p {
        font-size: 1rem;
    }

    .sellers-section {
        padding: 60px 0;
    }

    .sellers-section .section-title {
        font-size: 2.2rem;
    }

    .seller-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .seller-card {
        padding: 20px;
    }

    .seller-name {
        font-size: 1.6rem;
    }

    .seller-description {
        font-size: 0.9rem;
    }

    .seller-stats {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .marketplace-page-hero {
        padding: 60px 0;
    }

    .marketplace-page-hero .section-title {
        font-size: 2.2rem;
    }

    .sellers-section .section-title {
        font-size: 1.8rem;
    }

    .seller-card {
        padding: 15px;
    }

    .seller-pfp {
        width: 80px;
        height: 80px;
    }

    .seller-name {
        font-size: 1.4rem;
    }

    .seller-description {
        font-size: 0.85rem;
    }

    .seller-stats {
        font-size: 0.8rem;
    }
}

/* User Profile Navigation Styles */
.user-profile-nav {
    display: none;
    align-items: center;
    gap: 12px;
    position: relative;
    min-height: 40px;
    padding: 8px 0;
}

.user-profile-nav.show {
    display: flex;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b8941f, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #b8941f;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.user-pfp {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: none;
}

.user-pfp.show {
    display: block;
}

.user-initial {
    display: block;
}

.user-initial.hide {
    display: none;
}

.user-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(184, 148, 31, 0.5);
}

.user-name {
    color: #00ff00;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.user-dropdown-arrow {
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-left: 4px;
}

.user-name:hover {
    color: #d4af37;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-item {
    display: block;
    padding: 12px 16px;
    color: #e8e8e8;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #333;
}

.user-dropdown-item:last-child {
    border-bottom: none;
}

.user-dropdown-item:hover {
    background-color: #2a2a2a;
    color: #b8941f;
}

.user-dropdown-item.logout {
    color: #ff6b6b;
}

.user-dropdown-item.logout:hover {
    background-color: #2a1a1a;
    color: #ff5252;
}

/* Header actions styling for consistent layout */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 40px;
    padding: 8px 0;
}

/* Hide login/signup buttons when user is logged in */
.header-actions.hide-auth {
    display: none;
}

/* Responsive styles for user profile */
@media (max-width: 768px) {
    .user-profile-nav {
        gap: 8px;
    }
    
    .user-avatar {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .user-name {
        font-size: 13px;
    }
    
    .user-dropdown {
        min-width: 180px;
    }
}


