/* ========================================== */
/* SOTE ARCHITEKCI - GŁÓWNY ARKUSZ STYLÓW     */
/* ========================================== */

/* --- 1. TYPOGRAFIA I FUNDAMENTY --- */
body {
    background-color: #ffffff;
    font-family: 'Outfit', sans-serif !important;
}

h1, h2, h3, h4, h5, h6, p, span, a, div, button, input, textarea, select {
    font-family: 'Outfit', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 { text-transform: none !important; }
.uppercase-safe { text-transform: uppercase !important; }

.sote-section { padding: 80px 0; }
@media (min-width: 992px) { .sote-section { padding: 140px 0; } }

.bg-light-sote { background-color: #F9F9F7; }
.bg-dark-sote { background-color: #1A1A1A; color: #F9F9F7; }

/* --- 2. WSPÓLNE KLASY SEKCJI (NAGŁÓWKI) --- */
.sote-subtitle { letter-spacing: 5px; font-size: 0.75rem; color: #888; margin-bottom: 20px; font-weight: 400; }
.sote-subtitle.light { color: #666; }

.sote-title { color: #1A1A1A; font-size: calc(2.2rem + 1vw); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 40px; }
.sote-title.light { color: #F9F9F7; }

.sote-divider { width: 80px; height: 1px; background-color: #000; margin-bottom: 40px; }
.sote-divider.light { background-color: #444; }

.sote-lead { font-size: 1.25rem; line-height: 1.8; color: #444; font-weight: 300; margin-bottom: 40px; }
.sote-lead.light { color: #bbb; }

/* --- 3. PRZYCISKI (BUTTONY) --- */
.btn-sote-dark {
    display: inline-block; padding: 22px 50px; border-radius: 0; letter-spacing: 3px; 
    font-size: 0.85rem; background-color: #000; color: #fff !important; border: none; 
    text-decoration: none; transition: all 0.3s ease; cursor: pointer;
}
.btn-sote-dark:hover { background-color: #333; }

.btn-sote-light-outline {
    display: inline-block; padding: 22px 50px; border-radius: 0; letter-spacing: 3px; 
    font-size: 0.85rem; color: #F9F9F7; border: 1px solid #444; text-decoration: none; 
    transition: 0.4s ease; background-color: transparent;
}
.btn-sote-light-outline:hover { background-color: #F9F9F7; color: #1A1A1A; }

.btn-sote-grey {
    padding: 15px 40px; border-radius: 0; letter-spacing: 2px; font-size: 0.8rem; 
    border: 1px solid #1A1A1A; background-color: transparent; color: #1A1A1A; transition: 0.3s;
}
.btn-sote-grey:hover { background-color: #1A1A1A; color: #fff; }

/* --- 4. NAWIGACJA I IKONY --- */
.navbar { background-color: #ffffff !important; }
.navbar-toggler { border: none; outline: none; }

.nav-link.custom-underline { position: relative; display: inline-block; margin: 0 10px; }
.nav-link.custom-underline::after {
    content: ''; position: absolute; width: 0; height: 1px; bottom: 5px; left: 50%;
    background-color: #1A1A1A; transition: all 0.3s ease; transform: translateX(-50%);
}
.nav-link.custom-underline:hover::after { width: 100%; }

.nav-cta {
    background-color: #1A1A1A; color: #fff !important; padding: 12px 28px !important;
    margin-left: 15px; font-size: 0.8rem; letter-spacing: 2px; transition: all 0.3s ease;
}
.nav-cta:hover { background-color: #444; }

.fixed-icons {
    position: fixed; top: 50%; right: 20px; transform: translateY(-50%);
    z-index: 9999; display: flex; flex-direction: column; gap: 20px; mix-blend-mode: difference;
}
.fixed-icons a {
    color: #fff !important; font-size: 1.3rem; opacity: 0.9; transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    display: block; text-align: center;
}
.fixed-icons a:hover { opacity: 1; transform: scale(1.4); }

/* --- 5. HERO (WIDEO) --- */
.header-hero {
    position: relative; min-height: 85vh; display: flex; align-items: center; 
    padding: 180px 0 120px 0; overflow: hidden; background-color: #F9F9F7;
}
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(249, 249, 247, 0.85); z-index: 2; }
.hero-content { position: relative; z-index: 3; }

/* --- 6. KARTY PORTFOLIO --- */
.portfolio-card {
    display: block; position: relative; overflow: hidden; aspect-ratio: 1 / 1; background-color: #000;
}
.portfolio-img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.portfolio-card:hover .portfolio-img { transform: scale(1.08); }
.portfolio-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.85) 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 10%; pointer-events: none;
}
.portfolio-tag { color: #888; letter-spacing: 3px; font-size: 0.6rem; margin-bottom: 8px; }
.portfolio-title { color: #fff; font-size: calc(0.85rem + 0.3vw); font-weight: 300; margin: 0; letter-spacing: 1px; }

/* --- 7. ZESPÓŁ I ZAUFALI NAM (HOVERY) --- */
.team-card { display: flex; flex-direction: column; height: 100%; }
.team-img-wrapper { overflow: hidden; aspect-ratio: 3 / 4; margin-bottom: 30px; background-color: #000; }
.team-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1); }
.team-card:hover .team-img { filter: grayscale(0%); transform: scale(1.03); }

.partner-logo { max-height: 40px; filter: grayscale(100%); opacity: 0.4; transition: all 0.4s ease; }
.partner-logo:hover { filter: grayscale(0%); opacity: 1; }

.media-link { text-decoration: none; color: #1A1A1A; opacity: 0.4; transition: all 0.4s ease; text-align: center; }
.media-link:hover { opacity: 1; }

/* --- 8. OFERTA I PROCES --- */
.offer-box { border-top: 1px solid #e0e0e0; padding-top: 30px; height: 100%; display: flex; flex-direction: column; }
.offer-box.premium { border-top: 2px solid #000; }
.offer-list { list-style: none; padding: 0; font-size: 0.85rem; color: #666; line-height: 1.8; margin-bottom: 30px; }
.offer-list li { margin-bottom: 10px; }
.offer-value-box { padding-top: 25px; border-top: 1px solid #e0e0e0; margin-top: auto; }
.offer-value-box.premium { border-top: 1px solid #000; }

.timeline-number { font-size: calc(3.5rem + 1vw); font-weight: 200; color: #e5e5e5; letter-spacing: -0.04em; line-height: 1; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }

/* --- 9. FAQ --- */
.faq-dark-theme .accordion-item { background-color: transparent; border: none; border-bottom: 1px solid #333; }
.faq-dark-theme .accordion-button { background-color: transparent !important; color: #F9F9F7 !important; font-weight: 400; font-size: 1.15rem; padding: 25px 0; box-shadow: none !important; letter-spacing: 0.02em; }
.faq-dark-theme .accordion-button:not(.collapsed) { color: #fff !important; font-weight: 700; }
.faq-dark-theme .accordion-button::after { filter: invert(1) grayscale(100%) brightness(200%); }
.faq-dark-theme .accordion-body { padding: 0 0 35px 0; color: #aaa; font-size: 1rem; line-height: 1.8; font-weight: 300; }

/* --- 10. KONTAKT I FORMULARZ --- */
.contact-box { background-color: #fff; padding: 50px 40px; border: 1px solid #eaeaea; box-shadow: 0 20px 40px rgba(0,0,0,0.03); }
.contact-link-dark { display: block; color: #1A1A1A; text-decoration: none; font-size: 1.1rem; margin-bottom: 15px; transition: 0.3s; font-weight: 300; }
.contact-link-dark:hover { color: #666; }
.contact-link-light { color: #ddd; text-decoration: none; font-size: 1rem; font-weight: 300; transition: 0.3s; }
.contact-link-light:hover { color: #fff; }
.footer-social { color: #888; font-size: 1.2rem; margin-left: 20px; transition: 0.3s; }
.footer-social:hover { color: #fff; }

.sote-input { width: 100%; padding: 10px 0; border: none; border-bottom: 1px solid #ccc; background: transparent; outline: none; font-size: 0.95rem; color: #1A1A1A; transition: 0.3s; }
.sote-input:focus { border-color: #1A1A1A; }
.sote-textarea { width: 100%; padding: 15px 0; border: none; border-bottom: 1px solid #ccc; background: transparent; outline: none; font-size: 0.95rem; color: #1A1A1A; resize: none; transition: 0.3s; }
.sote-textarea:focus { border-color: #1A1A1A; }