/* ============================================================
   DEZYNFEKCJA I OZONOWANIE PRO — Główny arkusz stylów
   ============================================================ */

/* Fonts loaded via <link> in header.php for non-blocking rendering */

/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }

/* === CUSTOM PROPERTIES === */
:root {
    --navy:        #1a2e4a;
    --navy-dark:   #111c2e;
    --navy-mid:    #1e3a5f;
    --blue:        #1e5fa8;
    --blue-hover:  #194e8e;
    --green:       #2e9e5b;
    --green-hover: #26875c;
    --green-light: rgba(46, 158, 91, .1);
    --green-mid:   rgba(46, 158, 91, .18);
    --white:       #ffffff;
    --light:       #f4f7fb;
    --light-mid:   #edf1f7;
    --border:      #e2e8f0;
    --text:        #2d3748;
    --muted:       #64748b;
    --radius:      8px;
    --radius-lg:   14px;
    --radius-xl:   20px;
    --shadow:      0 2px 12px rgba(0, 0, 0, .07);
    --shadow-md:   0 6px 24px rgba(0, 0, 0, .12);
    --shadow-lg:   0 12px 40px rgba(0, 0, 0, .15);
    --max-w:       1160px;
    --tr:          .2s ease;
    --font-display: 'Lexend', system-ui, sans-serif;
    --font-body:    'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
}

/* === FOCUS === */
:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 3px;
    border-radius: 4px;
}

/* === LAYOUT === */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section { padding: 4.5rem 0; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
    line-height: 1.25;
    font-weight: 700;
    font-family: var(--font-display);
}

.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: var(--navy);
    margin-bottom: .6rem;
    letter-spacing: -.02em;
}

.section-sub {
    text-align: center;
    color: var(--muted);
    margin-bottom: 3rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}

.section-label {
    display: block;
    text-align: center;
    font-size: .82rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .5rem;
    font-family: var(--font-display);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .85rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background var(--tr), color var(--tr), transform var(--tr), box-shadow var(--tr);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: .01em;
    font-family: var(--font-display);
}

.btn-icon {
    flex-shrink: 0;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
    box-shadow: 0 4px 14px rgba(46, 158, 91, .35);
}
.btn-primary:hover {
    background: var(--green-hover);
    border-color: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 158, 91, .45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .6);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-blue {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    box-shadow: 0 4px 14px rgba(30, 95, 168, .3);
}
.btn-blue:hover {
    background: var(--blue-hover);
    border-color: var(--blue-hover);
    transform: translateY(-2px);
}

.btn-sm {
    padding: .55rem 1.25rem;
    font-size: .9rem;
}

/* === HEADER / NAV === */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 1px 0 var(--border), 0 2px 12px rgba(0, 0, 0, .06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 86px;
}

.site-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-full {
    display: block;
    height: 66px;
    width: auto;
}

.logo-mobile {
    display: none;
}

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

.nav-menu > li > a {
    color: var(--text);
    text-decoration: none;
    padding: .5rem .85rem;
    border-radius: 6px;
    transition: background var(--tr), color var(--tr);
    font-size: .92rem;
    display: block;
    white-space: nowrap;
    font-family: var(--font-display);
    font-weight: 500;
}

.nav-menu > li > a:hover {
    color: var(--navy);
    background: var(--light);
}

.nav-menu > li > a.active {
    color: var(--blue);
    background: rgba(30, 95, 168, .08);
}

/* Nav CTA button */
.nav-cta { margin-left: .5rem; }

.nav-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1rem !important;
    background: var(--green);
    color: var(--white) !important;
    border-radius: var(--radius);
    font-size: .88rem !important;
    font-weight: 600;
    font-family: var(--font-display);
    text-decoration: none;
    transition: background var(--tr), transform var(--tr);
    white-space: nowrap;
}

.nav-phone-btn:hover {
    background: var(--green-hover) !important;
    transform: translateY(-1px);
}

/* Dropdown */
.has-dropdown { position: relative; }

.has-dropdown > a::after {
    content: ' \25BE';
    font-size: .7rem;
    opacity: .45;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    border-radius: var(--radius) var(--radius) var(--radius-lg) var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12), 0 0 0 1px rgba(0,0,0,.04);
    padding: .5rem 0;
    padding-top: calc(.5rem + 6px);
    list-style: none;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    display: block;
}

.dropdown li a {
    display: block;
    padding: .55rem 1.25rem;
    font-size: .9rem;
    color: var(--text);
    text-decoration: none;
    transition: background var(--tr), color var(--tr);
}

.dropdown li a:hover {
    background: var(--light);
    color: var(--navy);
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: .4rem 0;
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--tr);
}

/* === HERO === */
.hero {
    background: var(--navy-dark);
    color: var(--white);
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    background:
        linear-gradient(140deg, rgba(15,30,51,.82) 0%, rgba(26,46,74,.75) 40%, rgba(27,60,110,.7) 100%),
        url('../img/1.png') center/cover no-repeat;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(46, 158, 91, .2);
    color: #7de0a8;
    border: 1px solid rgba(46, 158, 91, .4);
    padding: .35rem 1rem;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.hero h1 {
    font-size: clamp(2rem, 5.5vw, 3.4rem);
    margin-bottom: 1.1rem;
    line-height: 1.15;
    letter-spacing: -.03em;
}

.hero h1 em {
    font-style: normal;
    color: #6ddba0;
}

.hero p {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, .78);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero tags strip */
.hero-tags {
    margin-top: 1.75rem;
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    letter-spacing: .02em;
}

/* Hero stats bar */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 3rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(4px);
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: .25rem 2rem;
    flex: 1;
    min-width: 110px;
}

.hero-stat strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: #7de0a8;
    line-height: 1.1;
    font-family: var(--font-display);
    letter-spacing: -.02em;
}

.hero-stat span {
    display: block;
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    margin-top: .2rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.hero-stat-div {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.15);
    flex-shrink: 0;
}

/* === TRUST BAR === */
.trust-bar {
    background: var(--light-mid);
    border-bottom: 1px solid var(--border);
    padding: .9rem 0;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .88rem;
    color: var(--muted);
    font-weight: 500;
}

.trust-item svg {
    color: var(--green);
    flex-shrink: 0;
}

/* === SERVICES TILES === */
.services-section { background: var(--light); }

.tiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.tile {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem 1.75rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    box-shadow: var(--shadow);
    transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
    border: 1px solid var(--border);
    border-top: 3px solid var(--green);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(46,158,91,.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--tr);
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(46,158,91,.3);
}

.tile:hover::before { opacity: 1; }

.tile-icon {
    width: 68px;
    height: 68px;
    background: rgba(46, 158, 91, .13);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #1e8a49;
    transition: background var(--tr), color var(--tr), transform var(--tr);
    flex-shrink: 0;
}

.tile-icon svg {
    width: 30px;
    height: 30px;
}

.tile:hover .tile-icon {
    background: var(--green);
    color: var(--white);
    transform: scale(1.08);
}

.tile h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .4rem;
    font-family: var(--font-display);
}

.tile p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: .5rem;
}

.tile-link {
    margin-top: auto;
    font-size: .82rem;
    font-weight: 600;
    color: var(--green);
    font-family: var(--font-display);
    transition: color var(--tr);
}

.tile:hover .tile-link { color: var(--green-hover); }

/* === PROCESS (Jak to działa) === */
.process-section { background: var(--white); }

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 280px;
}

.process-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green) 0%, #34b868 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin: 0 auto 1.1rem;
    box-shadow: 0 4px 16px rgba(46, 158, 91, .3);
}

.process-step h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: .5rem;
    font-family: var(--font-display);
}

.process-step p {
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.6;
}

.process-arrow {
    display: flex;
    align-items: center;
    padding-top: 1rem;
    color: var(--border);
    flex-shrink: 0;
}

/* === WHY US === */
.why-section { background: var(--light); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    transition: box-shadow var(--tr), transform var(--tr);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    transform: scaleX(0);
    transition: transform .3s ease;
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.why-card:hover::after { transform: scaleX(1); }

.why-icon {
    width: 68px;
    height: 68px;
    background: rgba(46, 158, 91, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: background var(--tr);
}

.why-card:hover .why-icon {
    background: rgba(46, 158, 91, .2);
}

.why-icon svg {
    color: var(--green);
    width: 30px;
    height: 30px;
}

.why-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: .6rem;
    font-family: var(--font-display);
}

.why-card p {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.65;
}

/* === FAQ === */
.faq-section { background: var(--white); }

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: .75rem;
    overflow: hidden;
    transition: box-shadow var(--tr);
}

.faq-item[open] {
    box-shadow: var(--shadow);
    border-color: rgba(46,158,91,.3);
}

.faq-question {
    padding: 1.15rem 1.5rem;
    font-weight: 600;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: background var(--tr);
}

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

.faq-question::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    transition: transform .2s ease;
    flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
    transform: rotate(-135deg);
}

.faq-question:hover {
    background: var(--light);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text);
    font-size: .95rem;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--blue);
    text-decoration: underline;
}

/* === AREA === */
.area-section { background: var(--light); padding: 2.75rem 0; }

.area-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    color: var(--muted);
    font-size: 1rem;
}

.area-inner strong { color: var(--navy); }

.area-icon {
    color: var(--green);
    display: block;
    margin: 0 auto .5rem;
}

/* === CTA BAR === */
.cta-bar {
    background: linear-gradient(135deg, #0f1e33 0%, #1a2e4a 50%, #1b3c6e 100%);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

.cta-bar::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(46,158,91,.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    margin-bottom: .4rem;
    letter-spacing: -.02em;
}

.cta-text p {
    color: rgba(255, 255, 255, .7);
    font-size: 1rem;
}

.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* === FLOATING WHATSAPP === */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 150;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    transition: transform var(--tr), box-shadow var(--tr);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, .55);
}

/* === MOBILE STICKY CTA === */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 180;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 16px rgba(0,0,0,.1);
    padding: .6rem .75rem;
    gap: .5rem;
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .75rem 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    font-family: var(--font-display);
    transition: background var(--tr);
}

.mobile-cta-phone {
    background: var(--green);
    color: var(--white);
}

.mobile-cta-phone:hover { background: var(--green-hover); }

.mobile-cta-wa {
    background: var(--light);
    color: var(--navy);
    border: 1px solid var(--border);
}

.mobile-cta-wa:hover { background: var(--light-mid); }

/* === FOOTER === */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, .65);
    padding: 3.5rem 0 1.75rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand-name {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .6rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-display);
}

.footer-logo-img { flex-shrink: 0; border-radius: 5px; height: 50px; width: auto; background: var(--white); padding: 6px 10px; }

.footer-brand p {
    font-size: .9rem;
    line-height: 1.75;
    max-width: 320px;
}

.footer-col h4 {
    color: var(--white);
    font-size: .9rem;
    margin-bottom: .9rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-family: var(--font-display);
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: .45rem; }

.footer-col ul li a {
    color: rgba(255, 255, 255, .58);
    text-decoration: none;
    font-size: .88rem;
    transition: color var(--tr);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-contact {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    font-size: .85rem;
    transition: color var(--tr);
}

.footer-contact-link:hover { color: var(--white); }

.footer-contact-link svg { color: var(--green); flex-shrink: 0; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    font-size: .82rem;
}

/* === ABOUT / TRUST SECTION === */
.about-section { background: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-photo {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/5;
}

.about-photo-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: var(--green);
    color: var(--white);
    padding: .5rem 1rem;
    border-radius: var(--radius);
    font-size: .82rem;
    font-weight: 600;
    font-family: var(--font-display);
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.about-content h2 {
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -.02em;
}

.about-content > p {
    color: var(--text);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 1.02rem;
}

.about-features {
    list-style: none;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .95rem;
    color: var(--text);
    line-height: 1.5;
}

.about-features li svg {
    flex-shrink: 0;
    color: var(--green);
    margin-top: .15rem;
}

.about-equipment {
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-equipment img {
    width: 100%;
    display: block;
}

/* === PAGE HERO (podstrony) === */
.page-hero {
    background: var(--navy-dark);
    color: var(--white);
    padding: 3.5rem 0 2.75rem;
    position: relative;
    overflow: hidden;
}

.page-hero--img {
    padding: 5.5rem 0 4.5rem;
}

.page-hero--img::before {
    content: '';
    position: absolute;
    inset: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    background:
        linear-gradient(140deg, rgba(15,30,51,.88) 0%, rgba(26,46,74,.83) 50%, rgba(27,60,110,.78) 100%),
        var(--page-hero-bg) center/cover no-repeat;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.page-hero > .container { position: relative; z-index: 1; }

.page-hero .breadcrumb {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    margin-bottom: .85rem;
}

.page-hero .breadcrumb a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
}
.page-hero .breadcrumb a:hover { color: var(--white); }

.page-hero h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    margin-bottom: .6rem;
    letter-spacing: -.02em;
}

.page-hero p {
    color: rgba(255, 255, 255, .75);
    max-width: 620px;
    font-size: 1.05rem;
}

/* === SERVICE CONTENT === */
.service-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
}

.service-content h2 {
    color: var(--navy);
    font-size: 1.45rem;
    margin: 2.25rem 0 .85rem;
    padding-bottom: .4rem;
    border-bottom: 2px solid var(--light);
    font-family: var(--font-display);
    letter-spacing: -.01em;
}

.service-content h2:first-child { margin-top: 0; }

.service-content p { margin-bottom: 1rem; color: var(--text); }

.service-content ul,
.service-content ol {
    margin: .75rem 0 1.25rem 1.6rem;
}

.service-content li { margin-bottom: .45rem; }

/* Safety box */
.safety-box {
    background: var(--light);
    border-left: 4px solid var(--green);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.25rem 1.5rem;
    margin: 2.25rem 0;
}

.safety-box h3 {
    color: var(--navy);
    margin-bottom: .5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-display);
}

.safety-box p { margin-bottom: 0; color: var(--muted); font-size: .95rem; }

/* Numbered steps */
.steps {
    list-style: none;
    margin-left: 0 !important;
    counter-reset: step;
}

.steps li {
    counter-increment: step;
    padding: .75rem 1rem .75rem 3.25rem;
    position: relative;
    margin-bottom: .6rem;
    background: var(--light);
    border-radius: var(--radius);
}

.steps li::before {
    content: counter(step);
    position: absolute;
    left: .85rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--blue);
    color: var(--white);
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
}

/* CTA inline */
.cta-inline {
    background: linear-gradient(135deg, #0f1e33 0%, #1b3c6e 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-inline::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.cta-inline > * { position: relative; z-index: 1; }

.cta-inline h3 {
    font-size: 1.35rem;
    margin-bottom: .5rem;
    font-family: var(--font-display);
    letter-spacing: -.01em;
}

.cta-inline p {
    color: rgba(255,255,255,.72);
    margin-bottom: 1.25rem;
}

.cta-inline .btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === CENNIK === */
.pricing-intro {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: var(--muted);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.pricing-table thead th {
    background: var(--navy);
    color: var(--white);
    padding: .9rem 1.25rem;
    text-align: left;
    font-size: .92rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.pricing-table tbody td {
    padding: .85rem 1.25rem;
    border-bottom: 1px solid var(--border);
    font-size: .95rem;
    vertical-align: top;
}

.pricing-table tbody tr:nth-child(even) td { background: var(--light); }
.pricing-table tbody tr:last-child td { border-bottom: none; }

.pricing-table .td-price {
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    font-family: var(--font-display);
}

.pricing-table .td-note {
    font-size: .85rem;
    color: var(--muted);
}

.pricing-group-header td {
    background: rgba(30, 95, 168, .07) !important;
    color: var(--blue);
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .6rem 1.25rem;
    font-family: var(--font-display);
}

.pricing-note {
    background: var(--light);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    color: var(--muted);
    font-size: .93rem;
    border-left: 4px solid var(--blue);
    display: flex;
    align-items: flex-start;
    gap: .6rem;
}

.pricing-note svg { flex-shrink: 0; color: var(--blue); margin-top: .15rem; }

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

.cennik-cta p {
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.cennik-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === KONTAKT CONTENT === */
.kontakt-content {
    max-width: 860px;
    margin: 0 auto;
}

/* === KONTAKT === */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.contact-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: box-shadow var(--tr), transform var(--tr);
    cursor: pointer;
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(46, 158, 91, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .9rem;
}

.contact-card-icon svg { color: var(--green); }

.contact-card h3 {
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: .4rem;
    font-family: var(--font-display);
}

.contact-card a,
.contact-card .contact-value {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
}

.contact-card a:hover { color: var(--blue); }

.contact-card .contact-note {
    font-size: .82rem;
    color: var(--muted);
    margin-top: .35rem;
    font-weight: 400;
}

.area-map-placeholder {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    color: var(--muted);
    border: 1px solid var(--border);
    margin: 2rem 0;
}

.area-map-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
    font-family: var(--font-display);
}

.area-map-title svg { color: var(--green); }

/* === OFFER CARDS (branzowe) === */
.offer-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 2rem 0;
}

.offer-highlight-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    border-top: 3px solid var(--green);
}

.offer-highlight-card .icon {
    width: 48px;
    height: 48px;
    background: var(--green-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .8rem;
    color: var(--green);
}

.offer-highlight-card .icon svg { width: 24px; height: 24px; }

.offer-highlight-card h4 {
    font-size: .95rem;
    color: var(--navy);
    margin-bottom: .3rem;
    font-family: var(--font-display);
}

.offer-highlight-card p { font-size: .85rem; color: var(--muted); }

/* === SCROLL ANIMATIONS === */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html { scroll-behavior: auto; }
    .fade-up { opacity: 1; transform: none; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .tiles-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .offer-highlights { grid-template-columns: 1fr 1fr; }
    .hero-stat { padding: .25rem 1.25rem; }
    .process-step { padding: 0 1rem; }
}

@media (max-width: 768px) {
    section { padding: 3rem 0; }

    .nav-toggle { display: flex; }

    /* Shrink full logo on mobile instead of swapping */
    .logo-full { height: 44px; }

    .nav-cta { display: none; }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 86px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        padding: 1.5rem 1.25rem;
        overflow-y: auto;
        gap: 0;
        align-items: stretch;
        z-index: 199;
        border-top: 1px solid var(--border);
    }

    .nav-menu.open { display: flex; }

    .nav-menu > li > a {
        padding: .9rem 1rem;
        border-radius: 6px;
        font-size: 1rem;
    }

    .has-dropdown > a::after { float: right; }

    .dropdown {
        display: none;
        position: static;
        box-shadow: none;
        background: var(--light);
        border-radius: var(--radius);
        margin-top: .3rem;
        min-width: unset;
        padding: .3rem 0;
        border: none;
    }

    .has-dropdown.open .dropdown { display: block; }

    .why-grid { grid-template-columns: 1fr; gap: 1.25rem; }

    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-photo img { aspect-ratio: 3/3; object-position: top; }

    .cta-inner {
        text-align: center;
        justify-content: center;
    }

    .contact-cards { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    .footer-bottom { justify-content: center; text-align: center; }

    .trust-bar-inner { gap: 1.25rem; }

    .hero-stats { padding: 1rem; display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
    .hero-stat-div { display: none; }
    .hero-stat { min-width: unset; padding: .5rem; }

    /* Process: vertical on mobile */
    .process-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .process-step { max-width: 100%; padding: 0; }

    .process-arrow {
        transform: rotate(90deg);
        padding-top: 0;
    }

    /* Hero/page-hero: disable mask on mobile, full-width image */
    .hero::before,
    .page-hero--img::before {
        left: 0;
        transform: none;
        max-width: none;
        -webkit-mask-image: none;
        mask-image: none;
    }

    /* Mobile CTA bar */
    .mobile-cta { display: flex; }

    .whatsapp-float { bottom: 5rem; }

    /* Pad bottom so content doesn't hide behind mobile CTA */
    .site-footer { padding-bottom: 5rem; }
}

@media (max-width: 540px) {
    .tiles-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: center; }
    .offer-highlights { grid-template-columns: 1fr; }
    .cta-btns { flex-direction: column; width: 100%; }
    .cta-btns .btn { text-align: center; justify-content: center; }

    /* Trust bar: hide entire items on very small screens */
    .trust-bar-inner { gap: .75rem; }
    .trust-item:nth-child(n+3) { display: none; }
}

/* ============================================================
   ADDITIONAL COMPONENTS — banners, method cards, process boxes
   ============================================================ */

/* Prominent safety/promise banner (larger than .safety-box) */
.safety-banner,
.safety-promise {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: linear-gradient(135deg, #eef7f1 0%, #e6f1ea 100%);
    border: 1px solid #c8e3d4;
    border-left: 4px solid var(--green);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
}
.safety-banner-icon,
.safety-promise-icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.safety-banner-icon svg,
.safety-promise-icon svg { width: 26px; height: 26px; }
.safety-banner-text h3,
.safety-promise-text strong {
    display: block;
    font-family: 'Lexend', system-ui, sans-serif;
    font-size: 1.25rem;
    color: var(--navy);
    margin: 0 0 .35rem;
    font-weight: 600;
}
.safety-banner-text p,
.safety-promise-text p {
    margin: 0;
    color: #2a3b52;
    font-size: 1rem;
    line-height: 1.55;
}

/* Method cards — 3-column horizontal cards */
.method-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0 2rem;
}
.method-card {
    background: #fff;
    border: 1px solid #e3e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    transition: box-shadow .2s, transform .2s;
}
.method-card:hover {
    box-shadow: 0 8px 24px rgba(26, 46, 74, .08);
    transform: translateY(-2px);
}
.method-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #e8f1fb;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.method-card-icon svg { width: 24px; height: 24px; }
.method-card h3 {
    font-family: 'Lexend', system-ui, sans-serif;
    font-size: 1.15rem;
    color: var(--navy);
    margin: 0;
}
.method-card p {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}
.method-tag {
    display: inline-block;
    background: #f1f5fa;
    color: var(--navy);
    font-size: .8rem;
    font-weight: 600;
    padding: .3rem .7rem;
    border-radius: 999px;
    align-self: flex-start;
}

/* Fact box — for highlighted explanatory blocks */
.fact-box {
    background: #f7faff;
    border: 1px solid #d9e6f5;
    border-left: 4px solid var(--blue);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0 2rem;
}
.fact-box h3 {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Lexend', system-ui, sans-serif;
    font-size: 1.1rem;
    color: var(--navy);
    margin: 0 0 .8rem;
}
.fact-box h3 svg { color: var(--blue); }
.fact-box p {
    margin: 0 0 .6rem;
    color: #2a3b52;
    font-size: .98rem;
    line-height: 1.55;
}
.fact-box p:last-child { margin-bottom: 0; }

/* Process boxes — 4-step numbered grid */
.process-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1.25rem 0 2rem;
    counter-reset: process-counter;
}
.process-boxes > div {
    background: #fff;
    border: 1px solid #e3e8f0;
    border-radius: 10px;
    padding: 1.25rem 1.1rem;
    position: relative;
    counter-increment: process-counter;
}
.process-boxes > div::before {
    content: counter(process-counter);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: .65rem;
}
.process-boxes h4 {
    font-family: 'Lexend', system-ui, sans-serif;
    font-size: 1rem;
    color: var(--navy);
    margin: 0 0 .4rem;
}
.process-boxes p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.5;
}

/* Icon-list — list with checkmarks (or implied bullets) */
.icon-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem 1.5rem;
}
.icon-list li {
    position: relative;
    padding-left: 1.6rem;
    color: #2a3b52;
    line-height: 1.5;
}
.icon-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .5rem;
    width: 14px;
    height: 14px;
    background: var(--green);
    border-radius: 50%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Prep-list — preparation checklist used on pluskwy.php etc. */
.prep-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}
.prep-list li {
    position: relative;
    padding: .7rem 0 .7rem 2rem;
    border-bottom: 1px solid #eef1f6;
    color: #2a3b52;
    line-height: 1.55;
}
.prep-list li:last-child { border-bottom: none; }
.prep-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.05rem;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: var(--blue);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: 11px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Responsive */
@media (max-width: 900px) {
    .method-cards { grid-template-columns: 1fr; }
    .process-boxes { grid-template-columns: repeat(2, 1fr); }
    .icon-list { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
    .process-boxes { grid-template-columns: 1fr; }
    .safety-banner,
    .safety-promise { flex-direction: column; gap: .9rem; padding: 1.25rem; }
}
