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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
}

.bm-logo-footer {
    height: 20px;
    width: auto;
    vertical-align: middle;
    margin-left: 4px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;
}

.nav-menu a:hover {
    color: #2c5530;
    background: rgba(44, 85, 48, 0.1);
}

.nav-menu a.active {
    color: #2c5530;
    background: rgba(44, 85, 48, 0.1);
    border-bottom: 2px solid #2c5530;
    font-weight: 600;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
    padding: 0.75rem;
    z-index: 1001;
}

.menu-toggle:hover {
    color: #2c5530;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #2c5530;
    color: white;
}

.btn-primary:hover {
    background: #1e3a21;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2c5530;
    border: 2px solid #2c5530;
}

.btn-secondary:hover {
    background: #2c5530;
    color: white;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.image-placeholder {
    width: 400px;
    height: 300px;
    background: #f0f0f0;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #666;
    font-weight: 500;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Product Carousel Styles */
.product-carousel {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: transparent;
}

.carousel-slide {
    display: none;
    animation: fadeIn 0.8s ease-in-out;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #2c5530;
    transform: scale(1.2);
}

.indicator:hover {
    background: #2c5530;
    opacity: 0.7;
}

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

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5530;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #fff;
}

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

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8fffe;
}

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

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 3px solid #2c5530;
    transform: scale(1.05);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5530;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5530;
    margin: 0 0.2rem;
}

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

.original-price, .upfront-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #333;
}

.pricing-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: #fff;
}

.partner-flow {
    text-align: center;
    margin: 3rem 0;
}

.flow-diagram {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.benefit-card {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2c5530;
}

.benefit-card h3 {
    color: #2c5530;
    font-weight: 600;
    margin-bottom: 1rem;
}

.partner-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: #2c5530;
    border-radius: 16px;
    color: white;
}

.partner-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.partner-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.partner-cta .btn-primary {
    background: white;
    color: #2c5530;
}

.partner-cta .btn-primary:hover {
    background: #f0f0f0;
}

/* Get Started Page Styles */
.getstarted-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
    text-align: center;
}

.getstarted-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 1rem;
}

.app-download {
    padding: 60px 0;
    background: #fff;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.download-card {
    background: #f8fffe;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.app-info {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.qr-code {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    margin-right: 1.5rem;
}

.app-details h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.app-version {
    color: #666;
    font-size: 0.9rem;
}

.download-buttons {
    text-align: center;
}

.btn-icon {
    margin-right: 0.5rem;
}

.download-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.app-features {
    padding: 60px 0;
    background: #f8fffe;
}

.getting-started {
    padding: 60px 0;
    background: #fff;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2c5530;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: #2c5530;
    font-weight: 600;
    margin-bottom: 1rem;
}

.support {
    padding: 60px 0;
    background: #f8fffe;
    text-align: center;
}

.support-content h2 {
    font-size: 2.2rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.support-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #2c5530;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
}

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

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

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

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #4a6b4d;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

.footer .footer-bottom a {
    color: #ccc !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.footer .footer-bottom a:hover {
    color: white !important;
    text-decoration: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block !important;
    }
    
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 1.5rem 0;
        z-index: 999;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 500px;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 1.2rem 1.5rem;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1.1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .app-info {
        flex-direction: column;
        text-align: center;
    }
    
    .qr-code {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
}

/* Additional Styles for New Pages */
.requirements-section, .benefits-section, .revenue-section, .support-section, .security-section {
    margin: 4rem 0;
    padding: 3rem;
    background: #f8fffe;
    border-radius: 16px;
}

.requirements-grid, .benefits-grid, .revenue-grid, .support-grid, .security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.requirement-card, .benefit-item, .revenue-card, .support-item, .security-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.requirement-card h4, .benefit-item h4, .revenue-card h4, .support-item h4, .security-card h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.requirement-card ul {
    list-style: none;
    padding: 0;
}

.requirement-card li {
    padding: 0.3rem 0;
    color: #666;
}

.requirement-card li:before {
    content: "• ";
    color: #2c5530;
    font-weight: bold;
}

.benefit-icon, .support-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.revenue-amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5530;
    margin-top: 1rem;
}

.discount-badge {
    background: #28a745;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

.total-cost {
    color: #2c5530;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5530 0%, #1e3a21 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

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

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

.cta-section .btn-primary {
    background: white;
    color: #2c5530;
}

.cta-section .btn-primary:hover {
    background: #f0f0f0;
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #2c5530;
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .requirements-grid, .benefits-grid, .revenue-grid, .support-grid, .security-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-section, .benefits-section, .revenue-section, .support-section, .security-section {
        padding: 2rem 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Mobile App Screenshots Section */
.app-screenshots {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.screenshot-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.mobile-screen {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.screenshot-info h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.screenshot-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .screenshots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .mobile-screen {
        max-width: 120px;
    }
    
    .screenshot-card {
        padding: 1rem;
    }
    
    .screenshot-info h3 {
        font-size: 1rem;
    }
    
    .screenshot-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mobile-screen {
        max-width: 150px;
    }
}

/* Benefits Grid Styles */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.benefit-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Model Steps Styles */
.model-section {
    margin: 4rem 0;
}

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

.step-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    position: relative;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c5530;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.step-card h4 {
    color: #2c5530;
    margin: 1rem 0;
    font-size: 1.2rem;
}

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

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    margin: 4rem 0;
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .model-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 3rem 1.5rem;
        margin: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Video Container Styles */
.video-container {
    margin: 3rem 0;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.video-caption {
    margin-top: 1rem;
    color: #666;
    font-style: italic;
    font-size: 1rem;
}

/* Contact Icons Styles */
.contact-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.contact-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-icon:hover {
    background: #2c5530;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.2);
}

.contact-icon .icon {
    font-size: 1.2rem;
}

.contact-text {
    font-size: 0.9rem;
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .video-container {
        margin: 2rem 0;
    }
    
    .contact-icons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .contact-icon {
        justify-content: center;
        padding: 1rem;
    }
    
    .video-caption {
        font-size: 0.9rem;
    }
}

/* Channel Partner Rewards Section */
.rewards-section {
    margin: 4rem 0;
}

.rewards-image-container {
    margin: 2rem 0;
}

.benefits-image-full {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Success Stories Section */
.success-section {
    margin: 4rem 0;
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 16px;
}

.testimonial-carousel {
    position: relative;
    margin: 2rem 0;
}

.testimonial-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
}

.success-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2c5530;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.success-quote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
}


.success-author strong {
    color: #2c5530;
    font-size: 1.1rem;
}

.success-author span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
}

.success-scale {
    color: #2c5530 !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #2c5530;
    transform: scale(1.2);
}

/* Training & Support Section */
.training-section {
    margin: 4rem 0;
}

/* Trust Badges */
.trust-badges {
    margin-top: 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badges p {
    font-size: 1rem;
    color: #2c5530;
    font-weight: 500;
}

/* Who Section - Audience Grid */
.who-section {
    padding: 80px 0;
    background: #f8fffe;
}

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

.audience-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-card h3 {
    color: #2c5530;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.audience-card p {
    color: #666;
    line-height: 1.6;
}

/* Why Section */
.why-section {
    padding: 80px 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.why-column h3 {
    color: #2c5530;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.challenges-list, .solution-list {
    list-style: none;
    padding: 0;
}

.challenges-list li, .solution-list li {
    padding: 0.8rem 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.challenges-list li:before {
    content: "✗ ";
    color: #dc3545;
    font-weight: bold;
    margin-right: 0.5rem;
}

.solution-list li:before {
    content: "✓ ";
    color: #2c5530;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #f8fffe;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #2c5530;
}

.benefit-card h3 {
    color: #2c5530;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
}

.benefit-card li {
    padding: 0.6rem 0;
    color: #666;
    line-height: 1.6;
}

.benefit-card li:before {
    content: "• ";
    color: #2c5530;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* How It Works Section */
.how-works-section {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: #2c5530;
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.1);
}

.step-card .step-number {
    width: 50px;
    height: 50px;
    background: #2c5530;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h4 {
    color: #2c5530;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
}

/* Case Studies Section */
.case-studies-section {
    padding: 80px 0;
    background: #f8fffe;
}

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

.case-study-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 4px solid #2c5530;
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-card h3 {
    color: #2c5530;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-study-card .highlight {
    color: #2c5530;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.case-study-card p {
    color: #666;
    line-height: 1.6;
}

/* Validation Section */
.validation-section {
    padding: 80px 0;
    background: white;
}

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

.validation-item {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e9ecef;
}

.validation-item h4 {
    color: #2c5530;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5530 0%, #1e3a21 100%);
    color: white;
    text-align: center;
}

.final-cta-section .section-title {
    color: white;
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.final-cta-buttons .btn-primary {
    background: white;
    color: #2c5530;
}

.final-cta-buttons .btn-primary:hover {
    background: #f0f0f0;
}

.final-cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.final-cta-buttons .btn-secondary:hover {
    background: white;
    color: #2c5530;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .success-section {
        padding: 2rem 1rem;
        margin: 3rem 0;
    }
    
    .success-card {
        padding: 1.5rem;
    }
    
    .benefits-image-full {
        border-radius: 8px;
    }
    
    .success-quote {
        font-size: 1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .final-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study-grid {
        grid-template-columns: 1fr;
    }
    
    .validation-grid {
        grid-template-columns: 1fr;
    }
}

/* Use Cases Page Styles */
.use-case-section {
    padding: 80px 0;
    background: white;
}

.use-case-section:nth-child(even) {
    background: #f8fffe;
}

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

.use-case-content h3 {
    color: #2c5530;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.use-case-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.solution-list, .metrics-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.solution-list li, .metrics-list li {
    padding: 0.8rem 0;
    color: #666;
    line-height: 1.6;
}

.solution-list li:before {
    content: "✓ ";
    color: #2c5530;
    font-weight: bold;
    margin-right: 0.5rem;
}

.metrics-list li:before {
    content: "📊 ";
    margin-right: 0.5rem;
}

.metrics-list li strong {
    color: #2c5530;
}

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

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: white;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.comparison-table thead {
    background: #2c5530;
    color: white;
}

.comparison-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    color: #666;
}

.comparison-table tbody tr:hover {
    background: #f8fffe;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table strong {
    color: #2c5530;
}

/* Responsive Design for Use Cases */
@media (max-width: 768px) {
    .use-case-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .use-case-section {
        padding: 60px 0;
    }
    
    .comparison-table th, .comparison-table td {
        padding: 1rem;
        font-size: 0.95rem;
    }
}
