:root {
    --primary: #087f8c;
    --primary-dark: #055f69;
    --accent: #f4b942;
    --text: #17323a;
    --muted: #5f747b;
    --light: #f5fbfc;
    --white: #ffffff;
    --border: #dce8ea;
    --shadow: 0 18px 50px rgba(13, 69, 78, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--text); background: var(--white); line-height: 1.65; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(220,232,234,.9); backdrop-filter: blur(12px); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1.05; }
.logo-main { font-size: 1.35rem; font-weight: 800; letter-spacing: .08em; color: var(--primary-dark); }
.logo-sub { display: block; font-size: .72rem; color: var(--muted); margin-top: 5px; }
.main-nav { display: flex; gap: 26px; align-items: center; }
.main-nav a { text-decoration: none; font-weight: 700; font-size: .95rem; }
.main-nav a:hover { color: var(--primary); }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.8rem; cursor: pointer; }
.hero { background: linear-gradient(135deg, #eefafb 0%, #ffffff 58%, #eef7f6 100%); overflow: hidden; }
.hero-grid { min-height: 680px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 70px; }
.eyebrow { color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; margin-bottom: 10px; }
h1, h2, h3 { line-height: 1.15; margin-top: 0; }
h1 { font-size: clamp(2.5rem, 5vw, 4.75rem); margin-bottom: 22px; max-width: 760px; }
h2 { font-size: clamp(2rem, 3vw, 3rem); margin-bottom: 18px; }
h3 { font-size: 1.25rem; }
.hero-lead { font-size: 1.18rem; color: var(--muted); max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 13px 22px; border-radius: 12px; border: 0; text-decoration: none; font-weight: 800; cursor: pointer; transition: .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 12px 25px rgba(8,127,140,.25); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: var(--white); color: var(--primary-dark); border: 1px solid var(--border); }
.hero-features { display: flex; flex-wrap: wrap; gap: 18px; font-weight: 700; font-size: .94rem; }
.hero-visual { position: relative; min-height: 430px; display: grid; place-items: center; }
.hero-visual::before { content: ''; position: absolute; inset: 30px; border-radius: 46% 54% 60% 40% / 50% 42% 58% 50%; background: linear-gradient(145deg, var(--primary), #58c4cf); box-shadow: var(--shadow); }
.clean-card { position: relative; z-index: 2; width: min(320px, 82%); padding: 36px; border-radius: 24px; text-align: center; color: var(--primary-dark); background: rgba(255,255,255,.92); box-shadow: var(--shadow); }
.clean-card strong { display: block; font-size: 1.5rem; margin: 12px 0 8px; }
.clean-card span { color: var(--muted); font-size: .92rem; }
.clean-icon { font-size: 3rem; color: var(--accent); }
.bubble { position: absolute; border-radius: 50%; background: rgba(255,255,255,.72); z-index: 1; }
.bubble-one { width: 95px; height: 95px; top: 25px; right: 15px; }
.bubble-two { width: 60px; height: 60px; bottom: 35px; left: 0; }
.section { padding: 100px 0; }
.section-alt { background: var(--light); }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading p { color: var(--muted); }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card { padding: 28px; border: 1px solid var(--border); border-radius: 18px; background: var(--white); box-shadow: 0 10px 30px rgba(23,50,58,.06); }
.service-card p { color: var(--muted); margin-bottom: 0; }
.service-icon { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: #e6f7f8; color: var(--primary); font-size: 1.45rem; margin-bottom: 18px; }
/* Cennik */
.price-list {
    width: min(100%, 820px);
    margin: 0;
    padding: 8px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(23, 50, 58, .07);
}
.price-list > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: center;
    column-gap: 24px;
    min-height: 58px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.price-list > div:last-child { border-bottom: 0; }
.price-list dt,
.price-list dd { margin: 0; }
.price-list dt {
    min-width: 0;
    font-size: 1.04rem;
    font-weight: 650;
    line-height: 1.3;
}
.price-list dd {
    color: var(--primary-dark);
    font-size: 1.06rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: right;
    white-space: nowrap;
}
.price-note { color: var(--muted); margin-top: 18px; }
/* Lista miast bez kafelków */
.area-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: start; }
.area-grid p { color: var(--muted); }
.city-list { list-style: none; margin: 4px 0 0; padding: 0; background: transparent; border: 0; box-shadow: none; }
.city-list li { position: relative; padding: 9px 0 9px 22px; border: 0; border-bottom: 1px solid var(--border); background: transparent; border-radius: 0; box-shadow: none; font-weight: 700; }
.city-list li::before { content: '•'; position: absolute; left: 2px; color: var(--primary); }
.contact-section { background: var(--primary-dark); color: var(--white); }
.section-heading.light p { color: rgba(255,255,255,.76); }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 26px; align-items: stretch; }
.contact-panel, .form-panel { border-radius: 20px; padding: 32px; }
.contact-panel { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
.contact-link { display: block; text-decoration: none; font-size: 1.45rem; font-weight: 800; margin: 10px 0; }
.contact-link.small { font-size: 1rem; font-weight: 600; overflow-wrap: anywhere; }
.opening-hours { margin: 24px 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); }
.opening-hours h4 { margin: 0 0 12px; font-size: 1rem; }
.opening-hours p { display: flex; justify-content: space-between; gap: 18px; margin: 8px 0; }
.opening-hours strong { white-space: nowrap; }

.btn-map { background: var(--accent); color: #3b2a00; margin-top: 8px; }
.form-panel { background: var(--white); color: var(--text); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-form label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: 16px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid #cbdadd; border-radius: 10px; font: inherit; color: var(--text); background: #fff; }
.contact-form textarea { resize: vertical; }
.checkbox-label { display: flex !important; gap: 10px; align-items: flex-start; font-weight: 500 !important; }
.checkbox-label input { width: auto; margin-top: 4px; }
.honeypot { position: absolute !important; left: -9999px !important; }
.alert { padding: 14px 16px; border-radius: 10px; margin-bottom: 18px; font-weight: 700; }
.alert.success { background: #e7f7ed; color: #176b38; }
.alert.error { background: #fdeaea; color: #9d2525; }
.map-wrap { margin-top: 28px; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { display: block; }
.site-footer { background: #0d252b; color: rgba(255,255,255,.75); padding: 26px 0; }
.footer-wrap { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer-wrap p { margin: 0; }
.footer-wrap a { color: var(--white); text-decoration: none; font-weight: 700; }
.mobile-bar { display: none; }
@media (max-width: 920px) {
    .menu-toggle { display: block; }
    .main-nav { display: none; position: absolute; top: 76px; left: 0; right: 0; background: var(--white); padding: 20px; border-bottom: 1px solid var(--border); flex-direction: column; align-items: stretch; }
    .main-nav.open { display: flex; }
    .hero-grid, .contact-grid, .area-grid { grid-template-columns: 1fr; }
    .hero-grid { padding: 70px 0; gap: 30px; }
    .hero-visual { min-height: 360px; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .area-grid { gap: 28px; }
}
@media (max-width: 640px) {
    body { padding-bottom: 64px; }
    .container { width: min(100% - 28px, 1120px); }
    .section { padding: 72px 0; }
    .nav-wrap { min-height: 68px; }
    .main-nav { top: 68px; }
    .logo-main { font-size: 1.15rem; }
    .logo-sub { display: block !important; font-size: .66rem; margin-top: 4px; white-space: nowrap; }
    .hero-grid { min-height: auto; padding: 56px 0; }
    h1 { font-size: 2.35rem; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; }
    .hero-features { flex-direction: column; gap: 8px; }
    .hero-visual { min-height: 300px; }
    .hero-visual::before { inset: 20px; }
    .cards-grid, .form-grid { grid-template-columns: 1fr; }
    .service-card, .contact-panel, .form-panel { padding: 24px; }
    .price-list { padding: 4px 16px; border-radius: 14px; }
    .price-list > div {
        grid-template-columns: minmax(0, 1fr) max-content;
        column-gap: 12px;
        min-height: 52px;
        padding: 10px 0;
    }
    .price-list dt { font-size: .94rem; }
    .price-list dd { font-size: .94rem; white-space: nowrap; }
    .city-list li { padding-top: 8px; padding-bottom: 8px; }
    .footer-wrap { flex-direction: column; text-align: center; }
    .mobile-bar { position: fixed; display: grid; grid-template-columns: 1fr 1fr; left: 0; right: 0; bottom: 0; z-index: 1100; box-shadow: 0 -8px 24px rgba(0,0,0,.16); }
    .mobile-bar a { background: var(--primary); color: var(--white); text-align: center; text-decoration: none; padding: 17px 12px; font-weight: 800; }
    .mobile-bar a:last-child { background: var(--accent); color: #3b2a00; }
}
