:root {
    /* Colors */
    --bg-primary: #121417;
    --bg-secondary: #181B20;
    --bg-card: #1F232A;
    
    --accent-primary: #3A7AFE;
    --accent-primary-dark: #2a62d5;
    --accent-secondary: #F2B705;
    
    --text-heading: #F1F3F5;
    --text-body: #C4C8CE;
    --text-muted: #8B919A;
    
    --border-color: rgba(255, 255, 255, 0.08);
    
    /* Typography */
    --font-heading: 'Lexend', sans-serif;
    --font-body: 'Lexend', sans-serif;
    
    /* Spacing & Layout */
    --container-width: 1280px;
    --header-height: 72px;
    --border-radius: 6px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-body);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    border: none;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-primary-dark);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--text-heading);
}

.btn-secondary:hover {
    background-color: rgba(58, 122, 254, 0.1);
}

.full-width {
    width: 100%;
}

/* Header */
.header {
    /* height: var(--header-height); Removed fixed height */
    padding: 20px 0; /* Added space at top and bottom */
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-image {
    max-height: 55px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 55px;
}

.nav-header-mobile,
.mobile-only-btn {
    display: none;
}

.nav-link {
    font-weight: 500;
    color: var(--text-body);
}

.nav-link:hover {
    color: var(--text-heading);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-heading);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hero-background-sliders {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    pointer-events: none;
}

.hero-slider-row {
    display: flex;
    align-items: center;
    overflow: hidden;
    flex: 1;
}

.hero-slider-track {
    display: flex;
    gap: 0;
    width: max-content;
    height: 100%;
}

.hero-slider-track img {
    height: 100%;
    min-height: 200px;
    width: auto;
    border-radius: 0;
    opacity: 1;
    filter: none;
    border: none;
    object-fit: cover;
}

.hero-slider-track.slide-left {
    animation: scroll 60s linear infinite;
}

.hero-slider-track.slide-right {
    animation: scroll-reverse 60s linear infinite;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Increased darkness and made it pure black */
    z-index: 1;
}

/* Stats Section */
.stats-section {
    background-color: var(--bg-secondary);
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

/* Logo Slider */
.logo-slider-section {
    padding: 60px 0;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.slider-track-container {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.slider-track.reverse {
    animation: scroll-reverse 60s linear infinite;
}

.slider-track img {
    height: 100px;
    width: 200px;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s;
    filter: none;
    background-color: var(--bg-card);
    padding: 15px;
    border-radius: 12px;
}

.slider-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.step-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.2s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.step-icon {
    font-size: 4rem;
    color: var(--accent-primary);
    margin-bottom: 24px;
}

.step-card h3 {
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing */
.pricing-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    align-items: start;
}

.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 1px var(--accent-primary);
    transform: scale(1.02);
    z-index: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 32px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-header .period {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.pricing-header .price {
    font-family: var(--font-heading);
    font-size: 3.3rem;
    font-weight: 700;
    color: var(--text-heading);
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-body);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--accent-primary);
    font-size: 1.1rem;
}

/* Movies Slider */
.movies-slider-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
    overflow: hidden;
}

.movies-slider-section .slider-track img {
    height: 480px;
    width: 330px;
    object-fit: cover;
    opacity: 0.8;
    filter: none;
    border-radius: 4px;
}

.movies-slider-section .slider-track img:hover {
    opacity: 1;
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

/* Banner */
.banner-section {
    padding: 40px 0;
    background-color: var(--bg-primary);
}

.banner-image img {
    width: 100%;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

/* Features (Why Choose Us) */
.features-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.timeline {
    position: relative;
    max-width: 100%;
    margin: 60px auto 0;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--border-color);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 40px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.timeline-item.visible {
    opacity: 1;
}

.timeline-item.left {
    left: 0;
    padding: 20px 180px 20px 20px; /* 180px gap on right */
    text-align: left;
}

.timeline-item.right {
    left: 50%;
    padding: 20px 20px 20px 180px; /* 180px gap on left */
    text-align: left;
}

/* Dot on the line */
.timeline-dot {
    position: absolute;
    top: 30px;
    width: 16px;
    height: 16px;
    background: var(--bg-primary);
    border: 3px solid var(--accent-primary);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 4px var(--bg-primary);
}

.timeline-item.left .timeline-dot {
    right: -8px;
}

.timeline-item.right .timeline-dot {
    left: -8px;
}

.timeline-item.visible .timeline-dot {
    background: var(--accent-primary);
    box-shadow: 0 0 15px var(--accent-primary), 0 0 30px var(--accent-primary);
}

/* Branch Line (Attached to Item now) */
.timeline-item::before {
    content: '';
    position: absolute;
    top: 40px; /* Center of dot */
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s; /* Delay for dot */
    z-index: 1;
}

.timeline-item.visible::before {
    width: 180px; /* Triple length */
}

.timeline-item.left::before {
    right: 0;
    transform-origin: right;
}

.timeline-item.right::before {
    left: 0;
    transform-origin: left;
}

/* Content Box */
.timeline-content {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    opacity: 0;
    transform: perspective(1000px) rotateX(-10deg) translateY(20px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s; /* Delay after branch */
}

.timeline-item.visible .timeline-content {
    opacity: 1;
    transform: perspective(1000px) rotateX(0) translateY(0) scale(1);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 40px -10px rgba(58, 122, 254, 0.3);
}

/* Remove old connector */
.timeline-content::before {
    display: none;
}

/* Header with Icon */
.timeline-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.timeline-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(58, 122, 254, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
    color: var(--text-heading);
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Timeline Mobile Styles Moved to Bottom of File */

/* Devices Section */
.devices-section {
    padding: 60px 0;
    background-color: var(--bg-secondary);
    overflow: hidden;
}

.devices-section .slider-track img {
    height: 180px;
    width: auto;
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

/* FAQ */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: none;
    border: none;
    color: var(--text-heading);
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 20px 20px;
    color: var(--text-muted);
    display: none;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0 60px 0; /* Reduced bottom padding */
    background-color: var(--bg-primary);
}

.testimonial-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    width: 100%;
    max-width: 100%;
    scrollbar-width: none; /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.testimonial-card {
    flex: 0 0 auto;
    width: 350px;
    border-radius: 12px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-primary);
    margin-bottom: 8px;
}

.testimonial-info h4 {
    color: var(--text-heading);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.testimonial-rating {
    color: var(--accent-secondary);
    font-size: 1.2rem;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
    justify-content: center;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}

.slider-nav {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-heading);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.slider-nav:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

/* CTA Section */
.cta-section {
    padding: 40px 0 100px 0; /* Reduced top padding */
    background-color: var(--bg-primary);
    text-align: center;
}

.cta-content {
    background: linear-gradient(135deg, #1F232A 0%, #121417 100%);
    padding: 100px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Decorative Glow */
.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(58, 122, 254, 0.15) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.cta-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233A7AFE' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
    opacity: 0.5;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    background: linear-gradient(to right, #fff, #3A7AFE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -1px;
    line-height: 1.1;
}

.cta-text {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-muted);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.cta-buttons .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo-image {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h4 {
    color: var(--text-heading);
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-col a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-col a:hover {
    color: var(--accent-primary);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--accent-primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-heading);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-3px);
}

/* Responsive */
/* =========================================
   RESPONSIVE OPTIMIZATION
   ========================================= */

/* Large Tablets & Laptops (1024px - 1280px) */
@media (max-width: 1280px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

/* Tablets & iPad Pro (769px - 1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .pricing-grid, 
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* 2x2 grid */
    }
}

/* Mobile & Tablets (Max 768px) */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-primary);
        z-index: 2000; /* High z-index to cover everything */
        flex-direction: column;
        padding: 24px;
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-close-btn {
        background: none;
        border: none;
        color: var(--text-heading);
        font-size: 1.8rem;
        cursor: pointer;
        padding: 5px;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 12px 0; /* Reduced padding */
        border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Subtler separator */
        width: 100%;
        display: block;
        text-align: center; /* Center text */
    }
    
    .nav-link:last-of-type {
        border-bottom: none;
    }

    .mobile-only-btn {
        margin-top: 25px;
        width: 100%;
        text-align: center;
        display: flex !important;
        justify-content: center;
        padding: 16px;
        font-size: 1.1rem;
        font-weight: 700;
        box-shadow: 0 10px 30px rgba(58, 122, 254, 0.3); /* Glow effect */
        transform: scale(1.02); /* Slightly larger */
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .header-actions .btn {
        display: none; /* Hide "Free Trial" button on mobile header */
    }
    
    /* Hero */
    .hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    /* Grids -> Single Column */
    .stats-grid,
    .pricing-grid, 
    .steps-grid, 
    .faq-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-row, .feature-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        text-align: center;
    }
    
    /* Timeline - Mobile Stacked Cards (Bulletproof) */
    .timeline {
        padding: 0 !important;
        margin-top: 40px !important;
    }

    .timeline-line {
        display: none !important;
    }
    
    .timeline-item {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 0 24px 0 !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
    }
    
    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        left: 0 !important;
        text-align: left !important;
    }
    
    .timeline-dot {
        display: none !important;
    }
    
    /* Hide connectors */
    .timeline-item::before,
    .timeline-content::after {
        display: none !important;
    }
    
    .timeline-content {
        width: 100% !important;
        transform: none !important;
        opacity: 1 !important;
        margin: 0 !important;
        background: var(--bg-card) !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 12px !important;
        padding: 24px !important;
        box-shadow: none !important;
    }

    /* Footer */
    .footer-grid {
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }
}

/* Large Mobile (Max 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    /* CTA Fixes */
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-content {
        padding: 40px 20px;
        margin: 0 10px; /* Prevent touching edges */
        width: auto;
        border-radius: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Testimonials */
    .testimonial-card {
        width: 100%;
        max-width: 320px;
        padding: 24px;
        margin: 0 auto;
    }
    
    /* Stats */
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Small Mobile (Max 375px) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .logo-image {
        max-height: 40px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .cta-content {
        margin: 0 5px; /* Slightly tighter on very small screens */
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #FFF;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 25px;
        left: 25px;
        font-size: 28px;
    }
}
