:root {
  --ink: #17395b;
  --ink-soft: #2e5f88;
  --muted: #5d6a75;
  --brand: #3c83b9;
  --brand-dark: #245f8c;
  --brand-deep: #17395b;
  --brand-soft: #e7f2f9;
  --accent: #63a9d5;
  --paper: #f4f8fb;
  --white: #fff;
  --line: #d6e2ea;
  --line-dark: rgba(255,255,255,.18);
  --danger: #8d2b2b;
  --radius: 20px;
  --shadow: 0 18px 55px rgba(23,57,91,.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select { font: inherit; }
.container { width: min(1160px, calc(100% - 36px)); margin-inline: auto; }
.skip-link { position:absolute; left:-9999px; top:0; background:#fff; padding:12px; z-index:999; }
.skip-link:focus { left:12px; top:12px; }
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23,57,91,.11);
}
.nav { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.logo { display:flex; align-items:center; flex:0 0 auto; text-decoration:none; }
.logo img { width: 222px; height:auto; }
.nav-center { display:flex; align-items:center; gap:20px; margin-left:auto; }
.nav-link { text-decoration:none; font-weight:800; color:#536573; font-size:.91rem; white-space:nowrap; }
.nav-link:hover, .nav-link[aria-current="page"] { color:var(--brand-dark); }
.nav-link-featured {
  padding:10px 15px; border-radius:999px; border:1px solid #c6dfef;
  background:var(--brand-soft); color:var(--brand-deep); box-shadow:0 5px 16px rgba(23,57,91,.06);
}
.nav-link-featured:hover { background:var(--brand); color:#fff; border-color:var(--brand); }
.nav-actions { display:flex; align-items:center; gap:10px; }
.phone-text { font-weight:900; text-decoration:none; white-space:nowrap; }
.button {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  min-height:52px; padding:0 23px; border-radius:999px;
  border:1px solid transparent; text-decoration:none; font-weight:900;
  cursor:pointer; transition:transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background:var(--brand); color:#fff; box-shadow:0 10px 28px rgba(60,131,185,.25); }
.button-primary:hover { background:var(--brand-dark); }
.button-secondary { background:#fff; border-color:var(--line); }
.button-secondary:hover { border-color:#9fb9cc; }
.button-dark { background:var(--ink); color:#fff; }
.button-light { background:#fff; color:var(--brand-deep); box-shadow:0 10px 30px rgba(0,0,0,.14); }
.button-light:hover { background:#eef7fc; }
.button-wide { width:100%; }
.hero { padding:50px 0 38px; background:linear-gradient(180deg,#f9fcfe 0%,var(--paper) 100%); }
.heat-page .hero { background:linear-gradient(140deg,#e8f4fb 0%,#f7fbfd 67%,#edf6fb 100%); }
.hero-grid { display:grid; grid-template-columns:1.02fr .98fr; gap:48px; align-items:center; }
.eyebrow { color:var(--brand-dark); font-weight:950; text-transform:uppercase; letter-spacing:.12em; font-size:.76rem; }
h1 { margin:12px 0 19px; font-size:clamp(2.45rem,5.3vw,4.85rem); line-height:.98; letter-spacing:-.057em; }
.lead { font-size:clamp(1.04rem,1.65vw,1.23rem); color:var(--muted); max-width:700px; }
.hero-cta { display:flex; flex-wrap:wrap; gap:12px; margin:28px 0 23px; }
.trust-row { display:flex; flex-wrap:wrap; gap:9px; }
.trust-pill { padding:9px 13px; border-radius:999px; background:#e4eef5; font-size:.89rem; font-weight:850; color:var(--ink); }
.hero-photo { position:relative; }
.hero-photo::before { content:""; position:absolute; inset:-13px 24px 24px -13px; border-radius:30px; background:var(--brand); opacity:.13; }
.hero-photo img { position:relative; width:100%; aspect-ratio:16/10; object-fit:cover; border-radius:28px; box-shadow:var(--shadow); }
.hero-photo .photo-badge {
  position:absolute; right:17px; bottom:17px; padding:13px 15px;
  background:rgba(255,255,255,.95); border-radius:15px; box-shadow:var(--shadow); font-weight:900;
  color:var(--ink); text-decoration:none; cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.hero-photo .photo-badge:hover { transform:translateY(-2px); background:#fff; box-shadow:0 18px 40px rgba(12,45,70,.24); }
.hero-photo .photo-badge:focus-visible { outline:3px solid var(--brand); outline-offset:4px; }
.stars { color:#c88c0a; letter-spacing:.07em; }
.proof-strip { padding:12px 0 0; }
.proof-grid { display:grid; grid-template-columns:repeat(4,1fr); background:var(--ink); color:#fff; border-radius:22px; overflow:hidden; box-shadow:0 15px 40px rgba(23,57,91,.12); }
.proof-item { padding:22px 24px; border-right:1px solid var(--line-dark); }
.proof-item:last-child { border-right:0; }
.proof-item strong { display:block; font-size:1.08rem; }
.proof-item span { display:block; color:#cbdbe7; font-size:.88rem; margin-top:3px; }
section { padding:78px 0; }
.section-heading { max-width:790px; margin-bottom:32px; }
.section-heading h2 { margin:8px 0 11px; font-size:clamp(1.9rem,3.7vw,3.1rem); line-height:1.06; letter-spacing:-.04em; }
.section-heading p { color:var(--muted); margin:0; font-size:1.02rem; }
.heat-promo-section { padding:48px 0 22px; }
.heat-promo {
  display:grid; grid-template-columns:.9fr 1.1fr; overflow:hidden;
  border-radius:30px; background:linear-gradient(135deg,var(--ink) 0%,var(--ink-soft) 100%);
  color:#fff; box-shadow:var(--shadow);
}
.heat-promo-media { min-height:400px; }
.heat-promo-media img { width:100%; height:100%; object-fit:cover; }
.heat-promo-copy { padding:42px; align-self:center; }
.heat-promo .eyebrow { color:#a9d5ef; }
.heat-promo h2 { margin:8px 0 13px; font-size:clamp(2rem,4vw,3.4rem); line-height:1.02; letter-spacing:-.045em; }
.heat-promo p { margin:0; color:#d9e8f2; font-size:1.04rem; }
.service-points { display:flex; flex-wrap:wrap; gap:8px; margin:21px 0 26px; }
.service-points span { padding:8px 11px; border-radius:999px; border:1px solid rgba(255,255,255,.22); background:rgba(255,255,255,.08); font-size:.86rem; font-weight:800; }
.cards { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:25px; box-shadow:0 7px 22px rgba(23,57,91,.035); }
.card-num { width:39px; height:39px; border-radius:50%; display:grid; place-items:center; background:var(--brand); color:#fff; font-weight:950; }
.card h3 { margin:15px 0 8px; font-size:1.12rem; }
.card p { margin:0; color:var(--muted); }
.feature-split { display:grid; grid-template-columns:1fr 1fr; gap:36px; align-items:center; }
.feature-photo img { width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:28px; box-shadow:var(--shadow); }
.feature-copy h2 { margin:9px 0 15px; font-size:clamp(2rem,3.8vw,3.35rem); line-height:1.04; letter-spacing:-.045em; }
.feature-copy p { color:var(--muted); font-size:1.04rem; }
.check-list { display:grid; gap:12px; margin:22px 0; padding:0; list-style:none; }
.check-list li { display:grid; grid-template-columns:26px 1fr; gap:10px; align-items:start; font-weight:760; }
.check-list li::before { content:"✓"; width:24px; height:24px; border-radius:50%; display:grid; place-items:center; background:var(--brand-soft); color:var(--brand-dark); font-weight:950; }
.note { border-left:4px solid var(--brand); background:#fff; border-radius:0 15px 15px 0; padding:15px 17px; color:#556570; }
.risk {
  background:var(--ink); color:#fff; border-radius:30px; padding:38px;
  display:grid; grid-template-columns:1fr auto; gap:30px; align-items:center;
}
.risk h2 { margin:0 0 10px; font-size:clamp(1.7rem,3vw,2.6rem); line-height:1.08; }
.risk p { margin:0; color:#d7e3eb; max-width:800px; }
.small { font-size:.85rem; color:var(--muted); }
.experience-grid { display:grid; grid-template-columns:.88fr 1.12fr; gap:24px; align-items:stretch; }
.experience-intro { background:linear-gradient(145deg,var(--brand) 0%,var(--brand-dark) 100%); color:#fff; padding:34px; border-radius:28px; }
.experience-intro .eyebrow { color:#d6edfb; }
.experience-intro h2 { margin:9px 0 12px; font-size:clamp(2rem,4vw,3.4rem); line-height:1; letter-spacing:-.045em; }
.experience-intro p { color:#e1eef6; margin-bottom:0; }
.experience-points { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.experience-point { background:#fff; border:1px solid var(--line); border-radius:22px; padding:24px; }
.experience-point strong { display:block; margin-bottom:8px; font-size:1.06rem; }
.experience-point p { margin:0; color:var(--muted); }
.area-summary { background:#fff; border:1px solid var(--line); border-radius:24px; padding:26px; margin-bottom:18px; font-size:1.1rem; }
.area-summary strong { color:var(--brand-dark); }
.area-cards { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.area-card { background:#fff; border:1px solid var(--line); border-radius:18px; padding:22px; }
.area-card:last-child:nth-child(odd) { grid-column:1/-1; }
.area-card h3 { margin:0 0 7px; font-size:1.08rem; }
.area-card p { margin:0; color:var(--muted); }
.gallery { display:grid; grid-template-columns:1.25fr .75fr .75fr; grid-auto-rows:230px; gap:12px; }
.gallery figure { margin:0; overflow:hidden; border-radius:17px; background:#d8e3ea; }
.gallery figure:first-child { grid-row:span 2; }
.gallery img { width:100%; height:100%; object-fit:cover; transition:transform .25s ease; }
.gallery figure:hover img { transform:scale(1.025); }
.heat-gallery { display:grid; grid-template-columns:1.1fr .9fr; grid-template-rows:210px 210px; gap:14px; }
.heat-gallery figure { margin:0; border-radius:22px; overflow:hidden; background:#d8e3ea; }
.heat-gallery figure:first-child { grid-row:1 / 3; }
.heat-gallery img { width:100%; height:100%; object-fit:cover; }
.cross-service { display:grid; grid-template-columns:1fr auto; gap:26px; align-items:center; background:#e6f0f6; border:1px solid #d1e2ed; border-radius:26px; padding:30px; }
.cross-service h2 { margin:6px 0 8px; font-size:clamp(1.5rem,3vw,2.35rem); line-height:1.08; }
.cross-service p { margin:0; color:var(--muted); max-width:760px; }
.reviews { background:#fff; border:1px solid var(--line); border-radius:28px; padding:34px; display:grid; grid-template-columns:1fr auto; gap:24px; align-items:center; }
.review-score { font-size:3.15rem; font-weight:950; line-height:1; }
.form-wrap { display:grid; grid-template-columns:.9fr 1.1fr; gap:28px; align-items:start; }
.contact-panel { background:linear-gradient(145deg,var(--ink) 0%,var(--ink-soft) 100%); color:#fff; border-radius:28px; padding:31px; }
.contact-panel .eyebrow { color:#a9d5ef; }
.contact-panel h2 { margin:9px 0 13px; font-size:clamp(1.9rem,3vw,2.8rem); line-height:1.07; }
.contact-panel p { color:#d7e3eb; }
.big-phone { display:block; margin:22px 0; font-weight:950; font-size:clamp(1.9rem,5vw,3.25rem); text-decoration:none; color:#fff; }
form { background:#fff; border:1px solid var(--line); border-radius:28px; padding:31px; }
.field { margin-bottom:16px; }
label { display:block; font-weight:850; margin-bottom:7px; }
input, select {
  width:100%; min-height:51px; border:1px solid #bdcfdb; border-radius:12px;
  padding:0 14px; background:#fff; color:var(--ink);
}
input:focus, select:focus { outline:3px solid rgba(60,131,185,.16); border-color:var(--brand); }
.consent { display:grid; grid-template-columns:auto 1fr; gap:10px; align-items:start; font-size:.86rem; color:var(--muted); margin:10px 0 18px; }
.consent input { width:18px; min-height:18px; margin-top:2px; }
.form-note { margin:12px 0 0; font-size:.83rem; color:var(--muted); }
.process { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; counter-reset:steps; }
.process-step { counter-increment:steps; background:#fff; border:1px solid var(--line); border-radius:20px; padding:23px; }
.process-step::before { content:counter(steps, decimal-leading-zero); display:block; color:var(--brand-dark); font-weight:950; letter-spacing:.08em; margin-bottom:13px; }
.process-step h3 { margin:0 0 8px; font-size:1.08rem; }
.process-step p { margin:0; color:var(--muted); }
.scope-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.scope-card { background:var(--ink); color:#fff; padding:27px; border-radius:23px; }
.scope-card h3 { margin:0 0 9px; font-size:1.15rem; }
.scope-card p { margin:0; color:#d6e2ea; }
.quote-data { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; list-style:none; margin:22px 0 0; padding:0; }
.quote-data li { background:#fff; border:1px solid var(--line); border-radius:15px; padding:15px 17px; font-weight:760; }
footer { padding:38px 0 112px; color:var(--muted); font-size:.9rem; background:#edf4f8; }
.footer-grid { display:flex; justify-content:space-between; gap:32px; flex-wrap:wrap; border-top:1px solid var(--line); padding-top:28px; align-items:flex-end; }
.footer-brand { max-width:380px; }
.footer-logo { width:190px; height:auto; margin-bottom:11px; }
.footer-links { display:flex; gap:18px; flex-wrap:wrap; }
.mobile-call {
  display:none; position:fixed; z-index:100; left:12px; right:12px; bottom:12px;
  min-height:59px; border-radius:16px; background:var(--brand); color:#fff;
  align-items:center; justify-content:center; text-decoration:none; font-weight:950;
  box-shadow:0 14px 35px rgba(23,57,91,.32);
}
@media (max-width: 1080px) {
  .nav-center { display:none; }
  .hero-grid, .feature-split, .experience-grid, .form-wrap, .heat-promo { grid-template-columns:1fr; }
  .hero-grid { gap:32px; }
  .experience-points { grid-template-columns:repeat(3,1fr); }
  .heat-promo-media { min-height:340px; max-height:470px; }
}
@media (max-width: 820px) {
  .proof-grid { grid-template-columns:repeat(2,1fr); }
  .proof-item:nth-child(2) { border-right:0; }
  .proof-item:nth-child(-n+2) { border-bottom:1px solid var(--line-dark); }
  .cards, .process, .scope-grid { grid-template-columns:repeat(2,1fr); }
  .experience-points { grid-template-columns:1fr; }
  .gallery { grid-template-columns:repeat(2,1fr); grid-auto-rows:220px; }
  .gallery figure:first-child { grid-row:auto; grid-column:span 2; }
  .risk, .reviews, .cross-service { grid-template-columns:1fr; }
  .heat-gallery { grid-template-columns:1fr 1fr; grid-template-rows:290px 210px; }
  .heat-gallery figure:first-child { grid-column:1/-1; grid-row:auto; }
}
@media (max-width: 640px) {
  .container { width:min(100% - 24px,1160px); }
  .nav { min-height:82px; gap:10px; }
  .logo img { width:154px; }
  .topbar .button, .phone-text { display:none; }
  .hero { padding-top:29px; }
  h1 { font-size:clamp(2.35rem,13vw,3.65rem); }
  section { padding:57px 0; }
  .heat-promo-section { padding:34px 0 10px; }
  .heat-promo-media { min-height:250px; }
  .heat-promo-copy { padding:25px; }
  .proof-item { padding:18px 15px; }
  .proof-item strong { font-size:.98rem; }
  .cards, .process, .scope-grid, .area-cards, .quote-data { grid-template-columns:1fr; }
  .area-card:last-child:nth-child(odd) { grid-column:auto; }
  .gallery { grid-template-columns:1fr; grid-auto-rows:225px; }
  .gallery figure:first-child { grid-column:auto; }
  .heat-gallery { grid-template-columns:1fr; grid-template-rows:260px 220px 220px; }
  .heat-gallery figure:first-child { grid-column:auto; }
  .mobile-call { display:flex; }
  .risk, .reviews, form, .contact-panel, .experience-intro, .cross-service { padding:24px; border-radius:22px; }
  .hero-photo .photo-badge { right:10px; bottom:10px; font-size:.85rem; }
  .footer-grid { align-items:flex-start; }
}


/* Contact links and contact page */
.risk-actions { display:flex; flex-direction:column; align-items:stretch; gap:10px; min-width:250px; }
.risk-actions .button { width:100%; }
.risk-contact-hint { color:#d7e3eb; font-size:.82rem; text-align:center; overflow-wrap:anywhere; }
.contact-inline-link { color:#fff; font-weight:850; overflow-wrap:anywhere; }
.contact-panel-button { margin-top:8px; }
.contact-hero { padding:64px 0 52px; background:linear-gradient(180deg,#f9fcfe 0%,var(--paper) 100%); }
.contact-hero-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:48px; align-items:center; }
.contact-direct-card { background:linear-gradient(145deg,var(--ink) 0%,var(--ink-soft) 100%); color:#fff; border-radius:28px; padding:34px; box-shadow:var(--shadow); }
.contact-direct-card .eyebrow { color:#a9d5ef; }
.contact-direct-card h2 { margin:7px 0 22px; font-size:clamp(2rem,4vw,3.2rem); line-height:1; }
.contact-details-list { margin:0; display:grid; gap:0; }
.contact-details-list > div { display:grid; grid-template-columns:95px 1fr; gap:18px; padding:14px 0; border-top:1px solid rgba(255,255,255,.16); }
.contact-details-list dt { color:#bad8e9; font-weight:850; }
.contact-details-list dd { margin:0; font-weight:850; overflow-wrap:anywhere; }
.contact-details-list a { color:#fff; }
.contact-info-section { padding-top:66px; }
.contact-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.contact-card { background:#fff; border:1px solid var(--line); border-radius:24px; padding:27px; box-shadow:0 8px 24px rgba(23,57,91,.045); }
.contact-card-label { color:var(--brand-dark); font-size:.75rem; font-weight:950; letter-spacing:.12em; text-transform:uppercase; }
.contact-card h3 { margin:10px 0 10px; font-size:1.26rem; line-height:1.25; overflow-wrap:anywhere; }
.contact-card p { color:var(--muted); margin:0 0 18px; }
.text-link { color:var(--brand-dark); font-weight:900; text-decoration:none; }
.text-link:hover { text-decoration:underline; }
.location-grid { display:grid; grid-template-columns:1.08fr .92fr; gap:34px; align-items:stretch; }
.map-frame { min-height:450px; overflow:hidden; border-radius:28px; border:1px solid var(--line); background:#dce8ef; box-shadow:var(--shadow); }
.map-frame iframe { width:100%; height:100%; min-height:450px; border:0; display:block; }
.location-copy { background:#fff; border:1px solid var(--line); border-radius:28px; padding:34px; align-self:stretch; }
.location-copy h2 { margin:8px 0 13px; font-size:clamp(2rem,4vw,3.2rem); line-height:1.04; }
.location-copy p { color:var(--muted); }
.location-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }
.hours-panel { background:var(--ink); color:#fff; border-radius:28px; padding:36px; display:grid; grid-template-columns:1fr auto; gap:30px; align-items:center; }
.hours-panel .eyebrow { color:#a9d5ef; }
.hours-panel h2 { margin:8px 0 10px; font-size:clamp(1.8rem,3vw,2.7rem); line-height:1.08; }
.hours-panel p { color:#d7e3eb; margin:0; max-width:800px; }
@media (max-width: 1080px) {
  .contact-hero-grid, .location-grid { grid-template-columns:1fr; }
}
@media (max-width: 820px) {
  .contact-cards { grid-template-columns:1fr; }
  .hours-panel { grid-template-columns:1fr; }
  .risk-actions { min-width:0; }
}
@media (max-width: 640px) {
  .contact-hero { padding-top:34px; }
  .contact-direct-card, .contact-card, .location-copy, .hours-panel { padding:24px; border-radius:22px; }
  .contact-details-list > div { grid-template-columns:1fr; gap:3px; }
  .map-frame, .map-frame iframe { min-height:330px; }
  .risk-actions .button { white-space:normal; text-align:center; }
}


/* Opinie klientów — karuzela */
.reviews-showcase {
  padding:72px 0;
  background:linear-gradient(180deg,#f7fbfe 0%,#eef6fb 100%);
  border-top:1px solid #dbe8f0;
  border-bottom:1px solid #dbe8f0;
}
.reviews-intro { max-width:820px; margin:0 auto 34px; text-align:center; }
.reviews-intro h2 { margin:8px 0 14px; font-size:clamp(2rem,4.2vw,3.45rem); line-height:1.04; letter-spacing:-.045em; }
.reviews-rating { display:flex; justify-content:center; align-items:center; gap:10px; flex-wrap:wrap; color:var(--muted); }
.reviews-rating strong { color:var(--ink); font-size:1.35rem; }
.reviews-rating .stars { font-size:1.12rem; }
.review-carousel-shell { position:relative; padding:0 54px; }
.review-viewport {
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  scrollbar-width:none;
  -ms-overflow-style:none;
  border-radius:25px;
}
.review-viewport::-webkit-scrollbar { display:none; }
.review-viewport:focus-visible { outline:3px solid rgba(60,131,185,.24); outline-offset:5px; }
.review-track { display:flex; gap:16px; }
.review-card {
  flex:0 0 calc((100% - 32px) / 3);
  aspect-ratio:1 / 1;
  min-width:0;
  scroll-snap-align:start;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:25px;
  display:flex;
  flex-direction:column;
  box-shadow:0 15px 36px rgba(27,70,104,.09);
}
.review-card-top { display:flex; align-items:center; gap:13px; min-width:0; }
.review-avatar {
  flex:0 0 56px;
  width:56px;
  height:56px;
  border-radius:50%;
  object-fit:cover;
  background:#e9f4fb;
  border:3px solid #fff;
  box-shadow:0 0 0 1px #d3e2ec,0 6px 16px rgba(27,70,104,.13);
}
.review-card-identity { min-width:0; flex:1; }
.review-author-line { display:flex; align-items:center; gap:9px; flex-wrap:wrap; line-height:1.2; }
.review-author { color:var(--ink); font-weight:950; font-size:.96rem; }
.review-stars { color:#f4b400; letter-spacing:.055em; font-size:.95rem; white-space:nowrap; }
.review-source {
  display:inline-block;
  margin-top:7px;
  color:var(--brand-dark);
  background:#e9f4fb;
  border:1px solid #d2e7f4;
  border-radius:999px;
  padding:4px 8px;
  font-size:.72rem;
  font-weight:900;
}
.review-text { margin:21px 0 0; color:var(--ink-soft); font-size:clamp(.9rem,1.08vw,1.01rem); line-height:1.48; overflow-wrap:anywhere; }
.review-arrow {
  position:absolute;
  z-index:3;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border:0;
  border-radius:50%;
  background:var(--ink);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:2rem;
  line-height:1;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(23,57,91,.24);
}
.review-arrow:hover:not(:disabled) { background:var(--brand-dark); }
.review-arrow:focus-visible { outline:3px solid rgba(60,131,185,.28); outline-offset:3px; }
.review-arrow:disabled { opacity:.28; cursor:not-allowed; }
.review-arrow-prev { left:0; }
.review-arrow-next { right:0; }
.review-carousel-footer { display:flex; justify-content:center; align-items:center; gap:22px; flex-wrap:wrap; margin-top:28px; }
.review-counter { color:var(--muted); font-weight:800; min-width:118px; text-align:center; }

@media (max-width: 899px) {
  .review-card { flex-basis:calc((100% - 16px) / 2); }
}
@media (max-width: 649px) {
  .reviews-showcase { padding:56px 0; }
  .reviews-intro { margin-bottom:26px; }
  .review-carousel-shell { padding:0; }
  .review-card { flex-basis:100%; padding:24px 25px; }
  .review-avatar { width:52px; height:52px; flex-basis:52px; }
  .review-author-line { gap:7px; }
  .review-arrow { width:42px; height:42px; font-size:1.8rem; }
  .review-arrow-prev { left:-7px; }
  .review-arrow-next { right:-7px; }
  .review-carousel-footer { margin-top:23px; gap:15px; }
  .review-counter { width:100%; }
}


/* Landing page for traffic from Google Business Profile */
.gbp-page { background:#f4f8fb; }
.gbp-topbar .nav { min-height:82px; }
.gbp-nav .logo img { width:198px; }
.gbp-main-nav { display:flex; align-items:center; justify-content:center; gap:6px; margin-left:auto; }
.gbp-main-nav a {
  display:inline-flex; align-items:center; justify-content:center; min-height:42px; padding:0 14px;
  border-radius:999px; color:var(--ink); text-decoration:none; font-size:.9rem; font-weight:900;
  white-space:nowrap; transition:background .18s ease,color .18s ease,transform .18s ease;
}
.gbp-main-nav a:hover, .gbp-main-nav a:focus-visible { background:var(--brand-soft); color:var(--brand-dark); transform:translateY(-1px); }
.gbp-main-nav a:last-child { background:var(--ink); color:#fff; }
.gbp-main-nav a:last-child:hover, .gbp-main-nav a:last-child:focus-visible { background:var(--brand-dark); color:#fff; }
#studnie-glebinowe, #pompy-ciepla, #zapytanie { scroll-margin-top:118px; }
.gbp-hero { padding:42px 0 48px; background:linear-gradient(180deg,#fafdff 0%,#edf5fa 100%); }
.gbp-hero-grid { display:grid; grid-template-columns:1.02fr .98fr; gap:46px; align-items:center; }
.gbp-hero-copy h1 { margin:12px 0 20px; font-size:clamp(2.65rem,5.3vw,4.85rem); }
.gbp-primary-actions { display:flex; gap:12px; flex-wrap:wrap; margin:27px 0 11px; }
.button-whatsapp { background:#187c54; color:#fff; box-shadow:0 10px 28px rgba(24,124,84,.22); }
.button-whatsapp:hover { background:#116943; }
.gbp-action-note { margin:0 0 19px; color:var(--muted); font-size:.92rem; }
.gbp-hero-media { position:relative; }
.gbp-hero-media > img { width:100%; aspect-ratio:16/10; object-fit:cover; border-radius:28px; box-shadow:var(--shadow); }
.gbp-rating-card { position:absolute; left:18px; bottom:18px; display:grid; grid-template-columns:auto auto; column-gap:9px; align-items:center; padding:14px 17px; border-radius:17px; background:rgba(255,255,255,.96); text-decoration:none; box-shadow:0 14px 38px rgba(23,57,91,.24); }
.gbp-rating-card .gbp-rating-score { font-size:1.55rem; font-weight:950; line-height:1; }
.gbp-rating-card .stars { font-size:.95rem; }
.gbp-rating-card > span:last-child { grid-column:1/-1; color:var(--muted); font-size:.82rem; font-weight:800; margin-top:3px; }
.gbp-choice-section { padding-top:68px; }
.gbp-section-heading { margin-inline:auto; text-align:center; }
.gbp-service-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; max-width:980px; margin-inline:auto; }
.gbp-service-card { background:#fff; border:1px solid var(--line); border-radius:28px; padding:31px; box-shadow:0 10px 28px rgba(23,57,91,.055); }
.gbp-service-card-primary { border-top:5px solid var(--brand); }
.gbp-service-card:not(.gbp-service-card-primary) { border-top:5px solid var(--ink); }
.gbp-service-label { display:inline-flex; padding:7px 11px; border-radius:999px; background:var(--brand-soft); color:var(--brand-dark); font-size:.76rem; font-weight:950; text-transform:uppercase; letter-spacing:.08em; }
.gbp-service-card h3 { margin:16px 0 10px; font-size:clamp(1.7rem,3vw,2.35rem); line-height:1.05; }
.gbp-service-card p { color:var(--muted); }
.gbp-service-card .check-list { min-height:137px; }
.gbp-proof-section { background:#fff; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.gbp-proof-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.gbp-proof-grid article { background:var(--paper); border:1px solid var(--line); border-radius:20px; padding:22px; }
.gbp-proof-grid strong { display:block; margin-bottom:8px; font-size:1.03rem; }
.gbp-proof-grid span { color:var(--muted); font-size:.91rem; }
.gbp-access-section { background:linear-gradient(180deg,#f4f8fb 0%,#eef6fa 100%); }
.gbp-reviews-section { background:#fff; border-top:1px solid var(--line); }
.gbp-review-heading { display:flex; align-items:end; justify-content:space-between; gap:24px; margin-bottom:28px; }
.gbp-review-heading h2 { margin:8px 0 0; font-size:clamp(2rem,4vw,3.3rem); line-height:1.04; }
.gbp-review-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.gbp-review-card { min-width:0; height:100%; }
.gbp-area-section { padding:48px 0; }
.gbp-area-panel { display:grid; grid-template-columns:.8fr 1.2fr; gap:30px; align-items:center; background:var(--ink); color:#fff; padding:34px; border-radius:28px; }
.gbp-area-panel .eyebrow { color:#a9d5ef; }
.gbp-area-panel h2 { margin:8px 0 10px; font-size:clamp(2rem,4vw,3.1rem); line-height:1; }
.gbp-area-panel p { margin:0; color:#d7e3eb; }
.gbp-area-tags { display:flex; flex-wrap:wrap; gap:8px; }
.gbp-area-tags span { padding:8px 11px; border-radius:999px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.08); font-size:.86rem; font-weight:800; }
.gbp-form-section { padding-top:64px; }
.gbp-form-grid { display:grid; grid-template-columns:.88fr 1.12fr; gap:28px; align-items:start; }
.gbp-contact-panel { position:sticky; top:110px; }
.gbp-contact-mini { margin-top:24px; padding-top:20px; border-top:1px solid rgba(255,255,255,.17); color:#d7e3eb; }
.gbp-form-grid form h2 { margin:0 0 22px; font-size:clamp(1.8rem,3vw,2.5rem); }
textarea { width:100%; resize:vertical; min-height:105px; border:1px solid #bdcfdb; border-radius:12px; padding:13px 14px; background:#fff; color:var(--ink); font:inherit; }
textarea:focus { outline:3px solid rgba(60,131,185,.16); border-color:var(--brand); }
.optional { font-weight:600; color:var(--muted); font-size:.82rem; }
.form-error { color:var(--danger); font-weight:800; }
.gbp-mobile-actions { display:none; position:fixed; z-index:110; left:10px; right:10px; bottom:10px; grid-template-columns:1fr 1fr; gap:8px; padding:8px; border-radius:17px; background:rgba(255,255,255,.96); box-shadow:0 14px 38px rgba(23,57,91,.28); backdrop-filter:blur(12px); }
.gbp-mobile-actions a { min-height:52px; display:flex; align-items:center; justify-content:center; border-radius:12px; text-decoration:none; color:#fff; font-weight:950; }
.gbp-mobile-actions a:first-child { background:var(--brand); }
.gbp-mobile-actions a:last-child { background:#187c54; }
@media (max-width: 1080px) {
  .gbp-nav { flex-wrap:wrap; gap:8px 14px; padding:10px 0 0; }
  .gbp-main-nav { order:3; flex:1 0 100%; margin:0; display:grid; grid-template-columns:repeat(3,1fr); gap:0; border-top:1px solid var(--line); }
  .gbp-main-nav a { min-height:46px; border-radius:0; padding:0 8px; }
  .gbp-main-nav a + a { border-left:1px solid var(--line); }
  .gbp-main-nav a:last-child { background:transparent; color:var(--ink); }
  .gbp-main-nav a:last-child:hover, .gbp-main-nav a:last-child:focus-visible { background:var(--brand-soft); color:var(--brand-dark); }
  #studnie-glebinowe, #pompy-ciepla, #zapytanie { scroll-margin-top:145px; }
}
@media (max-width: 980px) {
  .gbp-hero-grid, .gbp-form-grid, .gbp-area-panel { grid-template-columns:1fr; }
  .gbp-proof-grid { grid-template-columns:1fr 1fr; }
  .gbp-contact-panel { position:static; }
}
@media (max-width: 760px) {
  .gbp-service-grid, .gbp-review-grid { grid-template-columns:1fr; }
  .gbp-service-card .check-list { min-height:0; }
  .gbp-review-heading { align-items:flex-start; flex-direction:column; }
}
@media (max-width: 640px) {
  .gbp-page footer { padding-bottom:104px; }
  .gbp-topbar .nav { min-height:74px; }
  .gbp-nav .logo img { width:155px; }
  .gbp-main-nav a { min-height:44px; padding:0 4px; font-size:.78rem; line-height:1.12; text-align:center; white-space:normal; }
  .gbp-hero { padding-top:28px; }
  .gbp-hero-copy h1 { font-size:clamp(2.45rem,13vw,3.75rem); }
  .gbp-primary-actions .button { width:100%; }
  .gbp-rating-card { left:10px; bottom:10px; }
  .gbp-service-card { padding:24px; border-radius:22px; }
  .gbp-proof-grid { grid-template-columns:1fr; }
  .gbp-area-panel { padding:24px; border-radius:22px; }
  .gbp-mobile-actions { display:grid; }
}
