:root {
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --primary-light: #e0f2fe;
  --primary-hover: #0ea5e9;
  --secondary: #0f172a;
  --secondary-light: #1e293b;
  --accent: #ef4444;
  --accent-hover: #dc2626;
  --accent-orange: #f97316;
  --accent-orange-hover: #ea580c;
  --bg-color: #f8fafc;
  --card-bg: #ffffff;
  --text-main: #334155;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(226, 232, 240, 0.8);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   TOP EMERGENCY BAR
========================================= */
.top-bar {
  background: linear-gradient(90deg, #991b1b 0%, #dc2626 50%, #f97316 100%);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-left .pulse-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-green 1.8s infinite;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-right a {
  color: var(--white);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.2);
  padding: 3px 12px;
  border-radius: var(--radius-full);
}

.top-bar-right a:hover {
  background: rgba(0, 0, 0, 0.4);
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--secondary);
}

.nav-brand img {
  height: 52px;
  width: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--secondary);
  line-height: 1.1;
}

.brand-title span {
  color: var(--primary);
}

.brand-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Hamburger Toggle */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.hamburger span {
  width: 32px;
  height: 3px;
  background: var(--secondary);
  border-radius: 10px;
  transition: var(--transition);
  transform-origin: 1px;
}

.hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(15px);
}

.hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* Mobile Drawer */
.mobile-menu-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--card-bg);
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  padding: 90px 24px 40px;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-drawer.is-active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.is-active {
  display: block;
  opacity: 1;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--secondary);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link.active {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  gap: 8px;
  white-space: normal;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  word-break: normal;
  overflow-wrap: break-word;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #dc2626 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.55);
  color: var(--white);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--border-color);
}

.btn-outline-dark:hover {
  background: var(--bg-color);
  border-color: var(--primary);
  color: var(--primary);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
  position: relative;
  padding: 90px 0 100px;
  background: radial-gradient(circle at 80% 20%, #1e3a8a 0%, #0f172a 70%);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2338bdf8' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero h1 span.highlight {
  background: linear-gradient(90deg, #38bdf8 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-meta-item i {
  color: #38bdf8;
  font-size: 1.2rem;
}

/* Hero Quick Call Card (Right side) */
.hero-card {
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.hero-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 18px;
  border: 2px solid rgba(239, 68, 68, 0.3);
}

.hero-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.hero-card p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.hero-card .call-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fca5a5;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.hero-card .call-number:hover {
  color: var(--white);
  transform: scale(1.03);
}

/* =========================================
   TRUST BADGES BAR (Symmetrical 4 Columns)
========================================= */
.trust-bar {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid var(--border-color);
}

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

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

.trust-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trust-info h4 {
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 2px;
}

.trust-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.3;
}

/* =========================================
   EMERGENCY BANNER STRIP
========================================= */
.emergency-banner-section {
  padding: 50px 0;
  background: var(--bg-color);
}

.emergency-banner-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-left: 6px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  box-shadow: var(--shadow-md);
  box-sizing: border-box;
  max-width: 100%;
}

.emergency-banner-content h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.emergency-banner-content h3 i {
  color: var(--accent);
}

.emergency-banner-content p {
  color: #cbd5e1;
  font-size: 1.05rem;
  max-width: 650px;
}

.emergency-banner-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* =========================================
   PAGE HEADER (FOR SUBPAGES)
========================================= */
.page-header {
  padding: 70px 0 50px;
  background: linear-gradient(135deg, var(--secondary) 0%, #0b1329 100%);
  color: var(--white);
  position: relative;
  text-align: center;
}

.page-header h1 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.15rem;
  color: #94a3b8;
  max-width: 680px;
  margin: 0 auto 20px;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: #cbd5e1;
}

.breadcrumbs a {
  color: #38bdf8;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs i {
  font-size: 0.75rem;
  opacity: 0.6;
}

/* =========================================
   SECTION HEADERS
========================================= */
.section-title {
  text-align: center;
  margin-bottom: 50px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 10px;
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.section-title h2 {
  font-size: 2.4rem;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* =========================================
   SERVICES GRID & FEATURED CARD (SYMMETRIC)
========================================= */
.services {
  padding: 80px 0 100px;
  background: var(--white);
}

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

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card ul li {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 8px;
  position: relative;
  padding-left: 24px;
}

.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
}

.emergency-pill {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* =========================================
   FEATURED FULL-WIDTH EMERGENCY CARD (#pogotowie)
========================================= */
.service-card-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 50%, #fff1f2 100%);
  border: 2px solid #fecaca;
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.12);
  padding: 38px 40px;
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.85fr;
  gap: 36px;
  align-items: center;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.service-card-featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(239, 68, 68, 0.22);
  border-color: var(--accent);
}

.service-featured-main {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.service-featured-main .service-icon-box {
  width: 72px;
  height: 72px;
  font-size: 2.2rem;
  background: #fee2e2;
  color: var(--accent);
  flex-shrink: 0;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.18);
  margin-bottom: 0;
}

.service-featured-main h3 {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1.25;
}

.service-featured-main p {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.service-featured-bullets {
  border-left: 1px solid #fecdd3;
  border-right: 1px solid #fecdd3;
  padding: 0 26px;
}

.service-featured-bullets ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-featured-bullets ul li {
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
  line-height: 1.45;
}

.service-featured-bullets ul li:last-child {
  margin-bottom: 0;
}

.service-featured-bullets ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.05rem;
}

.service-featured-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  justify-content: center;
}

.service-featured-action .arrival-tag {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* =========================================
   DETAILED SERVICE ITEM (ON USLUGI.HTML)
========================================= */
.service-detail-item {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.service-detail-item:last-child {
  border-bottom: none;
}

.service-detail-item:nth-child(even) {
  grid-template-columns: 0.9fr 1.1fr;
}

.service-detail-item:nth-child(even) .service-detail-image {
  order: -1;
}

.service-detail-content h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--secondary);
}

.service-detail-content p.lead {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 18px;
  font-weight: 500;
}

.service-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 28px;
}

.feature-box {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: var(--radius-md);
}

.feature-box h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-box h4 i {
  color: var(--primary);
}

.feature-box p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 4/3;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-detail-image:hover img {
  transform: scale(1.05);
}

/* =========================================
   POGOTOWIE DEDICATED SECTION
========================================= */
.pogotowie-process {
  padding: 80px 0;
  background: var(--white);
}

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

.step-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 18px;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4);
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Arrival Table */
.arrival-table-section {
  padding: 70px 0;
  background: var(--bg-color);
}

.arrival-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.arrival-table th, .arrival-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.arrival-table th {
  background: var(--secondary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.arrival-table tr:hover {
  background: var(--primary-light);
}

.arrival-table .badge-time {
  background: #dcfce7;
  color: #166534;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Emergency advice checklist */
.emergency-checklist {
  background: #fff1f2;
  border: 2px dashed #fda4af;
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 40px 0;
}

.emergency-checklist h3 {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checklist-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.checklist-box {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid #fecdd3;
}

.checklist-box strong {
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}

/* =========================================
   GALLERY & REALIZACJE (Symmetrical Grid)
========================================= */
.gallery-section {
  padding: 80px 0 100px;
  background: var(--bg-color);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: var(--white);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  cursor: pointer;
  background: #0f172a;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0) 60%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--white);
  transition: opacity 0.3s ease;
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: #94a3b8;
}

.gallery-zoom-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 28, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.is-active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content 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.6);
}

.lightbox-caption {
  color: var(--white);
  text-align: center;
  margin-top: 14px;
  font-size: 1.05rem;
  font-weight: 500;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: transform 0.2s;
}

.lightbox-close:hover {
  transform: scale(1.2);
  color: var(--accent);
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--primary);
}

/* =========================================
   AREA COVERAGE SECTION (Symmetrical 3 Columns)
========================================= */
.area-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
}

.area-section .section-title h2 {
  color: var(--white);
}

.area-section .section-title p {
  color: #94a3b8;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.area-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}

.area-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.area-card i {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.area-card h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.area-card p {
  color: #94a3b8;
  font-size: 0.85rem;
}

/* =========================================
   CONTACT PAGE & SECTION
========================================= */
.contact-section {
  padding: 80px 0 100px;
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.contact-card.emergency-card {
  background: #fff5f5;
  border-color: #fecaca;
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.emergency-card .contact-card-icon {
  background: #fee2e2;
  color: var(--accent);
}

.contact-card-body h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.contact-card-body a {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
}

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

.emergency-card .contact-card-body a {
  color: var(--accent);
}

/* Contact Form */
.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-form-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-color);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Form alert */
.form-alert {
  display: none;
  padding: 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-alert.success {
  display: block;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-alert.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.form-alert.warning {
  display: block;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

/* Custom Validation CSS States (No native HTML tooltips) */
.form-control.is-invalid {
  border-color: #ef4444 !important;
  background-color: #fffafb;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

.form-control.is-valid {
  border-color: #10b981 !important;
  background-color: #f6fbf8;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12) !important;
}

.form-feedback {
  display: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: #dc2626;
  margin-top: 6px;
  line-height: 1.4;
  animation: fadeIn 0.2s ease-in-out;
}

.form-feedback.is-visible {
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-feedback i {
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Honeypot Spam Protection (Invisible to humans, catches bots) */
.hp-field {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

/* Button Loading State */
.btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.form-shake {
  animation: shake 0.4s ease-in-out;
}

/* =========================================
   FOOTER (Symmetrical 4 Columns)
========================================= */
.footer {
  background: var(--secondary);
  color: var(--white);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.footer-col p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-logo {
  height: 60px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.footer-contact-list i {
  color: #38bdf8;
  margin-top: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #64748b;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================
   FLOATING ACTION BUTTON (MOBILE)
========================================= */
.fab {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: linear-gradient(135deg, var(--accent) 0%, #dc2626 100%);
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.45);
  animation: pulse-red 2.2s infinite;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-sizing: border-box;
  max-width: calc(100vw - 36px);
  -webkit-tap-highlight-color: transparent;
}

/* Animations */
@keyframes pulse-red {
  0% { box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4), 0 0 0 0 rgba(239, 68, 68, 0.6); }
  70% { box-shadow: 0 4px 18px rgba(239, 68, 68, 0.4), 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4), 0 0 0 0 rgba(239, 68, 68, 0); }
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* =========================================
   RESPONSIVE DESIGN (PRESERVING SYMMETRY)
========================================= */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-meta {
    justify-content: center;
  }

  .hero-card {
    max-width: 500px;
    margin: 0 auto;
  }

  /* 2-column Symmetrical Grids */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-featured {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 24px;
  }

  .service-featured-bullets {
    border-left: none;
    border-right: none;
    border-top: 1px solid #fecdd3;
    border-bottom: 1px solid #fecdd3;
    padding: 18px 0;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-item,
  .service-detail-item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-detail-item:nth-child(even) .service-detail-image {
    order: 0;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-left {
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
  }

  .top-bar-right {
    display: none;
  }

  .nav-links, .nav-actions .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu-drawer {
    display: flex;
  }

  .hero {
    padding: 60px 0 70px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .page-header h1 {
    font-size: 2.1rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  /* 1-column Grids on Mobile */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-featured-main {
    flex-direction: column;
    gap: 14px;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .area-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .checklist-items {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .fab {
    display: flex;
  }

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }

  /* Responsive emergency banner */
  .emergency-banner-card {
    padding: 24px 18px;
    border-radius: var(--radius-md);
    border-left-width: 4px;
  }

  .emergency-banner-content h3 {
    font-size: 1.35rem;
    flex-wrap: wrap;
  }

  .emergency-banner-content p {
    font-size: 0.95rem;
  }

  .emergency-banner-actions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .emergency-banner-actions .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  /* Responsive buttons */
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .btn {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
  }

  .btn-large {
    padding: 14px 20px;
    font-size: 0.98rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
  }

  .btn-pogotowie-cta {
    font-size: 1.25rem !important;
    padding: 15px 20px !important;
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .fab {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
    font-size: 1.3rem;
  }

  .top-bar-left {
    font-size: 0.76rem;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .section-title h2 {
    font-size: 1.65rem;
  }
}

/* =========================================
   OFFICIAL SERVICES PILLARS (3 Symmetrical Columns)
========================================= */
.official-pillars-section {
  padding: 40px 0 20px;
}

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

.pillar-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.pillar-card.pillar-heating {
  border-top-color: var(--accent-orange);
}

.pillar-card.pillar-gas {
  border-top-color: #059669;
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.pillar-heating .pillar-icon {
  background: #ffedd5;
  color: var(--accent-orange);
}

.pillar-gas .pillar-icon {
  background: #d1fae5;
  color: #059669;
}

.pillar-title-group h3 {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 4px;
}

.pillar-count-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--primary-light);
  color: var(--primary-dark);
}

.pillar-heating .pillar-count-badge {
  background: #ffedd5;
  color: #c2410c;
}

.pillar-gas .pillar-count-badge {
  background: #d1fae5;
  color: #047857;
}

.pillar-list {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  flex-grow: 1;
}

.pillar-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.45;
}

.pillar-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: #10b981;
  font-size: 0.85rem;
}

.pillar-footer {
  margin-top: auto;
}

.pillar-footer .btn {
  width: 100%;
  justify-content: center;
}

/* =========================================
   COMPANY REGISTRATION & LEGAL DETAILS
========================================= */
.legal-details-list {
  list-style: none;
  margin: 14px 0 0 0;
  padding: 0;
}

.legal-details-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-color);
  font-size: 0.88rem;
}

.legal-details-list li:last-child {
  border-bottom: none;
}

.legal-label {
  color: var(--text-light);
  font-weight: 500;
}

.legal-val {
  font-weight: 700;
  color: var(--secondary);
  text-align: right;
}

.pkd-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.pkd-badge {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.footer-legal-bar {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
}

.footer-legal-bar strong {
  color: var(--white);
}

@media (max-width: 1024px) {
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillar-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }
  .pillar-card:last-child {
    grid-column: auto;
  }
}

