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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --light: #f1f5f9;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

/* Language Selection Modal */
.language-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;
}

.language-modal.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.language-modal-content {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-logo {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    margin-bottom: 24px;
}

.modal-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 32px;
}

.language-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.language-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 32px;
    background: var(--light);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.language-btn:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.language-btn .flag {
    font-size: 32px;
}

.language-btn .lang-name {
    color: var(--dark);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 16px 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-brand .logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0px;
    justify-content: center;
}

.nav-brand h1 {
    font-size: 18px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin: 0;
}

.nav-brand .tagline {
    font-size: 9px;
    color: var(--gray);
    font-weight: 500;
    line-height: 1;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.language-switcher {
    position: relative;
}

.current-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--light);
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
}

.current-lang:hover {
    border-color: var(--primary);
    background: var(--white);
}

.current-lang .flag {
    font-size: 18px;
}

.current-lang .lang-code {
    color: var(--dark);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

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

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    font-family: inherit;
    text-align: left;
}

.lang-option:hover {
    background: var(--light);
}

.lang-option .flag {
    font-size: 20px;
}

.lang-option span:last-child {
    color: var(--dark);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.05;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    padding: 80px 0;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    border: none;
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.stat {
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.stat h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat p {
    font-size: 14px;
    color: var(--gray);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

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

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--light);
    color: var(--primary);
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
}

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

/* Vision Section */
.vision-section {
    background: var(--light);
}

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

.vision-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.vision-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.vision-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.vision-card p {
    color: var(--gray);
    line-height: 1.8;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--gray);
    line-height: 1.6;
}

.mission-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* What is JURY */
.what-is-jury {
    background: var(--dark);
    color: var(--white);
}

.what-is-jury .section-title {
    color: var(--white);
}

.jury-definition {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.large-text {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--light);
}

.formula {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.formula-item {
    padding: 16px 24px;
    background: var(--dark-light);
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    border: 2px solid var(--primary);
}

.plus {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
}

.comparison {
    font-size: 20px;
    color: var(--light);
    line-height: 1.8;
}

.comparison strong {
    color: var(--white);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Problem Section */
.problem-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fca5a5 100%);
}

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

.problem-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

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

.problem-card li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray);
}

.problem-card li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 14px;
}

/* Solution Section */
.solution-section {
    background: var(--light);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.solution-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.solution-card:hover {
    transform: translateY(-8px);
}

.solution-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.solution-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

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

.solution-card li {
    padding: 8px 0;
    color: var(--gray);
    font-size: 14px;
}

.solution-card li::before {
    content: '→ ';
    color: var(--primary);
    font-weight: 700;
}

/* Platform Architecture */
.platform-section {
    background: var(--dark);
    color: var(--white);
}

.platform-section .section-title {
    color: var(--white);
}

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

.layer {
    background: var(--dark-light);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 16px;
    border-left: 4px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 24px;
}

.layer-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.layer h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.layer p {
    color: var(--gray);
    font-size: 14px;
}

/* B2C Section */
.b2c-section {
    background: linear-gradient(135deg, #e0e7ff 0%, #fce7f3 100%);
}

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

.feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.feature-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* B2B Section */
.b2b-section {
    background: var(--light);
}

.b2b-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.module {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.module h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

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

.module li {
    padding: 8px 0;
    color: var(--gray);
    font-size: 14px;
}

.module li::before {
    content: '• ';
    color: var(--primary);
    font-weight: 700;
}

/* AI Section */
.ai-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: var(--white);
}

.ai-section .section-title {
    color: var(--white);
}

.ai-layers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.ai-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.ai-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--white);
}

.ai-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

/* Fintech Section */
.fintech-section {
    background: var(--light);
}

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

.fintech-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.fintech-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

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

.fintech-card li {
    padding: 12px 0;
    color: var(--gray);
    font-size: 16px;
}

.fintech-card li::before {
    content: '✓ ';
    color: var(--primary);
    font-weight: 700;
}

/* Sectors Section */
.sectors-section {
    background: var(--white);
}

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

.sector-card {
    background: var(--light);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.sector-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.sector-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.sector-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.sector-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.sector-card li {
    padding: 8px 0;
    color: var(--gray);
    font-size: 14px;
}

.sector-card li::before {
    content: '→ ';
    color: var(--primary);
}

/* Global Section */
.global-section {
    background: var(--dark);
    color: var(--white);
}

.global-section .section-title {
    color: var(--white);
}

.global-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.global-map,
.growth-model {
    background: var(--dark-light);
    padding: 40px;
    border-radius: 16px;
}

.global-map h3,
.growth-model h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.markets {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.market {
    padding: 12px 24px;
    background: var(--primary);
    border-radius: 8px;
    font-weight: 600;
}

.growth-model p {
    font-size: 20px;
    color: var(--light);
}

/* Revenue Section */
.revenue-section {
    background: var(--light);
}

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

.revenue-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.revenue-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

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

.revenue-card li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--gray);
}

/* Why Section */
.why-section {
    background: var(--white);
}

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

.why-card {
    background: var(--light);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.why-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

.why-card p {
    color: var(--gray);
    font-size: 14px;
}

/* Closing Section */
.closing-section {
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.closing-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 32px;
}

.large-quote {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 24px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.closing-text {
    font-size: 20px;
    color: var(--light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--light);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

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

.contact-info p {
    margin-bottom: 16px;
    color: var(--gray);
    font-size: 16px;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    margin: 16px 0;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 24px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    padding: 12px 20px;
    background: var(--light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    margin-top: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    margin-bottom: 12px;
    display: block;
}

.footer-brand p {
    color: var(--gray);
    margin-top: 8px;
    font-size: 14px;
}

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

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-column a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--dark-light);
    color: var(--gray);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-layers {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-brand .logo {
        height: 35px;
        max-width: 140px;
    }
    
    .nav-brand h1 {
        font-size: 14px;
    }
    
    .nav-brand .tagline {
        font-size: 7px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        z-index: 999;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        border-bottom: 1px solid var(--light);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .language-switcher {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 12px;
    }
    
    .lang-dropdown {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }
    
    .lang-dropdown.active {
        transform: translateX(-50%) translateY(0);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-stats,
    .vision-grid,
    .problem-grid,
    .solution-grid,
    .features-grid,
    .b2b-modules,
    .ai-layers,
    .fintech-grid,
    .sectors-grid,
    .global-content,
    .revenue-grid,
    .why-grid,
    .contact-content,
    .footer-content,
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .formula {
        flex-direction: column;
    }
}
