   /* Modern Design System - Updated */
   :root {
    --primary-color: #000000;
    --primary-dark: #000000;
    --secondary-color: #6366F1;
    --success-color: #10B981;
    --text-primary: #111827;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-light: #F1F5F9;
    --bg-card: #FFFFFF;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bg-glass: rgba(255, 255, 255, 0.25);
    --border-color: #E5E7EB;
    --border-light: #F0F1F3;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-glass: 0 8px 32px 0 rgb(31 38 135 / 0.37);
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Header Styling */
.header {
    background: var(--bg-primary);
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
     position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
}

.header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 32px;
}

.header nav ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.header nav ul li a:hover {
    color: var(--primary-color);
}

.header .auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
}

.btn-primary {
    background: #07CDA3;
    color: white;
}

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

.btn-primary-glass {
    background: #07CDA3;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(7, 205, 163, 0.3);
    color: white;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-glass:hover {
    background: #06B892;
    transform: translateY(-2px);
}

.btn-secondary-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
    padding: 14px 28px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-glass:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.modern-cta-btn {
    background: #07CDA3;
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.modern-cta-btn:hover {
    background: #06B892;
    transform: translateY(-1px);
}

/* Hero Section - Completely New Design */
.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 60px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(7, 205, 163, 0.03) 0%, transparent 50%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
     flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
     align-items: center;
    gap: 8px;
    background: rgba(7, 205, 163, 0.1);
    color: #059669;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    border: 1px solid rgba(7, 205, 163, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-primary-btn {
    background: #07CDA3;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.hero-primary-btn:hover {
    background: #06B892;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(7, 205, 163, 0.25);
}

.hero-secondary-btn {
    background: white;
    color: #000000;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-secondary-btn:hover {
    color: #0f172a;
}

.hero-stats-row {
    display: flex;
    gap: 40px;
    margin-top: 8px;
}

.hero-stat {
    display: flex;
     flex-direction: column;
}

.hero-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.hero-stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    margin-top: 4px;
}

/* Right Side - Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
     align-items: center;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 500px;
     margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-card {
    position: relative;
    width: 360px;
    height: 450px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.invoice-preview {
    flex: 1;
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
     margin-bottom: 20px;
    padding: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.preview-line {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
}

.preview-line.short {
    width: 60%;
}

.preview-line.medium {
    width: 80%;
}

.preview-line.highlight {
    background: #07CDA3;
    width: 40%;
}

.card-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
     font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn.primary {
    background: #07CDA3;
    color: white;
}

.action-btn.primary:hover {
    background: #06B892;
}

.action-btn.secondary {
    background: #f1f5f9;
    color: #475569;
}

.action-btn.secondary:hover {
    background: #e2e8f0;
}

/* Floating Elements - Fixed Positioning */
.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.floating-card-1 {
    position: absolute;
    top: 80px;
    right: 40px;
    width: 140px;
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card-2 {
    position: absolute;
    bottom: 120px;
    left: 40px;
    width: 130px;
    animation: floatCard 8s ease-in-out infinite reverse;
}

.floating-card-3 {
    position: absolute;
    top: 280px;
    right: 50px;
    width: 120px;
    animation: floatCard 10s ease-in-out infinite;
}

.card-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 16px;
    color: white;
}

.card-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.card-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.card-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.card-title-small {
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 3px;
}

.card-value {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.card-subtitle {
    font-size: 10px;
    color: #64748b;
    margin-top: 3px;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header nav {
        display: none;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-primary-btn,
    .hero-secondary-btn {
        justify-content: center;
    }

    .hero-stats-row {
        justify-content: center;
        gap: 32px;
    }

    .visual-container {
        height: 400px;
    }

    .main-card {
        width: 280px;
        height: 350px;
        padding: 24px;
    }

    .floating-card {
        display: none;
    }
}

/* Company Logos Section */
.logos-section {
    background: var(--bg-primary);
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.logos-title {
    text-align: center;
    font-size: 16px;
     font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    align-items: center;
    opacity: 0.6;
    justify-items: center;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
}

.logo-placeholder {
    background: var(--text-light);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

/* Features Section */
.features-section {
    background: var(--bg-secondary);
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: #07CDA3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-primary);
    padding: 120px 0;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 64px;
}

.toggle-container {
    background: var(--bg-secondary);
    padding: 4px;
    border-radius: 12px;
    display: flex;
    gap: 4px;
}

.toggle-btn {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
       font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toggle-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

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

.pricing-card {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-gradient);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
     font-weight: 600;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pricing-subtitle {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 32px;
}

.price-amount {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
}

.price-period {
    color: var(--text-secondary);
    font-size: 16px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.feature-check {
    width: 20px;
    height: 20px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-check i {
    font-size: 12px;
    color: white;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-secondary);
    padding: 120px 0;
}

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

.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: transparent;
     border: none;
    text-align: left;
    font-size: 18px;
     font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-icon.rotated {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    position: relative;
    overflow: hidden;
}

.footer-background {
    background: #000000;
    position: relative;
    padding: 80px 0;
}

.footer-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(7, 205, 163, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
}

/* Newsletter Section */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 80px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.newsletter-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.newsletter-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    min-width: 400px;
}

.cta-btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: #07CDA3;
    color: white;
    flex: 1;
    justify-content: center;
}

.cta-btn.primary:hover {
    background: #06B892;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(7, 205, 163, 0.4);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    flex: 1;
    justify-content: center;
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* Main Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 0;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.footer-logo-img {
    width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-powered {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-powered strong {
    color: #07CDA3;
    font-weight: 600;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #07CDA3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(7, 205, 163, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

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

.footer-col ul li {
    margin-bottom: 16px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.footer-col ul li a i {
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #07CDA3;
    transform: translateX(8px);
}

.footer-col ul li a:hover i {
    opacity: 1;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.contact-item i {
    width: 20px;
    height: 20px;
    background: rgba(7, 205, 163, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #07CDA3;
    font-size: 12px;
}



/* Mobile Menu Styles */

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: white;
    transition: right 0.3s ease;
    padding: 24px 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
}

.mobile-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu nav ul li {
    margin-bottom: 0;
}

.mobile-menu nav ul li a {
    display: block;
    padding: 16px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.mobile-menu nav ul li a:hover {
    color: #07CDA3;
    background: rgba(7, 205, 163, 0.05);
    padding-left: 24px;
}

.mobile-menu nav ul li:last-child a {
    border-bottom: none;
}

/* Responsive Design */
        @media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 48px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-newsletter {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        padding: 32px;
    }

    .cta-buttons {
        min-width: unset;
        width: 100%;
        max-width: 400px;
    }

    .footer-background {
        padding: 70px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-bottom: 60px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .visual-container {
        height: 500px;
    }

    .main-card {
        width: 320px;
        height: 400px;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

                /* Header Mobile */
    .header nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header .auth-buttons {
        gap: 8px;
    }

    .header .auth-buttons .btn {
        padding: 10px 14px;
        font-size: 13px;
        white-space: nowrap;
    }

    .header .logo img {
        width: 130px !important;
        height: 24px !important;
    }

    .header .logo span {
        font-size: 11px !important;
    }

    /* Hero Section Mobile */
    .hero-section {
        min-height: auto;
        padding: 50px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-primary-btn,
    .hero-secondary-btn {
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero-stats-row {
        justify-content: center;
        gap: 24px;
        margin-top: 32px;
    }

    .hero-stat-number {
        font-size: 24px;
    }

    .hero-stat-label {
        font-size: 13px;
    }

    /* Visual Mobile */
    .visual-container {
        height: 350px;
    }

    .main-card {
        width: 280px;
        height: 320px;
        padding: 16px;
    }

    .floating-card {
        display: none;
    }

    /* Sections Mobile */
    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .features-section,
    .pricing-section,
    .faq-section,
    .panel-gallery-section {
        padding: 60px 0;
    }

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

    .feature-card {
        padding: 24px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-description {
        font-size: 14px;
    }

    /* Logos Mobile */
    .logos-section {
        padding: 40px 0;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    }

    .logo-item img {
        width: 100px !important;
        height: 30px !important;
    }

    /* Pricing Mobile */
    .pricing-card {
        padding: 24px;
    }

    .pricing-title {
        font-size: 20px;
    }

    .price-amount {
        font-size: 28px;
    }

    .pricing-features li {
        font-size: 14px;
         margin-bottom: 10px;
        line-height: 1.4;
    }

    .feature-hidden.show {
        max-height: 55px;
        margin-bottom: 10px;
    }

    /* FAQ Mobile */
    .faq-question {
        padding: 16px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 16px 16px;
        font-size: 14px;
    }

    /* Footer Mobile */
    .footer-newsletter {
    flex-direction: column;
    text-align: center;
        gap: 24px;
        padding: 24px;
        margin-bottom: 40px;
    }

    .newsletter-content h3 {
        font-size: 22px;
    }

    .newsletter-content p {
        font-size: 14px;
    }

    .cta-buttons {
    flex-direction: column;
        min-width: unset;
    width: 100%;
        gap: 12px;
    }

    .cta-btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .footer-background {
        padding: 50px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 30px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-brand {
    text-align: center;
        max-width: none;
    }

    .footer-logo-img {
        width: 150px !important;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-col ul li a {
        font-size: 14px;
    }

    .contact-item {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    /* Header Extra Small */
    .header {
        padding: 14px 0;
    }

                .header .container {
        min-height: 48px;
    }

    .header .auth-buttons {
        gap: 6px;
    }

    .header .auth-buttons .btn {
        padding: 8px 10px;
        font-size: 11px;
        min-width: 55px;
        border-radius: 6px;
    }

    .header .logo img {
        width: 110px !important;
        height: 20px !important;
    }

    .header .logo span {
        font-size: 9px !important;
    }

    .mobile-menu-toggle {
        font-size: 20px;
        padding: 6px;
        min-width: 36px;
        height: 36px;
        flex-shrink: 0;
        margin-right: 2px;
    }

    /* Mobile Menu Responsive */
    .mobile-menu-content {
        width: 260px;
        right: -260px;
        padding: 20px 16px;
    }

    .mobile-menu nav ul li a {
        padding: 14px 18px;
        font-size: 15px;
    }

    /* Hero Section Extra Small */
                .hero-section {
        padding: 30px 0;
        min-height: auto;
    }

    .hero-container {
    gap: 20px;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 16px;
    }

    .hero-primary-btn,
    .hero-secondary-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-stats-row {
    gap: 20px;
        margin-top: 24px;
    }

    .hero-stat-number {
        font-size: 20px;
    }

    .hero-stat-label {
        font-size: 12px;
    }

    .section-title {
        font-size: 22px;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .main-card {
        width: 220px;
        height: 260px;
    }

    .visual-container {
        height: 280px;
    }

    .feature-card {
        padding: 16px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 13px;
    }

    .pricing-card {
        padding: 16px;
    }

    .pricing-title {
        font-size: 18px;
    }

    .price-amount {
        font-size: 24px;
    }

    .footer-newsletter {
        padding: 16px;
        margin-bottom: 24px;
    }

    .newsletter-content h3 {
        font-size: 18px;
    }

    .newsletter-content p {
        font-size: 13px;
    }

    .cta-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    /* Header Ultra Small */
    .header .auth-buttons {
        gap: 4px;
    }

    .header .auth-buttons .btn {
        padding: 7px 8px;
        font-size: 10px;
        min-width: 50px;
    }

    .header .logo img {
        width: 95px !important;
        height: 18px !important;
    }

    .header .logo span {
        font-size: 8px !important;
    }

    .mobile-menu-toggle {
        font-size: 18px;
        min-width: 32px;
        height: 32px;
        padding: 5px;
    }

    /* Mobile Menu Ultra Small */
    .mobile-menu-content {
        width: 240px;
        right: -240px;
        padding: 16px 12px;
    }

    .mobile-menu-header {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .mobile-menu-header h3 {
        font-size: 16px !important;
    }

                .mobile-menu nav ul li a {
        padding: 12px 16px;
        font-size: 14px;
    }

    .hero-section {
        padding: 20px 0;
    }

    .hero-container {
        gap: 16px;
    }

    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .hero-primary-btn,
    .hero-secondary-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .hero-stats-row {
        gap: 16px;
        margin-top: 16px;
    }

    .section-title {
        font-size: 20px;
    }

    .main-card {
        width: 180px;
        height: 220px;
    }

    .visual-container {
        height: 240px;
    }
}

@media (max-width: 290px) {
    .header .logo span {
        display: none !important;
    }
}

.cls-1 {
    fill: #000000;
}

.invoice-svg-main {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Panel Gallery Section */
.panel-gallery-section {
    background: var(--bg-primary);
    padding: 120px 0;
    border-bottom: 1px solid var(--border-color);
}

.gallery-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.gallery-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-slide.active {
    display: block;
    opacity: 1;
}

.screenshot-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.screenshot-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.screenshot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.screenshot-card:hover .screenshot-image img {
    transform: scale(1.02);
}

.screenshot-info {
    padding: 32px;
    text-align: center;
    background: white;
}

.screenshot-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.screenshot-info p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.gallery-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

.gallery-btn {
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-btn:hover {
    background: #07CDA3;
    color: white;
    border-color: #07CDA3;
    transform: scale(1.05);
}

.gallery-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #07CDA3;
    transform: scale(1.2);
}

.dot:hover {
    background: #059669;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .panel-gallery-section {
        padding: 80px 0;
    }

    .gallery-container {
        margin: 0 16px;
    }

    .screenshot-image {
        height: 250px;
    }

    .screenshot-info {
        padding: 24px;
    }

    .screenshot-info h3 {
        font-size: 20px;
    }

    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Show More Button */
.show-more-btn {
    background: transparent;
    border: none;
    color: #07CDA3;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
    transition: all 0.3s ease;
    margin: 16px 0 0 0;
}

.show-more-btn:hover {
    color: #059669;
}

.show-more-btn .icon {
    transition: transform 0.3s ease;
}

.show-more-btn.expanded .icon {
    transform: rotate(180deg);
}

.feature-hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: none;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.feature-hidden.show {
    opacity: 1;
    max-height: 50px;
    margin-bottom: 12px;
    display: flex !important;
}