/* === FUTURISTIC DESIGN === */

/* === IMPORT CZCIONEK === */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Rajdhani:wght@400;600&display=swap');

/* === ZMIENNE KOLORÓW === */
:root {
    --bg-dark: #0a0a1a;
    --bg-medium: #1a1a2e;
    --text-light: #e0e0e0;
    --accent: #00ffff;
    --accent-dark: #0abfbf;
}

/* === PODSTAWOWE STYLE I RESET === */
body {
    font-family: 'Rajdhani', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
}
h1, h2, h3, h4 { font-family: 'Orbitron', sans-serif; color: #fff; margin-top: 0; text-transform: uppercase; }
a { text-decoration: none; color: var(--accent); transition: color 0.3s; }
a:hover { color: #fff; }
.container { width: 90%; max-width: 1200px; margin: auto; }
main { padding-top: 70px; }

/* === NAWIGACJA === */
.navbar { background: rgba(10, 10, 26, 0.8); backdrop-filter: blur(10px); padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(0, 255, 255, 0.2); position: fixed; width: 100%; top: 0; z-index: 1000; box-sizing: border-box; }
.navbar .logo a { font-family: 'Orbitron', sans-serif; font-weight: bold; font-size: 1.5rem; color: #fff; letter-spacing: 2px; }
.nav-links { list-style: none; display: flex; margin: 0; padding: 0; }
.nav-links li { padding: 0 1.5rem; }
.nav-links a { color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.hamburger { display: none; }

/* === HERO SECTION === */
.hero-section {
    position: relative; text-align: center; padding: 8rem 1rem;
    background: url('https://images.unsplash.com/photo-1534723452862-4c874018d66d?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(10, 10, 26, 0.8), rgba(10, 10, 26, 1)); }
.hero-content { position: relative; z-index: 2; }
.hero-section h1 { font-size: 3.5rem; text-shadow: 0 0 15px var(--accent); margin-bottom: 1rem; }

/* === PRZYCISKI === */
.cta-button {
    background: transparent; color: var(--accent); border: 2px solid var(--accent); padding: 0.8rem 2rem; border-radius: 5px; font-family: 'Orbitron', sans-serif; font-size: 1rem;
    cursor: pointer; transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.cta-button:hover { background-color: var(--accent); color: var(--bg-dark); box-shadow: 0 0 20px var(--accent); }

/* === SEKCJE === */
.services-section, .tech-section, .clients-section, .content-section { padding: 5rem 0; text-align: center; }
.content-section { text-align: left; }
.tech-section { background: var(--bg-medium); }
section h2 { font-size: 2.5rem; margin-bottom: 3rem; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card { background: var(--bg-medium); padding: 2.5rem 2rem; border: 1px solid rgba(0, 255, 255, 0.2); border-radius: 8px; transition: transform 0.3s, border-color 0.3s; }
.service-card:hover { transform: translateY(-10px); border-color: var(--accent); }
.service-card i { font-size: 3rem; color: var(--accent); margin-bottom: 1rem; text-shadow: 0 0 10px var(--accent); }

/* === FUTURISTIC DESIGN === */
/* ... (wszystkie poprzednie style do tego miejsca pozostają bez zmian) ... */

/* ... (wszystkie poprzednie style do tego miejsca pozostają bez zmian) ... */

/* === SEKCJE TECHNOLOGII I KLIENTÓW (Zaktualizowane) === */
.tech-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.tech-item span { display: inline-block; padding: 0.5rem 1.5rem; background: var(--bg-dark); border: 1px solid rgba(0, 255, 255, 0.3); border-radius: 20px; font-weight: 600; }

.section-subtitle {
    max-width: 700px;
    margin: -2rem auto 3rem auto;
    color: #a0a0c0;
    font-size: 1.1rem;
}

.clients-grid {
    display: flex;
    justify-content: center; /* Lepsze ułożenie przy 5 elementach */
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Nowy styl dla logo jako tekst */
.brand-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    padding: 1rem 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block; /* Ważne dla linków */
}

.brand-logo:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

/* Kolorystyka brandowa */
.brand-wapro {
    background: linear-gradient(90deg, #ed1c24 30%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: none; /* Cień nie działa z gradientem, usuwamy */
}
.brand-wapro:hover { border-color: #ed1c24; }

.brand-insert {
    color: #007bff; /* Nowy, niebieski kolor */
    text-shadow: 0 0 10px #007bff;
}
.brand-insert:hover { border-color: #007bff; }

.brand-comarch {
    color: #e30613; /* Oficjalna czerwień Comarch */
    text-shadow: 0 0 10px #e30613;
}
.brand-comarch:hover { border-color: #e30613; }

.brand-posnet {
    color: #f37021;
    text-shadow: 0 0 10px #f37021;
}
.brand-posnet:hover { border-color: #f37021; }

.brand-paytel {
    color: #8dc63f;
    text-shadow: 0 0 10px #8dc63f;
}
.brand-paytel:hover { border-color: #8dc63f; }


/* === PODSTRONY I KONTAKT === */
/* ... (reszta stylów pozostaje bez zmian) ... */


/* === PODSTRONY I KONTAKT === */
.page-header { text-align: center; padding: 4rem 1rem; background: var(--bg-medium); }
.contact-container { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }
.contact-form input, .contact-form textarea { width: 100%; background: var(--bg-medium); border: 1px solid rgba(0, 255, 255, 0.2); color: var(--text-light); padding: 1rem; margin-bottom: 1.5rem; border-radius: 5px; box-sizing: border-box; font-family: 'Rajdhani', sans-serif; font-size: 1rem; }
.contact-details p { font-size: 1.1rem; }
.contact-details i { color: var(--accent); margin-right: 1rem; }
.social-links a { font-size: 2rem; margin-right: 1.5rem; }

.map-section { line-height: 0; }
.map-section iframe { display: block; width: 100%; }

/* === STOPKA === */
footer { background: #000; text-align: center; padding: 2rem; font-size: 0.9rem; color: #888; border-top: 1px solid rgba(0, 255, 255, 0.1); }

/* === MEDIA QUERIES === */
@media (max-width: 992px) {
    .contact-container { grid-template-columns: 1fr; }
    .hero-section h1 { font-size: 2.8rem; }
}
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; width: 100%; position: absolute; top: 70px; left: 0; background: var(--bg-dark); }
    .nav-links.active { display: flex; }
    .nav-links li { text-align: center; padding: 1rem 0; border-top: 1px solid rgba(0, 255, 255, 0.1); }
    .hamburger { display: block; cursor: pointer; }
    .hamburger span { display: block; width: 25px; height: 3px; margin: 5px 0; background: #fff; }
}

/* ... (wszystkie poprzednie style pozostają bez zmian) ... */

/* === STYLE DLA PODSTRONY POMOC ZDALNA === */
.download-button {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-block;
    border: 2px solid var(--accent);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.download-button:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 20px var(--accent);
}

.download-button i {
    margin-right: 10px;
}

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

.steps-list {
    list-style: none;
    padding: 0;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.steps-list li {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.steps-list li h4 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.steps-list li i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* ... (wszystkie poprzednie style pozostają bez zmian) ... */

/* === STYLE DLA FORMULARZA WEB3FORMS === */
#form-result {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
}

#form-result.form-success {
    background-color: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
}

#form-result.form-error {
    background-color: rgba(227, 6, 19, 0.1);
    border: 1px solid #e30613;
    color: #e30613;
}