/* =========================
   ZMIENNE
========================= */
:root {
    --text-main: #f1f3f5;
    --text-muted: #c4c8ce;
    --accent: #4f83ff;
    --border-soft: rgba(255,255,255,0.25);
}

/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;
    background-color: #111;
    color: var(--text-main);
    line-height: 1.6;
}

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    min-height: 68vh;
    display: flex;
    align-items: center;

    background-image: url("../img/main.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Overlay – gradient + przyciemnienie */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.6) 50%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}


/* Treść nad overlay */
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 960px;
    padding: 80px 20px;
    margin: 0 auto;
}

/* Lokalizacja */
.hero-location {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    letter-spacing: 0.4px;
}

/* H1 */
.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Opis */
.hero-subtitle {
    max-width: 640px;
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
}

/* CTA */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.25s ease;
}

.btn-primary:hover {
    background-color: #3b6de0;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: background-color 0.25s ease, border-color 0.25s ease;
}


.btn-secondary:hover {
    border-color: var(--accent);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .hero-inner {
        padding: 60px 16px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
/* =========================
   SEKCJA – REGENERACJA REFLEKTORÓW
========================= */
.section-headlights {
    position: relative;
    background-color: #f7f8fa;
    color: #1f2328;
    overflow: hidden;
}

/* Gradient przejścia z hero */
.section-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.15) 40%,
        rgba(247, 248, 250, 1) 100%
    );
    pointer-events: none;
}

/* Wnętrze */
.section-headlights .section-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 20px 90px;
}

/* Tytuł */
.section-title {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 14px;
}

.section-line {
    display: block;
    width: 48px;
    height: 2px;
    background-color: var(--accent);
    margin: 0 auto 18px;
}

.section-title p {
    font-size: 17px;
    color: #555;
}

/* Grid kart */
.headlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Karta */
.headlight-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid;
    border-color: #3b6ce065;
}

/* Header karty */
.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.headlight-icon {
    font-size: 22px;
    color: var(--accent);
    line-height: 1;
}

.headlight-card h3 {
    font-size: 19px;
    margin: 0;
}

.headlight-card p {
    font-size: 15.5px;
    color: #444;
}

/* Dolny tekst lokalny */
.headlights-bottom {
    margin-top: 56px;
    text-align: center;
    font-size: 16px;
    color: #555;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .section-headlights .section-inner {
        padding: 100px 16px 64px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .headlights-grid {
        grid-template-columns: 1fr;
    }

    .section-gradient {
        height: 110px;
    }
}
/* =========================
   SEKCJA – PRANIE TAPICERKI
========================= */
.section-upholstery.alt-bg {
    position: relative;
    background-color: #f1f2f3;
    color: #1f2328;
    overflow: hidden;
}

/* Gradient przejścia */
.upholstery-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(
        180deg,
        rgba(247, 248, 250, 1) 0%,
        rgba(241, 242, 243, 0.7) 40%,
        rgba(241, 242, 243, 1) 100%
    );
    pointer-events: none;
}

/* Layout + PADDINGI */
.section-upholstery .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 32px 100px; /* ← TUTAJ SĄ BOCZNE PADDINGI */
}

/* Grid */
.upholstery-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

/* Tekst */
.upholstery-text h2 {
    font-size: 30px;
    margin-bottom: 14px;
}

.upholstery-text .section-lead {
    font-size: 17px;
    color: #444;
    margin-bottom: 28px;
}

/* Lista */
.upholstery-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.upholstery-list li {
    margin-bottom: 12px;
    font-size: 15.5px;
    color: #333;
}

/* Lokalizacja */
.upholstery-local {
    font-size: 15px;
    color: #555;
}

/* Obraz */
.upholstery-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.14);
    object-fit: cover;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .section-upholstery .section-inner {
        padding: 96px 16px 64px;
    }

    .upholstery-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .upholstery-text h2 {
        font-size: 26px;
    }

    .upholstery-image {
        order: -1;
    }

    .upholstery-gradient {
        height: 100px;
    }
}
/* =========================
   SEKCJA – CENNIK
========================= */
.section-pricing {
    position: relative;
    background-color: #ffffff;
    color: #1f2328;
    overflow: hidden;
}

/* Gradient przejścia */
.pricing-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(
        180deg,
        rgba(241, 242, 243, 1) 0%,
        rgba(255, 255, 255, 1) 100%
    );
    pointer-events: none;
}

/* Wnętrze */
.section-pricing .section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 32px 100px;
}

/* Grupy */
.pricing-groups {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 56px;
}

/* Nagłówki grup */
.pricing-group h3 {
    font-size: 22px;
    margin-bottom: 24px;
}

/* Karty cenowe */
.price-card {
    background-color: #f7f8fa;
    border-radius: 10px;
    padding: 20px 22px;
    margin-bottom: 16px;
        border: 1px solid;
    border-color: #3b6ce065;
}

.price-card.highlight {
    border-left: 4px solid var(--accent);
    background-color: #f1f4ff;
}

/* Header ceny */
.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.price-header span {
    font-weight: 500;
}

.price-header strong {
    font-weight: 700;
}

/* Opis */
.price-card p {
    font-size: 14.5px;
    color: #555;
}

/* CTA */
.pricing-cta {
    margin-top: 64px;
    text-align: center;
}

.pricing-cta p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #444;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .section-pricing .section-inner {
        padding: 126px 16px 64px;
    }

    .pricing-groups {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
/* =========================
   SEKCJA – FAQ
========================= */
.section-faq {
    position: relative;
    background-color: #f7f8fa;
    color: #1f2328;
    overflow: hidden;
}

/* Gradient przejścia */
.faq-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,1) 0%,
        rgba(247,248,250,1) 100%
    );
    pointer-events: none;
}

/* Layout */
.faq-layout {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 32px 100px;

    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: flex-start;
}

/* =========================
   ZDJĘCIE – POZIOME
========================= */

.faq-image img {
    margin-top: 50px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}


/* =========================
   TREŚĆ SEO
========================= */
.faq-content h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.faq-content .section-line {
    margin-bottom: 32px;
}

.faq-item {
    margin-bottom: 32px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.faq-item p {
    font-size: 15.5px;
    line-height: 1.65;
    color: #444;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 1024px) {

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-image img {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {

    .faq-layout {
        padding: 96px 16px 64px;
    }

    .faq-content h2 {
        font-size: 26px;
    }

    .faq-item h3 {
        font-size: 17px;
    }

    .faq-item p {
        font-size: 15px;
    }
}
/* =========================
   SEKCJA – O NAS (CLEAN)
========================= */
.section-about-clean {
    position: relative;
    background-color: #ffffff;
    color: #1f2328;
    overflow: hidden;
}

/* Delikatne przejście */
.about-clean-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(
        180deg,
        rgba(247,248,250,1) 0%,
        rgba(255,255,255,1) 100%
    );
    pointer-events: none;
}

/* Layout */
.about-clean-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 32px 100px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
}

/* Tekst */
.about-clean-text h2 {
    font-size: 30px;
    margin-bottom: 14px;
}

.about-clean-text p {
    font-size: 16px;
    line-height: 1.65;
    color: #444;
    margin-bottom: 16px;
}

/* Punkty */
.about-clean-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Jeden wiersz */
.point-row {
    display: flex;
    align-items: center; /* 🔥 RÓWNO IKONA + TEKST */
    gap: 16px;

    background-color: #f7f8fa;
    border-radius: 12px;
    padding: 18px 20px;
}

/* Ikona */
.point-icon {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}

/* Tekst obok ikony */
.point-text {
    display: flex;
    flex-direction: column;
}

.point-text strong {
    font-size: 15.5px;
    font-weight: 600;
    margin-bottom: 2px;
}

.point-text span {
    font-size: 14.5px;
    color: #555;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 1024px) {

    .about-clean-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {

    .about-clean-inner {
        padding: 96px 16px 64px;
    }

    .about-clean-text h2 {
        font-size: 26px;
    }
}
/* =========================
   SEKCJA – CTA (PŁYNNE PRZEJŚCIA)
========================= */
.section-cta-clean {
    position: relative;
    background-color: #f7f8fa; /* spójne tło */
    overflow: hidden;
}

/* Gradient górny – wejście z poprzedniej sekcji */
.cta-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(
        180deg,
        rgba(247,248,250,0) 0%,
        rgba(247,248,250,1) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Gradient dolny – wyjście do następnej sekcji */
.cta-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(
        0deg,
        rgba(247,248,250,0) 0%,
        rgba(247,248,250,1) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Wnętrze */
.cta-clean-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 32px;
    display: flex;
    justify-content: center;
}

/* BOX ZE ZDJĘCIEM */
.cta-clean-box {
    position: relative;
    width: 100%;
    max-width: 880px;
    border-radius: 20px;
    overflow: hidden;

    background-image: url("../img/cta.png");
    background-size: cover;
    background-position: center;
}

/* Overlay na zdjęciu */
.cta-clean-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.65) 100%
    );
}

/* Treść */
.cta-clean-content {
    position: relative;
    padding: 64px 64px;
    text-align: center;
    color: #ffffff;
}

.cta-clean-content h2 {
    font-size: 30px;
    margin-bottom: 16px;
}

.cta-clean-content p {
    font-size: 16.5px;
    line-height: 1.6;
    color: #e6e8eb;
    max-width: 640px;
    margin: 0 auto 32px;
}

/* CTA buttons */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .cta-clean-inner {
        padding: 96px 16px;
    }

    .cta-clean-content {
        padding: 48px 24px;
    }

    .cta-clean-content h2 {
        font-size: 24px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions a {
        width: 100%;
        text-align: center;
    }

    .cta-gradient-top,
    .cta-gradient-bottom {
        height: 100px;
    }
}
/* =========================
   SEKCJA – CTA (GRADIENT FLOW)
========================= */
.section-cta-clean {
    position: relative;
    background-color: #f7f8fa;
    overflow: hidden;
}

/* WEJŚCIE Z O NAS */
.section-cta-clean::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,1) 0%,
        rgba(247,248,250,0) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* WYJŚCIE DO KOLEJNEJ SEKCJI */
.section-cta-clean::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: linear-gradient(
        0deg,
        rgba(247,248,250,1) 0%,
        rgba(247,248,250,0) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Wnętrze */
.cta-clean-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 32px;
    display: flex;
    justify-content: center;
}

/* BOX ZE ZDJĘCIEM */
.cta-clean-box {
    position: relative;
    width: 100%;
    max-width: 880px;
    border-radius: 20px;
    overflow: hidden;
    background-image: url("../img/cta.png");
    background-size: cover;
    background-position: center;
}

/* Overlay */
.cta-clean-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.65) 100%
    );
}

/* Treść */
.cta-clean-content {
    position: relative;
    padding: 64px 64px;
    text-align: center;
    color: #ffffff;
}

.cta-clean-content h2 {
    font-size: 30px;
    margin-bottom: 16px;
}

.cta-clean-content p {
    font-size: 16.5px;
    line-height: 1.6;
    color: #e6e8eb;
    max-width: 640px;
    margin: 0 auto 32px;
}

/* CTA */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* MOBILE */
@media (max-width: 768px) {
    .cta-clean-inner {
        padding: 96px 16px;
    }

    .cta-clean-content {
        padding: 48px 24px;
    }

    .cta-clean-content h2 {
        font-size: 24px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions a {
        width: 100%;
        text-align: center;
    }

    .section-about-clean::before,
    .section-about-clean::after,
    .section-cta-clean::before,
    .section-cta-clean::after {
        height: 110px;
    }
}
/* =========================
   FOOTER
========================= */
.site-footer {
    position: relative;
    background-color: #111214;
    color: #e6e8eb;
    overflow: hidden;
}

/* =========================
   FOOTER – CZYSTE ODCIĘCIE
========================= */
.site-footer {
    position: relative;
    background-color: #111214;
    color: #e6e8eb;
}

/* Linia odcięcia od góry */
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(0,0,0,0.08);
}

/* Wnętrze */
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 32px 64px;

    display: grid;
    grid-template-columns: 1fr 1.4fr 0.8fr 1.2fr;
    gap: 48px;
}

/* Kolumny */
.footer-col h4 {
    font-size: 16px;
    margin-bottom: 14px;
}

.footer-col p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #c9ccd1;
    margin-bottom: 14px;
}

/* Logo */
.footer-logo img {
    max-width: 180px;
}

/* Linki */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e6e8eb;
    text-decoration: none;
    font-size: 14.5px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Kontakt */
.footer-contact a {
    color: #e6e8eb;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-contact .muted {
    font-size: 13px;
    color: #9aa0a6;
}

/* Dolny pasek */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    padding: 20px 16px;
    font-size: 13.5px;
    color: #9aa0a6;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        padding: 64px 16px 48px;
    }

    .footer-logo img {
        max-width: 160px;
    }
}
/* Kontakt – element z ikoną */
.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

/* Ikona */
.footer-contact .contact-icon {
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
    opacity: 0.9;
    flex-shrink: 0;
}

/* Tekst */
.footer-contact .contact-text {
    font-size: 14.5px;
    line-height: 1.5;
}

.footer-contact .contact-text strong {
    display: block;
    margin-bottom: 2px;
    font-weight: 600;
}

.footer-contact .contact-text a {
    color: #e6e8eb;
    text-decoration: none;
}

.footer-contact .contact-text a:hover {
    text-decoration: underline;
}

.footer-contact .contact-text span {
    color: #c9ccd1;
}
/* =========================
   HEADER
========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #111214;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.header-logo img {
    height: 40px;
}

/* NAV */
.header-nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav a {
    color: #e6e8eb;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
}

.header-nav a:hover {
    text-decoration: underline;
}

/* CTA */
.btn-call {
    background-color: #f7f8fa;
    color: #111214;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.btn-call span {
    font-weight: 700;
}

/* BURGER */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #e6e8eb;
    margin: 5px 0;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    background-color: #111214;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu ul {
    list-style: none;
    padding: 24px 16px;
    margin: 0;
    text-align: center;
}

.mobile-menu li {
    margin-bottom: 16px;
}

.mobile-menu a {
    color: #e6e8eb;
    text-decoration: none;
    font-size: 16px;
}

.mobile-call a {
    display: inline-block;
    margin-top: 12px;
    font-weight: 600;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 992px) {

    .header-nav,
    .header-cta {
        display: none;
    }

    .burger {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }
}
