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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-menu-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    z-index: 1100;
}

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

.nav-logo h2 {
    color: #000000;
    font-weight: 700;
    font-size: 1.5rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-login, .btn-login-right {
    background: none !important;
    color: #111 !important;
    font-size: 1.18rem;
    font-weight: 700;
    border: none;
    box-shadow: none;
    padding: 0 18px;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.01em;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}
.btn-login:hover, .btn-login-right:hover {
    color: #111 !important;
    text-decoration: none;
}

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

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #000000;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-right: 240px; /* Add space for QR code container */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.trust-badge i {
    color: #f1c40f;
}

.hero-features {
    display: flex;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.feature-item i {
    color: #2ecc71;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: #f8f9fa;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-right: 240px; /* Add space for QR code container */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: #666;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-right: 240px; /* Add space for QR code container */
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.btn-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #3498db;
    color: white;
}

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

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s ease;
}

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

.feature-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #3498db;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0;
    color: #2c3e50;
}

.feature-card ul {
    list-style: none;
}

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

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

/* New Clients Section */
.new-clients {
    padding: 6rem 0;
    background: #f8f9fa;
}

.new-clients .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-right: 240px; /* Add space for QR code container */
}

.clients-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.clients-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.clients-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.clients-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.clients-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.clients-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: white;
}

.benefit-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.benefit-item.reverse {
    direction: rtl;
}

.benefit-item.reverse > * {
    direction: ltr;
}

.benefit-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #3498db;
}

.benefit-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.benefit-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.benefit-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.benefit-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Payment Section */
.payment {
    padding: 6rem 0;
    background: #f8f9fa;
}

.payment .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.payment-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.payment-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.payment-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.payment-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.payment-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.payment-demo {
    display: flex;
    justify-content: center;
}

.payment-interface {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.payment-header {
    background: #3498db;
    color: white;
    padding: 1rem;
    text-align: center;
}

.payment-body {
    padding: 2rem;
}

.payment-total {
    text-align: center;
    margin-bottom: 2rem;
}

.payment-total span {
    display: block;
    color: #666;
    margin-bottom: 0.5rem;
}

.payment-total h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.method-icons {
    display: flex;
    gap: 0.5rem;
}

.method-icons i {
    font-size: 1.5rem;
    color: #3498db;
}

.btn-validate {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-validate:hover {
    background: #27ae60;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #2c3e50;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.testimonial-author h4 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

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

/* FAQ Section */
.faq {
    padding: 6rem 0;
    padding-right: 240px; /* Add space for QR code container */
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2c3e50;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

/* CTA Section */
.cta {
    padding: 6rem 0;
    padding-right: 240px; /* Add space for QR code container */
    background: #000000;
    color: white;
    text-align: center;
}

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

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

/* Final CTA */
.final-cta {
    padding: 4rem 0;
    padding-right: 240px; /* Add space for QR code container */
    background: #000000;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 4rem 0 2rem;
}

.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;
    color: #3498db;
}

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

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

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

.footer-section a:hover {
    color: #3498db;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
    color: #bdc3c7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
}

.close:hover {
    color: #333;
}

.modal-content h2 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.modal-content p {
    margin-bottom: 2rem;
    color: #666;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-right: 20px; /* Remove extra padding on mobile */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-features {
        justify-content: center;
    }

    .stats-container {
        grid-template-columns: 1fr;
        padding-right: 20px; /* Remove extra padding on mobile */
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .new-clients .container,
    .benefit-item,
    .payment .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-right: 20px; /* Remove extra padding on mobile */
    }

    .benefit-item.reverse {
        direction: ltr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .planity-features-flex {
        padding-right: 20px; /* Remove extra padding on mobile */
    }

    .pro-stats-flex {
        padding-right: 20px; /* Remove extra padding on mobile */
    }

    .platform-features-flex {
        padding-right: 20px; /* Remove extra padding on mobile */
    }

    .cta-flex {
        padding-right: 20px; /* Remove extra padding on mobile */
    }

    .final-cta {
        padding-right: 20px; /* Remove extra padding on mobile */
    }

    .cta {
        padding-right: 20px; /* Remove extra padding on mobile */
    }

    .faq {
        padding-right: 20px; /* Remove extra padding on mobile */
    }



    .section-header {
        padding-right: 20px; /* Remove extra padding on mobile */
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .final-cta h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .benefit-content h2 {
        font-size: 2rem;
    }

    .payment-content h2 {
        font-size: 2rem;
    }

    .testimonials h2 {
        font-size: 2rem;
    }

    .faq h2 {
        font-size: 2rem;
    }
} 

/* QR Code Download Section */
.qr-download {
    background: #fff;
    padding: 60px 0 40px;
    border-bottom: 1px solid #eee;
}
.qr-flex {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.qr-block {
    background: #f8f8f8;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 32px 24px;
    text-align: center;
    min-width: 260px;
    max-width: 320px;
}
.qr-block h2 {
    color: #111;
    font-size: 1.3rem;
    margin-bottom: 18px;
    font-weight: 600;
}
.qr-block p {
    color: #444;
    font-size: 1rem;
    margin-top: 18px;
}

/* FAQ Section */
.faq {
    background: #fff;
    padding: 60px 0 40px;
}
.faq h2 {
    color: #111;
    font-size: 2rem;
    margin-bottom: 32px;
    text-align: center;
    font-weight: 700;
}
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    padding: 0 24px;
    transition: box-shadow 0.2s;
    cursor: pointer;
}
.faq-item h3 {
    color: #111;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    padding: 22px 0 12px;
    user-select: none;
}
.faq-content {
    display: none;
    color: #333;
    font-size: 1rem;
    padding-bottom: 18px;
    border-top: 1px solid #e0e0e0;
    margin-top: 0;
}
.faq-item.active .faq-content {
    display: block;
    animation: fadeIn 0.3s;
}
.faq-img {
    display: block;
    margin: 18px auto 0;
    max-width: 90%;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Remove gradients and blue highlights, use only black, white, and gray */
.hero {
    background: #fff !important;
    color: #111 !important;
}
.hero-content h1, .hero-content .hero-subtitle {
    color: #111 !important;
}
.btn-primary, .btn-secondary, .btn-login {
    background: #111 !important;
    color: #fff !important;
    border: none;
}
.btn-primary:hover, .btn-secondary:hover, .btn-login:hover {
    background: #333 !important;
}
.navbar, .nav-menu a {
    background: #fff !important;
    color: #111 !important;
}
.nav-menu a:hover {
    color: #333 !important;
}
.stats, .features, .new-clients, .benefits, .testimonials, .cta, .final-cta, .footer {
    background: #fff !important;
    color: #111 !important;
} 

/* Login Button Above QR Code */
.login-above-qr {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2100;
    width: 200px;
    display: flex;
    justify-content: center;
}

.btn-login-above {
    background: none !important;
    color: #111 !important;
    font-size: 1.18rem;
    font-weight: 700;
    border: none;
    box-shadow: none;
    padding: 8px 16px;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    border-radius: 8px;
    transition: background 0.2s;
}

.btn-login-above:hover {
    color: #111 !important;
    text-decoration: none;
    background: rgba(0,0,0,0.05) !important;
}

/* QR Code Top Right Floating */
.qr-topright {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 2000;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 16px 18px 12px 18px;
    min-width: 180px;
    max-width: 200px;
}
.qr-top-flex {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.qr-top-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}
.qr-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: #111;
    margin-top: 8px;
    text-align: center;
    line-height: 1.2;
}
.qr-login-top {
    margin-left: 32px;
    align-self: center;
    position: static;
    z-index: 2100;
    white-space: nowrap;
}

/* FAQ Accordion Style */
.faq-item.collapsible {
    position: relative;
    cursor: pointer;
    padding-right: 40px;
}
.faq-item.collapsible h3 {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    margin: 0;
    padding: 22px 0 12px;
    user-select: none;
}
.faq-item.collapsible .faq-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    margin-left: auto;
    margin-right: 8px;
    transition: transform 0.2s;
}
.faq-item.collapsible.active .faq-plus {
    transform: rotate(45deg);
}
.faq-content {
    display: none;
    color: #333;
    font-size: 1rem;
    padding-bottom: 18px;
    border-top: 1px solid #e0e0e0;
    margin-top: 0;
}
.faq-item.active .faq-content {
    display: block;
    animation: fadeIn 0.3s;
} 

/* Planity Features Section */
.planity-features {
    background: #fff;
    padding: 64px 0 48px;
}
.planity-features-flex {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    padding-right: 240px; /* Add space for QR code container */
}
.planity-feature-block {
    background: #f8f8f8;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 36px 28px 32px 28px;
    min-width: 280px;
    max-width: 420px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.planity-feature-block h2 {
    color: #111;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 18px;
}
.planity-feature-block p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 18px;
}
.planity-feature-img {
    width: 100%;
    max-width: 220px;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
}

/* Ensure Login button is always visible */
.btn-login {
    position: relative;
    z-index: 2100;
} 

/* Discover Sections */
.discover-experts, .discover-professional {
    background: #fff;
    padding: 64px 0 48px;
}
.discover-flex {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.discover-content {
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 480px;
    text-align: left;
}
.discover-content h2 {
    color: #111;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
}
.discover-content p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 18px;
}
.discover-img {
    flex: 1 1 260px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.discover-img img {
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
} 

.qr-login-row {
    position: fixed;
    top: 24px;
    right: 40px;
    z-index: 2100;
    display: flex;
    align-items: center;
    gap: 24px;
}
.qr-login-standalone {
    background: none;
    color: #111;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    box-shadow: none;
    padding: 0 12px 0 0;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}
.qr-login-standalone:hover {
    color: #555;
    text-decoration: underline;
}
@media (max-width: 900px) {
  .qr-login-row {
    right: 10px;
    top: 10px;
    gap: 12px;
  }
  .qr-login-standalone {
    font-size: 1.1rem;
    padding: 0 6px 0 0;
  }
} 

.hero-feature {
    background: #fff;
    padding: 64px 0 48px;
}
.hero-feature-flex {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.hero-feature-img {
    flex: 1 1 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 320px;
    max-width: 540px;
}
.hero-feature-content {
    flex: 1 1 420px;
    min-width: 320px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 0;
}
.hero-feature-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #111;
    line-height: 1.05;
    margin-bottom: 36px;
    margin-top: 0;
}
.hero-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.18rem;
    font-weight: 400;
    color: #111;
    line-height: 1.6;
}
.hero-feature-list li {
    margin-bottom: 22px;
}
.hero-feature-list strong {
    font-weight: 700;
}
.feature-muted {
    color: #bfc3c7;
    font-weight: 500;
}
@media (max-width: 900px) {
  .hero-feature-flex {
    flex-direction: column;
    gap: 32px;
  }
  .hero-feature-title {
    font-size: 2.1rem;
    margin-bottom: 22px;
  }
  .hero-feature-content, .hero-feature-img {
    min-width: 0;
    max-width: 100vw;
    padding-left: 0;
  }
} 

.pro-stats-section {
    background: #fff;
    padding: 64px 0 48px;
}
.pro-stats-flex {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-right: 240px; /* Add space for QR code container */
}
.pro-stats-flex.no-img {
    justify-content: center;
    align-items: center;
}
.pro-stats-img {
    flex: 1 1 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 320px;
    max-width: 540px;
}
.pro-stats-content {
    flex: 1 1 520px;
    min-width: 320px;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
    margin: 0 auto;
}
.pro-stats-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    line-height: 1.12;
    margin-bottom: 36px;
    margin-top: 0;
}
.pro-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,0.03);
    border: 1px solid #ececec;
}
.pro-stats-cell {
    padding: 38px 24px 32px 24px;
    border-right: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    text-align: left;
    font-size: 1.18rem;
    color: #222;
    font-weight: 400;
}
.pro-stats-cell:nth-child(3n) {
    border-right: none;
}
.pro-stats-cell:nth-child(n+4) {
    border-bottom: none;
}
.pro-stats-main {
    font-size: 2rem;
    font-weight: 600;
    color: #111;
    display: block;
    margin-bottom: 6px;
}
.pro-stats-desc {
    color: #444;
    font-size: 1.05rem;
    font-weight: 400;
}
@media (max-width: 1100px) {
  .pro-stats-flex {
    flex-direction: column;
    gap: 32px;
  }
  .pro-stats-content, .pro-stats-img {
    min-width: 0;
    max-width: 100vw;
    padding-left: 0;
  }
  .pro-stats-title {
    font-size: 2rem;
    margin-bottom: 22px;
  }
  .pro-stats-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
  }
  .pro-stats-cell {
    border-right: none;
    border-bottom: 1px solid #ececec;
    padding: 28px 16px 22px 16px;
  }
  .pro-stats-cell:last-child {
    border-bottom: none;
  }
} 

.platform-features-section {
    background: #fff;
    padding: 56px 0 40px;
}
.platform-features-flex {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    padding-right: 240px; /* Add space for QR code container */
}
.platform-feature-card {
    background: #f8f8f8;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 36px 28px 32px 28px;
    min-width: 260px;
    max-width: 340px;
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.platform-feature-icon {
    font-size: 2.6rem;
    margin-bottom: 18px;
}
.platform-feature-card h3 {
    color: #111;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.platform-feature-card p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 0;
}

.cta-section {
    background: #fff;
    padding: 48px 0 40px;
    text-align: center;
}
.cta-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 240px; /* Add space for QR code container */
}
.cta-content {
    max-width: 540px;
    margin: 0 auto;
}
.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 18px;
}
.cta-content p {
    color: #444;
    font-size: 1.15rem;
    margin-bottom: 28px;
}
.cta-btn {
    /* Use only .btn-primary styles for consistency */
    background: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    font-size: 1rem;
    box-shadow: none;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
}
.cta-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
    color: white;
    text-decoration: none;
}
@media (max-width: 900px) {
  .platform-features-flex {
    flex-direction: column;
    gap: 24px;
  }
  .platform-feature-card {
    min-width: 0;
    max-width: 100vw;
    padding: 28px 12px 22px 12px;
  }
  .cta-content h2 {
    font-size: 1.4rem;
  }
} 

.download-app-btn {
    display: none;
    background: #111;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 24px;
    padding: 16px 38px;
    text-align: center;
    margin: 24px auto 0 auto;
    width: calc(100% - 40px);
    max-width: 340px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}
.download-app-btn:active,
.download-app-btn:focus {
    background: #333;
}
@media (max-width: 600px) {
  .mobile-download-btns {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 3000;
    gap: 10px;
    width: 180px;
    align-items: flex-end;
  }
  .mobile-download-btn {
    background: #fff;
    color: #111;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 6px 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-decoration: none;
    text-align: center;
    transition: background 0.2s;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
  }
  .mobile-download-btn:active {
    background: #f0f0f0;
  }
  .mobile-download-btn.customer {
    margin-bottom: 0;
  }
  .mobile-download-btn.expert {
    margin-bottom: 0;
  }
  .qr-topright, .login-above-qr, #download-app-btn {
    display: none !important;
  }
  .hamburger {
    display: none !important;
  }
  .btn-login-mobile {
    display: inline-block !important;
    background: none;
    color: #111;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: none;
    padding: 8px 16px;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.01em;
    border-radius: 8px;
    margin-left: auto;
  }
  .platform-features-flex {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    padding-right: 0 !important;
    gap: 20px !important;
  }
  .planity-features-flex {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    padding-right: 0 !important;
    gap: 20px !important;
    text-align: center !important;
  }
  .planity-feature-block {
    width: 100% !important;
    max-width: 350px !important;
    margin: 0 auto 10px auto !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .planity-feature-block h2,
  .planity-feature-block p {
    text-align: center !important;
  }
  .new-clients .container {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    padding-right: 0 !important;
    gap: 20px !important;
    text-align: center !important;
  }
  .clients-content {
    width: 100% !important;
    max-width: 350px !important;
    margin: 0 auto 10px auto !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .clients-content h2,
  .clients-content p,
  .clients-content ul,
  .clients-content li {
    text-align: center !important;
  }
  .btn-secondary {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .pro-stats-section {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding-right: 0 !important;
  }
  .pro-stats-flex {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    padding-right: 0 !important;
    gap: 20px !important;
    text-align: center !important;
    width: 100% !important;
  }
  .pro-stats-content {
    width: 100% !important;
    max-width: 350px !important;
    margin: 0 auto 10px auto !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .pro-stats-title {
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    width: 100% !important;
  }
  .pro-stats-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 18px !important;
    width: 100% !important;
  }
  .pro-stats-cell {
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  .pro-stats-main, .pro-stats-desc {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    display: block !important;
  }
  .cta-section {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding-right: 0 !important;
    width: 100% !important;
  }
  .cta-flex {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding-right: 0 !important;
    width: 100% !important;
  }
  .cta-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  .cta-content h2, .cta-content p, .cta-btn {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    width: 100% !important;
  }
  .cta-btn {
    display: inline-block !important;
    width: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (min-width: 601px) {
  .btn-login-mobile {
    display: none !important;
  }
} 

/* Phone Selection Modal Styles */
.phone-selection {
    max-width: 400px;
    text-align: center;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.phone-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.phone-option {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.phone-option:hover {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
}

.phone-option[data-platform="android"]:hover {
    border-color: #34a853;
    box-shadow: 0 10px 30px rgba(52, 168, 83, 0.2);
}

.phone-option[data-platform="ios"]:hover {
    border-color: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.store-logo {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-option[data-platform="android"] .store-logo {
    color: #34a853;
}

.phone-option[data-platform="ios"] .store-logo {
    color: #000;
}

.phone-option h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #2c3e50;
}

.phone-option p {
    color: #7f8c8d;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.download-link {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: fit-content;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    margin-top: auto;
    box-sizing: border-box;
}

.phone-option[data-platform="android"] .download-link {
    background: linear-gradient(135deg, #34a853, #2e7d32);
}

.phone-option[data-platform="ios"] .download-link {
    background: linear-gradient(135deg, #000, #333);
}

.download-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.download-link i {
    font-size: 1.1rem;
}

/* QR Code Clickable Enhancement */
.qr-top-block {
    cursor: pointer;
    transition: all 0.3s ease;
}

.qr-top-block:hover {
    transform: scale(1.05);
}

.qr-top-block:hover .qr-label {
    color: #3498db;
    font-weight: 600;
}

/* Phone Selection Modal Mobile Responsive */
@media (max-width: 768px) {
    .phone-selection {
        max-width: 320px;
        margin: 0 10px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .phone-options {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .phone-option {
        padding: 1rem 0.8rem;
        border-radius: 10px;
        min-height: 180px;
        overflow: visible;
    }
    
    .store-logo {
        font-size: 1.8rem;
        height: 35px;
        margin-bottom: 0.3rem;
    }
    
    .phone-option h3 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .phone-option p {
        font-size: 0.7rem;
        margin-bottom: 0.8rem;
    }
    
    .download-link {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        border-radius: 15px;
        white-space: nowrap;
        min-width: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .phone-selection {
        max-width: 300px;
        margin: 0 5px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .phone-options {
        gap: 0.6rem;
    }
    
    .phone-option {
        padding: 0.8rem 0.6rem;
        min-height: 160px;
        overflow: visible;
    }
    
    .store-logo {
        font-size: 1.5rem;
        height: 30px;
    }
    
    .phone-option h3 {
        font-size: 0.9rem;
    }
    
    .phone-option p {
        font-size: 0.65rem;
    }
    
    .download-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        white-space: nowrap;
        min-width: fit-content;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        text-align: center;
    }
}

 