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

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #0ea5e9;
    --accent-color: #8b5cf6;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --success: #10b981;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Arabic Font Support */
html[lang="ar"],
html[lang="ar"] body,
html[lang="ar"] * {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Fallback for Arabic if Cairo doesn't load */
html[lang="ar"] {
    font-family: 'Cairo', 'Tajawal', 'Noto Sans Arabic', 'Arial', sans-serif;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

/* Language Dropdown (Logo Side) */
.flag-swatch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 17px;
    border-radius: 3px;
    box-shadow: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    flex-shrink: 0;
}

.nav-lang-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(22px);
}

.logo-lang-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo-lang-trigger {
    width: auto;
    height: auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.24s ease, filter 0.24s ease;
    box-shadow: none;
    animation: none;
    filter: saturate(1.08);
}

.logo-lang-trigger:hover {
    transform: translateY(-1px) scale(1.03);
    filter: saturate(1.16);
}

.logo-lang-trigger:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.26);
}

.logo-lang-caret {
    font-size: 12px;
    color: #eef2ff;
    text-shadow: 0 1px 4px rgba(30, 41, 59, 0.35);
    transition: transform 0.24s ease;
}

.logo-lang-dropdown.open .logo-lang-caret {
    transform: rotate(180deg);
}

.logo-lang-dropdown.open .logo-lang-trigger {
    animation: none;
}

.logo-lang-trigger .flag-swatch {
    width: 38px;
    height: 27px;
    border-radius: 5px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.26);
    animation: logoFlagFloat 2.8s ease-in-out infinite;
}

.logo-lang-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    min-width: 220px;
    background: rgba(15, 23, 42, 0.96);
    border: none;
    border-radius: 12px;
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    box-shadow: 0 22px 44px rgba(2, 6, 23, 0.42);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px) scale(0.94);
    transform-origin: top center;
    transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
    pointer-events: none;
    z-index: 1200;
}

.logo-lang-menu::before {
    content: '';
    position: absolute;
    inset: -20% -15%;
    background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.16), transparent 45%),
                radial-gradient(circle at 80% 80%, rgba(167, 139, 250, 0.2), transparent 48%);
    pointer-events: none;
    filter: blur(8px);
    z-index: -1;
}

.logo-lang-dropdown.open .logo-lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.logo-lang-option {
    width: 48px;
    height: 40px;
    border: none;
    border-radius: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.24s ease, filter 0.24s ease;
}

.logo-lang-option:hover {
    transform: translateY(-2px) scale(1.12);
    filter: saturate(1.14);
}

.logo-lang-option.active {
    background: transparent;
}

.logo-lang-option .flag-swatch {
    width: 34px;
    height: 24px;
    border-radius: 5px;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.22);
    transition: transform 0.24s ease;
}

.logo-lang-option:hover .flag-swatch {
    transform: scale(1.09);
}

.logo-lang-dropdown.open .logo-lang-option {
    animation: flagOptionPop 0.34s ease both;
}

.logo-lang-dropdown.open .logo-lang-option:nth-child(1) { animation-delay: 0.00s; }
.logo-lang-dropdown.open .logo-lang-option:nth-child(2) { animation-delay: 0.03s; }
.logo-lang-dropdown.open .logo-lang-option:nth-child(3) { animation-delay: 0.06s; }
.logo-lang-dropdown.open .logo-lang-option:nth-child(4) { animation-delay: 0.09s; }
.logo-lang-dropdown.open .logo-lang-option:nth-child(5) { animation-delay: 0.12s; }
.logo-lang-dropdown.open .logo-lang-option:nth-child(6) { animation-delay: 0.15s; }
.logo-lang-dropdown.open .logo-lang-option:nth-child(7) { animation-delay: 0.18s; }

body.light-mode .logo-lang-trigger {
    background: transparent;
}

body.light-mode .logo-lang-menu {
    background: rgba(255, 255, 255, 0.97);
    border: none;
}

body.light-mode .logo-lang-option {
    background: transparent;
}

body.light-mode .logo-lang-option:hover {
    background: transparent;
}

@keyframes flagOptionPop {
    from { opacity: 0; transform: translateY(8px) scale(0.92); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes logoFlagFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.flag-tr {
    background-image: url('assets/flags/tr.svg');
    background-color: #e11d48;
}

.flag-gb {
    background-image: url('assets/flags/gb.svg');
    background-color: #1d4ed8;
}

.flag-de {
    background: linear-gradient(to bottom, #111827 0 33%, #dc2626 33% 66%, #facc15 66% 100%);
}

.flag-fr {
    background: linear-gradient(to right, #1d4ed8 0 33%, #ffffff 33% 66%, #dc2626 66% 100%);
}

.flag-it {
    background: linear-gradient(to right, #16a34a 0 33%, #ffffff 33% 66%, #dc2626 66% 100%);
}

.flag-es {
    background: linear-gradient(to bottom, #dc2626 0 25%, #facc15 25% 75%, #dc2626 75% 100%);
}

.flag-sa {
    background:
        linear-gradient(to bottom, transparent 0 64%, #ffffff 64% 72%, transparent 72% 100%),
        #15803d;
}

/* Navigation */
.navbar {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

.logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    margin-left: auto;
}

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

.logo-badge {
    background: var(--gradient-1);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

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

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

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

/* Theme Toggle Button - Modern & Animated */
.theme-toggle-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.theme-toggle-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.theme-toggle-btn:hover::before {
    width: 100px;
    height: 100px;
}

.theme-toggle-btn:hover {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
}

.theme-toggle-btn .theme-icon {
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
}

.theme-toggle-btn:active {
    transform: scale(0.95);
}

/* Dark mode button style */
body.dark-mode .theme-toggle-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

body.dark-mode .theme-toggle-btn:hover {
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.5);
}

body.dark-mode .theme-toggle-btn .theme-icon {
    color: #1f2937;
}

/* Light Mode Styles */
body.light-mode {
    background: #ffffff;
    color: #1e293b;
}

body.light-mode .navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

body.light-mode .hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Theme icon - no pseudo elements needed, JS handles it */

/* Dark Mode Styles - Comprehensive */
body.dark-mode {
    background: #0f172a;
    color: #e2e8f0;
}

body.dark-mode .navbar {
    background: #1e293b;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

body.dark-mode .nav-links a {
    color: #e2e8f0;
}

body.dark-mode .nav-links a:hover {
    color: #a5b4fc;
}

body.dark-mode .hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

body.dark-mode .features,
body.dark-mode .global-reach,
body.dark-mode .how-it-works,
body.dark-mode .industries,
body.dark-mode .pricing,
body.dark-mode .trust,
body.dark-mode .cta {
    background: #0f172a;
}

body.dark-mode .section-subtitle,
body.dark-mode p {
    color: #94a3b8;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4 {
    color: #e2e8f0;
}

body.dark-mode .feature-card,
body.dark-mode .global-card,
body.dark-mode .step,
body.dark-mode .industry-card,
body.dark-mode .pricing-card,
body.dark-mode .trust-item {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

/* Keep pricing text crisp in dark mode on Windows/Chromium */
body.dark-mode .pricing-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.dark-mode .feature-card:hover,
body.dark-mode .global-card:hover,
body.dark-mode .step:hover,
body.dark-mode .industry-card:hover,
body.dark-mode .pricing-card:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(99, 102, 241, 0.3);
}

body.dark-mode .footer {
    background: #1e293b;
    color: #e2e8f0;
}

body.dark-mode .footer a {
    color: #94a3b8;
}

body.dark-mode .footer a:hover {
    color: #e2e8f0;
}

body.dark-mode .btn-outline {
    color: #e2e8f0;
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

body.dark-mode .comparison-table {
    background: rgba(30, 41, 59, 0.6);
    color: #e2e8f0;
}

body.dark-mode .comparison-table th {
    background: rgba(99, 102, 241, 0.1);
    color: #e2e8f0;
}

body.dark-mode .comparison-table td {
    border-color: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline, .btn-plan {
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-primary.large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Pulse animation for CTA buttons */
.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(99, 102, 241, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

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

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-note {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Global Reach Section */
.global-reach {
    padding: 80px 0;
    background: var(--bg-light);
}

.global-reach h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 10px;
}

.global-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.global-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.global-card.highlight {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

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

.global-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.global-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.language-flags {
    font-size: 24px;
    line-height: 1.8;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.how-it-works h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 60px;
}

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

.step {
    text-align: center;
    padding: 30px;
}

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

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.step p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Features */
.features {
    padding: 80px 0;
    background: var(--white);
}

.features h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 10px;
}

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

.feature-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

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

.feature-card.highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-color: var(--primary-color);
}

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

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

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

/* Industries */
.industries {
    padding: 80px 0;
    background: var(--white);
}

.industries h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 10px;
}

.industry-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.industry-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.industry-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.industry-desc {
    color: var(--text-light);
    margin-bottom: 20px;
}

.industry-benefits {
    list-style: none;
}

.industry-benefits li {
    padding: 8px 0;
    color: var(--text-dark);
    font-weight: 500;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: var(--bg-light);
}

.pricing h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 10px;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.toggle-label {
    font-size: 16px;
    font-weight: 600;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.save-badge {
    background: var(--success);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.currency-selector {
    text-align: center;
    margin: 30px 0;
    font-size: 16px;
}

.currency-selector select {
    margin-left: 10px;
    padding: 8px 15px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    background: var(--white);
}

/* Modern Currency Selector */
.currency-selector-modern {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.currency-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #e2e8f0;
}

.currency-emoji {
    font-size: 28px;
    animation: currencyFloat 3s ease-in-out infinite;
}

@keyframes currencyFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.currency-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.currency-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 25px;
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    position: relative;
    overflow: hidden;
}

.currency-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.currency-btn:hover::before {
    opacity: 1;
}

.currency-btn:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.currency-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    transform: translateY(-3px);
}

.currency-btn.active::before {
    opacity: 0;
}

.currency-flag {
    font-size: 32px;
    transition: transform 0.3s ease;
}

/* Türk Lirası özel stili */
.currency-try {
    position: relative;
    display: inline-block;
}

.try-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: 900;
    color: #1e293b;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
    font-family: Arial, sans-serif;
}

body.light-mode .try-symbol {
    color: #1e293b;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.9);
}

body.dark-mode .try-symbol {
    color: #ffffff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}

.currency-btn.active .try-symbol {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.currency-btn:hover .currency-flag {
    transform: scale(1.2) rotate(10deg);
}

.currency-btn.active .currency-flag {
    animation: currencyPulse 2s ease-in-out infinite;
}

@keyframes currencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.currency-code {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #e2e8f0;
    position: relative;
    z-index: 1;
}

.currency-symbol {
    font-size: 20px;
    font-weight: 600;
    color: #a5b4fc;
    position: relative;
    z-index: 1;
}

.currency-btn.active .currency-code,
.currency-btn.active .currency-symbol {
    color: #ffffff;
}

/* Dark Mode Styles for Currency Selector */
body.dark-mode .currency-selector-modern {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .currency-label {
    color: #e2e8f0;
}

body.dark-mode .currency-btn {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .currency-btn:hover {
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

body.dark-mode .currency-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

/* Light Mode Styles for Currency Selector */
body.light-mode .currency-selector-modern {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-mode .currency-label {
    color: #1e293b;
}

body.light-mode .currency-btn {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .currency-btn:hover {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

body.light-mode .currency-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

body.light-mode .currency-code {
    color: #1e293b;
}

body.light-mode .currency-symbol {
    color: #667eea;
}

body.light-mode .currency-btn.active .currency-code,
body.light-mode .currency-btn.active .currency-symbol {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .currency-buttons {
        gap: 10px;
    }
    
    .currency-btn {
        min-width: 80px;
        padding: 15px 20px;
    }
    
    .currency-flag {
        font-size: 28px;
    }
    
    .currency-code {
        font-size: 12px;
    }
    
    .currency-symbol {
        font-size: 18px;
    }
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s;
    border: 2px solid transparent;
}

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

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(99, 102, 241, 0.1),
        transparent
    );
    animation: shimmer 3s infinite;
    pointer-events: none;
    z-index: 1;
}

.pricing-card.featured > * {
    position: relative;
    z-index: 2;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.pricing-card.enterprise {
    border: 3px solid var(--accent-color);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    padding-top: 56px;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.enterprise-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    z-index: 3;
    text-shadow: none;
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.price {
    margin: 20px 0;
}

.amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    font-size: 18px;
    color: var(--text-light);
}

.annual-price {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
}

.annual-total {
    font-weight: 600;
    color: var(--text-dark);
}

.annual-save {
    color: var(--success);
    font-weight: 600;
}

.vat-notice {
    font-size: 13px;
    color: #718096;
    margin: 5px 0 0 0;
    font-weight: 500;
}

/* Turkey-only elements (hidden by default) */
.turkey-only {
    display: none !important;
}

/* Regional Pricing Badge */
.regional-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Turkey Pricing Notice */
.turkey-pricing-notice {
    max-width: 900px;
    margin: 30px auto;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
    border: 2px solid #60a5fa;
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.notice-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.notice-text h4 {
    margin: 0 0 8px 0;
    color: #1e40af;
    font-size: 18px;
    font-weight: 700;
}

.notice-text p {
    margin: 0;
    color: #1e3a8a;
    font-size: 14px;
    line-height: 1.6;
}

/* Dark Mode - Regional Badge */
body.dark-mode .regional-badge {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.8), rgba(5, 150, 105, 0.8));
}

/* Dark Mode - Turkey Notice */
body.dark-mode .turkey-pricing-notice {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.15));
    border-color: rgba(96, 165, 250, 0.4);
}

body.dark-mode .notice-text h4 {
    color: #60a5fa;
}

body.dark-mode .notice-text p {
    color: #93c5fd;
}

/* Responsive - Turkey Notice */
@media (max-width: 768px) {
    .turkey-pricing-notice {
        padding: 15px 20px;
        margin: 20px 15px;
    }
    
    .notice-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .notice-icon {
        font-size: 32px;
    }
    
    .notice-text h4 {
        font-size: 16px;
    }
    
    .notice-text p {
        font-size: 13px;
    }
}

.plan-desc {
    color: var(--text-light);
    margin-bottom: 25px;
}

.plan-feature-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(99, 102, 241, 0.28);
    background: rgba(99, 102, 241, 0.1);
    color: #4f46e5;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 10px 0;
    color: var(--text-dark);
}

.feature-disabled {
    color: var(--text-light);
    opacity: 0.5;
}

.btn-plan {
    width: 100%;
    text-align: center;
    background: var(--bg-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

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

.active-package-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
    z-index: 4;
    white-space: nowrap;
    text-shadow: none;
    filter: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.pricing-card.has-active-package {
    border: 2px solid #22c55e !important;
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.25) !important;
    transform: none !important;
}

.btn-plan.current-package-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
    color: #ffffff !important;
    border-color: #16a34a !important;
    font-weight: 700;
    text-shadow: none;
    filter: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.btn-plan.current-package-btn:hover {
    transform: none;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

.payment-methods {
    margin-top: 60px;
    text-align: center;
}

.payment-methods p {
    font-weight: 600;
    margin-bottom: 15px;
}

.payment-methods-title {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.payment-icons-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.payment-badge {
    background: #f7fafc;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    color: #2d3748;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-security-note {
    font-size: 14px;
    color: #718096;
    margin-bottom: 10px;
}

.pricing-ui-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.pricing-ui-icon-trial {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.pricing-ui-icon-globe {
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.tax-notice {
    font-size: 13px;
    color: #e53e3e;
    font-weight: 600;
    background: #fff5f5;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid #feb2b2;
}

.free-trial-banner {
    max-width: 900px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.trial-banner-content {
    flex: 1;
    min-width: 250px;
}

.trial-banner-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.trial-emoji {
    font-size: 32px;
}

.trial-title {
    color: white;
    margin: 0;
    font-size: 24px;
    text-shadow: none;
    filter: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.trial-description {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    text-shadow: none;
    filter: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.trial-banner-btn {
    background: white;
    color: #059669;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-shadow: none;
    filter: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.trial-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-icons span {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-size: 14px;
}

.payment-highlight {
    margin-top: 20px;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--white);
    padding: 15px 30px;
    border-radius: 8px;
    display: inline-block;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 60px;
}

/* Comparison Table */
.comparison-section {
    margin-top: 80px;
}

.comparison-section h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

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

.comparison-table thead {
    background: var(--primary-color);
    color: var(--white);
}

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

.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.comparison-table .featured-col {
    background: rgba(99, 102, 241, 0.05);
    font-weight: 600;
}

.comparison-table thead .featured-col {
    background: var(--primary-dark);
}

/* Feature Badge */
.feature-badge {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.feature-badge span {
    display: inline-block;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background: var(--white);
}

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

.trust h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.trust > .container > p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 50px;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}

.trust-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.trust-icon {
    font-size: 36px;
}

.trust-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.trust-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-urgency {
    margin-bottom: 20px;
}

.urgency-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-note {
    font-size: 14px;
    margin-top: 20px;
    opacity: 0.9;
}

.social-proof {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.proof-label {
    font-size: 14px;
    opacity: 0.9;
}

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

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

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    color: var(--white);
}

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

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

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

.footer-col a:hover {
    color: var(--white);
}

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

.footer-compliance {
    margin-top: 10px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        gap: 10px;
    }

    .logo {
        gap: 8px;
    }

    .nav-lang-center {
        flex: 0 0 auto;
        transform: translateX(0);
    }

    .logo-lang-dropdown {
        margin-left: 0;
    }

    .logo-lang-trigger {
        gap: 6px;
    }

    .logo-lang-trigger .flag-swatch {
        width: 30px;
        height: 21px;
    }

    .logo-lang-menu {
        left: 50%;
        min-width: 168px;
        padding: 8px;
        gap: 8px;
    }

    .logo-lang-option {
        width: 42px;
        height: 36px;
    }

    .logo-lang-option .flag-swatch {
        width: 28px;
        height: 20px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .steps, .features-grid, .global-features, .industry-cards, .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-toggle {
        flex-wrap: wrap;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
    
    .social-proof {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .proof-number {
        font-size: 32px;
    }
    
    h2 {
        font-size: 32px !important;
    }
    
    .payment-icons {
        gap: 10px;
    }
    
    .payment-highlight {
        font-size: 12px;
        padding: 10px 15px;
    }
}


/* Dark Mode - Additional Text Fixes */
body.dark-mode .hero-subtitle,
body.dark-mode .hero-note,
body.dark-mode .stat-label,
body.dark-mode .stat-number {
    color: #e2e8f0 !important;
}

body.dark-mode .hero-badge span,
body.dark-mode .feature-badge span {
    color: #e2e8f0 !important;
}

body.dark-mode .global-card p,
body.dark-mode .feature-card p,
body.dark-mode .step p,
body.dark-mode .industry-card p {
    color: #cbd5e1 !important;
}

body.dark-mode .industry-benefits li,
body.dark-mode .plan-features li {
    color: #cbd5e1 !important;
}

body.dark-mode .plan-desc,
body.dark-mode .pricing-card p {
    color: #94a3b8 !important;
}

body.dark-mode .plan-feature-count {
    background: rgba(129, 140, 248, 0.2);
    border-color: rgba(129, 140, 248, 0.45);
    color: #c7d2fe;
}

body.dark-mode .trust-item h3,
body.dark-mode .trust-item p {
    color: #e2e8f0 !important;
}

body.dark-mode .cta h2,
body.dark-mode .cta p {
    color: #ffffff !important;
}

body.dark-mode .footer-col h4 {
    color: #e2e8f0 !important;
}

body.dark-mode .footer-col p,
body.dark-mode .footer-col li {
    color: #94a3b8 !important;
}

body.dark-mode .footer-bottom p {
    color: #94a3b8 !important;
}

body.dark-mode .language-flags {
    opacity: 0.9;
}

body.dark-mode .feature-icon,
body.dark-mode .global-icon {
    filter: brightness(1.2);
}

/* Dark mode for specific sections */
body.dark-mode .hero-content h1 {
    color: #ffffff !important;
}

body.dark-mode .section-subtitle {
    color: #cbd5e1 !important;
}

body.dark-mode .feature-card h3,
body.dark-mode .global-card h3,
body.dark-mode .step h3,
body.dark-mode .industry-card h3 {
    color: #e2e8f0 !important;
}

body.dark-mode .pricing-card h3 {
    color: #e2e8f0 !important;
}

body.dark-mode .price .amount {
    color: #ffffff !important;
}

body.dark-mode .price .period {
    color: #cbd5e1 !important;
}

body.dark-mode .annual-price {
    color: #94a3b8 !important;
}

body.dark-mode .feature-disabled {
    color: #64748b !important;
}

body.dark-mode .badge {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
}

body.dark-mode .enterprise-badge {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

body.dark-mode .save-badge {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

body.dark-mode .logo-text {
    color: #e2e8f0 !important;
}

body.dark-mode .logo-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff !important;
}

body.dark-mode .btn-secondary {
    color: #e2e8f0 !important;
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

body.dark-mode .step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff !important;
}

body.dark-mode .tag {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
}

body.dark-mode .toggle-label {
    color: #cbd5e1 !important;
}

body.dark-mode .currency-code {
    color: #e2e8f0 !important;
}

body.dark-mode .currency-symbol {
    color: #a5b4fc !important;
}


/* Dark Mode - Payment Methods Fix */
body.dark-mode .payment-methods p {
    color: #e2e8f0 !important;
}

body.dark-mode .payment-icons span {
    background: rgba(30, 41, 59, 0.6) !important;
    color: #e2e8f0 !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .payment-highlight {
    background: rgba(30, 41, 59, 0.6) !important;
    color: #a5b4fc !important;
    border: 1px solid rgba(99, 102, 241, 0.3);
}


/* Dark Mode - Navbar Complete Fix */
body.dark-mode .navbar {
    background: rgba(30, 41, 59, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .logo-text {
    color: #e2e8f0 !important;
}

body.dark-mode .logo-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff !important;
}

body.dark-mode .nav-links a {
    color: #cbd5e1 !important;
}

body.dark-mode .nav-links a:hover {
    color: #a5b4fc !important;
}

body.dark-mode .btn-secondary {
    background: transparent;
    color: #e2e8f0 !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

body.dark-mode .btn-secondary:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: #667eea;
    color: #a5b4fc !important;
}

body.dark-mode .profile-btn-index {
    background: rgba(99, 102, 241, 0.2);
    color: #e2e8f0 !important;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

body.dark-mode .dropdown-menu-index {
    background: rgba(15, 23, 42, 0.98) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .dropdown-menu-index a {
    color: #e2e8f0 !important;
}

body.dark-mode .dropdown-menu-index a:hover {
    background: rgba(99, 102, 241, 0.2) !important;
}

/* Light Mode - Navbar */
body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-mode .logo-text {
    color: #1e3a8a !important;
}

body.light-mode .nav-links a {
    color: #0f172a !important;
}

body.light-mode .nav-links a:hover {
    color: #667eea !important;
}


/* ===== LIGHT MODE - COMPLETE FIX ===== */

/* Light Mode - Body & Background */
body.light-mode {
    background: #ffffff !important;
    color: #0f172a !important;
}

/* Light Mode - Sections */
body.light-mode .hero,
body.light-mode .features,
body.light-mode .global-reach,
body.light-mode .how-it-works,
body.light-mode .industries,
body.light-mode .pricing,
body.light-mode .trust,
body.light-mode .cta {
    background: #ffffff !important;
}

body.light-mode .hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* Light Mode - Text Colors */
body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4 {
    color: #0f172a !important;
}

body.light-mode p {
    color: #475569 !important;
}

body.light-mode .section-subtitle {
    color: #64748b !important;
}

body.light-mode .hero-content h1 {
    color: #ffffff !important;
}

body.light-mode .hero-subtitle,
body.light-mode .hero-note {
    color: #f1f5f9 !important;
}

/* Light Mode - Cards */
body.light-mode .feature-card,
body.light-mode .global-card,
body.light-mode .step,
body.light-mode .industry-card,
body.light-mode .pricing-card,
body.light-mode .trust-item {
    background: #ffffff !important;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

body.light-mode .feature-card:hover,
body.light-mode .global-card:hover,
body.light-mode .step:hover,
body.light-mode .industry-card:hover,
body.light-mode .pricing-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

body.light-mode .feature-card h3,
body.light-mode .global-card h3,
body.light-mode .step h3,
body.light-mode .industry-card h3,
body.light-mode .pricing-card h3 {
    color: #0f172a !important;
}

body.light-mode .feature-card p,
body.light-mode .global-card p,
body.light-mode .step p,
body.light-mode .industry-card p {
    color: #475569 !important;
}

/* Light Mode - Stats */
body.light-mode .stat-number {
    color: #ffffff !important;
}

body.light-mode .stat-label {
    color: #f1f5f9 !important;
}

/* Light Mode - Pricing */
body.light-mode .pricing-card.featured {
    border: 2px solid #667eea;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
}

body.light-mode .price .amount {
    color: #0f172a !important;
}

body.light-mode .price .period {
    color: #64748b !important;
}

body.light-mode .plan-desc {
    color: #64748b !important;
}

body.light-mode .plan-feature-count {
    background: rgba(79, 70, 229, 0.08);
    border-color: rgba(79, 70, 229, 0.25);
    color: #4338ca;
}

body.light-mode .plan-features li {
    color: #475569 !important;
}

body.light-mode .feature-disabled {
    color: #94a3b8 !important;
}

/* Light Mode - Footer */
body.light-mode .footer {
    background: #f8fafc !important;
    color: #0f172a !important;
    border-top: 1px solid #e2e8f0;
}

body.light-mode .footer-col h4 {
    color: #0f172a !important;
}

body.light-mode .footer-col p,
body.light-mode .footer-col li,
body.light-mode .footer a {
    color: #64748b !important;
}

body.light-mode .footer a:hover {
    color: #667eea !important;
}

body.light-mode .footer-bottom p {
    color: #94a3b8 !important;
}

/* Light Mode - Buttons */
body.light-mode .btn-outline {
    color: #0f172a !important;
    border-color: #e2e8f0;
}

body.light-mode .btn-outline:hover {
    background: #667eea;
    color: #ffffff !important;
    border-color: #667eea;
}

/* Light Mode - Payment Methods */
body.light-mode .payment-methods p {
    color: #0f172a !important;
}

body.light-mode .payment-icons span {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #e2e8f0;
}

body.light-mode .payment-highlight {
    background: #ffffff !important;
    color: #667eea !important;
    border: 1px solid #e2e8f0;
}

/* Light Mode - Currency Selector */
body.light-mode .currency-selector-modern {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-mode .currency-label {
    color: #0f172a !important;
}

body.light-mode .currency-btn {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #e2e8f0;
}

body.light-mode .currency-btn:hover {
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

body.light-mode .currency-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
    border-color: #667eea;
}

body.light-mode .currency-code {
    color: #0f172a !important;
}

body.light-mode .currency-symbol {
    color: #667eea !important;
}

body.light-mode .currency-btn.active .currency-code,
body.light-mode .currency-btn.active .currency-symbol {
    color: #ffffff !important;
}

/* Light Mode - Badges */
body.light-mode .badge {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

body.light-mode .save-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #10b981;
}

body.light-mode .enterprise-badge {
    background: rgba(251, 191, 36, 0.1);
    color: #f59e0b;
}

/* Light Mode - Step Numbers */
body.light-mode .step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff !important;
}

/* Light Mode - Industry Benefits */
body.light-mode .industry-benefits li {
    color: #475569 !important;
}

/* Light Mode - Trust Section */
body.light-mode .trust-item h3,
body.light-mode .trust-item p {
    color: #0f172a !important;
}

/* Light Mode - CTA Section */
body.light-mode .cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

body.light-mode .cta h2,
body.light-mode .cta p {
    color: #ffffff !important;
}

/* Light Mode - Comparison Table */
body.light-mode .comparison-table {
    background: #ffffff !important;
    border: 1px solid #e2e8f0;
}

body.light-mode .comparison-table th {
    background: #f8fafc !important;
    color: #0f172a !important;
}

body.light-mode .comparison-table td {
    color: #475569 !important;
    border-color: #e2e8f0;
}

/* Light Mode - Toggle */
body.light-mode .toggle-label {
    color: #0f172a !important;
}

body.light-mode .slider {
    background-color: #cbd5e1;
}


/* Light Mode - Dropdown Menu Fix */
body.light-mode .dropdown-menu-index {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

body.light-mode .dropdown-menu-index a {
    color: #0f172a !important;
}

body.light-mode .dropdown-menu-index a:hover {
    background: rgba(102, 126, 234, 0.1) !important;
}

body.light-mode .dropdown-menu-index #logoutBtnIndex {
    color: #ef4444 !important;
}

body.light-mode .dropdown-menu-index #logoutBtnIndex:hover {
    background: rgba(239, 68, 68, 0.1) !important;
}

body.light-mode .profile-btn-index {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 2px solid #e2e8f0 !important;
}

body.light-mode .profile-btn-index:hover {
    border-color: #667eea !important;
    background: rgba(102, 126, 234, 0.05) !important;
}


/* Dark Mode - Payment Methods & Tax Notice */
body.dark-mode .payment-methods-title {
    color: #e2e8f0 !important;
}

body.dark-mode .pricing-ui-icon-globe {
    background: rgba(148, 163, 184, 0.16) !important;
    color: #cbd5e1 !important;
    border-color: rgba(148, 163, 184, 0.28) !important;
}

body.dark-mode .payment-badge {
    background: rgba(30, 41, 59, 0.8) !important;
    color: #e2e8f0 !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .payment-security-note {
    color: #94a3b8 !important;
}

body.dark-mode .tax-notice {
    background: rgba(220, 38, 38, 0.1) !important;
    color: #fca5a5 !important;
    border-color: rgba(220, 38, 38, 0.3) !important;
}

/* Dark Mode - Free Trial Banner */
body.dark-mode .free-trial-banner {
    /* Banner yeşil gradient'i dark mode'da da aynı kalır */
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2) !important;
}

body.dark-mode .trial-banner-btn {
    /* Beyaz buton dark mode'da da aynı kalır (kontrast için) */
}


/* Dark Mode - Annual Pricing Text */
body.dark-mode .annual-price {
    color: #94a3b8 !important;
}

body.dark-mode .annual-price span {
    color: #94a3b8 !important;
}

body.dark-mode .annual-total {
    color: #e2e8f0 !important;
}

body.dark-mode .annual-save {
    color: #10b981 !important;
}

body.dark-mode .vat-notice {
    color: #94a3b8 !important;
}
