/* ==========================================================================
   P&D AUTO SERWIS - OLSZTYN ZATORZE
   Główny arkusz stylów CSS (Nowoczesny, Czysty, Jasny Motyw, Wysoka Konwersja)
   ========================================================================== */

:root {
  --color-bg-main: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-bg-surface: #f1f5f9;
  --color-bg-card: #ffffff;
  --color-bg-card-hover: #ffffff;
  --color-border: #e2e8f0;
  --color-border-darker: #cbd5e1;
  --color-border-glow: rgba(229, 36, 33, 0.35);

  --color-primary: #e52421;
  --color-primary-hover: #c41613;
  --color-primary-glow: rgba(229, 36, 33, 0.25);

  --color-accent-amber: #d97706;
  --color-accent-green: #059669;

  --color-text-main: #0f172a;
  --color-text-muted: #475569;
  --color-text-dim: #64748b;

  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-hover: 0 20px 30px -10px rgba(229, 36, 33, 0.18), 0 10px 15px -3px rgba(15, 23, 42, 0.05);
  --shadow-btn: 0 4px 14px rgba(229, 36, 33, 0.35);

  --container-max: 1240px;
  --header-height: 80px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 40px);
  font-size: 16px;
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

.section {
  padding: 85px 0;
  position: relative;
}

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

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

.mt-sm { margin-top: 15px; }
.mt-md { margin-top: 30px; }
.mt-lg { margin-top: 45px; }

/* Section Headers */
.section-header {
  max-width: 820px;
  margin: 0 auto 50px auto;
}

.sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--color-text-main);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #c41613 100%);
  color: #ffffff !important;
  box-shadow: var(--shadow-btn);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #ff3834 0%, var(--color-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 36, 33, 0.45);
}

.btn--secondary {
  background: #ffffff;
  color: var(--color-text-main) !important;
  border: 1px solid var(--color-border-darker);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  background: #f8fafc;
  border-color: var(--color-primary);
  color: var(--color-primary) !important;
  transform: translateY(-2px);
}

.btn--outline {
  background: #ffffff;
  color: var(--color-text-main) !important;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn--outline:hover {
  border-color: var(--color-primary);
  background: #fef2f2;
  color: var(--color-primary) !important;
}

.btn--sm {
  padding: 8px 18px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1.15rem;
}

@media (max-width: 600px) {
  .btn {
    white-space: normal;
    word-break: break-word;
    max-width: 100%;
    text-align: center;
  }

  .btn--lg {
    padding: 13px 18px;
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
  }
}

.btn--block {
  width: 100%;
}

.btn--pulse {
  animation: pulse-red 2.2s infinite;
}

@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(229, 36, 33, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(229, 36, 33, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 36, 33, 0); }
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  flex-shrink: 0;
  transition: transform 0.22s ease, background 0.22s ease;
}

.btn--sm .btn__icon {
  width: 26px;
  height: 26px;
}

.btn--lg .btn__icon {
  width: 40px;
  height: 40px;
}

.btn:hover .btn__icon {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.08);
}

.btn--secondary .btn__icon {
  background: #fee2e2;
  color: var(--color-primary);
}

.btn--secondary:hover .btn__icon {
  background: #fecaca;
  color: var(--color-primary-hover);
}

.btn-icon-svg {
  display: block;
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.btn--sm .btn-icon-svg {
  width: 14px;
  height: 14px;
}

.btn--lg .btn-icon-svg {
  width: 22px;
  height: 22px;
}

.btn__text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.btn__phone {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* ================= TOPBAR ================= */
.topbar {
  background: #0f172a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 9px 0;
  font-size: 0.84rem;
  color: #94a3b8;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar__item strong {
  color: #ffffff;
}

.topbar__icon {
  font-size: 0.95rem;
}

.topbar__stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  line-height: 1;
}

.topbar__item--link {
  text-decoration: none;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.topbar__item--link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.topbar__item--link:hover strong {
  color: #f59e0b;
}

@media (max-width: 820px) {
  .topbar {
    display: none;
  }
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--color-border-darker);
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.navbar__brand {
  display: flex;
  align-items: center;
  background: #0f172a;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
}

.navbar__brand img {
  height: 40px;
  width: auto;
  max-width: 230px;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f1f5f9;
  padding: 5px 6px;
  border-radius: var(--radius-full);
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.navbar__links li {
  list-style: none;
}

.navbar__links a {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #334155;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.2px;
}

.navbar__links a:hover {
  background: #ffffff;
  color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.mobile-cta-wrapper {
  display: none;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 34px;
  height: 32px;
  background: transparent;
  padding: 4px;
}

.navbar__toggle-bar {
  width: 100%;
  height: 3px;
  background-color: var(--color-text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 1060px) {
  .nav-call-btn {
    display: none;
  }
  .navbar__toggle {
    display: flex;
  }
  .navbar__nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
  }

  .navbar__nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  }

  .navbar__links {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .navbar__links a {
    font-size: 1.05rem;
    color: var(--color-text-main);
    background: #f8fafc;
    border: 1px solid var(--color-border);
    padding: 12px 20px;
    width: 100%;
    text-align: center;
    border-radius: var(--radius-md);
  }

  .navbar__links a:hover {
    background: #ffffff;
    border-color: var(--color-primary);
  }

  .mobile-cta-wrapper {
    display: block;
    width: 100%;
    margin-top: 10px;
  }

  .mobile-cta-wrapper .btn {
    width: 100%;
  }
}

/* ================= HERO SECTION ================= */
.hero {
  padding-top: 55px;
  padding-bottom: 85px;
  background: radial-gradient(circle at 90% 15%, rgba(229, 36, 33, 0.06) 0%, transparent 45%),
              linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

@media (max-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
  max-width: 100%;
}

@media (max-width: 540px) {
  .hero__badge {
    font-size: 0.82rem;
    padding: 6px 12px;
    gap: 8px;
    margin-bottom: 16px;
    border-radius: 20px;
  }
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: blink 1.8s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--color-text-main);
}

.hero__title .highlight {
  color: var(--color-primary);
  display: inline;
}

.hero__lead {
  font-size: 1.16rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 620px;
}

.hero__lead strong {
  color: var(--color-text-main);
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

@media (max-width: 600px) {
  .hero__cta-group {
    flex-direction: column;
    align-items: stretch;
  }
}

.hero__usps-container {
  margin-top: 45px;
}

.hero__usps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
}

@media (max-width: 1200px) {
  .hero__usps {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .hero__usps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero__usps {
    grid-template-columns: 1fr;
  }
}

.hero__usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  padding: 14px 12px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: transform 0.28s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.28s ease, border-color 0.28s ease;
  min-width: 0;
  position: relative;
}

.hero__usp-item:hover {
  background: #ffffff;
  border-color: rgba(229, 36, 33, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 14px 28px -6px rgba(229, 36, 33, 0.12), 0 4px 10px rgba(15, 23, 42, 0.04);
}

.usp-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: var(--color-primary);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(229, 36, 33, 0.15);
  transition: transform 0.28s ease;
}

.hero__usp-item:hover .usp-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
}

.usp-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.usp-content strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.25;
  white-space: normal;
  word-break: normal;
}

.usp-content span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-top: 6px;
  white-space: normal;
  word-break: normal;
}

.hero__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(226, 232, 240, 0.8);
  background: #ffffff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -10px rgba(15, 23, 42, 0.18);
}

.hero__card-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hero__card-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.hero__card:hover .hero__card-img img {
  transform: scale(1.04);
}

.hero__floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 12px 30px -4px rgba(15, 23, 42, 0.2), 0 4px 10px rgba(0, 0, 0, 0.05);
  z-index: 10;
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.hero__floating-card--top {
  top: 18px;
  left: 18px;
}

.hero__floating-card--bottom {
  bottom: 18px;
  right: 18px;
  animation-delay: -2s;
}

a.hero__floating-card {
  text-decoration: none;
  color: var(--color-text-main);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

a.hero__floating-card:hover {
  background: #ffffff;
  border-color: rgba(66, 133, 244, 0.5);
  box-shadow: 0 16px 36px -4px rgba(66, 133, 244, 0.28), 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px) scale(1.02);
}

@keyframes floatSlow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

@media (max-width: 540px) {
  .hero__floating-card {
    padding: 7px 10px;
    gap: 8px;
    max-width: calc(100% - 20px);
  }
  .hero__floating-card--top {
    top: 10px;
    left: 10px;
  }
  .hero__floating-card--bottom {
    bottom: 10px;
    right: 10px;
  }
  .floating-card__stars {
    font-size: 0.78rem;
    letter-spacing: 0;
  }
  .floating-card__sub {
    font-size: 0.68rem;
  }
}

.live-status-ping {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.ping-wave {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #10b981;
  opacity: 0.6;
  animation: pingAnimation 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.ping-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

@keyframes pingAnimation {
  75%, 100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.floating-card__text {
  display: flex;
  flex-direction: column;
}

.floating-card__title {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.floating-card__sub {
  font-size: 0.74rem;
  color: #475569;
  font-weight: 500;
}

.google-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.floating-card__stars {
  color: #f59e0b;
  font-size: 0.88rem;
  letter-spacing: 1px;
  line-height: 1.2;
}

.floating-card__stars .score {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #0f172a;
  margin-left: 4px;
}

.hero__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 16px 14px;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
}

.footer-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 0;
  padding: 0 4px;
}

.footer-stat strong {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-text-main);
  line-height: 1.1;
  white-space: nowrap;
}

.footer-stat span {
  font-size: 0.74rem;
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.25;
  margin-top: 4px;
  text-align: center;
}

.footer-divider {
  width: 1px;
  height: 32px;
  background: var(--color-border);
  flex-shrink: 0;
}

@media (max-width: 540px) {
  .hero__card-footer {
    padding: 12px 6px;
  }
  .footer-stat strong {
    font-size: 1.25rem;
  }
  .footer-stat span {
    font-size: 0.68rem;
    letter-spacing: 0;
    line-height: 1.2;
  }
}

/* ================= SERVICES SECTION ================= */
.services {
  background: #ffffff;
}

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

@media (max-width: 1040px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.35s ease;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.06);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(229, 36, 33, 0.35);
  box-shadow: 0 25px 45px -12px rgba(15, 23, 42, 0.14), 0 8px 18px rgba(229, 36, 33, 0.08);
}

.service-card__media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #0f172a;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.service-card:hover .service-card__media img {
  transform: scale(1.08);
}

.service-card__tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-card__tag--highlight {
  background: linear-gradient(135deg, #e52421 0%, #b91c1c 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(229, 36, 33, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text-main);
}

.service-card__text {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-card__list {
  margin-bottom: 22px;
  background: #f8fafc;
  border: 1px dashed var(--color-border-darker);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.service-card__list li {
  font-size: 0.88rem;
  color: #334155;
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.service-card__list li:last-child {
  margin-bottom: 0;
}

.service-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.service-card__cta {
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
}

.service-card__cta .btn {
  white-space: normal;
  font-size: 0.92rem;
  padding: 12px 14px;
  line-height: 1.35;
  text-align: center;
}

.btn--service-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.btn-phone-num {
  white-space: nowrap;
  font-weight: 800;
  color: var(--color-primary);
}

@media (max-width: 600px) {
  .btn--service-card {
    flex-direction: column;
    gap: 4px;
    padding: 11px 12px;
  }

  .btn--service-card .btn-action-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-muted);
  }

  .btn--service-card .btn-phone-num {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-primary);
    white-space: nowrap;
  }
}

/* ================= PRICING SECTION (CENNIK) ================= */
.pricing {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.pricing__table-wrapper {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  box-shadow: var(--shadow-card);
  margin-bottom: 30px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.pricing-table th {
  background: #0f172a;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 16px 22px;
  border-bottom: 2px solid var(--color-primary);
}

.pricing-table td {
  padding: 14px 22px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.96rem;
  color: var(--color-text-muted);
  vertical-align: middle;
}

.pricing-table tbody tr:hover {
  background: #f8fafc;
}

.pricing-category-row td {
  background: #fef2f2;
  color: #b91c1c;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 22px;
  border-bottom: 1px solid #fecaca;
  letter-spacing: 0.5px;
}

.th-service { width: 55%; }
.th-price { width: 25%; }
.th-action { width: 20%; text-align: right; }

.td-service strong {
  color: var(--color-text-main);
}

.td-price {
  font-family: var(--font-heading);
  font-weight: 700;
}

.price-val {
  display: inline-block;
  background: #f1f5f9;
  border: 1px solid var(--color-border-darker);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  color: var(--color-text-main);
  font-weight: 700;
}

.td-action {
  text-align: right;
}

.btn-table-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #c41613 100%);
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(229, 36, 33, 0.25);
}

.btn-table-call svg {
  width: 13px;
  height: 13px;
  stroke: #ffffff;
  display: block;
  flex-shrink: 0;
}

.btn-table-call:hover {
  background: linear-gradient(135deg, #ff3834 0%, var(--color-primary) 100%);
  transform: scale(1.04);
}

/* Responsive Mobile Table Cards (Zero Horizontal Scroll) */
@media (max-width: 768px) {
  .pricing__table-wrapper {
    overflow-x: hidden;
    border: none;
    background: transparent;
    box-shadow: none;
    margin-bottom: 20px;
  }

  .pricing-table {
    min-width: 0 !important;
    width: 100% !important;
    display: block;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table tbody {
    display: block;
    width: 100%;
  }

  .pricing-category-row {
    display: block;
    margin-top: 24px;
    margin-bottom: 12px;
  }

  .pricing-category-row:first-child {
    margin-top: 0;
  }

  .pricing-category-row td {
    display: block;
    width: 100%;
    background: #fef2f2;
    color: #b91c1c;
    font-size: 0.95rem;
    font-weight: 800;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    border: 1px solid #fecaca;
    white-space: normal;
    word-break: break-word;
    line-height: 1.4;
    box-sizing: border-box;
  }

  .pricing-table tbody tr:not(.pricing-category-row) {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "service service"
      "price action";
    gap: 10px 8px;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    width: 100%;
  }

  .pricing-table tbody tr:not(.pricing-category-row) td {
    display: block;
    padding: 0;
    border: none;
    box-sizing: border-box;
  }

  .pricing-table .td-service {
    grid-area: service;
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--color-text-main);
  }

  .pricing-table .td-price {
    grid-area: price;
  }

  .pricing-table .price-val {
    display: inline-block;
    font-size: 0.9rem;
    padding: 4px 10px;
    white-space: nowrap;
  }

  .pricing-table .td-action {
    grid-area: action;
    text-align: right;
  }

  .pricing-table .btn-table-call {
    padding: 6px 14px;
    font-size: 0.82rem;
  }
}

@media (max-width: 380px) {
  .pricing-table tbody tr:not(.pricing-category-row) {
    grid-template-columns: 1fr;
    grid-template-areas:
      "service"
      "price"
      "action";
    gap: 10px;
  }

  .pricing-table .td-action {
    text-align: left;
  }

  .pricing-table .btn-table-call {
    width: 100%;
    justify-content: center;
    padding: 8px 14px;
  }
}

.pricing__footer-note {
  max-width: 800px;
  margin: 0 auto;
}

.note-text {
  font-size: 0.92rem;
  color: var(--color-text-dim);
  line-height: 1.6;
}

/* ================= HOW WE WORK (STEPS) ================= */
.how-it-works {
  background: #ffffff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.step-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.step-card__number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #c41613 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(229, 36, 33, 0.35);
}

.step-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text-main);
}

.step-card__text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-card);
  color: #ffffff;
}

.cta-banner h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 10px;
  color: #ffffff;
}

.cta-banner p {
  font-size: 1.05rem;
  color: #94a3b8;
  max-width: 650px;
  margin: 0 auto;
}

/* ================= GALLERY ================= */
.gallery {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }
}

.gallery__item {
  position: relative;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  cursor: pointer;
  background: #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__icon {
  font-size: 0.8rem;
  color: #ff5552;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery__caption {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}

/* ================= REVIEWS ================= */
.reviews {
  background: #ffffff;
  border-top: 1px solid var(--color-border);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  flex-wrap: wrap;
  justify-content: center;
}

a.rating-badge--link {
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

a.rating-badge--link:hover {
  background: #fde68a;
  border-color: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.22);
}

.stars {
  color: #d97706;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.rating-score {
  font-weight: 800;
  font-size: 1.1rem;
  color: #92400e;
}

.rating-count {
  font-size: 0.88rem;
  color: #78350f;
}

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

@media (max-width: 992px) {
  .reviews__grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.35s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 36, 33, 0.35);
  box-shadow: 0 20px 35px -8px rgba(15, 23, 42, 0.12);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  position: relative;
}

.review-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  font-size: 0.95rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.review-meta {
  flex-grow: 1;
}

.review-author {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 2px;
}

.review-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.review-badge-g {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  color: #1e293b;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.review-badge-g::before {
  content: '✓';
  color: #059669;
  font-weight: 900;
}

.review-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}

.review-service {
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ================= FAQ SECTION ================= */
.faq {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}

.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq__item {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.faq__item.active {
  border-color: var(--color-primary);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-main);
  text-align: left;
}

.faq__icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 14px;
}

.faq__item.active .faq__icon {
  transform: rotate(-135deg);
}

.faq__answer {
  display: none;
  padding: 0 24px 22px 24px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
}

.faq__item.active .faq__answer {
  display: block;
}

/* ================= LOCATION & CONTACT ================= */
.location {
  background: #ffffff;
  padding-bottom: 110px;
  border-top: 1px solid var(--color-border);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

@media (max-width: 992px) {
  .location__grid {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
}

@media (max-width: 540px) {
  .info-card {
    padding: 22px 18px;
  }
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-text-main);
  margin-bottom: 4px;
}

.company-desc {
  font-size: 0.95rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fee2e2;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-primary);
  display: block;
}

.info-item strong {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-dim);
  display: block;
  margin-bottom: 2px;
}

.info-item p {
  font-size: 1.05rem;
  color: var(--color-text-main);
  line-height: 1.5;
}

.phone-link {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.phone-link:hover {
  color: var(--color-primary-hover);
}

.phone-link-inline {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.phone-link-inline:hover {
  color: var(--color-primary-hover);
  background: rgba(229, 36, 33, 0.08);
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.address-map-link {
  color: var(--color-text-main);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.address-map-link:hover {
  color: var(--color-primary);
}

.direct-call-box {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.direct-call-box p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  text-align: center;
}

.location__map {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.map-container {
  flex: 1;
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  background: #f1f5f9;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  display: block;
}

.map-actions {
  margin-top: 16px;
  flex-shrink: 0;
}

/* ================= FOOTER ================= */
.footer {
  background: #f8fafc;
  border-top: 1px solid var(--color-border);
  padding: 60px 0 110px 0;
  color: var(--color-text-muted);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  height: 42px;
  width: auto;
  margin-bottom: 16px;
  background: #0f172a;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.footer__about {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.footer__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 18px;
}

.footer__nav li {
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.footer__nav a {
  color: var(--color-text-muted);
}

.footer__nav a:hover {
  color: var(--color-primary);
}

.footer__nav span {
  color: var(--color-text-muted);
}

.footer__call-prompt {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.footer__phone-big a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
}

.footer__phone-big a:hover {
  color: var(--color-primary-hover);
}

.footer__phone-sub {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 6px 0 12px 0;
}

.footer__phone-sub a {
  color: var(--color-text-main);
  font-weight: 700;
}

.footer__phone-sub a:hover {
  color: var(--color-primary);
}

.footer__address {
  font-size: 0.88rem;
  color: var(--color-text-dim);
  line-height: 1.5;
}

.footer__address-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(15, 23, 42, 0.3);
  transition: all 0.2s ease;
}

.footer__address-link:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--color-text-dim);
}

.footer__seo-note {
  color: var(--color-text-dim);
}

.footer__author-link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.footer__author-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

@media (max-width: 820px) {
  body {
    padding-bottom: 80px;
  }
}

/* ================= STICKY MOBILE CALL BAR ================= */
.sticky-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 2px solid var(--color-primary);
  padding: 8px 12px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}

.sticky-call-bar__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  box-sizing: border-box;
}

.sticky-call-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  min-width: 0;
  box-sizing: border-box;
  text-decoration: none;
}

.sticky-call-bar__btn--primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff !important;
  flex: 1.4;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.sticky-call-bar__btn--nav {
  background: #f1f5f9;
  border: 1px solid var(--color-border-darker);
  color: var(--color-text-main) !important;
  flex: 1;
}

.sticky-call-bar__btn--nav:hover {
  background: #e2e8f0;
}

.bar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.bar-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  display: block;
}

.bar-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 0;
  overflow: hidden;
}

.bar-sub {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  opacity: 0.85;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.15;
}

.bar-main {
  font-size: 0.94rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

@media (max-width: 360px) {
  .sticky-call-bar {
    padding: 6px 8px;
  }
  .sticky-call-bar__container {
    gap: 6px;
  }
  .sticky-call-bar__btn {
    padding: 8px 8px;
    gap: 6px;
  }
  .bar-main {
    font-size: 0.85rem;
  }
  .bar-sub {
    font-size: 0.58rem;
  }
}

/* ================= LIGHTBOX MODAL ================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}

.lightbox.active {
  display: flex !important;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #ffffff;
  font-size: 2.2rem;
  background: rgba(255, 255, 255, 0.15);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.2s ease;
}

.lightbox__close:hover {
  background: var(--color-primary);
}

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox__caption {
  margin-top: 14px;
  font-size: 1rem;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
}
