:root {
    --bg-color: #050505;
    --bg-color-alt: #0a0a0c;
    --text-primary: #e0e0e0;
    --text-secondary: #88888a;
    --accent-color: #6366f1; /* Vibrant Indigo */
    --accent-glow: rgba(99, 102, 241, 0.4);
    --border-color: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(20, 20, 25, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: white;
}

.logo-icon {
    color: var(--accent-color);
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    background: var(--accent-color);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary.glow {
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px var(--accent-glow);
    background: #6c7cd0;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    z-index: 10;
    cursor: pointer;
}

.scroll-down:hover {
    color: white;
    transform: translateX(-50%) translateY(2px);
}

.scroll-down i {
    width: 18px;
    height: 18px;
    animation: scrollDownBounce 2s infinite ease-in-out;
}

@keyframes scrollDownBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(6px);
        opacity: 1;
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(92, 107, 192, 0.1);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(92, 107, 192, 0.2);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 16px;
    width: 350px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    font-family: monospace;
    font-size: 0.9rem;
    color: #a0a0a0;
}

.code-line {
    margin-bottom: 0.8rem;
}
.code-line span {
    color: var(--accent-color);
}
.code-line .success {
    color: #4ade80;
}

.glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    z-index: 1;
}

/* Sekcja Bezpieczeństwa (Trust Bar) */
.trust-bar {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 2rem auto;
    position: relative;
    z-index: 10;
}

.trust-badge {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.15);
}

.trust-badge i {
    color: #4ade80; /* Safe green */
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.trust-badge h4 {
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.trust-badge p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Services */
.services {
    padding: 6rem 2rem;
    background: var(--bg-color-alt);
    border-radius: 40px;
    margin: 2rem auto;
}

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

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #a2b2fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(92, 107, 192, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
    color: var(--accent-color);
    width: 32px;
    height: 32px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 6rem 2rem;
}

.about-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-content {
    flex: 1.5;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.feature-item i {
    color: var(--accent-color);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-item h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.about-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-color-alt);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(92, 107, 192, 0.2);
    transform: translateY(-3px);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
        gap: 3rem;
    }
}

/* Shop Section */
.shop {
    padding: 6rem 2rem;
    background: var(--bg-color-alt);
    border-radius: 40px;
    margin: 2rem auto;
}

.shop-filters {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) transparent;
}

.shop-filters::-webkit-scrollbar {
    height: 4px;
}

.shop-filters::-webkit-scrollbar-track {
    background: transparent;
}

.shop-filters::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

.scroll-hint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    opacity: 0.8;
}

.scroll-hint i {
    width: 14px;
    height: 14px;
    animation: scrollPulse 1.5s infinite ease-in-out;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.15); }
}

@media (min-width: 900px) {
    .shop-filters {
        justify-content: center;
        overflow-x: visible;
        padding-bottom: 0;
    }
    .scroll-hint {
        display: none;
    }
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-glow);
}

.shop-card.hidden {
    display: none !important;
}

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

.shop-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.shop-card.featured {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(92, 107, 192, 0.1);
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.shop-card.featured:hover {
    box-shadow: 0 15px 35px rgba(92, 107, 192, 0.2);
}

.shop-badge {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.shop-card.featured .shop-badge {
    background: var(--accent-color);
    color: white;
}

.shop-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: white;
}

.shop-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    min-height: 50px;
}

.shop-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
}

.shop-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.shop-features {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
}

.shop-features li {
    font-size: 0.95rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shop-features li i {
    color: var(--accent-color);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.shop-buy-btn {
    width: 100%;
}

/* Duration Selector */
.duration-selector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.25rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.duration-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.duration-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.duration-btn.active {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 2px 8px var(--accent-glow);
}

/* Contact */
.contact {
    padding: 6rem 2rem;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
}

.method i {
    color: var(--accent-color);
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
}

.btn-primary[type="submit"] {
    width: 100%;
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    min-height: 20px;
}

.form-status.success { color: #4ade80; }
.form-status.error { color: #f87171; }

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        padding-bottom: 6rem;
    }
    
    .hero-content {
        margin-bottom: 4rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .glass-panel {
        flex-direction: column;
        padding: 2rem;
    }

    .trust-bar {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}
