:root {
    --primary-blue: #2563EB;
    --primary-blue-dark: #1D4ED8;
    --primary-orange: #FF7A3D;
    --secondary: #10B981;
    --dark: #1F2937;
    --dark-soft: #374151;
    --text-dark: #111827;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-medium: #F3F4F6;
    --bg-dark: #E5E7EB;
    --border-light: #E5E7EB;
    --gradient-1: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
    --gradient-2: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(16, 185, 129, 0.03) 100%);
    --gradient-dark: linear-gradient(135deg, #374151 0%, #1F2937 100%);
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

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

/* Navigation */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0A1628 0%, #1E293B 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}


nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-img {
    height: 80px;
    width: auto;
}

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

.nav-links a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #10B981;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    color: #FFFFFF;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1E293B;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.2rem;
    color: #FFFFFF;
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.dropdown-menu a:hover {
    background: var(--bg-medium);
    color: var(--primary-blue);
}

.lang-selector {
    position: relative;
    z-index: 2000;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    color: #FFFFFF;
}

.lang-btn:hover {
    border-color: #10B981;
    background: rgba(255, 255, 255, 0.1);
}

.lang-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    padding: 0.5rem;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 2000;
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.8rem;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s;
    color: #FFFFFF;
}

.lang-option:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.flag {
    font-size: 1.2rem;
}

.btn-login {
    color: var(--text-dark) !important;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-login:hover {
    border-color: var(--primary-blue);
    background: var(--bg-lighter);
}

.cta-btn {
    background: var(--primary-blue);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
/* Hero Section */
.hero {
    padding: 160px 2rem 100px;
    background: #FFFFFF;
}

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

.hero-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-features {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-lighter);
    border-left: 4px solid var(--primary-blue);
    border-radius: 8px;
}

.hero-illustration {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 148, 218, 0.15));
}

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

.btn-primary {
    background: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h1,
.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Why Choose Section - Expanded */
.why-choose {
    padding: 100px 2rem;
    background: var(--bg-white);
}

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

.feature-expanded-card {
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.3s;
    background: var(--bg-white);
}

.feature-expanded-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.feature-expanded-card.highlight {
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
    border-color: var(--primary-orange);
}

.feature-expanded-card.highlight:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 8px 24px rgba(255, 122, 61, 0.15);
}

.feature-expanded-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    display: block;
}

.feature-expanded-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.feature-expanded-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
    padding: 100px 2rem;
    background: #EDF2F7;
}

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

.step-card {
    text-align: center;
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.step-visual {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 1.5rem;
}

.step-visual svg {
    width: 100%;
    height: auto;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Reseller CTA */
.reseller-cta {
    padding: 80px 2rem;
    background: linear-gradient(135deg, #0052CC 0%, #003D99 100%);
    color: white;
}

/* Home Contact Section */
.home-contact {
    padding: 100px 2rem;
    background: #EDF2F7;
}

.home-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-compact {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item-compact {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon-compact {
    font-size: 1.5rem;
    min-width: 40px;
}

.contact-item-compact strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.contact-item-compact a {
    color: var(--primary-blue);
    text-decoration: none;
}

.contact-item-compact a:hover {
    text-decoration: underline;
}

.reseller-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.reseller-cta .btn-primary {
    background: var(--primary-orange);
}

.reseller-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.reseller-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Features Full Page */
.features-full {
    padding: 140px 2rem 100px;
    background: #FFFFFF;
    min-height: 100vh;
}

/* Use Cases Page */
.use-cases {
    padding: 140px 2rem 100px;
    background: #F7FAFC;
    min-height: 100vh;
}

/* Mobile override for use-cases - match other pages */
@media (max-width: 768px) {
    .use-cases {
        padding: 145px 1.5rem 60px !important;
    }
}

/* FAQ Page */
.faq {
    padding: 140px 2rem 100px;
    background: #FFFFFF;
    min-height: 100vh;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-toggle {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary-blue);
    transition: transform 0.3s;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

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

.use-case-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.use-case-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.use-case-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.use-case-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.feature-detailed {
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
}

.feature-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-detailed h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-detailed p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Pricing Page */
.pricing {
    padding: 140px 2rem 100px;
    background: var(--bg-medium);
    min-height: 100vh;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
}

.pricing-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    position: relative;
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.amount.custom {
    font-size: 1.8rem;
}

.period {
    color: var(--text-gray);
}

.plan-desc {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

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

.features-list li {
    padding: 0.6rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-light);
}

.features-list li:last-child {
    border-bottom: none;
}

.btn-pricing {
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    background: var(--bg-medium);
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.btn-pricing.primary {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.pricing-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* About Page */
.about {
    padding: 140px 2rem 100px;
    background: var(--bg-white);
    min-height: 100vh;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-section p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.values-grid h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.value-card {
    padding: 2rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    text-align: center;
}

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

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Resellers Page */
.resellers {
    padding: 140px 2rem 100px;
    background: var(--bg-medium);
    min-height: 100vh;
}

.resellers-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.8;
}

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

.reseller-benefit {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    text-align: center;
}

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

.reseller-benefit h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.reseller-benefit p {
    color: var(--text-gray);
    line-height: 1.7;
}

.cta-center {
    text-align: center;
}

.btn-primary.large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Contact Page */
.contact {
    padding: 140px 2rem 100px;
    background: var(--bg-white);
    min-height: 100vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h3,
.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.btn-submit {
    background: var(--primary-blue);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Login Page */
.fullscreen-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: var(--bg-white);
}

.fullscreen-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links-section h4 {
    font-weight: 700;
    margin-bottom: 1.2rem;
}

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

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

.footer-links-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-section a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: var(--bg-white);
    z-index: 10001;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

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

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.mobile-logo {
    height: 60px;
}

.mobile-close {
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.3s;
}

.mobile-close:hover {
    background: var(--bg-medium);
}

.mobile-nav-links {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-links a {
    display: block;
    padding: 1.2rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.mobile-nav-links a:hover {
    background: var(--bg-medium);
    color: var(--primary-blue);
}

.mobile-lang-section {
    padding: 1.5rem;
    background: var(--bg-medium);
}

.mobile-lang-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.mobile-lang-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mobile-lang-btn {
    padding: 0.8rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.mobile-lang-btn:hover {
    border-color: var(--primary-blue);
    background: var(--bg-lighter);
}

.mobile-cta {
    background: var(--primary-blue) !important;
    color: white !important;
    margin: 1rem 1.5rem;
    padding: 1rem !important;
    border-radius: 8px;
    text-align: center;
    font-weight: 600 !important;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links,
    .lang-selector {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav {
        padding: 1rem 1.5rem;
    }
    
    .logo-img {
        height: 70px;
    }
    
    .hero {
        padding: 120px 1.5rem 60px;
    }
    
    .why-choose,
    .how-it-works,
    .features-full,
    .pricing,
    .about,
    .resellers,
    .contact,
    .home-contact,
    .use-cases {
        padding-top: 100px;
        padding-bottom: 60px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .section-header h1,
    .section-header h2 {
        padding-top: 20px;
    }
    
    .hero-content,
    .contact-grid,
    .home-contact-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .section-header h1,
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons a {
        width: 50%;
        min-width: 200px;
        text-align: center;
    }
    
    .why-choose,
    .how-it-works,
    .features-full,
    .pricing,
    .about,
    .resellers,
    .contact {
        padding: 60px 1.5rem;
    }
    
    .features-expanded-grid,
    .benefits-grid,
    .steps-grid,
    .features-detailed-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .reseller-cta h2 {
        font-size: 1.8rem;
    }
    
    .reseller-cta p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .value-cards,
    .reseller-benefits {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .section-header h1,
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
}
