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

:root {
    --primary-color: #023436;
    --secondary-color: #012A2B;
    --accent-color: #D9FF43;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --dark-color: #012A2B;
    --light-color: #f8fafc;
    --white: #ffffff;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --border-color: #e5e7eb;
    --gradient-primary: linear-gradient(135deg, #023436 0%, #012A2B 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--light-color);
}

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

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background:#D9FF43;
    color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--secondary-color);
    color: #ffffff;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand h2 {
    color: var(--primary-color);
    margin: 0;
}

.nav-brand span {
    color: var(--accent-color);
}
.hero-span{
    color: var(--accent-color);
    font-weight: bold;

}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fafc 0%, rgba(2, 52, 54, 0.05) 100%);
    z-index: -2;
}

.trading-chart {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23023436;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%23012A2B;stop-opacity:0.05" /></linearGradient></defs><path d="M0,200 Q100,150 200,100 T400,80" stroke="%2310b981" stroke-width="3" fill="none" opacity="0.6"/><path d="M0,250 Q100,200 200,180 T400,150" stroke="%23023436" stroke-width="2" fill="none" opacity="0.4"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    z-index: 1;
}
.hero-titles{
    font-size: 54px;
    
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}
.stat-number-main{
    color: #012A2B !important;
}

.hero-cta {
    text-align: left;
}

.cta-subtitle {
    margin-top: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(217, 255, 67, 0.12);
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 18px rgba(1, 42, 43, 0.12);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.forex-image {
    position: relative;
    max-width: 900px;
    width: 100%;
    animation: float 3s ease-in-out infinite;
}

.trading-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

.profit-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.profit-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.profit-label {
    display: block;
    font-size: 0.875rem;
    color: var(--white);
    margin-top: 0.25rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 1.25rem;
    box-shadow: var(--shadow-md);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(2, 52, 54, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(217, 255, 67, 0.6);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(217, 255, 67, 0.08) 100%);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(217, 255, 67, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-icon i {
    font-size: 1.1rem;
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: var(--primary-color);
}
.reviews-text{
    color: #ffffff !important;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.review-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.reviewer strong {
    color: var(--text-primary);
    font-weight: 600;
}

.reviewer span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    display: block;
    margin-top: 0.25rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--white);
}

.pricing-card {
    max-width: 400px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
    border: 3px solid var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    padding: 3rem 2rem 2rem;
    text-align: center;
    background: var(--gradient-primary);
    color: var(--white);
}

.pricing-header h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

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

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    padding: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature i {
    color: var(--success-color);
    font-size: 1.125rem;
}

.pricing-card-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem 2rem;
}

.pricing-card .btn {
    width: 100%;
    max-width: 320px;
    margin: 0;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
}

.footer-section h3 span {
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* WhatsApp Chat Button */
/* Live Chat Widget (WhatsApp) */
.live-chat-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}

.live-chat-widget.hide {
    transform: translateY(calc(100% + 100px));
    opacity: 0;
    pointer-events: none;
}

.live-chat-widget.live-chat-bounce-in {
    animation: live-chat-bounce-in 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes live-chat-bounce-in {
    0% {
        transform: translateY(calc(100% + 80px));
        opacity: 0;
    }
    55% {
        transform: translateY(-14px);
        opacity: 1;
    }
    72% {
        transform: translateY(6px);
    }
    86% {
        transform: translateY(-4px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.live-chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem 0.75rem 1rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    border: none;
    letter-spacing: 0.02em;
}

.live-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.live-chat-btn:focus {
    outline: 2px solid rgba(37, 211, 102, 0.6);
    outline-offset: 2px;
}

.live-chat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: live-pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

.live-chat-btn .fab {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.live-chat-label {
    white-space: nowrap;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-text,
.hero-image,
.feature-card,
.review-card,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .live-chat-widget {
        bottom: 1rem;
        right: 1rem;
    }

    .live-chat-btn {
        padding: 0.6rem 1rem 0.6rem 0.85rem;
        font-size: 0.875rem;
    }

    .live-chat-btn .fab {
        font-size: 1.25rem;
    }
}

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

    .hero {
        padding-top: 100px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .trading-dashboard {
        padding: 1.5rem;
    }

    .profit-amount {
        font-size: 1.5rem;
    }
}
/* Mobile Responsive - Fixed Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px; /* Adjust based on your header height */
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        opacity: 0;
        visibility: hidden;
        z-index: 999;
    }

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

    .nav-toggle {
        display: block;
    }

    /* Ensure logo is visible on mobile */
    .nav-brand {
        display: flex;
        align-items: center;
    }

    .nav-brand img {
        max-height: 40px;
        width: auto;
    }

    /* Make sure nav links are properly styled in mobile */
    .nav-menu .nav-link {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
        text-align: center;
    }

    .nav-menu .nav-link:last-of-type {
        border-bottom: none;
    }

    .nav-menu .btn {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .live-chat-widget {
        bottom: 1rem;
        right: 1rem;
    }

    .live-chat-btn {
        padding: 0.55rem 0.9rem 0.55rem 0.75rem;
        font-size: 0.8rem;
    }

    .live-chat-btn .fab {
        font-size: 1.15rem;
    }

    .hero-titles{
        font-size: 44px;
    }
}

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

    .nav-menu {
        top: 70px; /* Adjust for smaller header on very small screens */
    }

    .hero {
        padding-top: 100px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .trading-dashboard {
        padding: 1.5rem;
    }

    .profit-amount {
        font-size: 1.5rem;
    }
}


.poolfx-screenshots-section {
    padding: 5rem 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.poolfx-screenshots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217, 255, 67, 0.05) 0%, rgba(1, 42, 43, 0.1) 100%);
    pointer-events: none;
}

.poolfx-screenshots-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.poolfx-screenshots-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--white);
}

.poolfx-screenshots-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.poolfx-screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.poolfx-screenshot-card {
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.poolfx-screenshot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.poolfx-screenshot-wrapper {
    position: relative;
    overflow: hidden;
    background: #f1f5f9;
    aspect-ratio: 9/16; /* Mobile mockup ratio */
    max-height: 500px;
    margin: 0 auto;
    border-radius: 1.5rem;
    border: 8px solid #2d3748;
    box-shadow: inset 0 0 0 2px #4a5568;
}

.poolfx-screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.poolfx-screenshot-card:hover .poolfx-screenshot-img {
    transform: scale(1.05);
}

.poolfx-screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 52, 54, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.poolfx-screenshot-card:hover .poolfx-screenshot-overlay {
    opacity: 1;
}

.poolfx-screenshot-icon {
    font-size: 2rem;
    color: var(--accent-color);
    cursor: pointer;
}

.poolfx-screenshot-info {
    padding: 2rem;
    text-align: center;
}

.poolfx-screenshot-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.poolfx-screenshot-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile Responsive for Screenshots Section */
@media (max-width: 768px) {
    .poolfx-screenshots-section {
        padding: 4rem 0;
    }
    
    .poolfx-screenshots-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
        gap: 2rem;
    }
    
    .poolfx-screenshot-wrapper {
        max-height: 400px;
        border-width: 6px;
    }
    
    .poolfx-screenshot-info {
        padding: 1.5rem;
    }
    
    .poolfx-screenshots-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .poolfx-screenshots-section {
        padding: 3rem 0;
    }
    
    .poolfx-screenshots-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .poolfx-screenshot-wrapper {
        max-height: 350px;
        border-width: 4px;
    }
    
    .poolfx-screenshot-info {
        padding: 1.25rem;
    }
    
    .poolfx-screenshot-heading {
        font-size: 1.125rem;
    }
    
    .poolfx-screenshot-desc {
        font-size: 0.9rem;
    }
}



/* Download Section Styles */
.download-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: var(--white);
    margin-bottom: 5%;
}

.download-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.download-text {
    flex: 1;
}

.download-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--white);
}

.download-text > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.download-features {
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 24px;
}

.download-steps {
    margin-bottom: 2.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(1, 42, 43, 0.9);
    border-radius: 0.75rem;
    border: 1px solid rgba(217, 255, 67, 0.4);
}

.download-steps h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.download-steps ol {
    padding-left: 1.5rem;
}

.download-steps li {
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.download-btn {
    margin-bottom: 1rem;
    background: var(--accent-color);
    color: var(--dark-color);
}

.download-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.download-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

.download-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.app-screenshot {
    max-width: 300px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    z-index: 2;
    position: relative;
}

.mobile-frame {
    position: absolute;
    width: 320px;
    height: 650px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Responsive Design */
@media (max-width: 968px) {
    .download-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .feature {
        justify-content: center;
    }
    
    .download-steps ol {
        text-align: left;
        display: inline-block;
    }
    .download-btn{
        margin-top: 5%;
    }
}

@media (max-width: 640px) {
    .download-section {
        padding: 3rem 0;
    }
    
    .app-screenshot {
        max-width: 250px;
    }
    
    .mobile-frame {
        width: 270px;
        height: 550px;
    }
    .marketing-download-box{       
        margin-top: -10%;
    }
    .marketing-download-box p{       
        margin-top: -5%;
    }
}



/* Marketing Modal Styles - Specific to avoid conflicts */
.marketing-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 42, 43, 0.95);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
   
}

.marketing-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.marketing-modal-content {
    background: var(--white);
    border-radius: 1.5rem;
    max-width: 900px;
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    display: flex;
    transform: scale(0.9);
    transition: transform 0.4s ease;
    position: relative;

}

.marketing-modal.show .marketing-modal-content {
    transform: scale(1);
}

.marketing-modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.marketing-modal-close:hover {
    color: var(--danger-color);
    transform: rotate(90deg);
}

.marketing-modal-body {
    display: flex;
    width: 100%;
}

.marketing-modal-left {
    flex: 1;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.marketing-modal-left h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.marketing-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.marketing-stats {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}

.marketing-stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.marketing-features {
    list-style: none;
    margin-top: 1.5rem;
}

.marketing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.marketing-features i {
    color: var(--accent-color);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.marketing-modal-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
  
}

.marketing-download-box {
    text-align: center;
  
}

.marketing-download-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.marketing-download-box p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.marketing-download-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Fix for mobile guarantee visibility */
.marketing-guarantee {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--success-color);
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Mobile specific guarantee styles */
@media (max-width: 768px) {
    .marketing-guarantee {
        font-size: 0.8rem !important;
        padding: 0.4rem !important;
        margin-top: -5% !important;
        flex-wrap: wrap;
        text-align: center;
    }
    
    .marketing-guarantee i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .marketing-guarantee {
        font-size: 0.75rem !important;
        padding: 0.3rem !important;
    }
}

/* Download notification styles */
.download-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    text-align: center;
    max-width: 90%;
    width: 400px;
    display: none;
}

.download-notification.show {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.download-notification h3 {
    color: var(--success-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.download-notification .spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--success-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.download-notification .download-steps {
    text-align: left;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(1, 42, 43, 0.06);
    border-radius: 0.5rem;
}

.download-notification .download-steps ol {
    margin: 0;
    padding-left: 1.2rem;
}

.download-notification .download-steps li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.notification-close {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-top: 1rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .marketing-modal-body {
        flex-direction: column;
    }
    
    .marketing-modal-left,
    .marketing-modal-right {
        padding: 2rem;
    }
    
    .marketing-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .marketing-stat {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

@media (max-width: 480px) {
    .marketing-modal {
        padding: 10px;
    }
    
    .marketing-modal-content {
        border-radius: 1rem;
    }
    
    .marketing-modal-left,
    .marketing-modal-right {
        padding: 1.5rem;
    }
    
    .marketing-modal-left h2 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Limit modal height and make it centered */
.marketing-modal-content {
  max-height: 90vh;
  overflow-y: auto;
}

/* App Screenshot */
.marketing-app-image {
  max-width: 250px;
  margin: 1rem auto 2rem;
  display: block;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);

}

/* Mobile adjustments */
@media (max-width: 768px) {
  .marketing-modal-content {
    max-width: 95%;
    max-height: 95vh; /* prevent full screen takeover */
  }

  .marketing-app-image {
    max-width: 180px;
    margin: 1rem auto;
    margin-top: -12% !important;
  }
}

@media (max-width: 480px) {
  .marketing-app-image {
    max-width: 150px;
  }
}
/* Make sure modal never exceeds screen height */
.marketing-modal-content {
    max-height: 90vh;
    overflow: hidden; /* prevent scrollbars */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* Mobile adjustments */
  @media (max-width: 768px) {
    .marketing-modal-body {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      gap: 1rem;
    }
  
    .marketing-modal-left,
    .marketing-modal-right {
      padding: 1.2rem;
    }
  
    .marketing-modal-left h2 {
      font-size: 1.6rem;
      margin-bottom: 0.5rem;
    }
  
    .marketing-subtitle {
      font-size: 0.95rem;
      margin-bottom: 1rem;
    }
  
    .marketing-stats {
      margin: 1rem 0;
    }
  
    .stat-number {
      font-size: 1.3rem;
    }
  
    .stat-label {
      font-size: 0.75rem;
    }
  
    .marketing-features {
      margin-top: 1rem;
      font-size: 0.85rem;
    }
  
    .marketing-features li {
      margin-bottom: 0.5rem;
    }
  
    /* Shrink app image */
    .marketing-app-image {
      max-width: 120px;
      margin: 0.5rem auto;
    }
  
    /* Buttons smaller */
    .marketing-download-btn {
      font-size: 0.9rem;
      padding: 0.6rem 1rem;
    }
  
    .marketing-guarantee {
      font-size: 0.75rem;
    }
  }
  
  @media (max-width: 480px) {
    .marketing-modal-content {
      max-width: 95%;
      max-height: 100vh;
    }
  
    .marketing-modal-left h2 {
      font-size: 1.4rem;
    }
  
    .marketing-app-image {
      max-width: 100px;
    }
  }
  /* Compact stats row */
.marketing-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 1rem 0; /* reduced spacing */
    gap: 1rem;
    flex-wrap: nowrap; /* force single line */
  }
  
  .marketing-stat {
    flex: 1;
    text-align: center;
  }
  
  .stat-number {
    display: inline-block;
    font-size: 1rem;   /* reduced size */
    font-weight: 700;
    color: var(--accent-color);
    margin-right: 0.3rem;
  }
  
  .stat-label {
    display: inline-block;
    font-size: 0.85rem;  /* smaller label */
    color: var(--text-secondary);
  }

/* ============================================
   Masterclass Section
   ============================================ */
.masterclass-section {
    padding: 5rem 0;
    background: var(--white);
}

.masterclass-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.masterclass-poster {
    position: relative;
}

.masterclass-poster img {
    width: 100%;
    border-radius: 1.25rem;
    box-shadow: var(--shadow-xl);
    display: block;
}

.masterclass-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(217, 255, 67, 0.15);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.masterclass-badge i {
    color: var(--primary-color);
}

.masterclass-content h1,
.masterclass-content h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.masterclass-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.75rem;
}

.masterclass-features {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.mc-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.15rem;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 0.85rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.mc-feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.mc-feature-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.mc-feature-icon.teal {
    background: rgba(2, 52, 54, 0.1);
    color: var(--primary-color);
}

.mc-feature-icon.lime {
    background: rgba(217, 255, 67, 0.25);
    color: var(--secondary-color);
}

.mc-feature-icon.dark {
    background: rgba(1, 42, 43, 0.08);
    color: var(--dark-color);
}

.mc-feature-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.mc-feature-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.45;
}

.masterclass-pricing-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(217, 255, 67, 0.5);
    border-radius: 1rem;
    background: rgba(217, 255, 67, 0.06);
}

.masterclass-price-info {
    flex: 1;
}

.mc-price-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.mc-price-amount {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.1;
}

.mc-price-note {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.masterclass-pricing-box .btn-enroll {
    white-space: nowrap;
    padding: 0.9rem 1.75rem;
    font-size: 1rem;
    border-radius: 2rem;
    flex-shrink: 0;
}

.mc-secure-note {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    text-align: center;
}

/* Masterclass Modal */
.masterclass-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    inset: 0;
    background: rgba(1, 42, 43, 0.92);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.35s ease;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.masterclass-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.masterclass-modal-content {
    background: var(--white);
    border-radius: 1.25rem;
    max-width: 480px;
    width: 100%;
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: scale(0.92);
    transition: transform 0.35s ease;
}

.masterclass-modal.show .masterclass-modal-content {
    transform: scale(1);
}

.masterclass-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--light-color);
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.masterclass-modal-close:hover {
    background: var(--border-color);
    color: var(--danger-color);
}

.mc-modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.mc-modal-header h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 0.35rem;
}

.mc-modal-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.mc-modal-price {
    display: inline-block;
    background: rgba(217, 255, 67, 0.2);
    color: var(--primary-color);
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.mc-form-group {
    margin-bottom: 1rem;
}

.mc-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.mc-form-group input,
.mc-form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: 0.6rem;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: var(--white);
    color: var(--text-primary);
}

.mc-form-group input:focus,
.mc-form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(2, 52, 54, 0.1);
}

.mc-form-group input:disabled,
.mc-form-group select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#mcSubmitBtn {
    width: 100%;
    margin-top: 0.5rem;
    justify-content: center;
    border-radius: 2rem;
    padding: 0.9rem;
    font-size: 1rem;
}

/* Toast Notifications */
.mc-toast-container {
    position: fixed;
    top: 90px;
    right: 16px;
    left: 16px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    align-items: flex-end;
}

.mc-toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    border-radius: 12px;
    padding: 14px 16px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-left: 4px solid var(--primary-color);
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.mc-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.mc-toast-success {
    border-left-color: var(--success-color);
}

.mc-toast-error {
    border-left-color: var(--danger-color);
}

.mc-toast-info {
    border-left-color: var(--primary-color);
}

.mc-toast-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.mc-toast-success .mc-toast-icon { color: var(--success-color); }
.mc-toast-error .mc-toast-icon { color: var(--danger-color); }
.mc-toast-info .mc-toast-icon { color: var(--primary-color); }

.mc-toast-content {
    flex: 1;
}

.mc-toast-content strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.mc-toast-content p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.mc-toast-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

/* Masterclass Page */
.masterclass-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--light-color);
}

.masterclass-page .masterclass-section {
    padding: 3rem 0 5rem;
}

/* Masterclass standalone nav */
.masterclass-header .masterclass-nav-menu {
    gap: 0;
}

.masterclass-header .btn-enroll-nav {
    border-radius: 2rem;
    padding: 0.65rem 1.35rem;
    font-size: 0.95rem;
}

.masterclass-standalone .nav-toggle {
    display: none !important;
}

@media (max-width: 900px) {
    .masterclass-page {
        padding-top: 76px;
    }

    .masterclass-page .masterclass-section {
        padding-top: 0.75rem;
        padding-bottom: 3rem;
    }

    .masterclass-header .masterclass-nav-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        padding: 0;
        flex-direction: row;
        width: auto;
    }

    .masterclass-header .btn-enroll-nav {
        padding: 0.55rem 1.1rem;
        font-size: 0.85rem;
    }
}

/* Mobile top CTA — shown before poster */
.mc-mobile-top-cta {
    display: none;
}

@media (max-width: 900px) {
    .mc-mobile-top-cta {
        display: block;
        margin-bottom: 1.25rem;
    }

    .mc-mobile-top-cta-inner {
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
        padding: 0.85rem 1rem;
        background: linear-gradient(135deg, #023436 0%, #012A2B 100%);
        border-radius: 1rem;
        box-shadow: 0 8px 24px rgba(2, 52, 54, 0.18);
    }

    .mc-mobile-top-cta-info {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .mc-mobile-top-cta-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.78rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.85);
    }

    .mc-mobile-top-cta-badge i {
        color: var(--accent-color);
    }

    .mc-mobile-top-cta-price {
        font-size: 1.35rem;
        font-weight: 800;
        color: var(--accent-color);
        line-height: 1;
    }

    .mc-mobile-top-cta-price span {
        font-size: 0.72rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.65);
        text-transform: uppercase;
        letter-spacing: 0.04em;
        margin-left: 0.25rem;
    }

    .mc-mobile-top-btn {
        width: 100%;
        justify-content: center;
        border-radius: 2rem;
        padding: 0.7rem 1.15rem;
        font-size: 0.92rem;
        font-weight: 700;
    }

    .masterclass-poster {
        order: 0;
    }
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 900px) {
    .masterclass-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .masterclass-poster {
        order: 0;
    }

    .masterclass-content {
        order: 1;
    }

    .masterclass-pricing-box {
        flex-direction: column;
        text-align: center;
    }

    .masterclass-pricing-box .btn-enroll {
        width: 100%;
    }

    .mc-toast-container {
        align-items: stretch;
    }

    .mc-toast {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .masterclass-page .masterclass-section {
        padding-top: 0.5rem;
        padding-bottom: 2.5rem;
    }

    .masterclass-modal-content {
        padding: 1.5rem;
    }
}

/* Masterclass urgency countdown */
.mc-urgency-banner {
    background: linear-gradient(135deg, #fff1f1 0%, #ffe4e4 100%);
    border: 2px solid #ff6b6b;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    margin: 0.5rem 0 1.5rem;
    box-shadow: 0 6px 24px rgba(255, 68, 68, 0.18);
}

.mc-urgency-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.mc-urgency-slots {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #991b1b;
}

.mc-urgency-slots strong {
    color: #dc2626;
    font-size: 1.15rem;
}

.mc-urgency-dot {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    flex-shrink: 0;
    animation: mc-pulse-dot 1.2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.9);
}

@keyframes mc-pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(1.35); }
}

.mc-urgency-countdown {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.mc-urgency-ends {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #b91c1c;
    white-space: nowrap;
}

.mc-countdown {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.mc-countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1a0505;
    border: 2px solid #ef4444;
    border-radius: 0.55rem;
    padding: 0.35rem 0.6rem;
    min-width: 3.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mc-countdown-box b {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.mc-countdown-box small {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fca5a5;
    letter-spacing: 0.05em;
}

.mc-countdown-sep {
    font-size: 1.25rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 0.55rem;
}

.mc-urgency-critical {
    animation: mc-urgency-flash 2s ease-in-out infinite;
    border-color: #ef4444;
}

@keyframes mc-urgency-flash {
    0%, 100% {
        box-shadow: 0 6px 24px rgba(255, 68, 68, 0.18);
        border-color: #ff6b6b;
    }
    50% {
        box-shadow: 0 8px 32px rgba(255, 68, 68, 0.4);
        border-color: #ef4444;
    }
}

@media (min-width: 901px) {
    .masterclass-standalone .masterclass-page {
        padding-top: 80px;
        min-height: auto;
        overflow: visible;
    }

    .masterclass-standalone .masterclass-section {
        padding: 0.75rem 0 3rem;
        overflow: visible;
    }

    .masterclass-standalone .mc-urgency-banner {
        padding: 0.55rem 1rem;
        margin: 0.75rem 0 1rem;
    }

    .masterclass-standalone .masterclass-grid {
        gap: 2rem;
        align-items: start;
    }

    .masterclass-standalone .masterclass-content {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .masterclass-standalone .masterclass-features {
        gap: 0.45rem;
        margin-bottom: 1rem;
    }

    .masterclass-standalone .mc-feature-card {
        padding: 0.7rem 1rem;
        gap: 0.75rem;
    }

    .masterclass-standalone .mc-feature-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .masterclass-standalone .mc-feature-text h4 {
        font-size: 0.9rem;
        margin-bottom: 0.1rem;
    }

    .masterclass-standalone .mc-feature-text p {
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .masterclass-standalone .masterclass-pricing-box {
        flex-shrink: 0;
        margin-top: auto;
    }

    .masterclass-standalone .masterclass-poster img {
        max-height: none;
    }
}

@media (max-width: 900px) {
    .mc-urgency-banner {
        padding: 0.55rem 0.75rem;
        margin: 0.35rem 0 0.75rem;
        border-radius: 0.75rem;
    }

    .mc-urgency-banner-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        text-align: left;
    }

    .mc-urgency-slots {
        font-size: 0.72rem;
        flex: 1;
        min-width: 0;
    }

    .mc-urgency-slots strong {
        font-size: 0.82rem;
    }

    .mc-urgency-dot {
        width: 7px;
        height: 7px;
    }

    .mc-urgency-countdown {
        flex-direction: row;
        flex-shrink: 0;
        gap: 0.35rem;
    }

    .mc-urgency-ends {
        display: none;
    }

    .mc-countdown-box {
        min-width: 2rem;
        padding: 0.15rem 0.3rem;
        border-radius: 0.35rem;
    }

    .mc-countdown-box b {
        font-size: 0.85rem;
    }

    .mc-countdown-box small {
        font-size: 0.45rem;
    }

    .mc-countdown-sep {
        font-size: 0.75rem;
        margin-bottom: 0.35rem;
    }
}

@media (max-width: 600px) {
    .mc-urgency-banner {
        padding: 0.5rem 0.65rem;
        margin-bottom: 0.65rem;
    }

    .mc-urgency-slots {
        font-size: 0.68rem;
    }

    .mc-urgency-countdown {
        flex-direction: row;
        gap: 0.25rem;
    }

    .mc-countdown-box b {
        font-size: 0.8rem;
    }

    .mc-countdown-box {
        min-width: 1.85rem;
        padding: 0.12rem 0.25rem;
    }
}

/* Masterclass FAQ Section */
.mc-faq-section {
    background: var(--white);
    padding: 3rem 0 4rem;
    border-top: 1px solid var(--border-color);
}

.mc-faq-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2rem;
}

.mc-faq-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.mc-faq-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.mc-faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.mc-faq-item {
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.mc-faq-item[open] {
    border-color: rgba(2, 52, 54, 0.25);
    box-shadow: var(--shadow-sm);
}

.mc-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 1.15rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark-color);
    position: relative;
    padding-right: 2.25rem;
    line-height: 1.4;
}

.mc-faq-item summary::-webkit-details-marker {
    display: none;
}

.mc-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.mc-faq-item[open] summary::after {
    content: '−';
}

.mc-faq-item p {
    margin: 0;
    padding: 0 1.15rem 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

.mc-faq-item p a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.mc-faq-item p a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .mc-faq-section {
        padding: 2rem 0 2.5rem;
    }

    .mc-faq-header {
        margin-bottom: 1.25rem;
    }

    .mc-faq-item summary {
        font-size: 0.88rem;
        padding: 0.85rem 2rem 0.85rem 0.9rem;
    }

    .mc-faq-item p {
        font-size: 0.84rem;
        padding: 0 0.9rem 0.85rem;
    }
}
