:root {
  --blue-primary: #5290f5;
  --blue-hover: #3d72e4;
  --blue-secondary: #2a51a5;
  --blue-dark: #1f3974;
  --blue-accent: #60a5fa;
  --blue-tint: #f1f5f9;
  --blue-soft: #f8fafc;
  --blue-border: #cbd5e1;
  --blue-border-light: #e2e8f0;

  --white: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  --shadow-subtle: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.02);
  --shadow-card: 0 4px 16px -2px rgba(15, 23, 42, 0.05);
  --shadow-hover: 0 12px 24px -4px rgba(59, 130, 246, 0.12);

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font);
  color: var(--text-main);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.55;
  padding-bottom: 56px;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar {
  background: var(--blue-soft);
  border-bottom: 1px solid var(--blue-border-light);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-badge-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-main);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.top-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-primary);
  font-weight: 700;
}

.top-mail {
  color: var(--text-muted);
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--blue-border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.logo-symbol {
  width: 36px;
  height: 36px;
  background: var(--blue-soft);
  color: var(--blue-primary);
  border: 1px solid var(--blue-border-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo span {
  color: var(--blue-primary);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.4s ease;
}

.nav-links a:hover {
  color: var(--blue-primary);
}

.btn-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--blue-primary);
  color: var(--blue-primary);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.btn-nav-call:hover {
  background: var(--blue-primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.hero {
  position: relative;
  padding: 75px 0 55px;
  text-align: center;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  height: 400px;
  background: radial-gradient(circle, rgba(226, 232, 240, 0.45) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-soft);
  border: 1px solid var(--blue-border-light);
  color: var(--blue-hover);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.chip-dot {
  width: 6px;
  height: 6px;
  background: var(--blue-primary);
  border-radius: var(--radius-pill);
}

.hero-title {
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 660px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 38px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--blue-border-light);
  border-radius: var(--radius-md);
  padding: 18px 12px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--blue-border);
}

.stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue-primary);
  letter-spacing: -0.02em;
}

.stat-txt {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 3px;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.22);
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--text-main);
  border: 1.5px solid var(--blue-border-light);
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.98rem;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--blue-soft);
  border-color: var(--blue-border);
  color: var(--blue-primary);
}

.trust-ticker {
  background: var(--blue-soft);
  border-top: 1px solid var(--blue-border-light);
  border-bottom: 1px solid var(--blue-border-light);
  padding: 22px 0;
}

.ticker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ticker-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-icon {
  width: 28px;
  height: 28px;
  background: var(--white);
  color: var(--blue-primary);
  border: 1px solid var(--blue-border-light);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.ticker-box strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-main);
}

.ticker-box small {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.section {
  padding: 75px 0;
}

.section-tint {
  background: var(--blue-soft);
  border-top: 1px solid var(--blue-border-light);
  border-bottom: 1px solid var(--blue-border-light);
}

.section-title-wrap {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 46px;
}

.section-pill {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-primary);
  background: var(--blue-tint);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  border: 1px solid var(--blue-border-light);
}

.section-title-wrap h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 12px;
}

.section-title-wrap p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 250px;
  background: var(--blue-soft);
  border: 1px solid var(--blue-border-light);
  box-shadow: var(--shadow-subtle);
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.75) 75%, transparent 100%);
  color: #ffffff;
  padding: 24px 18px 16px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
}

.gallery-overlay p {
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.45;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--blue-border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-subtle);
  transition: all 0.25s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue-border);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-soft);
  color: var(--blue-primary);
  border: 1px solid var(--blue-border-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-main);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--blue-border-light);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-subtle);
}

.step-badge {
  width: 42px;
  height: 42px;
  background: var(--blue-primary);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-main);
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* OBSZAR DZIAŁANIA Z MAPĄ */
.region-layout {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 20px;
}

/* Karta z mapą */
.region-map-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--blue-border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--blue-border-light);
  color: var(--text-main);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  z-index: 2;
}

.region-map-img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.region-map-card:hover .region-map-img {
  transform: scale(1.02);
}

/* Kolumna z opisami */
.region-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.region-card {
  background: var(--white);
  border: 1px solid var(--blue-border-light);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-subtle);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.region-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-2px);
}

.region-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.region-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.region-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.region-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 14px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--blue-border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-subtle);
}

.stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-style: italic;
  color: var(--text-main);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 22px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 38px;
  height: 38px;
  background: var(--blue-soft);
  color: var(--blue-primary);
  border: 1px solid var(--blue-border-light);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
}

.review-user strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-main);
}

.review-user span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
}

.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--blue-border-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-subtle);
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--blue-border);
}

.faq-btn {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-arrow {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--blue-primary);
  font-weight: 400;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-panel > p {
  overflow: hidden;
  padding: 0 22px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  transition: padding-bottom 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-panel {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-panel > p {
  padding-bottom: 18px;
}

.faq-item.active .faq-arrow {
  transform: rotate(45deg);
}

.reviews-google-cta {
  text-align: center;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.reviews-google-cta p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.reviews-google-cta strong {
  color: var(--text-main);
}

.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--text-main);
  border: 1.5px solid var(--blue-border);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: var(--shadow-subtle);
  transition: all 0.2s ease;
}

.btn-google-reviews:hover {
  background: var(--blue-soft);
  border-color: var(--blue-primary);
  color: var(--blue-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.cta-banner {
  background: linear-gradient(135deg, var(--blue-secondary), var(--blue-dark));
  color: var(--white);
  padding: 65px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.cta-headline {
  font-size: 1.12rem;
  opacity: 0.95;
}

.cta-sub {
  font-size: 0.92rem;
  opacity: 0.85;
  margin-bottom: 26px;
}

.cta-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--blue-hover);
  font-size: 1.15rem;
  font-weight: 800;
  padding: 13px 32px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
}

.cta-btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.footer {
  background: var(--white);
  border-top: 1px solid var(--blue-border-light);
  padding: 60px 0 24px;
  color: var(--text-muted);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 14px;
}

.footer-logo span {
  color: var(--blue-primary);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 380px;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-nav a:hover {
  color: var(--blue-primary);
  transform: translateX(3px);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

a.footer-contact-link:hover {
  color: var(--blue-primary);
}

.contact-icon {
  width: 32px;
  height: 32px;
  background: var(--blue-soft);
  border: 1px solid var(--blue-border-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--blue-border-light);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-light);
}

.footer-badge {
  background: var(--blue-soft);
  border: 1px solid var(--blue-border-light);
  color: var(--blue-primary);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 52px;
  z-index: 9999;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.06);
}

.mob-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  background: var(--blue-primary);
  color: var(--white);
}

@media (max-width: 900px) {
  .hero-stats-grid,
  .ticker-grid,
  .gallery-grid,
  .services-grid,
  .steps-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .region-layout {
    grid-template-columns: 1fr;
  }

  .region-map-card {
    min-height: 280px;
    padding: 20px;
  }
}


@media (max-width: 640px) {
  .top-bar, .nav-links, .nav-action {
    display: none;
  }
  .hero-title {
    font-size: 1.9rem;
  }
  .hero-stats-grid,
  .ticker-grid,
  .gallery-grid,
  .services-grid,
  .steps-grid,
  .region-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta-group {
    flex-direction: column;
  }
  .mobile-bottom-bar {
    display: flex;
  }
}