/* ============================================================
   CASZAP.PL – Design System v3  "Industrial Precision"
   Barlow Condensed (headers) + DM Sans (body)
   ============================================================ */

/* Fonty ładowane w <head> każdej strony jako non-blocking link tags */

:root {
  --green:        #16a34a;
  --green-dark:   #15803d;
  --green-xdark:  #064e3b;
  --green-light:  #dcfce7;
  --green-xlight: #f0fdf4;
  --green-neon:   #22c55e;
  --ink:          #0b1410;
  --ink-2:        #111d16;
  --dark:         #1c2b22;
  --white:        #ffffff;
  --gray-50:      #f8faf9;
  --gray-100:     #f0f2f1;
  --gray-200:     #dde3e0;
  --gray-300:     #b8c4bc;
  --gray-400:     #8a9e92;
  --gray-500:     #607068;
  --gray-600:     #4a5a52;
  --gray-700:     #384840;
  --gray-900:     #111a14;
  --orange:       #f97316;
  --orange-light: #fff7ed;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.10);
  --shadow-md:    0 6px 24px rgba(0,0,0,.14);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.18);
  --shadow-green: 0 8px 32px rgba(22,163,74,.25);
  --radius:       10px;
  --radius-sm:    6px;
  --nav-h:        68px;
  --max-w:        1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: 'Barlow Condensed', sans-serif; letter-spacing: -.01em; line-height: 1.1; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  height: var(--nav-h);
  border-bottom: 3px solid var(--green);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 24px; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 900;
  color: var(--gray-900);
  letter-spacing: .05em; text-transform: uppercase;
  display: flex; align-items: center; gap: 2px;
}
.nav-logo span { color: var(--green-neon); }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  padding: 7px 12px; border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 600; color: var(--gray-600);
  letter-spacing: .05em; text-transform: uppercase;
  transition: background .15s, color .15s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--green-xlight); color: var(--green-dark);
}
.nav-cta {
  background: var(--green) !important; color: var(--white) !important;
  padding: 8px 18px !important; border-radius: var(--radius-sm) !important;
  font-weight: 700 !important; font-size: 12px !important;
  letter-spacing: .06em !important;
  transition: background .15s, box-shadow .15s !important;
}
.nav-cta:hover { background: var(--green-dark) !important; box-shadow: var(--shadow-green) !important; }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle::after { content: ' ▾'; font-size: 10px; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  min-width: 230px;
  padding: 6px 0;
  list-style: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  z-index: 300;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block;
  padding: 8px 16px;
  font-size: 11px; font-weight: 600;
  color: var(--gray-600);
  letter-spacing: .05em; text-transform: uppercase;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover { background: var(--green-xlight); color: var(--green-dark); }
.nav-dropdown-divider { border: none; border-top: 1px solid var(--gray-200); margin: 4px 0; }

/* ── HERO (main page) ── */
.hero {
  background: var(--green);
  padding: 64px 24px 0;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 55% at 85% 50%, rgba(0,0,0,.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,.18); border: 1px solid rgba(255,255,255,.35);
  border-radius: 4px; padding: 5px 14px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.hero-badge::before { content: '●'; font-size: 8px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 {
  font-size: clamp(52px, 7.5vw, 96px); font-weight: 900;
  color: var(--white); text-transform: uppercase;
  line-height: 1.0; margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: rgba(210,255,230,.95); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.88); max-width: 540px; margin-bottom: 28px; line-height: 1.65; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

/* ── KEYWORD PILLS ── */
.kw-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.kw-pill {
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.35);
  border-radius: 4px; padding: 5px 14px;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.85);
  letter-spacing: .05em; text-transform: uppercase;
  transition: background .15s, border-color .15s, color .15s;
  cursor: default;
}
.kw-pill:hover { background: rgba(0,0,0,.12); border-color: rgba(255,255,255,.55); color: var(--white); }

/* ── HERO PHOTO BANNER ── */
.hero-banner {
  width: calc(100% + 48px); margin: 0 -24px;
  position: relative; height: 340px; overflow: hidden;
}
.hero-banner img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
}
.hero-banner::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(11,20,16,.55) 0%,
    rgba(11,20,16,.08) 30%,
    rgba(11,20,16,.08) 68%,
    rgba(11,20,16,.72) 100%
  );
}
.hero-banner-labels {
  position: absolute; bottom: 20px; left: 24px; right: 24px;
  display: flex; gap: 10px; z-index: 2; flex-wrap: wrap;
}
.hero-label {
  background: rgba(0,0,0,.62); backdrop-filter: blur(6px);
  border: 1px solid rgba(34,197,94,.4); border-radius: 4px;
  padding: 4px 12px; font-size: 10px; font-weight: 800;
  color: var(--green-neon); letter-spacing: .1em; text-transform: uppercase;
}

/* ── PAGE HERO (subpages) ── */
.page-hero {
  background: var(--green); padding: 56px 24px 52px;
  position: relative; overflow: hidden;
  border-bottom: 3px solid var(--green-dark);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(0,0,0,.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 68px); font-weight: 900;
  text-transform: uppercase; color: var(--white); margin-bottom: 12px;
}
.page-hero p { font-size: 17px; color: var(--gray-300); max-width: 560px; line-height: 1.6; }
.page-hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-neon); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.page-hero-eyebrow::before { content: ''; display: inline-block; width: 20px; height: 2px; background: var(--green-neon); }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--gray-50); border-bottom: 1px solid var(--gray-200);
}
.breadcrumb-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 12px 24px;
  font-size: 11px; color: var(--gray-500);
  display: flex; gap: 8px; align-items: center;
  text-transform: uppercase; letter-spacing: .06em; font-weight: 600;
}

.breadcrumb-inner a { color: var(--green); transition: color .15s; }
.breadcrumb-inner a:hover { color: var(--green-neon); }

/* ── STATS BAR ── */
.stats { background: var(--white); border-bottom: 1px solid var(--gray-200); }
.stats-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
}
.stat-item {
  padding: 28px 20px; text-align: center;
  border-right: 1px solid var(--gray-200);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px; font-weight: 900; color: var(--green-neon); line-height: 1; margin-bottom: 4px;
}
.stat-label { font-size: 11px; color: var(--gray-600); font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; cursor: pointer; border: none;
  letter-spacing: .06em; text-transform: uppercase;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-white:hover { box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-green { background: var(--green); color: var(--white); box-shadow: 0 4px 16px rgba(22,163,74,.3); }
.btn-green:hover { background: var(--green-dark); box-shadow: var(--shadow-green); }
.btn-ghost { background: var(--gray-100); color: var(--gray-700); }
.btn-ghost:hover { background: var(--gray-200); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--dark); }

/* ── SECTIONS ── */
.section { padding: 80px 24px; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--green-xdark); color: var(--white); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .14em; color: var(--green); margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before { content: ''; display: inline-block; width: 24px; height: 2px; background: var(--green); }
.section-title {
  font-size: clamp(28px, 4vw, 48px); font-weight: 900;
  line-height: 1.05; text-transform: uppercase; margin-bottom: 14px;
}
.section-sub { font-size: 16px; color: var(--gray-500); max-width: 580px; line-height: 1.65; }
.section-header { margin-bottom: 48px; }
.section-dark .section-eyebrow { color: var(--green-neon); }
.section-dark .section-eyebrow::before { background: var(--green-neon); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: var(--gray-300); }

/* ── CARDS GRID ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 28px;
  transition: box-shadow .2s, transform .2s;
  position: relative; overflow: hidden;
}
.card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.card:hover::after { transform: scaleX(1); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon {
  font-size: 28px; margin-bottom: 14px;
  width: 52px; height: 52px; background: var(--green-xlight);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.card h3 {
  font-size: 22px; font-weight: 800; text-transform: uppercase;
  margin-bottom: 8px; color: var(--gray-900);
}
.card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }
.card > span, .card a {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 14px;
  font-size: 12px; font-weight: 800; color: var(--green);
  text-transform: uppercase; letter-spacing: .05em;
}

/* ── SERVICE CARD ── */
.service-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-left: 4px solid var(--green); border-radius: var(--radius);
  padding: 32px; display: flex; gap: 24px; align-items: flex-start;
  margin-bottom: 16px;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.service-icon {
  font-size: 36px; flex-shrink: 0; width: 72px; height: 72px;
  background: var(--green-xlight); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.service-body h2 { font-size: 26px; font-weight: 800; text-transform: uppercase; margin-bottom: 4px; }
.service-body .service-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .09em; color: var(--green); margin-bottom: 10px; display: block;
}
.service-body p { font-size: 15px; color: var(--gray-700); margin-bottom: 12px; }
.service-body ul { padding-left: 18px; font-size: 14px; color: var(--gray-500); }
.service-body ul li { margin-bottom: 5px; }

/* ── STEP CARDS ── */
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; }
.step-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 28px; position: relative; overflow: hidden;
}
.step-card::after {
  content: attr(data-step);
  position: absolute; top: -14px; right: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 110px; font-weight: 900; color: var(--gray-100);
  line-height: 1; pointer-events: none; z-index: 0;
}
.step-card > * { position: relative; z-index: 1; }
.step-num { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--green); margin-bottom: 4px; }
.step-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); margin-bottom: 10px; }
.step-card h3 { font-size: 22px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--gray-500); margin-bottom: 14px; }
.step-details { display: flex; flex-direction: column; gap: 6px; }
.step-detail { display: flex; gap: 10px; font-size: 13px; color: var(--gray-700); }
.step-detail strong { min-width: 120px; font-weight: 600; }

/* ── FEATURE LIST (O nas) ── */
.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.feature-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 28px; border-bottom: 3px solid var(--green);
}
.feature-num { font-family: 'Barlow Condensed', sans-serif; font-size: 60px; font-weight: 900; color: var(--green-light); line-height: 1; margin-bottom: 6px; }
.feature-card h3 { font-size: 20px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--gray-500); }

/* ── VALUE CARDS ── */
.value-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.value-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; text-align: center; }
.value-card .v-icon { font-size: 36px; margin-bottom: 12px; }
.value-card h3 { font-size: 20px; font-weight: 800; text-transform: uppercase; margin-bottom: 6px; }
.value-card p { font-size: 14px; color: var(--gray-500); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  width: 100%; padding: 18px 20px; background: var(--white); border: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em;
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  color: var(--gray-900); transition: background .15s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-icon { font-size: 22px; color: var(--green); flex-shrink: 0; transition: transform .25s; font-style: normal; }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; font-size: 14px; color: var(--gray-700); line-height: 1.7; transition: max-height .3s ease, padding .3s; background: var(--gray-50); }
.faq-item.open .faq-a { max-height: 240px; padding: 16px 20px 20px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 24px; align-items: start; }
.price-card { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius); padding: 28px; position: relative; transition: box-shadow .2s; }
.price-card:hover { box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--green); box-shadow: 0 0 0 4px rgba(22,163,74,.08); }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 16px; border-radius: 4px; white-space: nowrap;
}
.price-name { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; color: var(--green); margin-bottom: 8px; }
.price-num { font-family: 'Barlow Condensed', sans-serif; font-size: 44px; font-weight: 900; color: var(--gray-900); line-height: 1; }
.price-per { font-size: 13px; color: var(--gray-400); margin-bottom: 20px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.price-features li { font-size: 14px; color: var(--gray-700); display: flex; gap: 8px; align-items: flex-start; }
.price-features li::before { content: "✓"; color: var(--green); font-weight: 800; flex-shrink: 0; }
.extra-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-200); font-size: 14px; }
.extra-row:last-child { border-bottom: none; }
.extra-price { font-weight: 700; color: var(--green); }

/* ── REVIEWS ── */
.rating-bar {
  background: var(--gray-50); border-radius: var(--radius); padding: 32px 36px;
  display: flex; gap: 36px; align-items: center; margin-bottom: 28px;
  border: 1px solid var(--gray-200);
}
.rating-big { text-align: center; }
.rating-big .num { font-family: 'Barlow Condensed', sans-serif; font-size: 72px; font-weight: 900; color: var(--gray-900); line-height: 1; }
.rating-big .stars { font-size: 24px; color: #f59e0b; }
.rating-big .sub { font-size: 11px; color: var(--gray-500); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }
.rating-rows { flex: 1; }
.rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 13px; color: var(--gray-600); }
.rating-row .bar { flex: 1; height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden; }
.rating-row .fill { height: 100%; background: #f59e0b; border-radius: 3px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; }
.review-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; border-top: 3px solid #f59e0b; }
.review-stars { color: #f59e0b; font-size: 20px; margin-bottom: 12px; }
.review-text { font-size: 15px; color: var(--gray-700); font-style: italic; margin-bottom: 16px; line-height: 1.65; }
.review-author strong { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 800; text-transform: uppercase; }
.review-author span { font-size: 12px; color: var(--gray-400); display: block; text-transform: uppercase; letter-spacing: .04em; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 32px; }
@media(max-width: 720px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start; transition: box-shadow .2s, border-color .2s; }
.contact-card:hover { box-shadow: var(--shadow-sm); border-color: var(--green); }
.contact-card a { color: var(--green); font-weight: 700; font-size: 16px; }
.contact-card-icon { font-size: 22px; flex-shrink: 0; }
.contact-card-body strong { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); display: block; margin-bottom: 4px; }
.hours-table { width: 100%; font-size: 14px; }
.hours-table tr td { padding: 5px 0; }
.hours-table tr td:last-child { text-align: right; font-weight: 600; }

/* ── FORM ── */
.form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 32px; }
.form-card h3 { font-size: 28px; font-weight: 800; text-transform: uppercase; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 6px; color: var(--gray-700); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 2px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 14px; font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--gray-900); transition: border-color .15s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 15px; background: var(--green); color: var(--white); border: none; border-radius: var(--radius-sm); font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; cursor: pointer; transition: background .15s, box-shadow .15s; }
.form-submit:hover { background: var(--green-dark); box-shadow: var(--shadow-green); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--green); color: var(--white); text-align: center; padding: 72px 24px;
  position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,0,0,.12) 0%, transparent 70%); pointer-events: none; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(32px, 5vw, 56px); font-weight: 900; text-transform: uppercase; margin-bottom: 12px; color: var(--white); }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,.88); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── HAZMAT ── */
.hazmat { background: var(--orange-light); border: 2px solid var(--orange); border-radius: var(--radius); padding: 28px 32px; display: flex; gap: 20px; align-items: flex-start; margin-top: 28px; }
.hazmat-icon { font-size: 44px; flex-shrink: 0; }
.hazmat h3 { font-size: 24px; font-weight: 900; text-transform: uppercase; color: #c2410c; margin-bottom: 6px; }
.hazmat p { font-size: 14px; color: var(--gray-700); margin-bottom: 10px; }
.hazmat-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.hazmat-tag { background: var(--white); border: 1px solid var(--orange); border-radius: 4px; padding: 3px 10px; font-size: 11px; font-weight: 700; color: #c2410c; text-transform: uppercase; letter-spacing: .05em; }
.hazmat-badge { display: inline-flex; align-items: center; gap: 6px; background: #c2410c; color: var(--white); border-radius: 4px; padding: 4px 12px; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }

/* ── AREA GRID ── */
.area-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.area-tag { background: var(--white); border: 1px solid var(--gray-200); color: var(--gray-700); border-radius: 4px; padding: 5px 14px; font-size: 13px; font-weight: 600; transition: border-color .15s, color .15s; }
.area-tag:hover { border-color: var(--green); color: var(--green-dark); }

/* ── EMERGENCY ── */
.emergency { background: var(--green-xlight); border: 2px solid var(--green); border-radius: var(--radius); padding: 22px 26px; display: flex; gap: 14px; align-items: flex-start; margin-top: 14px; }
.emergency .e-icon { font-size: 28px; }
.emergency h3 { font-size: 20px; font-weight: 800; text-transform: uppercase; color: var(--green-dark); margin-bottom: 4px; }
.emergency p { font-size: 14px; color: var(--gray-700); }

/* ── FOOTER ── */
.footer { background: var(--ink); color: var(--gray-400); padding: 56px 24px 28px; border-top: 3px solid var(--green); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 44px; }
@media(max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; color: var(--white); margin-bottom: 10px; }
.footer-logo span { color: var(--green-neon); }
.footer-desc { font-size: 14px; line-height: 1.65; }
.footer h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; color: var(--white); margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer ul li a { font-size: 14px; transition: color .15s; }
.footer ul li a:hover { color: var(--green-neon); }
.footer ul li a[href^="tel"] { color: var(--green-neon); font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; font-size: 13px; text-align: center; line-height: 1.8; }

/* ── FLOATING CALL BUTTON (mobile) ── */
.float-call {
  display: none;
  position: fixed; bottom: 20px; right: 20px; z-index: 999;
  background: var(--green); color: var(--white) !important;
  border-radius: 50px; padding: 14px 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(22,163,74,.45);
  transition: transform .15s, box-shadow .15s;
  text-decoration: none; align-items: center; gap: 8px;
}
.float-call:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(22,163,74,.55); }
@media(max-width: 640px) { .float-call { display: flex; } }

/* ── RESPONSIVE ── */
@media(max-width: 900px) {
  .service-card { flex-direction: column; }
  .rating-bar { flex-direction: column; }
  .hazmat { flex-direction: column; }
}
@media(max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 48px 20px 0; }
  .section { padding: 52px 20px; }
  .hero-banner { height: 200px; }
  .stat-num { font-size: 38px; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
.hero-inner > *:nth-child(1) { animation: fadeUp .55s .05s ease both; }
.hero-inner > *:nth-child(2) { animation: fadeUp .55s .15s ease both; }
.hero-inner > *:nth-child(3) { animation: fadeUp .55s .25s ease both; }
.hero-inner > *:nth-child(4) { animation: fadeUp .55s .35s ease both; }
.hero-inner > *:nth-child(5) { animation: fadeUp .55s .45s ease both; }
.hero-banner { animation: fadeUp .7s .52s ease both; }
