/* =================================================
GLOBAL / RESET
Podstawowe ustawienia strony
================================================= */

html {
    scroll-behavior: smooth;
    /* płynne przewijanie sekcji */
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    margin: 0;
    color: #1f2937;
    line-height: 1.6;
    background: #ffffff;
}

/* sekcje nie chowają się pod sticky header */

section {
    scroll-margin-top: 100px;
}



/* =================================================
LAYOUT / CONTAINERS
Kontenery ograniczające szerokość strony
================================================= */

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.narrow {
    max-width: 750px;
}



/* =========================
HEADER
========================= */

.header {

    position: sticky;
    top: 0;
    z-index: 1000;

    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;

}


/* wnętrze headera */

.header-inner {

    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 72px;

}


/* logo */

.logo {

    font-weight: 600;
    font-size: 17px;
    letter-spacing: .01em;

    text-decoration: none;
    color: #111827;

}

.logo span {

    color: #1f3a5f;

}

.atelier-link{
text-decoration:none;
color:inherit;
}

.atelier-link:hover{
opacity:0.7;
}


/* menu */

.nav {

    display: flex;
    gap: 28px;

}

.nav a {

    font-size: 14px;
    color: #374151;
    text-decoration: none;

}

.nav a:hover {

    color: #111827;

}

.nav a:last-child {

    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;

}

.header.scrolled {

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}


/* =================================================
HERO SECTION
Sekcja otwierająca stronę
================================================= */

.hero{
background:#f9fafb;
padding:110px 0 90px;
text-align:center;

border-bottom:1px solid #e5e7eb;
}


/* =================================================
HERO EYEBROW
================================================= */

.hero-eyebrow{
font-size:14px;
color:#6b7280;
margin-bottom:18px;
}



/* =================================================
HERO TITLE
================================================= */

.hero h1{
font-size:40px;
line-height:1.2;
letter-spacing:-0.02em;

max-width:720px;
margin-left:auto;
margin-right:auto;
margin-bottom:25px;
}



/* =================================================
HERO DIVIDER
linia editorial
================================================= */

.hero-divider{
width:70px;
height:2px;
background:#d1d5db;
margin:28px auto 34px auto;
}



/* =================================================
HERO TEXT
================================================= */

.hero-text{
font-size:18px;
color:#6b7280;

max-width:620px;
margin-left:auto;
margin-right:auto;
margin-bottom:40px;
}



/* =================================================
HERO BUTTONS
================================================= */

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}



/* =================================================
HERO NOTE
================================================= */

.hero-note{
margin-top:22px;
font-size:14px;
color:#6b7280;
}

/* =================================================
BUTTONS
Style przycisków
================================================= */

.btn-primary {
    background: #111827;
    color: white;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: .2s;
}

.btn-primary:hover {
    background: #000;
}

.btn-secondary {
    border: 1px solid #d1d5db;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 6px;
    color: #111827;
    font-size: 14px;
    transition: .2s;
}

.btn-secondary:hover {
    border-color: #9ca3af;
}

.btn-secondary.small {
    padding: 10px 16px;
    font-size: 13px;
}



/* =================================================
SEKCJE STRONY
Ogólna struktura sekcji
================================================= */

.section {
    padding: 100px 0;
}

.section.light {
    background: #f9fafb;
}

.section-intro {
    color: #6b7280;
    margin-bottom: 40px;
    max-width: 600px;
}

h2 {
    font-size: 30px;
    margin-bottom: 40px;
}

.section h2{
position:relative;
padding-bottom:10px;
}

.section h2:after{
content:"";
display:block;
width:40px;
height:1px;
background:#e5e7eb;
margin-top:10px;
}



/* =================================================
GRID / KARTY
Uniwersalne layouty
================================================= */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.card {
    border: 1px solid #e5e7eb;
    padding: 25px;
    border-radius: 8px;
    transition: .2s;
}

.card:hover {
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.grid-3{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
margin-top:40px;
}

@media (max-width:900px){

.grid-3{
grid-template-columns:1fr;
}

}


/* =================================================
STRUKTURA STRONY (LISTA BLOKÓW)
Wizualizacja układu strony
================================================= */

.structure {
    display: grid;
    gap: 12px;
    font-weight: 600;
}

.structure div {
    border: 1px solid #e5e7eb;
    padding: 14px;
    border-radius: 6px;
}

.subtle-link{
display:block;
margin-top:12px;
font-size:15px;
color:#9ca3af;
}


/* =================================================
LISTA CECH / BENEFITÓW
================================================= */

.features {
    list-style: none;
    padding: 0;
}

.features li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 15px;
}



/* =================================================
CENNIK ATELIER
================================================= */

.pricing-atelier{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
margin-top:40px;
}

.pricing-item{
padding:32px;
border:1px solid #e5e7eb;
border-radius:10px;
background:#ffffff;
transition:all .2s ease;
}

.pricing-item:hover{
transform:translateY(-3px);
border-color:#d1d5db;
}

.pricing-desc{
margin-top:12px;
margin-bottom:20px;
color:#6b7280;
line-height:1.6;
}

.pricing-price{
margin-top:10px;
padding-top:14px;
border-top:1px solid #e5e7eb;

font-size:15px;
letter-spacing:0.04em;
text-transform:uppercase;
color:#374151;
}

/* delikatne wyróżnienie drugiej opcji */
.pricing-item:nth-child(2){
background:#fafafa;
}

/* =================================================
SEKCJA KONTAKTU
================================================= */

.contact-text {
    margin-bottom: 20px;
    color: #6b7280;
}



/* =================================================
SEKCJA TERAPEUTÓW
Profile specjalistów
================================================= */

.therapists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.therapist-card {
    border: 1px solid #e5e7eb;
    padding: 25px;
    border-radius: 8px;
    transition: .2s;
}

.therapist-card:hover {
    transform: translateY(-2px);
    border-color: #d1d5db;
}

.therapist-photo {
    height: 180px;
    background: #f3f4f6;
    border-radius: 6px;
    margin-bottom: 20px;
}

.therapist-role {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 10px;
}

.therapist-desc {
    font-size: 15px;
    margin-bottom: 20px;
}



/* =================================================
DIAGRAM STRONY GABINETU
================================================= */

.site-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.diagram-item {
    border: 1px solid #e5e7eb;
    padding: 12px 20px;
    border-radius: 6px;
    background: white;
    font-weight: 500;
}

.diagram-arrow {
    color: #9ca3af;
    font-size: 20px;
}



/* =================================================
FLOW PACJENTA
================================================= */

.patient-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
}

.flow-item {
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    max-width: 220px;
}

.flow-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.flow-arrow {
    display: flex;
    align-items: center;
    font-size: 22px;
    color: #9ca3af;
}



/* =================================================
ZŁOŻONOŚĆ STRONY GABINETU
================================================= */

.complexity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.complexity-card {
    border: 1px solid #e5e7eb;
    padding: 25px;
    border-radius: 8px;
    background: white;
}

.complexity-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.complexity-card p {
    font-size: 15px;
    color: #6b7280;
}



/* =================================================
FOOTER
================================================= */

.footer {
    background: #f7f8fa;
    border-top: 1px solid #e7eaee;
    margin-top: 140px;
    padding: 60px 0 80px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand strong {
    display: block;
    font-size: 16px;
}

.footer-brand span {
    font-size: 13px;
    color: #6b7280;
}

.footer-nav a {
    margin-left: 18px;
    font-size: 13px;
    color: #374151;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #111827;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    font-size: 13px;
    color: #6b7280;
}

.footer-bottom-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-divider {
    opacity: .5;
    margin: 0 6px;
}

.footer-credit {
    margin-top: 6px;
    font-size: 12.5px;
}

.footer-credit a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
}

.footer-credit a:hover {
    color: #111827;
}



/* =================================================
PROJEKTY ZREALIZOWANE W PRACOWNI
================================================= */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.project-card {
    background: #fff;
    padding: 32px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: .2s;
}

.project-card:hover {
    transform: translateY(-3px);
    border-color: #e5e7eb;
}

.project-preview {
    height: 180px;
    background: #f2f2f2;
    border-radius: 6px;
    margin-bottom: 20px;
}

.project-desc {
    margin: 12px 0 20px 0;
    color: #555;
    line-height: 1.6;
}



/* =================================================
RESPONSIVE
================================================= */

@media(max-width:900px) {

    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:600px) {

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

}

/* =====================================
ANIMACJA POJAWIANIA SIĘ SEKCJI
===================================== */

.section {
    opacity: 0;
    transform: translateY(20px);
    animation: sectionFade .6s ease forwards;
}

@keyframes sectionFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================
EFEKT LINKÓW
===================================== */

.nav a {
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #111827;
    transition: .25s;
}

.nav a:hover::after {
    width: 100%;
}

/* =====================================
TYPOGRAFIA
===================================== */

p {
    max-width: 65ch;
}

.section-intro {
    font-size: 17px;
    line-height: 1.7;
}

.card p {
    line-height: 1.7;
}

/* =====================================
TRUST BAR
===================================== */

.trust-bar {
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    background: #fafafa;
    padding: 18px 0;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

.hero-note{
font-size:14px;
color:#6b7280;
margin-top:18px;
}

/* =================================================
SECTIONS SPACING SYSTEM
================================================= */

.section{
padding:90px 0;
}

.section.light{
background:#f7f7f7;
}

@media (max-width:900px){

.section{
padding:70px 0;
}

}

/* =================================================
CONTAINERS
================================================= */

.container{
max-width:1100px;
margin:0 auto;
padding:0 20px;
}

.container.narrow{
max-width:720px;
}

/* =================================================
SECTION HEADINGS
================================================= */

.section h2{
margin-bottom:22px;
}

.section-intro{
margin-bottom:40px;
max-width:640px;
}


/* =================================================
PROJECT PREVIEW IMAGES
================================================= */

.project-preview{
height:180px;
border-radius:8px;
margin-bottom:18px;
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

/* Pogadajnik */

.preview-pogadajnik{
background-image:url("/img/og-pogadajnik.jpg");
}

/* Janusz Kozioł */

.preview-janusz{
background-image:url("/img/og-janusz-koziol.jpg");
}

/* Strona dla psychologa */

.preview-psycholog{
background-image:url("/img/og-image.jpg");
}

.project-preview{
transition:transform .4s ease;
}

.project-card:hover .project-preview{
transform:scale(1.04);
}

/* =================================================
FAQ
================================================= */

.faq{
margin-top:40px;
display:flex;
flex-direction:column;
gap:12px;
}

.faq-item{
border:1px solid #e5e7eb;
border-radius:8px;
background:#fff;
padding:16px 18px;
}

.faq-item summary{
cursor:pointer;
font-weight:500;
list-style:none;
}

.faq-item summary::-webkit-details-marker{
display:none;
}

.faq-item p{
margin-top:12px;
color:#6b7280;
line-height:1.6;
}

.faq-item summary{
display:flex;
justify-content:space-between;
align-items:center;
}

.faq-item summary::after{
content:"+";
font-size:20px;
color:#6b7280;
}

.faq-item[open] summary::after{
content:"−";
}

/* =================================================
CENNIK ATELIER
================================================= */

.pricing-atelier{
margin-top:40px;
display:flex;
flex-direction:column;
gap:40px;
}

.pricing-item{
padding-bottom:28px;
border-bottom:1px solid #e5e7eb;
}

.pricing-header{
display:flex;
justify-content:space-between;
align-items:baseline;
margin-bottom:10px;
}

.price{
font-weight:600;
font-size:20px;
}

/* =================================================
MOBILE NAVIGATION
================================================= */

.menu-toggle{
display:none;
background:none;
border:none;
font-size:14px;
color:#374151;
cursor:pointer;
}



/* =================================================
MOBILE NAVIGATION
================================================= */

@media (max-width:900px){

.nav{
display:none;

position:fixed;
top:72px;
left:0;

width:100%;
height:calc(100vh - 72px);

background:#ffffff;

flex-direction:column;
align-items:flex-start;

padding:30px 24px;
gap:18px;

overflow-y:auto;
}

.nav a{
font-size:16px;
margin:0;
}

.nav.active{
display:flex;
}

.menu-toggle{
display:block;
}

}

/* =================================================
FOOTER
================================================= */

.footer{
padding:60px 0;
background:#ffffff;
border-top:1px solid #e5e7eb;
}

.footer-inner{
max-width:1100px;
margin:auto;
padding:0 20px;
}

.footer-top{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:30px;
}

.footer-nav a{
margin-left:20px;
text-decoration:none;
color:#374151;
font-size:14px;
}



/* =================================================
FOOTER MOBILE
================================================= */

@media (max-width:900px){

.footer-top{
display:flex;
flex-direction:column;
gap:25px;
}

.footer-brand{
text-align:center;
}

.footer-nav{
display:flex;
flex-direction:column;
align-items:center;
gap:12px;
}

.footer-nav a{
font-size:14px;
margin-left:0;
}

.footer-bottom{
text-align:center;
font-size:13px;
line-height:1.6;
}

.footer-bottom-line{
display:flex;
flex-direction:column;
align-items:center;
gap:6px;
}

.footer-divider{
display:none;
}

}

/* =================================================
PRICING ATELIER
sekcja cennika
================================================= */

.pricing-atelier{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
margin-top:40px;
}

.pricing-item{
padding:28px;
border:1px solid #e5e7eb;
border-radius:8px;
background:#ffffff;
transition:all .2s ease;
}

.pricing-item:hover{
transform:translateY(-3px);
border-color:#d1d5db;
}

.pricing-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:14px;
}

.price{
font-weight:600;
font-size:18px;
color:#111827;
}



/* =================================================
PRICING MOBILE
================================================= */

@media (max-width:900px){

.pricing-atelier{
grid-template-columns:1fr;
gap:24px;
}

.pricing-item{
padding:24px;
}

.pricing-header{
flex-direction:column;
align-items:flex-start;
gap:6px;
}

.price{
font-size:17px;
}

}

/* =================================================
LOGO
================================================= */
.logo{
text-decoration:none;
color:inherit;
}

/* =================================================
Polityka Prywatności
================================================= */
.policy-content p{
text-align:left;
margin-left:auto;
margin-right:auto;
max-width:520px;
}

.narrow p{
text-align:left;
}


/* =================================================
Techniczny TIP
================================================= */

a {
  text-decoration: none;
  color: #1f3a5f;
}

a:hover {
  opacity: 0.7;
}


/* =================================================
Struktura i Widocznos
================================================= */

.seo-list {
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.seo-list li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 15px;
}

.seo-key {
  color: #6b7280;
}

.seo-arrow {
  color: #9ca3af;
}

.seo-list a {
  color: #1f3a5f;
  text-decoration: none;
}

.seo-list a:hover {
  text-decoration: underline;
}




/* =================================================
Jak zdobywać pacjentów z Google
================================================= */

.trust-link {
  color: #6b7280;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.trust-link:hover {
  border-bottom: 1px solid #9ca3af;
}

.trust-sep {
  margin: 0 6px;
  color: #9ca3af;
}

