/* 
   FRESH PERSPECTIVE - CHESS MASTERCLASS THEME
   Dark, Premium, High-Converting Design
*/

:root {
    /* Colors */
    --bg-dark: #0f172a;        /* Deep Navy Blue */
    --bg-card: #1e293b;        /* Lighter Navy for cards */
    --bg-lighter: #334155;     /* Even lighter for hover states */
    
    --accent-gold: #fbbf24;    /* Primary Action Color */
    --accent-gold-hover: #d97706;
    --text-white: #f8fafc;
    --text-gray: #94a3b8;
    
    --gradient-primary: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    --gradient-dark: linear-gradient(to bottom, #0f172a, #1e293b);

    /* Typography */
    --font-heading: 'Clash Display', 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    
    /* Shadows & Glows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    --glow-gold: 0 0 20px rgba(251, 191, 36, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-white { color: var(--text-white); }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #0f172a; /* Dark text on gold button for contrast */
    box-shadow: var(--glow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-white);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--bg-dark);
}

.pricing-cta-btn {
    width: 100%;
    padding: 20px;
}

/* Header & Nav */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.95rem;
}

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

/* Hero Section */
.hero-section {
    padding-top: 40px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 85vh; /* Slightly reduced to ensure fold visibility */
}

/* Background Abstract Elements */
.hero-bg-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, rgba(15, 23, 42, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
}

.hero-bg-glow-2 {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, rgba(15, 23, 42, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
}

/* Grid Layout for Desktop */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Text gets slightly more space */
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: left; /* Default left align for desktop */
}

/* Left Column: Text Side */
.hero-text-side {
    padding-right: 20px;
}

.badge-container {
    display: inline-block;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.1);
}

.badge-shine {
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
}

.hero-title {
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--text-white);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 90%;
}

.highlight-text {
    color: var(--text-white);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-gold);
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: 10px;
}

.trust-stars {
    color: var(--accent-gold);
    font-size: 1rem;
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
    min-width: max-content;
}

/* Right Column: Image Side */
.hero-image-side {
    position: relative;
    perspective: 1000px;
}

.img-glow-container {
    position: relative;
    border-radius: 24px;
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-glow-container:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(251, 191, 36, 0.3);
}

.hero-img-main {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    display: block;
    transform: rotateY(-5deg) rotateX(2deg); /* Subtle 3D effect */
    transition: all 0.5s ease;
}

.img-glow-container:hover .hero-img-main {
    transform: rotateY(0) rotateX(0);
}

/* Hero Feature Highlights */
.hero-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(5px);
}

.feature-box:hover {
    transform: translateY(-3px);
    border-color: var(--accent-gold);
    background: rgba(251, 191, 36, 0.05);
}

.feature-icon {
    font-size: 1.6rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 3px;
}

.feature-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
}

/* Click Tag Removed */

.mobile-scroll-hint {
    display: none; /* Hidden on desktop */
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-padding {
        padding: 40px 0;
    }
    
    .hero-section {
        min-height: auto;
        padding-top: 20px; /* Reduced from 100px to fix top space */
        padding-bottom: 40px;
        text-align: center;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-text-side {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .hero-image-side {
        max-width: 500px;
        margin: 0 auto;
    }

    .click-tag {
        right: 50%;
        transform: translateX(50%);
        bottom: 20px;
        animation: none; /* Disable bounce on mobile if needed, or keep it */
    }
    
    .hero-img-main {
        transform: none; /* No 3D tilt on mobile */
    }

    /* Adjust features grid for mobile */
    .hero-features-grid {
        grid-template-columns: 1fr; /* Stack features vertically for better space usage or keep 2 col if small */
        gap: 15px;
        margin-top: 20px;
        width: 100%;
        max-width: 400px; /* Constrain width */
    }
    
    .feature-box {
        padding: 12px;
        justify-content: center; /* Center content inside */
    }
    
    .feature-value {
        font-size: 0.9rem;
        text-align: left; /* Keep text left aligned relative to icon */
    }

    .trust-badges {
        justify-content: center;
        margin-top: 20px;
        gap: 8px;
    }

    .trust-badges span {
        white-space: nowrap;
        font-size: 0.85rem;
    }
}

/* Success Stories */
.success-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.success-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-lg);
}

.success-img-container {
    width: 100%;
    height: 350px; /* Big height to show trophies clearly */
    overflow: hidden;
    position: relative;
}

.success-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.success-card:hover .success-img-container img {
    transform: scale(1.05);
}

.success-content {
    padding: 25px;
}

/* Features / Demo Grid */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--accent-gold);
}

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

.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

@media (min-width: 993px) {
    .card:hover {
        transform: translateY(-10px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-lg);
    }
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-gray);
}

/* Mentor Section */
.mentor-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    background: var(--bg-card);
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mentor-img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Scenarios / Pain Points */
.pain-point-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pain-point-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid var(--accent-gold);
}

/* Mistakes - Glass Effect */
.mistakes-section {
    background: var(--bg-dark); /* Removed hero image background as requested */
    position: relative;
    padding: 80px 0;
}

.mistakes-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.9);
}

.mistakes-container {
    position: relative;
    z-index: 2;
}

.mistake-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #ef4444; /* Red for mistake */
    margin-bottom: 20px;
}

/* Did You Know */
.dyk-box {
    background: var(--gradient-primary);
    color: #0f172a;
    padding: 60px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.dyk-box h2 {
    color: #0f172a;
    font-size: 3rem;
    margin-bottom: 30px;
}

.dyk-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Curriculum Accordion */
.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-white);
    transition: background 0.3s;
}

.accordion-header:hover {
    background: var(--bg-lighter);
}

.accordion-header.active {
    background: var(--bg-lighter);
    color: var(--accent-gold);
}

.accordion-content {
    display: none;
    padding: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
}

.accordion-content.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

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

/* Pricing */
.pricing-section {
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--accent-gold);
    border-radius: 30px;
    padding: 60px 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 0 50px rgba(251, 191, 36, 0.1);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: #0f172a;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-white);
    margin: 20px 0;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 1.5rem;
}

.pricing-features ul {
    text-align: left;
    margin: 40px 0;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--text-white);
}

.pricing-features li i {
    color: var(--accent-gold);
    margin-top: 5px;
    flex-shrink: 0;
}

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

/* Footer */
.site-footer {
    padding: 80px 0 40px;
    text-align: center;
    background-color: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
}

.footer-brand {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6; /* Blue branding as per request image, or use var(--accent-gold) if preferred. I'll use a nice blue to match the 'WebVeda' feel but keep it harmonious. Actually let's use the Gold to keep theme consistent, or White. */
    color: var(--text-white);
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.footer-sub-brand {
    font-size: 0.9rem;
    color: var(--text-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.footer-desc {
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.footer-section {
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 600;
}

.social-icons, .support-icon {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a, .support-icon a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #fff;
    color: #0f172a;
    border-radius: 12px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover, .support-icon a:hover {
    transform: translateY(-5px);
    background: var(--accent-gold);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 50px 0 30px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    position: relative;
}

.footer-links a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid, .mentor-layout, .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.2rem; /* Slightly smaller for better fit */
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Mobile Navigation */
    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 2000;
    }

    .hamburger i {
        font-size: 1.8rem;
        color: var(--text-white);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        z-index: 1500;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.4rem;
        margin: 20px 0;
    }

    .btn-nav {
        margin-top: 20px;
        width: 80%;
    }

    /* Hero Optimization */
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
        text-align: center;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image-container {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Adjust floating cards for mobile so they don't overlap too much */
    .floating-card {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .card-1 { left: -10px; top: 5%; }
    .card-2 { right: -10px; bottom: 10%; }

    .mentor-layout {
        padding: 30px 20px;
        text-align: center;
    }

    .mentor-layout {
        display: flex;
        flex-direction: column;
        padding: 25px 15px; /* Reduced padding */
        text-align: center;
        gap: 0; /* Let margins handle spacing */
    }

    .mentor-image-col, .mentor-content-col {
        display: contents;
    }

    .mentor-title { 
        order: 1; 
        margin-bottom: 10px !important; 
        font-size: 1rem !important;
    }
    
    .mentor-img { 
        order: 2; 
        margin: 0 auto 15px auto; /* Reduced bottom margin */
        max-width: 220px; /* Slightly smaller image for better proportion */
    }
    
    .mentor-name { 
        order: 3; 
        margin-bottom: 5px !important; 
        font-size: 1.7rem !important; /* Smaller font for mobile to fit in one line */
        white-space: nowrap;
        line-height: 1.1;
    }
    
    .mentor-creds { 
        order: 4; 
        margin-bottom: 20px !important; 
        font-size: 1rem !important;
    }
    
    .mentor-stats { 
        order: 5; 
        justify-content: center; 
        margin-bottom: 20px;
        margin-top: 0 !important;
        gap: 15px !important;
    }
    
    .mentor-stats > div {
        flex: 1 1 40%; /* 2 columns grid-like feel */
    }

    .mentor-desc { 
        order: 6; 
        text-align: center; /* Center text usually looks better with this stack, or justify */
        margin-bottom: 15px !important;
        font-size: 1rem !important;
    }
    
    .dyk-box {
        padding: 30px;
    }
    
    .dyk-box h2 {
        font-size: 2rem;
    }
}

/* Sticky Enroll Bar */
.sticky-enroll-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(251, 191, 36, 0.3);
    padding: 15px 0;
    z-index: 2000;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
    animation: slideUp 0.5s ease-out;
}

.sticky-enroll-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-btn {
    width: 100%;
    max-width: 600px;
    font-size: 1.2rem;
    padding: 18px;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.hide-mobile {
    display: inline;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0 !important;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .hero-section {
        padding-top: 30px !important; /* Balanced top padding */
        padding-bottom: 50px !important;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .badge-container {
        margin-bottom: 20px;
    }

    .mistakes-section {
        padding: 50px 0 !important;
    }

    .pain-point-card {
        padding: 25px 20px !important;
        margin-bottom: 20px;
    }

    .grid-3 {
        gap: 25px;
    }

    .hide-mobile {
        display: none;
    }
    
    .sticky-btn {
        font-size: 1rem;
        padding: 15px;
    }

    /* Fix Footer Spacing */
    .site-footer {
        padding-bottom: 100px; /* Space for sticky button */
    }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-card {
        padding: 40px 20px;
        margin-top: 50px; /* More space for the badge */
    }

    /* Mobile Button Adjustments */
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }

    .pricing-cta-btn {
        padding: 15px;
    }

    .popular-badge {
        font-size: 0.9rem;
        padding: 10px 25px;
        width: max-content;
        white-space: nowrap; /* Keep text in one line */
        top: -22px;
    }

    .price {
        font-size: 3rem;
    }
}

