/* Override body background to ensure full coverage */
body {
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    background-color: #f9f9f9;
}

/* Landing page specific styles */
.landing-hero {
    padding: 60px 30px 0px;
    text-align: center;
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.landing-hero h1 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
    max-width: 850px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.landing-hero p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 650px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 40px;
}

.walkthrough-button {
    display: block;
    text-align: center;
    margin: 40px auto 0px;
}

.btn-primary {
    background-color: #007aff;
    color: white;
    padding: 15px 30px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-with-subtext {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-subtext {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 8px;
    color: #666;
    text-align: center;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
}

.btn-secondary {
    background-color: #fff;
    color: #333;
    padding: 15px 30px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #f7f7f7;
    border-color: #ccc;
    transform: translateY(-2px);
}

.gif-placeholder {
    width: 100%;
    max-width: 800px;
    height: 450px;
    background-color: #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
    margin: 0 auto 60px;
}

.cta-section {
    text-align: center;
    padding: 40px 30px;
}

.how-it-works {
    padding: 40px 30px;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: #e0e0e0;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #666;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

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

.landing-about {
    padding: 40px 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.landing-about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.landing-about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.landing-about a {
    color: #007aff;
    text-decoration: none;
}

.landing-about a:hover {
    text-decoration: underline;
}

.landing-pricing {
    padding: 40px 30px;
}

.landing-pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

/* Pricing toggle styles */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.toggle-label {
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e5e7eb;
    transition: 0.4s;
    border-radius: 32px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

input:checked + .toggle-slider {
    background-color: #007aff;
}

input:checked + .toggle-slider:before {
    transform: translateX(28px);
}

.discount-badge {
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
}

/* Enhanced pricing cards */
.landing-pricing .pricing-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.landing-pricing .plan {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 280px;
    max-width: 320px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.landing-pricing .plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.landing-pricing .plan.popular {
    border-color: #007aff;
    z-index: 1;
}

.landing-pricing .plan.popular:hover {
    transform: translateY(-4px);
}

/* Badge removed but keeping for potential future use */
.popular-badge {
    background: linear-gradient(45deg, #007aff, #0056b3);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.landing-pricing .plan h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 24px 20px 8px;
    color: #1f2937;
}

.landing-pricing .plan .price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #007aff;
    margin: 0 20px 16px;
    min-height: 1.5em;
}

.price-monthly, .price-annual {
    display: block;
}

.price-annual small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: #6b7280;
    margin-top: 4px;
}

.landing-pricing .plan p:not(.price) {
    color: #6b7280;
    margin: 0 20px 20px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.landing-pricing .plan button {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    color: #374151;
    margin: 0 20px 24px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.landing-pricing .plan.popular button {
    background: #007aff;
    color: white;
    border-color: #007aff;
}

.landing-pricing .plan button:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

.landing-pricing .plan.popular button:hover {
    background: #0056b3;
    border-color: #0056b3;
}

.landing-pricing .plan ul {
    text-align: left;
    margin: 0 20px 24px;
    padding: 0;
    list-style: none;
}

.landing-pricing .plan ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.4;
}

.landing-pricing .plan ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
}

.closing-cta {
    padding: 40px 30px;
    text-align: center;
}

.closing-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.closing-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.landing-footer {
    padding: 40px 30px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.landing-footer p {
    margin: 10px 0;
    color: #666;
}

.landing-footer a {
    color: #007aff;
    text-decoration: none;
}

.landing-footer a:hover {
    text-decoration: underline;
}

.demo-video {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 60px;
}

.demo-video video {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: block;
    object-fit: cover;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .landing-hero h1 {
        font-size: 1.8rem;
    }

    .landing-hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 40px;
        align-items: center;
    }

    .btn-with-subtext .btn-primary {
        width: 100%;
    }

    .btn-with-subtext {
        width: 100%;
        margin-bottom: 15px;
    }

    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .btn-subtext {
        margin-top: 6px;
        font-size: 0.8rem;
    }

    .demo-video {
        margin: 0 auto 40px;
        padding: 0 15px;
    }

    .landing-pricing .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .landing-pricing .plan {
        min-width: auto;
        max-width: 350px;
        width: 100%;
    }

    .landing-pricing .plan.popular {
        order: -1;
    }

    .demo-video video {
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .closing-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        align-items: center;
    }
    
    .closing-buttons .btn-secondary {
        width: 100%;
    }

}

/* Customer Logos Section */
.customer-logos {
    padding: 40px 30px;
    text-align: center;
}

.customer-logos h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.logos-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    margin-bottom: 30px;
    width: 100%;
    max-width: 660px; /* 3 logos * 180px + 2 gaps * 60px = 660px */
    margin-left: auto;
    margin-right: auto;
}

.carousel-track {
    display: flex;
    width: 100%;
}

.logo-slide {
    display: flex;
    gap: 60px;
    transition: none; /* Remove transition for smooth continuous movement */
}

.logo-slide.active {
    display: flex;
}

.logo-item {
    flex: 0 0 auto;
}

.logo-placeholder {
    width: 180px;
    height: 80px;
    background-color: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder span {
    color: #666;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Logo image styling for consistent sizing */
.logo-item {
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
}

/* Carousel dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background-color: #007aff;
    width: 24px;
    border-radius: 5px;
}

.carousel-dots .dot:hover {
    background-color: #999;
}

/* Mobile responsiveness for customer logos */
@media (max-width: 768px) {
    .customer-logos h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .carousel-container {
        max-width: 440px; /* 3 logos * 120px + 2 gaps * 40px = 440px */
    }
    
    .logo-slide {
        gap: 40px;
    }
    
    .logo-placeholder {
        width: 120px;
        height: 60px;
    }
    
    .logo-placeholder span {
        font-size: 0.9rem;
    }
    
    .logo-item {
        width: 120px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .logo-slide {
        gap: 15px;
    }
    
    .logo-placeholder {
        width: 120px;
        height: 60px;
    }
    
    .logo-item {
        width: 120px;
        height: 60px;
    }
}

/* Navbar responsive styles */
@media (max-width: 900px) {
    .navbar {
        flex-wrap: wrap;
        padding: 15px 20px;
    }
    
    .nav-left {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        flex: 1;
    }
    
    .nav-left .nav-button {
        margin-left: 0;
        font-size: 14px;
    }
    
    .nav-right .nav-button {
        font-size: 14px;
        margin-left: 15px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .nav-left {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .nav-left .brand {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .nav-right {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
    
    .nav-right .nav-button {
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 12px;
    }
    
    .nav-left .nav-button,
    .nav-right .nav-button {
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .nav-left {
        gap: 10px;
    }
    
    .nav-right {
        flex-wrap: wrap;
    }
}