:root {
    /* Główna paleta marki EuroApp */
    --ea-primary: #2563EB;
    --ea-primary-hover: #1D4ED8;
    --ea-secondary: #0F172A;
    --ea-tertiary: #EFF6FF;
    
    /* Aplikacje w ekosystemie */
    --ea-app-contacts: #0D9488;
    --ea-app-notes: #D97706;
    --ea-app-tasks: #059669;
    --ea-app-mail: #E11D48;
    --ea-app-calendar: #7C3AED;
    --ea-app-drive: #0284C7;
    
    /* Typografia */
    --ea-font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    font-family: var(--ea-font-main);
}

body {
    scroll-behavior: smooth;
    color: var(--ea-secondary);
    font-family: var(--ea-font-main);
}

/* NAVBAR - MASTER HEADER */
.navbar {
    padding: 0.75rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    color: var(--ea-secondary) !important;
    font-weight: 800;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.navbar-brand i {
    font-size: 1.75rem;
    color: var(--ea-primary) !important;
}

.navbar-logo {
    height: auto;
    max-height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

/* Navigation menu center alignment */
.navbar-nav {
    flex-direction: row !important;
}

.nav-link {
    font-weight: 500;
    color: var(--ea-secondary) !important;
    padding: 0.5rem 0.75rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--ea-primary) !important;
}

/* Sticky navbar shadow on scroll */
.navbar.sticky-top {
    box-shadow: none;
    transition: box-shadow 0.3s ease;
}

.navbar.sticky-top.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Theme icon colors */
.theme-icon {
    color: var(--ea-secondary) !important;
}

[data-theme="dark"] .theme-icon {
    color: #F1F5F9 !important;
}

/* Utility Classes */
.bg-ea-primary {
    background-color: var(--ea-primary) !important;
}

.bg-ea-tertiary {
    background-color: var(--ea-tertiary) !important;
}

.text-ea-primary {
    color: var(--ea-primary) !important;
}

.text-ea-secondary {
    color: var(--ea-secondary) !important;
}

.btn-ea-primary {
    background-color: var(--ea-primary);
    border-color: var(--ea-primary);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-ea-primary:hover,
.btn-ea-primary:focus,
.btn-ea-primary:active {
    background-color: var(--ea-primary-hover);
    border-color: var(--ea-primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.border-ea-secondary {
    border-color: var(--ea-secondary) !important;
}

/* HERO SECTION */
.hero-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: var(--ea-tertiary);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--ea-secondary);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #64748b;
}

.hero-image-placeholder {
    aspect-ratio: 1;
    border-radius: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.placeholder-content {
    text-align: center;
}

.btn-primary {
    background-color: var(--ea-primary);
    border-color: var(--ea-primary);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--ea-primary-hover);
    border-color: var(--ea-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-outline-primary {
    color: var(--ea-primary);
    border-color: var(--ea-primary);
    font-weight: 600;
}

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

.btn-outline-secondary {
    color: var(--ea-secondary);
    border-color: var(--ea-secondary);
    font-weight: 600;
}

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

/* APPLICATIONS SECTION */
.apps-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.app-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
    border-color: #cbd5e1;
}

.icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.app-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ea-secondary);
    margin-bottom: 0.75rem;
}

.app-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.badge-coming-soon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #f97316;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .icon-box {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .app-card h5 {
        font-size: 1.1rem;
    }

    .app-card p {
        font-size: 0.9rem;
    }
}

/* FEATURES SECTION */
.features-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ea-secondary);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--ea-primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--ea-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--ea-primary);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ea-secondary);
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* PRICING SECTION */
.pricing-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: var(--ea-tertiary);
}

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card-featured {
    border: 2px solid var(--ea-primary);
    background: white;
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.badge-featured {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--ea-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ea-secondary);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1rem;
    color: #64748b;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--ea-primary);
}

.period {
    font-size: 1rem;
    color: #64748b;
}

.pricing-description {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.btn-block {
    width: 100%;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.pricing-features i {
    font-size: 1.25rem;
}

/* SECURITY SECTION */
.security-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: linear-gradient(135deg, #faf8f3 0%, #f5f1eb 100%);
}

.security-items {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.security-item {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: white;
    border-radius: 1.2rem;
    border: 1px solid #e8dfd5;
    transition: all 0.4s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.security-item:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #daa520;
}

.security-visual {
    position: relative;
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-icon-box {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.security-item:hover .security-icon-box {
    transform: scale(1.08) rotateY(5deg);
    box-shadow: 0 12px 36px rgba(245, 158, 11, 0.35);
}

.security-accent {
    position: absolute;
    opacity: 0.15;
    border-radius: 1rem;
    z-index: 1;
    transition: all 0.4s ease;
}

.accent-1 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    animation: float-accent 3s ease-in-out infinite;
}

.accent-2 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    animation: float-accent 3s ease-in-out 0.5s infinite;
}

.accent-3 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    animation: float-accent 3s ease-in-out 1s infinite;
}

@keyframes float-accent {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.1) translateY(-5px);
    }
}

.security-item:hover .security-accent {
    opacity: 0.3;
}

.security-content {
    flex: 1;
    padding-top: 0.5rem;
}

.security-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.security-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* PRIVACY SECTION */
.privacy-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #f8fafc;
}

.privacy-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    height: 100%;
}

.privacy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #059669;
}

.privacy-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3.5rem;
    color: white;
    box-shadow: 0 0 30px rgba(5, 150, 105, 0.4), 0 10px 30px rgba(5, 150, 105, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.privacy-card:hover .privacy-icon {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(5, 150, 105, 0.6), 0 15px 40px rgba(5, 150, 105, 0.3);
}

.privacy-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.2) 0%, rgba(4, 120, 87, 0.1) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-privacy 2s ease-in-out infinite;
}

@keyframes pulse-privacy {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(5, 150, 105, 0);
    }
}

.privacy-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.privacy-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* FOOTER */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-top: 1px solid #334155;
    color: #e2e8f0;
}

.footer-brand {
    padding-right: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #60a5fa !important;
    text-decoration: none !important;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    color: #93c5fd !important;
    transform: translateY(-2px);
}

.footer-logo i {
    font-size: 1.75rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 0.5rem;
    color: #60a5fa;
    text-decoration: none;
    border: 1px solid rgba(96, 165, 250, 0.2);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #60a5fa;
    color: white;
    transform: translateY(-3px);
    border-color: #60a5fa;
}

.footer-column {
    padding-left: 1rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa 0%, transparent 100%);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #60a5fa;
    transform: translateX(4px);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #334155 50%, transparent 100%);
    margin-bottom: 1.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-copyright span {
    color: #60a5fa;
    font-weight: 600;
}

.footer-location {
    font-size: 0.9rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-location i {
    font-size: 1rem;
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
    .footer-brand,
    .footer-column {
        padding: 0 !important;
    }

    .footer-column {
        margin-top: 1rem;
    }

    .footer-title::after {
        display: none;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .footer-social {
        margin-top: 1rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

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

    .d-flex.gap-3 {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    .security-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .security-visual {
        margin: 0 auto;
    }

    .security-item:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .btn-primary,
    .btn-outline-primary,
    .btn-outline-secondary {
        font-size: 0.95rem;
        padding: 0.65rem 1.2rem;
    }

    .pricing-amount {
        flex-direction: column;
        gap: 0.25rem;
    }

    .price {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.pricing-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}
/* ============================================
   DARK MODE SUPPORT
   ============================================ */
[data-theme="dark"] {
    --ea-secondary: #F8FAFC;
    --ea-tertiary: #1E293B;
    background-color: #0F172A;
    color: var(--ea-secondary);
}

/* Body & Text */
[data-theme="dark"] body {
    background-color: #0F172A;
    color: #F1F5F9;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: #F1F5F9 !important;
}

[data-theme="dark"] p,
[data-theme="dark"] span,
[data-theme="dark"] a {
    color: #F1F5F9;
}

/* Headings & Titles */
[data-theme="dark"] .hero-title {
    color: #F1F5F9 !important;
}

[data-theme="dark"] .section-title {
    color: #F1F5F9 !important;
}

[data-theme="dark"] .section-subtitle,
[data-theme="dark"] .text-muted {
    color: #CBD5E1 !important;
}

/* Sidebar & Navbar */
[data-theme="dark"] .navbar {
    background-color: #0F172A !important;
    border-color: #1E293B !important;
}

[data-theme="dark"] .navbar.sticky-top.scrolled {
    background-color: #0F172A !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .nav-link {
    color: #F1F5F9 !important;
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
    color: var(--ea-primary) !important;
}

/* Buttons */
[data-theme="dark"] .btn-light {
    background-color: #334155 !important;
    color: #F1F5F9 !important;
    border-color: #475569 !important;
}

[data-theme="dark"] .btn-light:hover {
    background-color: #475569 !important;
    color: #F1F5F9 !important;
}

[data-theme="dark"] .btn-outline-secondary {
    color: #F1F5F9;
    border-color: #475569;
}

[data-theme="dark"] .btn-outline-secondary:hover {
    background-color: #475569;
    border-color: #475569;
    color: #F1F5F9;
}

[data-theme="dark"] .btn-ea-primary {
    background-color: var(--ea-primary);
    border-color: var(--ea-primary);
    color: #F1F5F9 !important;
}

[data-theme="dark"] .btn-ea-primary:hover {
    background-color: #1D4ED8;
    border-color: #1D4ED8;
}

[data-theme="dark"] .btn-outline-primary {
    color: var(--ea-primary);
    border-color: var(--ea-primary);
}

[data-theme="dark"] .btn-outline-primary:hover {
    background-color: var(--ea-primary);
    color: white;
}

/* Hero Section */
[data-theme="dark"] .hero-section {
    background-color: #0F172A !important;
}

[data-theme="dark"] .hero-subtitle {
    color: #CBD5E1 !important;
}

[data-theme="dark"] .hero-image-placeholder {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%) !important;
    border-color: #334155 !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .placeholder-content {
    color: #474155;
}

/* Features Section */
[data-theme="dark"] .features-section {
    background-color: #0F172A !important;
}

[data-theme="dark"] .feature-card {
    background-color: #1E293B !important;
    border-color: #334155 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .feature-card:hover {
    background-color: #1E293B !important;
    border-color: var(--ea-primary) !important;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.2) !important;
}

[data-theme="dark"] .feature-icon {
    background-color: rgba(37, 99, 235, 0.15) !important;
    color: #60A5FA !important;
}

[data-theme="dark"] .feature-title {
    color: #F1F5F9 !important;
}

[data-theme="dark"] .feature-text {
    color: #CBD5E1 !important;
}

/* Applications Section */
[data-theme="dark"] .apps-section {
    background-color: #0F172A !important;
}

[data-theme="dark"] .app-card {
    background-color: #1E293B !important;
    border-color: #334155 !important;
    color: #F1F5F9 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .app-card:hover {
    border-color: var(--ea-primary) !important;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2) !important;
    background-color: #1E293B !important;
}

[data-theme="dark"] .app-card h5 {
    color: #F1F5F9 !important;
}

[data-theme="dark"] .app-card p {
    color: #CBD5E1 !important;
}

[data-theme="dark"] .badge-coming-soon {
    background-color: #D97706 !important;
}

/* Pricing Section */
[data-theme="dark"] .pricing-section {
    background-color: #0F172A !important;
}

[data-theme="dark"] .pricing-card {
    background-color: #1E293B !important;
    border-color: #334155 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .pricing-card:hover {
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.2) !important;
    border-color: #334155 !important;
}

[data-theme="dark"] .pricing-card-featured {
    border-color: var(--ea-primary) !important;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3) !important;
}

[data-theme="dark"] .pricing-name {
    color: #F1F5F9 !important;
}

[data-theme="dark"] .pricing-amount,
[data-theme="dark"] .currency,
[data-theme="dark"] .period {
    color: #CBD5E1 !important;
}

[data-theme="dark"] .price {
    color: #60A5FA !important;
}

[data-theme="dark"] .pricing-description {
    color: #CBD5E1 !important;
}

[data-theme="dark"] .pricing-features li {
    border-color: #334155 !important;
    color: #CBD5E1 !important;
}

[data-theme="dark"] .pricing-features i {
    color: #059669 !important;
}

/* Security Section */
[data-theme="dark"] .security-section {
    background-color: #0F172A !important;
    background-image: none !important;
}

[data-theme="dark"] .security-item {
    background-color: #1E293B !important;
    border-color: #334155 !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .security-item:hover {
    border-color: #F59E0B !important;
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.15) !important;
    transform: translateX(8px) !important;
    background-color: #1E293B !important;
}

[data-theme="dark"] .security-icon-box {
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%) !important;
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.3) !important;
    color: white !important;
}

[data-theme="dark"] .security-item:hover .security-icon-box {
    box-shadow: 0 12px 36px rgba(217, 119, 6, 0.4) !important;
}

[data-theme="dark"] .security-title {
    color: #F1F5F9 !important;
    background-color: transparent !important;
}

[data-theme="dark"] .security-text {
    color: #CBD5E1 !important;
    background-color: transparent !important;
}

[data-theme="dark"] .security-content {
    background-color: transparent !important;
}

/* Additional security section fixes for better contrast */
[data-theme="dark"] .security-item h3,
[data-theme="dark"] .security-item h4,
[data-theme="dark"] .security-item h5,
[data-theme="dark"] .security-item h6,
[data-theme="dark"] .security-item strong {
    color: #F1F5F9 !important;
    background-color: transparent !important;
}

[data-theme="dark"] .security-item p,
[data-theme="dark"] .security-item span {
    color: #CBD5E1 !important;
    background-color: transparent !important;
}

[data-theme="dark"] .security-accent {
    background-color: rgba(217, 119, 6, 0.1) !important;
}

/* Privacy Section */
[data-theme="dark"] .privacy-section {
    background-color: #0F172A !important;
}

[data-theme="dark"] .privacy-card {
    background-color: #1E293B !important;
    border-color: #334155 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .privacy-card:hover {
    border-color: #059669 !important;
    box-shadow: 0 12px 24px rgba(5, 150, 105, 0.2) !important;
}

[data-theme="dark"] .privacy-icon {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    box-shadow: 0 0 30px rgba(5, 150, 105, 0.3) !important;
}

[data-theme="dark"] .privacy-card:hover .privacy-icon {
    box-shadow: 0 0 50px rgba(5, 150, 105, 0.5) !important;
}

[data-theme="dark"] .privacy-title {
    color: #F1F5F9 !important;
}

[data-theme="dark"] .privacy-text {
    color: #CBD5E1 !important;
}

/* Dropdown Menu */
[data-theme="dark"] .dropdown-menu {
    background-color: #1E293B !important;
    border-color: #334155 !important;
}

[data-theme="dark"] .dropdown-item {
    color: #F1F5F9 !important;
}

[data-theme="dark"] .dropdown-item:hover,
[data-theme="dark"] .dropdown-item.active {
    background-color: #334155 !important;
    color: var(--ea-primary) !important;
}

/* Links & Borders */
[data-theme="dark"] .border-bottom,
[data-theme="dark"] .border,
[data-theme="dark"] .shadow-sm {
    border-color: #334155 !important;
}

[data-theme="dark"] a {
    color: #60A5FA;
}

[data-theme="dark"] a:hover {
    color: #93C5FD;
}

/* Footer */
[data-theme="dark"] .footer {
    background: linear-gradient(135deg, #0F172A 0%, #0F172A 100%) !important;
    border-color: #334155 !important;
}

[data-theme="dark"] .footer-title::after {
    background: linear-gradient(90deg, #60a5fa 0%, transparent 100%) !important;
}

[data-theme="dark"] .footer-divider {
    background: linear-gradient(90deg, transparent 0%, #334155 50%, transparent 100%) !important;
}

/* Scrollbar */
[data-theme="dark"] ::-webkit-scrollbar {
    width: 12px;
}

[data-theme="dark"] ::-webkit-scrollbar-track {
    background: #0F172A;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 6px;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Smooth transition dla zmian motywu */
*,
*::before,
*::after {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* Hover effect na linkach menu */
.hover-link {
    position: relative;
    transition: color 0.3s ease;
}

.hover-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ea-primary);
    transition: width 0.3s ease;
}

.hover-link:hover::after {
    width: 100%;
}

/* Bootstrap color overrides for dark mode */
[data-theme="dark"] .bg-white {
    background-color: #1E293B !important;
}

[data-theme="dark"] .text-dark {
    color: #F1F5F9 !important;
}

[data-theme="dark"] .text-black {
    color: #F1F5F9 !important;
}

[data-theme="dark"] .text-body {
    color: #F1F5F9 !important;
}

/* Cards and shadows */
[data-theme="dark"] .card {
    background-color: #1E293B !important;
    border-color: #334155 !important;
}

[data-theme="dark"] .shadow,
[data-theme="dark"] .shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .vr {
    border-color: #475569 !important;
}

/* Badges */
[data-theme="dark"] .badge {
    background-color: var(--ea-primary) !important;
    color: white !important;
}

/* Hover state for links */
[data-theme="dark"] .hover-link::after {
    background: #60A5FA;
}

/* Icon boxes */
[data-theme="dark"] .icon-box {
    background-color: rgba(96, 165, 250, 0.15) !important;
    color: #60A5FA !important;
}