/* ==========================
   ROOT / VARIABLES
========================== */
:root {
    --black: #0e0e0e;
    --dark: #171717;
    --orange: #ff4d00;
    --orange2: #ff6a00;
    --gray: #b5b5b5;
    --white: #fff;
}

/* ==========================
   RESET / GLOBAL
========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}
html, body {
    overflow-x: hidden;
}
body.menu-open {
    overflow: hidden;
}
.btn {
    display: inline-block;
    margin: 0 12px;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    transition: all .4s;
}
.btn-main {
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: #fff;
}
.btn-main:hover {
    background: linear-gradient(135deg, var(--orange2), var(--orange));
    transform: scale(1.05);
}
.btn-outline {
    border: 2px solid var(--orange);
    color: var(--orange);
}
.btn-outline:hover {
    background: var(--orange);
    color: #fff;
    transform: scale(1.05);
}
.btn-white {
    background: #fff;
    color: #ff4d00;
}
.btn-white:hover {
    background: #ff4d00;
    color: #fff;
    transform: scale(1.05);
}
.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title span {
    background: var(--orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: #b5b5b5;
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

@media(max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
}
/* ==========================
   NAVIGATION
========================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(14, 14, 14, 0.95);
    backdrop-filter: blur(10px);
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fb-icon i {
    font-size: 24px;
    color: #1877f2;
    transition: transform .3s, opacity .3s;
}

.fb-icon:hover i {
    transform: scale(1.2);
    opacity: 0.8;
}
.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
}
.logo span {
    color: var(--orange);
}
.menu a {
    margin-left: 28px;
    font-weight: 500;
    color: var(--gray);
}
.menu a:hover {
    color: var(--orange);
}
.phone {
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    transition: all .3s;
}
.phone:hover {
    opacity: .85;
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}
.hamburger span {
    width: 26px;
    height: 2px;
    background: #fff;
    transition: .3s;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE MENU */
@media(max-width: 900px) {
    .menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100vh - 72px);
        background: var(--black);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        transform: translateX(100%);
        transition: transform .35s ease;
    }
    .menu.active {
        transform: translateX(0);
    }
    .menu a {
        font-size: 20px;
    }
    .phone {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}

/* ==========================
   HERO
========================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, rgba(14,14,14,.90), rgba(14,14,14,.65)) center/cover no-repeat;
    z-index: -1;
}
.hero-content { max-width: 900px; }
.hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.3s;
}
.hero h1 span { color: var(--orange); }
.hero p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.6s;
}
.hero-content p span {
    color: var(--orange);
    font-weight: bold;
}
.hero-description {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
}

.hero-description span {
    color: #ff4d00;
    font-size: 16px;
    font-weight: bold;
}
@media(max-width: 768px) {
    .hero {
        position: relative;
        min-height: 120vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        padding: 0 20px;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .hero-buttons a {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    .hero h1 { font-size: 38px; }
}

/* ==========================
   ANIMATIONS
========================== */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================
   CTA
========================== */
.cta.reveal-modern {
    background: linear-gradient(135deg, #ff4d00, #ff6a00);
    padding: 100px 20px;
    text-align: center;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta.reveal-modern::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, rgba(255,77,0,0.3), rgba(255,106,0,0.3));
    animation: moveGradient 10s linear infinite;
    z-index: 0;
}
.cta.reveal-modern .container { position: relative; z-index: 1; }
.cta.reveal-modern h2 { font-size: 42px; font-weight: 800; margin-bottom: 25px; }
.cta.reveal-modern p { font-size: 20px; margin-bottom: 35px; }
@keyframes moveGradient {
    0% { background-position: 0 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0 50%; }
}

/* ==========================
   HOW IT WORKS
========================== */
.how-it-works {
    background: #111;
    padding: 110px 0;
}
.how-it-works .container.center { text-align: center; }
.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 60px;
    justify-items: center;
}
.how-step { max-width: 320px; }
.how-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 22px;
}
.how-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.8;
}
.how-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.how-step p {
    font-size: 16px;
    color: #b5b5b5;
    line-height: 1.6;
}

/* ==========================
   SERVICES HOME
========================== */
.services-home {
    padding: 120px 0;
    background: #111;
}
.services-bg {
    background: #0e0e0e!important;
}
.services-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 70px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    margin-bottom: 60px;
}
.service-card {
    background: linear-gradient(145deg,#151515,#1d1d1d);
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    transition: transform .35s, box-shadow .35s;
    border-bottom: 4px solid var(--orange);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,.6);
}
.service-card i {
    font-size: 44px;
    color: var(--orange);
    margin-bottom: 20px;
    display: inline-block;
}
.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}
.service-card p {
    color: var(--gray);
    font-size: 15.5px;
    line-height: 1.6;
}
.services-cta { text-align: center; }

/* ==========================
   WHY SIMPLE
========================== */
.why-simple {
    background: #0a0a0a;
    padding: 100px 20px;
    text-align: center;
}
.why-list {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: auto;
    gap: 40px;
    flex-wrap: wrap;
}
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1 1 150px;
    transition: transform .3s;
}
.why-item:hover { transform: translateY(-6px); }
.why-item .icon {
    font-size: 48px;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 4px;
}
.why-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
    text-align: left;
}
.why-item p {
    font-size: 15px;
    color: #b5b5b5;
    line-height: 1.6;
    text-align: left;
}

/* ==========================
   AREA / OBSZAR DZIAŁANIA
========================== */
.area {
    background: linear-gradient(135deg, #0e0e0e, #171717);
    padding: 110px 20px;
    text-align: center;
}

.section-title span {
    color: var(--orange);
}

.section-subtitle {
    max-width: 850px;
    margin: 0 auto 60px;
    color: #b5b5b5;
    font-size: 18px;
}

/* GŁÓWNE KARTY */
.area-wrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.area-item {
    background: #1a1a1a;
    border-radius: 18px;
    padding: 35px 30px;
    width: 300px;
    transition: transform .3s, box-shadow .3s;
}

.area-item.highlight {
    border-bottom: 4px solid var(--orange);
}

.area-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

.area-item .icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.area-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.area-item p {
    font-size: 15px;
    color: #b5b5b5;
    line-height: 1.6;
}

.area-item p b {
    color: var(--orange);
}

/* LOKALIZACJE SEO */
.area-locations h3 {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
}

.location-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.tag {
    padding: 10px 18px;
    border-radius: 999px;
    background: #1a1a1a;
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all .25s ease;
    cursor: default;
}

.tag:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-3px);
}

/* RWD */
@media(max-width:768px) {
    .area-wrapper {
        gap: 30px;
    }

    .area-item {
        width: 100%;
        max-width: 360px;
    }

    .section-subtitle {
        font-size: 16px;
    }
}

.tag.active-tag {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(255,106,0,0.35);
}

.tag.active-tag:hover {
    background: var(--orange2);
    border-color: var(--orange2);
}

/* REVIEWS */
.reviews{
    background:#0a0a0a;
    padding:110px 0;
}
.reviews-wrapper{
    position:relative;
    display:flex;
    align-items:center;
}

.reviews-slider{
    display:flex;
    gap:30px;
    overflow:hidden;
    scroll-behavior:smooth;
}

.review-card{
    min-width:340px;
    max-width:340px;
    background:#1a1a1a;
    border-radius:16px;
    padding:24px;
    box-shadow:0 12px 35px rgba(0,0,0,.5);
}

.review-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:18px;
}

.review-user{
    display:flex;
    gap:14px;
}

.review-user img{
    width:48px;
    height:48px;
    border-radius:50%;
}

.review-user strong{
    display:block;
    font-size:15px;
}

.review-user span{
    font-size:13px;
    color:#aaa;
}

.stars{
    color:#ffb703;
    font-size:14px;
    letter-spacing:1px;
}

.review-text{
    font-size:15px;
    color:#ccc;
    line-height:1.6;
}

.arrow{
    background:none;
    border:none;
    color:#ff4d00;
    font-size:48px;
    cursor:pointer;
    padding:10px;
    transition:transform .2s, opacity .2s;
}

.arrow:hover{
    transform:scale(1.2);
    opacity:.8;
}

.reviews-source{
    text-align:center;
    margin-top:30px;
    font-size:14px;
    color:#888;
}

.google-avatar{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#ff6a00;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:16px;
    color:#fff;
    letter-spacing:.5px;
    flex-shrink:0;
}

.avatar.blue{ background:#4285f4; }
.avatar.green{ background:#34a853; }
.avatar.red{ background:#ea4335; }

.reviews-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.review-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 15px;
    transition: transform .3s;
}

.review-link:hover {
    transform: translateY(-2px);
}

.review-link .cta {
    font-weight: 600;
    text-decoration: underline;
    color: var(--orange);
}

.review-link.google i {
    color: #DB4437;
    font-size: 20px;
}

.review-link.facebook i {
    color: #1877F2;
    font-size: 20px;
}

@media(max-width:768px) {
    .reviews-links {
        flex-direction: column;
        gap: 15px;
    }
}

.google-badge {
    font-weight: bold;
}

.facebook-badge {
    font-weight:  bold;
    color: #1877f2;
}

/* FOOTER */
.site-footer {
    background: #0a0a0a;
    padding: 40px 20px;
    font-size: 14px;
    color: var(--gray);
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-container .footer-social {
    font-size: 24px;
    color: var(--gray);
    transition: color 0.3s;
}

.footer-container .footer-social:hover {
    color: var(--orange);
}

/* ==========================
   RESPONSYWNOŚĆ GLOBALNA
========================== */
@media(max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width: 768px) {
    .why-simple h2 { font-size: 32px; }
    .why-simple .subtitle { font-size: 16px; margin-bottom: 40px; }
    .why-list { flex-direction: column; gap: 30px; }
    .why-item .icon { font-size: 32px; }
    .area-wrapper { flex-direction: column; gap: 30px; }
    .services-header h2 { font-size: 30px; }
}
@media(max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
}



/* CONTACT */
.contact-modern {
    background: #111;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    color: #fff;
}

.contact-modern .contact-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border-radius: 16px;
    padding: 25px 30px;
    min-width: 280px;
    max-width: 320px;
    transition: transform .3s, box-shadow .3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.5);
}

.contact-card .icon {
    font-size: 36px;
    color: var(--orange);
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-card .info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
    text-align: left;
}

.contact-card .info a {
    display: block;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 5px;
    text-decoration: underline;
    transition: color .3s;
}
.contact-card .info a:hover {
    color: var(--orange2);
}

.contact-card .info p, .contact-card .info .note {
    font-size: 14px;
    color: #aaa;
    text-align: left;
}

.contact-modern .contact-cta {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* PRICE LIST */
.pricing-page {
    background:#111;
    padding:120px 20px;
}

.pricing-header {
    text-align:center;
    max-width:900px;
    margin:0 auto 70px;
}

/* LISTA */
.pricing-list {
    max-width:900px;
    margin:0 auto;
}

/* POJEDYNCZA USŁUGA */
.pricing-item {
    background:#1a1a1a;
    border-radius:14px;
    margin-bottom:18px;
    overflow:hidden;
}

/* TOGGLE */
.pricing-toggle {
    width:100%;
    background:none;
    border:none;
    padding:24px 26px;
    color:#fff;
    font-size:20px;
    font-weight:700;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.pricing-toggle .arrow {
    font-size:28px;
    color:var(--orange);
    transition:transform .3s;
}

/* CONTENT */
.pricing-content {
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.pricing-item.active .pricing-content {
    max-height:1000px;
}

.pricing-item.active .arrow {
    transform:rotate(45deg);
}

/* CENY */
.pricing-content ul {
    list-style:none;
    padding:0 26px 26px;
}

.pricing-content li {
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid #2a2a2a;
    font-size:16px;
}

.pricing-content li:last-child {
    border-bottom:none;
}

.pricing-content strong {
    color:var(--orange);
}

.pricing-note {
    margin-top:60px;
    margin-bottom: 30px;
    text-align:center;
    color:#b5b5b5;
    font-size:16px;
}


/* RESPONSYWNOŚĆ */
@media(max-width:768px) {
    .contact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contact-card .icon {
        margin-bottom: 12px;
        margin-right: 0;
    }
    .contact-card .info h3, .contact-card .info a, .contact-card .info p {
        text-align: center;
    }
}


/* 404 PAGE */
.page-404{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#0e0e0e,#171717);
    text-align:center;
    padding:40px 20px;
}

.page-404 h1{
    font-size:120px;
    font-weight:900;
    color:var(--orange);
    margin-bottom:20px;
}

.page-404 h2{
    font-size:36px;
    font-weight:800;
    margin-bottom:15px;
    color:#fff;
}

.page-404 p{
    font-size:18px;
    color:var(--gray);
    margin-bottom:30px;
}

.btn-home{
    display:inline-block;
    background:linear-gradient(135deg,var(--orange),var(--orange2));
    color:#fff;
    font-weight:700;
    padding:16px 40px;
    border-radius:10px;
    transition:all .3s;
}

.btn-home:hover{
    background:linear-gradient(135deg,var(--orange2),var(--orange));
    transform:translateY(-3px);
    box-shadow:0 12px 35px rgba(0,0,0,.5);
}

@media(max-width:768px){
    .page-404 h1{font-size:80px;}
    .page-404 h2{font-size:28px;}
    .page-404 p{font-size:16px;}
}


/* FAQ */
.faq-section {
    background: #0a0a0a;
    padding: 100px 20px;
    color: #fff;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.5);
}

.faq-toggle {
    width:100%;
    background:none;
    border:none;
    padding:24px 26px;
    color:#fff;
    font-size:20px;
    font-weight:700;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.faq-toggle .arrow {
    font-size: 22px;
    color: var(--orange);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle .arrow {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
    background: #1a1a1a;
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-content p {
    font-size: 15px;
    color: #b5b5b5;
    line-height: 1.6;
    margin: 0;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}