/* BLOKADA RUCHU NA BOKI */
html, body {
    max-width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
    /* Dodatkowy fix dla iOS, który czasem ignoruje overflow-x */
    width: 100%;
    -webkit-overflow-scrolling: touch; 
}

/* GLOBALNY FIX DLA ELEMENTÓW WYSTAJĄCYCH */
* {
    max-width: inherit;
}

/* ==================================================
   ZMIENNE GLOBALNE
================================================== */
:root {
    --brand-orange: #FF4D00;
    --brand-black: #070707;
    --brand-white: #FFFFFF;
    --brand-gray: #999999;
    --nav-height: 100px;
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    
    /* Zmienne dla nowej ikony premium */
    --premium-platinum: #E5E4E2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--brand-black);
    color: var(--brand-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==================================================
   PANCERNY STICKY NAVBAR
================================================== */
.navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 5%;
    height: var(--nav-height);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s ease, height 0.4s ease, backdrop-filter 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.navbar.scrolled {
    height: 75px;
    background: rgba(7, 7, 7, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 77, 0, 0.15);
}

/* Lewa strona - Logo */
.nav-left {
    display: flex;
    justify-content: flex-start;
    z-index: 1001;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-white);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span {
    color: var(--brand-orange);
}

/* Środek - Linki (Desktop) */
.nav-center {
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links li a {
    color: var(--brand-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links li a:hover {
    color: var(--brand-orange);
}

/* ==================================================
   DROPDOWN PREMIUM (DESKTOP)
================================================== */
.dropdown {
    position: relative;
    padding-bottom: 10px;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    min-width: 260px; 
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid var(--brand-orange);
    border-radius: 8px; 
    padding: 10px 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    overflow: hidden;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 14px 25px; 
    color: var(--brand-gray);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent; 
}

.dropdown-content a:hover {
    background: rgba(255, 77, 0, 0.05); 
    color: var(--brand-white);
    border-left: 3px solid var(--brand-orange); 
}

/* Prawa strona (Desktop) */
.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.social-icon {
    color: var(--brand-white);
    font-size: 1.3rem;
    transition: var(--transition-fast);
}

.social-icon:hover {
    color: var(--brand-orange);
    transform: translateY(-3px) scale(1.1);
}

/* POPRAWIONY PRZYCISK NAVBAR */
.btn-nav-call {
    color: var(--brand-orange);
    background: rgba(255, 77, 0, 0.05); /* Delikatne tło */
    border: 2px solid var(--brand-orange); /* Grubsze obramowanie */
    padding: 12px 28px; /* Lepsze proporcje i większy klikalny obszar */
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px; /* Dodaje efektu "premium" */
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-nav-call:hover {
    background: var(--brand-orange);
    color: var(--brand-white);
    box-shadow: 0 8px 25px rgba(255, 77, 0, 0.3); /* Ładniejszy cień */
    transform: translateY(-3px); /* Uniesienie */
}

/* ==================================================
   MOBILE MENU & HAMBURGER
================================================== */
.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 20px;
    position: relative;
}

.burger span {
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: var(--brand-white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.burger .line1 { top: 0; }
.burger .line2 { top: 50%; transform: translateY(-50%); }
.burger .line3 { bottom: 0; }

.burger.active .line1 {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.burger.active .line2 {
    opacity: 0;
}
.burger.active .line3 {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(7, 7, 7, 0.98);
    backdrop-filter: blur(15px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    clip-path: circle(0% at 100% 0%);
    transition: opacity 0.4s ease, visibility 0.4s ease, clip-path 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    clip-path: circle(150% at 100% 0%);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.mobile-nav-links li {
    margin: 20px 0;
}

.mobile-link-wrapper {
    overflow: hidden;
    display: inline-block; 
}

.mobile-link {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-white);
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-menu-overlay.active .mobile-link {
    transform: translateY(0);
}

.mobile-nav-links li:nth-child(1) .mobile-link { transition-delay: 0.1s; }
.mobile-nav-links li:nth-child(2) .mobile-link { transition-delay: 0.2s; }
.mobile-nav-links li:nth-child(3) .mobile-link { transition-delay: 0.3s; }
.mobile-nav-links li:nth-child(4) .mobile-link { transition-delay: 0.4s; }

/* ROZWIJANE SUB-MENU (MOBILE) */
.mobile-dropdown-icon {
    font-size: 1.5rem;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.mobile-submenu {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
    width: 100%;
}

.mobile-submenu.active {
    grid-template-rows: 1fr;
    margin-top: 15px;
}

.mobile-submenu-inner {
    overflow: hidden;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.mobile-submenu-inner li a {
    color: var(--brand-gray);
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    display: block; 
}

.mobile-submenu-inner li a:hover {
    color: var(--brand-orange);
}

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.5s;
}

.mobile-menu-overlay.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-social {
    font-size: 2rem;
    color: var(--brand-white);
}

/* ==================================================
   SEKCJA HERO & ZAJEBISTA IKONA DIGITAL PREMIUM
================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--nav-height);
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

/* Wrapper dzielący sekcję na tekst i grafikę */
.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.hero-content {
    max-width: 700px; 
    text-align: left;
    flex: 1;
}

/* GRAFIKA DIGITAL PREMIUM PO PRAWEJ STRONIE */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Wrapper dla badge'a, ułatwia centrowanie na mobile */
.premium-badge-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-badge {
    position: relative;
    width: 360px;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatShape 6s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Podstawowy styl dla ringów */
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Zewnętrzny, metaliczny platynowy ring ze stałą rotacją */
.ring-outer {
    width: 100%;
    height: 100%;
    border-top: 3px solid var(--premium-platinum);
    border-left: 1px solid rgba(229, 228, 226, 0.3);
    animation: spin 20s linear infinite;
    box-shadow: 0 0 30px rgba(229, 228, 226, 0.1);
}

/* Środkowy ring z przerywanymi ścieżkami kodu świecącymi na pomarańczowo */
.ring-middle {
    width: 78%;
    height: 78%;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.2);
    border-right: 2px solid var(--brand-orange);
    animation: spin-reverse 12s linear infinite;
    filter: drop-shadow(0 0 10px rgba(255, 77, 0, 0.4));
}

/* Wewnętrzny ring z głębią i kodem wewnątrz */
.ring-inner {
    width: 55%;
    height: 55%;
    background: radial-gradient(circle, rgba(13, 13, 13, 0.8) 0%, rgba(7, 7, 7, 1) 100%);
    border: 1px solid rgba(229, 228, 226, 0.2);
    animation: spin 10s linear infinite;
    box-shadow: 0 0 50px rgba(7, 7, 7, 0.9);
}

/* Kontener dla centralnego klejnotu */
.gem-container {
    position: absolute;
    width: 35%;
    height: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

/* Tło klejnotu z głębokim świecącym blaskiem */
.gem-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 77, 0, 0.25) 0%, rgba(7, 7, 7, 0) 70%);
    border-radius: 50%;
    filter: blur(10px);
    animation: pulseGlowGem 3s ease-in-out infinite;
}

/* Centralna ikona Fa-Code jako pulsujący klejnot digital */
.gem-icon {
    position: absolute;
    color: var(--premium-platinum);
    font-size: 2.8rem;
    filter: drop-shadow(0 0 15px rgba(229, 228, 226, 0.5));
    animation: pulseGem 3s ease-in-out infinite;
}

/* Animacje dla Badge'a */
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes spin-reverse { 100% { transform: rotate(-360deg); } }

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotateX(10deg) rotateY(-10deg); }
    50% { transform: translateY(-15px) rotateX(10deg) rotateY(-10deg); }
}

@keyframes pulseGem {
    0%, 100% { 
        transform: scale(1) translateZ(50px); 
        color: var(--premium-platinum);
        filter: drop-shadow(0 0 15px rgba(229, 228, 226, 0.5));
    }
    50% { 
        transform: scale(1.1) translateZ(50px); 
        color: var(--brand-orange);
        filter: drop-shadow(0 0 20px rgba(255, 77, 0, 0.7));
    }
}

@keyframes pulseGlowGem {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Animowany blask w tle strony */
.hero-glow {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(ellipse at center, rgba(255, 77, 0, 0.12) 0%, rgba(7, 7, 7, 0) 70%);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
    animation: pulseGlow 6s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: translateY(-50%) scale(1); opacity: 0.8; }
    100% { transform: translateY(-50%) scale(1.1); opacity: 1; }
}

/* Typografia Hero */
.hero-subtitle {
    color: var(--brand-orange);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 5px;
    margin-bottom: 25px;
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* OBRYS TEKSTU */
.outline-text {
    color: var(--brand-black); 
    -webkit-text-fill-color: var(--brand-black);
    -webkit-text-stroke: 1.5px var(--brand-white);
    paint-order: stroke fill;
    letter-spacing: 2.5px; 
}

.hero-description {
    color: var(--brand-gray);
    font-size: 1.1rem;
    max-width: 600px; 
    margin-bottom: 45px;
    line-height: 1.7;
}

/* Przyciski Hero */
.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 16px 36px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-fast);
    display: inline-block;
}

.btn-primary {
    background: var(--brand-orange);
    color: var(--brand-white);
    border: 1px solid var(--brand-orange);
}

.btn-primary:hover {
    background: #e64500;
    border-color: #e64500;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(255, 77, 0, 0.35);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--brand-white);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--brand-white);
    color: var(--brand-black);
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.1);
}

/* ==================================================
   ZAAWANSOWANE ANIMACJE WEJŚCIA (CLIP-PATH)
================================================== */
.reveal-wrapper {
    overflow: hidden;
}

.reveal-text {
    display: block;
    transform: translateY(100%);
    animation: revealTextAnim 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes revealTextAnim {
    to { transform: translateY(0); }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeUpAnim {
    to { opacity: 1; transform: translateY(0); }
}

/* Opóźnienia animacji */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.65s; }
.delay-6 { animation-delay: 0.8s; }

/* ==================================================
   SCROLL DOWN ICON
================================================== */
.scroll-down {
    position: absolute;
    bottom: 5%; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 24px;
    height: 42px;
    border: 2px solid var(--brand-gray);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 3px;
    height: 7px;
    background: var(--brand-orange);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(15px); opacity: 0; }
}

/* ==================================================
   RWD - Responsywność
================================================== */
@media (max-width: 1024px) {
    .nav-center, .nav-right {
        display: none;
    }
    .navbar {
        grid-template-columns: 1fr auto;
    }
    .burger {
        display: block;
    }
    
    /* Na urządzeniach mobilnych grafika pojawia się POD przyciskami i tekstem */
    .hero-wrapper {
        flex-direction: column;
        justify-content: center;
        text-align: left;
        gap: 40px; 
    }
    
    .hero-content {
        order: 1; /* Tekst i przyciski na górze */
        text-align: left;
        width: 100%;
        max-width: none;
    }

    .hero-visual {
        order: 2; /* Grafika pod przyciskami */
        justify-content: center; 
        width: 100%;
        margin-top: 20px; /* Odstęp żeby nie wchodziło na guziki */
        margin-bottom: 60px; /* Oddech na samym dole przed myszką "scroll" */
    }
    
    .premium-badge-wrapper {
        width: 100%;
    }

    /* Mniejszy, ale wciąż wyraźny badge na mobile */
    .premium-badge {
        width: 210px; 
        height: 210px;
        perspective: 800px;
    }

    /* Dopasowanie ikony i ringów na mobile */
    .gem-icon {
        font-size: 1.8rem;
    }
    .ring-outer {
        border-top-width: 2px;
    }
    .ring-middle {
        border-right-width: 1px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    .btn-primary, .btn-secondary {
        text-align: center;
        width: 100%;
        max-width: 300px;
    }
}


/* ==================================================
   STYLIZACJA NAGŁÓWKA USŁUG (ZGODNA Z CAŁĄ STRONĄ)
================================================== */
.services .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.services .hero-subtitle {
    color: var(--brand-orange);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.services .section-title {
    font-family: 'Syne', sans-serif;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    font-size: clamp(2.5rem, 8vw, 5.5rem);
}

.services .white-text {
    color: var(--brand-white);
}

.services .outline-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    display: block;
}

.services .section-description {
    color: var(--brand-gray);
    font-size: 1rem;
    max-width: 500px;
    margin: 30px auto 0;
    line-height: 1.6;
}

/* --- RESZTA TWOJEGO CSS (KARTY, GRID, RGB) --- */
.services-grid-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.services-grid-bottom {
    display: flex;
    justify-content: center;
}

.social-media-card {
    width: calc(33.333% - 17px);
}

.service-card {
    background: #0d0d0d;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, #ff4d00, #ff00c8, #00ffd5, #002bff, #ff4d00);
    background-size: 400% 400%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rgbMove 6s linear infinite;
    pointer-events: none;
}

.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-8px); border-color: transparent; }

@keyframes rgbMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.service-icon {
    width: 50px; height: 50px;
    background: rgba(255, 77, 0, 0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 25px;
    color: var(--brand-orange);
    font-size: 1.3rem;
}

.service-name { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.service-text { color: var(--brand-gray); font-size: 0.95rem; line-height: 1.5; margin-bottom: 20px; }
.service-list { list-style: none; border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 20px; }
.service-list li { font-size: 0.85rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; color: #ccc; }
.service-list li i { color: var(--brand-orange); font-size: 10px; }

@media (max-width: 1100px) {
    .services-grid-top { grid-template-columns: repeat(2, 1fr); }
    .social-media-card { width: 100%; max-width: 500px; }
}

@media (max-width: 768px) {
    .services-grid-top { grid-template-columns: 1fr; }
    .services .section-title { font-size: 3.2rem; }
    .social-media-card { width: 100%; }
}

/* --- SEKCJA O MNIE - FINAL MOBILE FIX --- */
.about {
    padding: 60px 0;
    background: var(--brand-black);
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

/* --- ZDJĘCIE (KOMPAKTOWE) --- */
.about-image-wrapper {
    width: 100%;
    max-width: 280px; 
    /* ZMIANA: Zdjęcie pod tekstami na mobile */
    order: 2; 
    margin-top: 10px;
}

.about-image-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 8px;
    backdrop-filter: blur(10px);
}

.about-img {
    width: 100%;
    height: 320px; 
    object-fit: cover;
    object-position: top;
    border-radius: 15px;
    display: block;
}

/* --- TREŚĆ --- */
.about-content {
    width: 100%;
    text-align: center;
    padding: 0 15px;
    /* ZMIANA: Tekst nad zdjęciem na mobile */
    order: 1; 
}

.section-title {
    font-size: 2.2rem; 
    line-height: 1.1;
    margin-bottom: 15px;
}

.about-description {
    color: var(--brand-gray);
    font-size: 0.85rem; 
    line-height: 1.5;
    margin: 0 auto 25px auto;
    max-width: 320px; 
    opacity: 0.8;
}

/* --- STATYSTYKI (ZWARTE) --- */
.about-stats {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 30px;
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stat-value {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem; 
    font-weight: 800;
    color: var(--brand-orange);
    line-height: 1;
}

.stat-value.infinity {
    font-size: 2.3rem;
    position: relative;
    top: 3px;
}

.stat-label {
    font-size: 0.55rem; 
    color: var(--brand-gray);
    text-transform: uppercase;
    margin-top: 6px;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* --- DESKTOP (PC) --- */
@media (min-width: 1024px) {
    .about { padding: 100px 0; }
    
    .about-wrapper {
        flex-direction: row;
        gap: 60px;
    }

    .about-image-wrapper {
        max-width: 450px;
        /* ZMIANA: Na PC zdjęcie wraca na prawą stronę */
        order: 2; 
        margin-top: 0;
    }

    .about-img {
        height: 500px;
    }

    .about-content {
        text-align: left;
        flex: 1;
        padding: 0;
        /* ZMIANA: Na PC tekst wraca na lewą stronę */
        order: 1; 
    }

    .section-title { font-size: 4rem; }

    .about-description {
        font-size: 1.1rem;
        max-width: 550px;
        margin: 0 0 40px 0;
    }

    .about-stats {
        justify-content: flex-start;
        gap: 50px;
        margin-left: 0;
    }

    .stat-value { font-size: 2.8rem; }
    .stat-value.infinity { font-size: 3.5rem; }
    .stat-label { font-size: 0.75rem; }
}

/* ==================================================
   NAGŁÓWEK SEKCJI (ZGODNY Z FAQ / REELS)
================================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.hero-subtitle {
    color: var(--brand-orange);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-family: 'Syne', sans-serif; /* Upewnij się, że masz tę czcionkę w head */
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    font-size: clamp(2.5rem, 8vw, 5.5rem); /* Skaluje się z ekranem */
}

.white-text {
    color: var(--brand-white);
}

.orange-dot {
    color: var(--brand-orange);
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    display: block;
}

.section-description {
    color: var(--brand-gray);
    font-size: 1rem;
    max-width: 500px;
    margin: 25px auto 0;
    line-height: 1.6;
}

/* --- PORTFOLIO BASE --- */
.portfolio {
    padding: 120px 0;
    background-color: #050505;
}

/* NAGŁÓWEK ZE SCREENA */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.hero-subtitle {
    color: #ff4d00;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    font-size: clamp(2.5rem, 8vw, 5rem);
}

.white-text { color: #fff; }
.orange-dot { color: #ff4d00; }
.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    display: block;
}

.section-description {
    color: #888;
    margin-top: 25px;
    font-size: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* MASONRY GRID - NAPRAWA */
.portfolio-masonry {
    column-count: 3;
    column-gap: 30px;
    width: 100%;
}

.portfolio-item {
    break-inside: avoid;
    margin-bottom: 30px;
}

.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-card img {
    width: 100%;
    display: block;
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

/* NAKŁADKA INFO */
.portfolio-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.project-title { color: #fff; font-size: 1.4rem; margin: 10px 0; }
.project-category { color: #ff4d00; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; }
.btn-project { color: #fff; text-decoration: none; border-bottom: 2px solid #ff4d00; padding-bottom: 4px; font-size: 0.8rem; font-weight: 700; }

/* PRZYCISK WIĘCEJ */
.portfolio-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.btn-portfolio-more {
    padding: 18px 45px;
    background: #ff4d00;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(255, 77, 0, 0.3);
}

.btn-portfolio-more:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 77, 0, 0.5);
}

/* MOBILE */
@media (max-width: 1024px) { .portfolio-masonry { column-count: 2; } }
@media (max-width: 768px) { 
    .portfolio-masonry { column-count: 1; } 
    .section-title { font-size: 3rem; }
}


/* --- RESET I STRUKTURA --- */
.contact-card-v2, .contact-card-v2 * {
    box-sizing: border-box;
}

.contact {
    padding: 80px 0;
    background-color: var(--brand-black);
    width: 100%;
    overflow: hidden; /* Blokada skrolowania na boki */
}

.contact-card-v2 {
    max-width: 850px;
    width: 92%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 50px 30px; /* Nieco mniejszy padding boczny */
    backdrop-filter: blur(20px);
}

/* --- NAGŁÓWEK (FIXED: NOWA LINIA I ROZMIAR) --- */
.contact-header-v2 {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header-v2 .section-title {
    /* Zmniejszony zakres clamp, aby tekst nie "puchł" za bardzo */
    font-size: clamp(1.8rem, 4.5vw, 3.2rem); 
    font-weight: 900;
    line-height: 1.1;
    display: block;
    width: 100%;
    white-space: normal; /* Pozwala na łamanie linii */
    word-wrap: break-word;
}

.contact-header-v2 .section-title span {
    display: block; /* Każde słowo (span) będzie w nowej linii */
    width: 100%;
}

.contact-description {
    color: var(--brand-gray);
    font-size: 0.95rem;
    max-width: 450px;
    margin: 20px auto 0;
    line-height: 1.5;
}

/* --- FORMULARZ --- */
.contact-form-v2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form-v2 input,
.contact-form-v2 textarea {
    width: 100%;
    padding: 18px 25px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form-v2 textarea {
    resize: none;
}

.contact-form-v2 input:focus,
.contact-form-v2 textarea:focus {
    outline: none;
    border-color: var(--brand-orange);
    background: rgba(255, 77, 0, 0.05);
}

.btn-submit-v2 {
    background: var(--brand-orange);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 15px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: 0.3s ease;
    margin-top: 10px;
}

.btn-submit-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 77, 0, 0.4);
}

/* --- STOPKA --- */
.contact-footer-v2 {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-gray);
    font-size: 0.85rem;
}

.footer-item i { color: var(--brand-orange); }

/* --- MOBILE --- */
@media (max-width: 768px) {
    .contact-card-v2 {
        padding: 40px 20px;
    }

    .contact-header-v2 .section-title {
        font-size: 2.2rem; /* Sztywny rozmiar na mobile dla czytelności */
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-footer-v2 {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
}

/* --- GŁÓWNA STOPKA --- */
.main-footer {
    background-color: var(--brand-black);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

.footer-motto {
    color: var(--brand-gray);
    margin: 20px 0 30px;
    font-size: 0.9rem;
    max-width: 350px;
}

.footer-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: white;
}

.footer-nav, .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a, .footer-mail {
    color: var(--brand-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-nav a:hover, .footer-mail:hover {
    color: var(--brand-orange);
}

/* --- PANEL SEO POD STOPKĄ --- */
.footer-seo-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.seo-category h5 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.seo-tags a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 0.75rem;
    transition: 0.3s;
}

.seo-tags a:hover {
    color: var(--brand-orange);
}

/* --- BOTTOM --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-motto { margin: 20px auto; }
    .seo-tags { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 10px; align-items: center; }
}

/* --- FOOTER FINAL V4 --- */
.main-footer {
    background-color: #050505;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* TOP LAYOUT */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -1.5px;
}

.orange-dot { color: #ff4d00; }

.footer-motto {
    color: #888;
    margin: 25px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 380px;
}

/* Social Icons */
.footer-social-v2 { display: flex; gap: 15px; }
.footer-social-v2 a {
    width: 45px; height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; transition: 0.4s;
}
.footer-social-v2 a:hover {
    background: #ff4d00;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 77, 0, 0.3);
}

/* Typography & Links */
.footer-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Specyficzna klasa dla pomarańczowego nagłówka */
.highlight-orange {
    color: #ff4d00 !important;
}

.footer-nav a, .footer-mail-link {
    color: #888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-nav a:hover {
    color: #ff4d00;
    padding-left: 5px;
}

.footer-mail-link {
    font-weight: 800;
    color: #fff;
    font-size: 1.2rem; /* Powiększony dla czytelności */
    letter-spacing: 0.5px;
    display: block;
    margin-top: 10px;
}

.footer-mail-link:hover {
    color: #ff4d00;
}

/* SEPARATOR */
.footer-divider {
    height: 1px;
    width: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    margin-bottom: 50px;
}

/* SEO CLUSTER */
.footer-seo-fat-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
}

.seo-heading {
    color: #555;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.orange-dot-small {
    width: 5px; height: 5px;
    background: #ff4d00;
    border-radius: 50%;
}

.seo-tags { display: flex; flex-direction: column; gap: 10px; }
.seo-tags a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.2s;
}
.seo-tags a:hover { color: #ff4d00; }

.seo-column.featured {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.03);
}

/* BOTTOM BAR */
.footer-bottom-v3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #444;
    font-size: 0.8rem;
}

/* MOBILE */
@media (max-width: 1100px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
    .footer-seo-fat-v2 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { grid-column: span 1; }
    .footer-motto { margin: 20px auto; }
    .footer-social-v2, .seo-tags, .seo-heading { justify-content: center; text-align: center; }
    .footer-seo-fat-v2 { grid-template-columns: 1fr; }
    .seo-column.featured { border-left: none; padding-left: 0; }
    .footer-bottom-v3 { flex-direction: column; gap: 15px; }
}

/* --- CUSTOM SCROLLBAR REVIXO --- */

/* Szerokość paska */
::-webkit-scrollbar {
    width: 10px;
}

/* Tło paska (Track) */
::-webkit-scrollbar-track {
    background: #050505;
}

/* Suwak (Thumb) */
::-webkit-scrollbar-thumb {
    background: #ff4d00;
    border-radius: 10px;
    border: 2px solid #050505; /* Tworzy efekt odstępu od krawędzi */
}

/* Suwak po najechaniu (Hover) */
::-webkit-scrollbar-thumb:hover {
    background: #e64500; /* Nieco ciemniejszy pomarańcz */
}

/* Fix dla Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #ff4d00 #050505;
}

/* --- REELS SECTION - CLEAN VERSION --- */
.reels-section {
    padding: 100px 0;
    background-color: #050505;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.reel-card {
    background: #000;
    border-radius: 20px; /* Eleganckie zaokrąglenie */
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.reel-video-wrapper {
    position: relative;
    aspect-ratio: 9 / 16; /* Format pionowy 9:16 */
    width: 100%;
}

.reel-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Wypełnia cały kafel bez czarnych pasów */
    display: block;
}

/* Subtelny efekt po najechaniu */
.reel-card:hover {
    transform: translateY(-8px);
    border-color: #ff4d00;
    box-shadow: 0 15px 35px rgba(255, 77, 0, 0.15);
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .reels-grid {
        display: flex;
        overflow-x: auto;
        padding: 0 15px 30px;
        gap: 15px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Ukrywa pasek przewijania na Firefox */
    }
    
    .reels-grid::-webkit-scrollbar {
        display: none; /* Ukrywa pasek przewijania na Chrome/Safari */
    }
    
    .reel-card {
        min-width: 260px;
        scroll-snap-align: center;
    }
}


/* --- FAQ SECTION --- */
.faq-section {
    padding: 100px 0;
    background-color: #050505;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #ff4d00;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 30px;
}

.faq-answer p {
    padding-bottom: 25px;
    color: #888;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Stan otwarty */
.faq-item.active {
    border-color: rgba(255, 77, 0, 0.3);
    background: rgba(255, 77, 0, 0.02);
}

.faq-item.active .faq-question span {
    color: #ff4d00;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #ff4d00;
    color: #fff;
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* Wysoka wartość, aby pomieścić tekst */
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

/* --- FAQ MOBILE --- */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }
    .faq-question span {
        font-size: 1rem;
        padding-right: 15px;
    }
    .faq-answer {
        padding: 0 20px;
    }
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 100px 0;
    background-color: #050505;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #ff4d00;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 30px;
}

.faq-answer p {
    padding-bottom: 25px;
    color: #888;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Stan otwarty */
.faq-item.active {
    border-color: rgba(255, 77, 0, 0.3);
    background: rgba(255, 77, 0, 0.02);
}

.faq-item.active .faq-question span {
    color: #ff4d00;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #ff4d00;
    color: #fff;
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* Wysoka wartość, aby pomieścić tekst */
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

/* --- FAQ MOBILE --- */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }
    .faq-question span {
        font-size: 1rem;
        padding-right: 15px;
    }
    .faq-answer {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    /* --- 1. GLOBALNY RESET I WYŚRODKOWANIE --- */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    /* --- 2. NAGŁÓWKI (WYRAŹNE I WYŚRODKOWANE) --- */
    .section-header {
        width: 100% !important;
        margin-bottom: 40px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .section-title {
        font-size: 2.2rem !important; /* Bezpieczny, wyraźny rozmiar */
        line-height: 1.2 !important;
        text-align: center !important;
        width: 100% !important;
        word-break: keep-all !important; /* Nie tnie słów w połowie */
    }

    /* FIX OBRYSU (WYRAŹNY I CZYSTY) */
    .outline-text {
        display: block !important; /* Wymusza nową linię dla efektu warstwowości */
        color: transparent !important;
        -webkit-text-stroke: 1.5px #ffffff !important; /* Grubszy, biały obrys */
        margin-top: 5px !important;
        opacity: 1 !important;
    }

    .white-text, .orange-dot {
        display: inline !important;
    }

    .section-description {
        font-size: 0.95rem !important;
        max-width: 100% !important;
        margin: 15px auto 0 !important;
        text-align: center !important;
        color: #888 !important;
    }

    /* --- 3. SEKCJA USŁUGI --- */
    .services-grid-top, .services-grid-bottom {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 20px !important;
    }

    .service-card, .social-media-card {
        width: 100% !important;
        max-width: 100% !important;
        text-align: left !important; /* Treść wewnątrz karty lepiej wygląda do lewej */
    }

    /* --- 4. SEKCJA PORTFOLIO --- */
    .portfolio-masonry {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 25px !important;
    }

    .portfolio-item {
        width: 100% !important;
    }

    /* --- 5. SEKCJA REELSY (Płynny Scroll) --- */
    .reels-grid {
        display: flex !important;
        flex-direction: row !important; /* Zachowujemy scroll boczny */
        overflow-x: auto !important;
        width: 100vw !important;
        padding: 0 20px 20px !important;
        margin-left: -20px !important; /* Kompensacja paddingu kontenera */
        scroll-snap-type: x mandatory;
    }

    .reel-card {
        min-width: 80% !important;
        scroll-snap-align: center;
    }

    /* --- 6. SEKCJA FAQ --- */
    .faq-container {
        width: 100% !important;
    }

    .faq-question span {
        font-size: 1rem !important;
        text-align: left !important;
    }

    /* --- 7. SEKCJA KONTAKT --- */
    .contact-card-v2 {
        padding: 30px 20px !important;
        width: 100% !important;
    }

    .form-row {
        display: flex !important;
        flex-direction: column !important;
    }

    /* --- 8. STOPKA SEO --- */
    .footer-seo-fat-v2 {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 40px !important;
    }

    .seo-tags {
        justify-content: center !important;
        text-align: center !important;
    }

    .seo-heading {
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    /* --- MINIMALISTYCZNY NAGŁÓWEK KONTAKTU (-3px) --- */
    .contact-card-v2 .section-title {
        /* Przeliczone na ok. 1.4rem, czyli typowy rozmiar nagłówka H3 */
        font-size: 1.4rem !important; 
        line-height: 1.2 !important;
        letter-spacing: 0.5px !important;
        display: block !important;
        text-align: center !important;
        width: 100% !important;
        text-transform: uppercase;
    }

    .contact-card-v2 .section-title span, 
    .contact-card-v2 .section-title .white-text {
        display: block !important;
        margin-bottom: 4px !important;
    }

    .contact-card-v2 .section-title .outline-text {
        display: block !important;
        color: transparent !important;
        /* Subtelny obrys dla mniejszej skali */
        -webkit-text-stroke: 1px #ffffff !important; 
        font-size: 1.55rem !important; 
        margin-top: 2px !important;
    }

    /* Dopasowanie opisu, żeby zachować hierarchię */
    .contact-description {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin: 15px auto 25px !important;
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    /* --- 1. SEKCJA I KONTENER --- */
    .hero {
        min-height: 100vh;
        padding-top: 100px !important;
        padding-bottom: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important; /* Centrowanie tekstu w całej sekcji */
    }

    .hero-wrapper {
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
    }

    .hero-content {
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* Wyśrodkowanie elementów w pionie */
        order: 1;
    }

    /* --- 2. TEKSTY (WYŚRODKOWANE I MNIEJSZE) --- */
    
    /* Pomarańczowy nadtytuł */
    .hero-subtitle {
        font-size: 0.75rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 20px !important;
        text-align: center !important;
        width: 100% !important;
        display: block !important;
    }

    /* Główny tytuł H1 */
    .hero-title {
        font-size: 1.7rem !important; /* Mniejszy, bardziej elegancki rozmiar */
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
        text-align: center !important;
        width: 100% !important;
    }

    .hero-title span {
        display: block !important;
        margin-bottom: 5px;
    }

    /* Outline w H1 */
    .hero-title .outline-text {
        color: transparent !important;
        -webkit-text-stroke: 1.2px #ffffff !important;
        display: block !important;
        font-size: 1.8rem !important;
    }

    /* Opis pod tytułem */
    .hero-description {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        margin: 0 auto 35px !important;
        max-width: 90% !important;
        text-align: center !important; /* Centrowanie akapitu */
        color: #bbb !important;
    }

    /* --- 3. PRZYCISKI I GRAFIKA --- */
    .hero-btns {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .hero-btns .btn {
        width: 85% !important; /* Przyciski nie na całą szerokość, by było lżej */
        max-width: 280px;
        text-align: center !important;
        padding: 16px !important;
        font-size: 0.85rem !important;
    }

    /* Ikona Digital Badge */
    .hero-visual {
        order: 2;
        margin-top: 20px !important;
        justify-content: center !important;
    }

    .premium-badge {
        width: 180px !important;
        height: 180px !important;
        animation: floatShapeMobile 5s ease-in-out infinite;
    }

    /* Myszka/Scroll na dole */
    .scroll-indicator {
        position: absolute !important;
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    @keyframes floatShapeMobile {
        0%, 100% { transform: translateY(0) rotateX(5deg) rotateY(-5deg); }
        50% { transform: translateY(-10px) rotateX(5deg) rotateY(-5deg); }
    }
}

