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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    scroll-behavior: smooth;
    background: #ffffff;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h2 {
    color: #1a1a1a;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #EF4444;
}

.nav-cta .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #EF4444;
    color: white;
    border: 2px solid #000;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
    background: #DC2626;
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

.btn-secondary {
    background: #FECACA;
    color: #000;
    border: 2px solid #000;
    box-shadow: 0 4px 15px rgba(254, 202, 202, 0.1);
}

.btn-secondary:hover {
    background: #FCA5A5;
    color: #000;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(252, 165, 165, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 16px;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #FEF2F2;
    color: #1a1a1a;
    text-align: center;
    border-bottom: 3px solid #000;
}

.hero-badge {
    display: inline-block;
    background: #FECACA;
    color: #000;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid #000;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.highlight {
    color: #DC2626;
}

.strikethrough-word {
    position: relative;
    display: inline-block;
}

.strikethrough-word::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -5px;
    right: -5px;
    height: 8px;
    background: #EF4444;
    transform: translateY(-50%) rotate(-2deg);
    border-radius: 4px;
    z-index: 1;
    opacity: 0.8;
}

.overlay-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #EF4444;
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 800;
    z-index: 2;
    border: 2px solid #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    color: #374151;
    line-height: 1.6;
    font-weight: 500;
}

.hero-cta {
    margin-bottom: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #DC2626;
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 500;
}

/* Statistics Banner */
.stats-banner {
    background: #BFDBFE;
    color: #1a1a1a;
    padding: 3rem 0;
    border-bottom: 3px solid #000;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #DC2626;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Social Proof */
.social-proof {
    padding: 5rem 0;
    background: #F9FAFB;
    border-bottom: 3px solid #000;
}

.social-proof h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -0.02em;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    color: #DC2626;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* What Section */
.what-section {
    padding: 5rem 0;
    background: white;
}

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

.feature-card {
    background: #FEE2E2;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #FECACA;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.feature-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.feature-card ul {
    text-align: left;
    list-style: none;
    padding-left: 0;
}

.feature-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #555;
}

.feature-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22C55E;
    font-weight: bold;
}

/* Why Section */
.why-section {
    padding: 5rem 0;
    background: #FEF3C7;
    border-bottom: 3px solid #000;
}

.why-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.why-point {
    margin-bottom: 2.5rem;
}

.why-point h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.why-point p {
    color: #666;
    line-height: 1.6;
}

.why-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: #FCA5A5;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: #F87171;
}

.stat-card h4 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.stat-card p {
    font-size: 0.9rem;
    color: #666;
}

/* How Section */
.how-section {
    padding: 5rem 0;
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: #FEE2E2;
    border-radius: 20px;
    border: 2px solid #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: #FECACA;
}

.step-number {
    background: #EF4444;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    border: 2px solid #000;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Pros vs Cons */
.pros-cons {
    padding: 5rem 0;
    background: #F0F9FF;
    border-bottom: 3px solid #000;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-side {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.comparison-side:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.traditional {
    background: #FEE2E2;
}

.traditional:hover {
    background: #FECACA;
}

.reddyt {
    background: #D1FAE5;
}

.reddyt:hover {
    background: #A7F3D0;
}

.comparison-side h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-side ul {
    list-style: none;
    padding: 0;
}

.comparison-side li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.traditional li:before {
    content: "❌";
    position: absolute;
    left: 0;
}

.reddyt li:before {
    content: "✅";
    position: absolute;
    left: 0;
}

/* Examples Section */
.examples {
    padding: 5rem 0;
    background: #F0FDF4;
    border-bottom: 3px solid #000;
}

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

.example-card {
    background: #DCFCE7;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #BBF7D0;
}

.example-subreddit {
    background: #EF4444;
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
    border: 2px solid #000;
}

.example-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.example-card p {
    margin-bottom: 0.75rem;
    color: #666;
    line-height: 1.5;
}

.example-metrics {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.example-metrics span {
    background: #FECACA;
    color: #000;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid #000;
}

/* Who Needs Section */
.who-needs {
    padding: 5rem 0;
    background: #FDF2F8;
    border-bottom: 3px solid #000;
}

.who-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.who-not, .who-for {
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.who-not:hover, .who-for:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.who-not {
    background: #FEE2E2;
}

.who-not:hover {
    background: #FECACA;
}

.who-for {
    background: #D1FAE5;
}

.who-for:hover {
    background: #A7F3D0;
}

.who-not h3, .who-for h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.who-not ul, .who-for ul {
    list-style: none;
    padding: 0;
}

.who-not li, .who-for li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.who-not li:before {
    content: "❌";
    position: absolute;
    left: 0;
}

.who-for li:before {
    content: "✅";
    position: absolute;
    left: 0;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.about-achievements {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.achievement {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.achievement h4 {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.achievement p {
    color: #666;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    background: #FEE2E2;
    border: 3px solid #000;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    background: #FECACA;
}

.pricing-badge {
    background: #EF4444;
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    border-bottom: 2px solid #000;
}

.pricing-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

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

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #DC2626;
    margin: 0 0.25rem;
    letter-spacing: -0.02em;
}

.period {
    color: #666;
    font-size: 1rem;
}

.pricing-features {
    padding: 0 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-cta {
    padding: 2rem;
}

.pricing-guarantee {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: #D1FAE5;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #000;
}

.pricing-guarantee h3 {
    color: #22C55E;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Case Study Section */
.case-study {
    padding: 5rem 0;
    background: #F9FAFB;
    border-bottom: 3px solid #000;
    border-top: 3px solid #000;
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.case-study-image {
    text-align: center;
}

.case-study-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    border: 3px solid #000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.case-study-testimonial {
    padding: 2rem;
}

.testimonial-quote {
    margin-bottom: 2rem;
}

.testimonial-quote blockquote {
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 600;
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 2px solid #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    
    letter-spacing: -0.01em;
}

.testimonial-quote blockquote:before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #EF4444;
    font-weight: 800;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.author-title {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 968px) {
    .case-study-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .testimonial-quote blockquote {
        font-size: 1.25rem;
        padding: 1.5rem;
    }
    
    .testimonial-quote blockquote:before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FEF2F2;
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #FEE2E2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(220, 38, 38, 0.1);
}

.faq-question h3 {
    color: #1a1a1a;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #DC2626;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 300px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: #EF4444;
    color: white;
    text-align: center;
    border-bottom: 3px solid #000;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.guarantee-text {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: 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, .footer-section h4 {
    color: #EF4444;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #EF4444;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 4rem 2rem 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 999;
        border: 2px solid #000;
    }
    

    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
        font-size: 1.2rem;
    }
    
    .mobile-cta-item {
    margin-top: 2rem !important;
}

.mobile-cta-btn {
    display: inline-block !important;
}

/* Hide mobile CTA on desktop */
@media (min-width: 769px) {
    .mobile-cta-item {
        display: none !important;
    }
}
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison {
        grid-template-columns: 1fr;
    }
    
    .who-comparison {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .feature-card, .step, .comparison-side, .who-not, .who-for {
        padding: 1.5rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading animation for buttons */
.btn:active {
    transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #EF4444;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #DC2626;
}