/* Podstawy */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #1f2933;
    background-color: #f5f7fa;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Nagłówek */
.site-header {
    background: #020617;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}
    .site-header .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }




.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.03em;
    color: #e5e7eb;
}

.logo img {
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    object-fit: cover;
}

.logo-text span {
    color: #38bdf8;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.main-nav a {
    color: #e5e7eb;
    font-size: 0.95rem;
    padding: 0.4rem 0.6rem;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s;
}

.main-nav a:hover {
    background: #1e293b;
}

.main-nav a.active {
    background: #1d4ed8;
    color: #fff;
}

.btn-nav {
    background: #1d4ed8;
    color: #fff;
}

.btn-nav:hover {
    background: #2563eb;
}

/* Hamburger */
.nav-toggle {
    display: none;
    border: 1px solid transparent;
    background: transparent;
    padding: 0.5rem;
    border-radius: 999px;
    cursor: pointer;
    width: 42px;
    height: 42px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #e5e7eb;
    margin: 3px 0;
}

/* Sekcje */
.section {
    padding: 3rem 0;
    background: #f5f7fa;
}

.section-alt {
    background: #ffffff;
}

.page {
    padding-top: 2.5rem;
}

h1, h2, h3 {
    color: #0b1120;
}

h1 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.5rem;
    margin: 2rem 0 0.75rem;
}

h3 {
    font-size: 1.15rem;
    margin: 1.25rem 0 0.5rem;
}

p {
    margin-bottom: 0.9rem;
}

/* Hero */
.hero {
    background: radial-gradient(circle at top left, #1d4ed8 0, #020617 60%, #020617 100%);
    color: #e5e7eb;
    padding: 3.5rem 0 3rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.9fr);
    gap: 2rem;
    align-items: center;
}

.hero h1 {
    color: #f9fafb;
    font-size: 2rem;
}

.hero p {
    color: #e5e7eb;
}

.hero-benefits {
    list-style: none;
    margin-top: 1rem;
}

.hero-benefits li {
    position: relative;
    padding-left: 1.3rem;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

.hero-benefits li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #38bdf8;
}

.hero-cta {
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 320px;
}

.hero-contact {
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

/* Przyciski */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #38bdf8;
    color: #0b1120;
}

.btn-primary:hover {
    background: #0ea5e9;
    text-decoration: none;
}

.btn-secondary {
    background: #0f172a;
    color: #e5e7eb;
}

.btn-secondary:hover {
    background: #1e293b;
    text-decoration: none;
}

/* Karty, boxy */
.card {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.7);
}

.card h2 {
    color: #e5e7eb;
    margin-top: 0;
}

.card ul {
    list-style: none;
}

.card li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.card-note {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Wideo (light YouTube) */

.video-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.7);
    background: #000;
}

.yt-lite {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 1rem;
    overflow: hidden;
}

.yt-lite-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.yt-lite-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left,
        rgba(56, 189, 248, 0.25) 0,
        rgba(15, 23, 42, 0.6) 45%,
        rgba(2, 6, 23, 0.85) 100%);
}

.yt-lite-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 48px;
    margin-left: -34px;
    margin-top: -24px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.8);
}

.yt-lite-play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -6px;
    margin-top: -10px;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #38bdf8;
}

.yt-lite iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.yt-lite.yt-lite-playing .yt-lite-overlay {
    display: none;
}
.hero-video-note {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Boxy ogólne */
.box {
    background: #ffffff;
    border-radius: 0.9rem;
    padding: 1.25rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

/* Gridy */
.grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.grid.two {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid.three {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Kroki */
.steps {
    list-style: decimal;
    margin-left: 1.25rem;
}

.steps li {
    margin-bottom: 0.75rem;
}

/* FAQ */
.faq article {
    margin-bottom: 1.2rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid #e5e7eb;
}

/* Cennik */
.pricing {
    margin-top: 1rem;
}

.price-box {
    background: #ffffff;
    border-radius: 0.9rem;
    padding: 1.3rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.price-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price-note {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #4b5563;
}

/* Formularz */
.contact-form {
    background: #ffffff;
    border-radius: 0.9rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    margin: 1rem 0 2rem;
}

.form-row {
    margin-bottom: 0.9rem;
}

.form-row label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 0.5rem;
    border: 1px solid #cbd5e1;
    font: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}

/* Drobne elementy */
.highlight {
    background: #e0f2fe;
    border-radius: 0.75rem;
    padding: 0.9rem 1rem;
    margin-top: 1rem;
}

.small-note {
    font-size: 0.9rem;
    color: #4b5563;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

.cta-center p {
    margin-top: 0.4rem;
}

/* Stopka */
.site-footer {
    background: #020617;
    color: #e5e7eb;
    margin-top: 2rem;
}
.site-footer .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}


.site-footer a {
    color: #e5e7eb;
    text-decoration: underline;
    font-weight: 500;
}

.site-footer a:hover {
    color: #38bdf8;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0 1.5rem;
}


.footer-inner h3 {
    color: #e5e7eb;
    margin-bottom: 0.6rem;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.3rem;
}

.footer-nav a {
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #111827;
    padding: 0.75rem 1.5rem;
    text-align: center;
    font-size: 0.85rem;
}
.foto {
    width: 100%;
   padding: 80px;
    border-radius: 20px;
  
}

/* Responsywność */
@media (max-width: 900px) {
    

    .header-inner {
        gap: 0.5rem;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
        border-color: #1e293b;
        background: #020617;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #020617;
        padding: 0.6rem 1.25rem 1.1rem;
        display: none;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .main-nav.nav-open {
        display: block;
    }
}

@media (max-width: 800px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 2.5rem;
    }

    h1 {
        font-size: 1.6rem;
    }
}


/* Listy w treści – odstęp od krawędzi kontenera */
main ul {
    margin-left: 0;
    padding-left: 1.25rem;
}

main ul li {
    margin-left: 0;
}

/* Hero – lista benefitów bez dodatkowego wcięcia */
.hero-benefits {
    list-style: none;
    margin-top: 1rem;
    padding-left: 0;
}

.hero-benefits li {
    position: relative;
    padding-left: 1.3rem;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

.hero-benefits li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #38bdf8;
}

.hero-cta .btn-primary,
.hero-cta .btn-secondary {
    width: 100%;
    white-space: nowrap;
}



/* Podstrony – delikatny podział sekcji tłem */
main.page section {
    margin: 2rem 0;
    padding: 1.5rem 1.25rem;
    border-radius: 0.9rem;
    background: #ffffff;
}

main.page section:nth-of-type(even) {
    background: #f5f7fa;
}
