/* ===== VARIABLES ===== */
:root {
  --black: #0a0a0a;
  --black2: #111111;
  --black3: #1a1a1a;
  --yellow: #f5c800;
  --yellow2: #e6b800;
  --yellow3: #ffd700;
  --white: #ffffff;
  --gray: #888888;
  --gray2: #555555;
  --light: #f0f0f0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black2); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }
::selection { background: var(--yellow); color: var(--black); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  background: transparent;
}

#navbar.solid,
#navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245,200,0,0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-logo { display: flex; flex-direction: column; text-decoration: none; }
.nav-logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--yellow);
  letter-spacing: 1px;
  line-height: 1;
}
.nav-logo-sub {
  font-size: 0.62rem;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.nav-active { color: var(--yellow); }
.nav-links a.nav-active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--yellow);
  color: var(--black) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--yellow2) !important; color: var(--black) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--yellow);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--black2);
  border-bottom: 2px solid var(--yellow);
  z-index: 999;
  padding: 1.5rem 5%;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu a:hover { color: var(--yellow); }
.mobile-menu a.nav-active { color: var(--yellow); }

/* ===== FLOAT CALL BTN ===== */
.float-call {
  position: fixed;
  bottom: 2rem; right: 1.5rem;
  z-index: 900;
  background: var(--yellow);
  color: var(--black);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(245,200,0,0.5);
  transition: all 0.3s;
  animation: pulse-ring 2s ease-in-out infinite;
}
.float-call:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(245,200,0,0.7); }
.float-call svg { width: 28px; height: 28px; }

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(245,200,0,0.5); }
  70%  { box-shadow: 0 0 0 20px rgba(245,200,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,200,0,0); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover { background: var(--yellow2); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,200,0,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }
.btn-dark { background: var(--black); color: var(--yellow); border: 2px solid var(--black); }
.btn-dark:hover { background: var(--black2); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--yellow);
  padding: 2.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--black);
}
.cta-band-text span { opacity: 0.6; font-weight: 600; font-size: 0.7em; display: block; }

/* ===== SECTION COMMON ===== */
section { padding: 5rem 5%; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.section-label {
  display: inline-block;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
h2.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
h2.section-title span { color: var(--yellow); }
.section-desc {
  margin-top: 1rem;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  padding-top: 70px;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--black2);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,200,0,0.04) 0%, transparent 60%);
}
.page-hero-border {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--yellow), transparent);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 5%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--yellow); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { opacity: 0.4; }
h1.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 0.7rem;
}
h1.page-title span { color: var(--yellow); }
.page-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 550px;
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-item {
  background: var(--black3);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(245,200,0,0.3); }
.faq-q {
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 1rem;
  user-select: none;
}
.faq-q:hover { color: var(--yellow); }
.faq-arrow {
  width: 28px; height: 28px;
  background: rgba(245,200,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-arrow { background: var(--yellow); transform: rotate(180deg); }
.faq-arrow svg { width: 14px; height: 14px; color: var(--yellow); }
.faq-item.open .faq-arrow svg { color: var(--black); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 1.5rem 1.3rem; }

.faq-category-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--yellow);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 2.5rem 0 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--yellow);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.faq-category-title:first-child { margin-top: 0; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  background: var(--black2);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,0.05);
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s;
}
.contact-card:hover { border-color: rgba(245,200,0,0.3); transform: translateX(4px); }
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(245,200,0,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}
.contact-label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.contact-value { font-weight: 700; font-size: 1.05rem; color: var(--white); }

.area-list {
  background: var(--black2);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.05);
}
.area-list h4 { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.8rem; }
.area-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.area-chip {
  background: rgba(245,200,0,0.08);
  border: 1px solid rgba(245,200,0,0.15);
  color: var(--yellow);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* ===== FORM ===== */
.contact-form {
  background: var(--black2);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.05);
}
.contact-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--black3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--yellow); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--yellow);
  color: var(--black);
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.5px;
}
.form-submit:hover { background: var(--yellow2); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,200,0,0.3); }

/* ===== SERVICES (homepage) ===== */
#uslugi { background: var(--black2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--black2);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.service-card:hover { background: var(--black3); transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,0,0.4); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(245,200,0,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  transition: background 0.3s;
  font-size: 1.8rem;
}
.service-card:hover .service-icon { background: rgba(245,200,0,0.2); }
h3.service-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.3px;
}
.service-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 1rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  background: rgba(245,200,0,0.08);
  color: var(--yellow);
  border: 1px solid rgba(245,200,0,0.15);
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-weight: 500;
}

/* ===== PRICING ===== */
#cennik { background: var(--black); }
.pricing-wrapper { max-width: 1100px; margin: 0 auto; }
.price-card { background: var(--black2); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; overflow: hidden; }
.price-card-head { background: var(--yellow); color: var(--black); font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; padding: 1rem 1.5rem; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.95rem; }
.price-row:last-child, .price-row-last { border-bottom: none; }
.price-val { color: var(--yellow); font-weight: 700; white-space: nowrap; margin-left: 1rem; }
.price-special { font-size: 0.8rem; opacity: 0.8; }
.pricing-cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-bottom: 1.5rem; }
.pricing-cat { background: var(--black2); border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.pricing-cat-title { background: var(--yellow); color: var(--black); font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; padding: 1rem 1.5rem; }
.pricing-cat .pricing-table { box-shadow: none; border-radius: 0; }
.pricing-cat-full { grid-column: 1 / -1; }
.pricing-cat-full .pricing-table tbody { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--black2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.pricing-table thead { background: var(--yellow); }
.pricing-table thead th {
  color: var(--black);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.1rem 1.5rem;
  text-align: left;
}
.pricing-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.pricing-table tbody tr:hover { background: rgba(245,200,0,0.05); }
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table td { padding: 1rem 1.5rem; font-size: 0.95rem; }
.pricing-table td:first-child { font-weight: 500; }
.pricing-table td:last-child { color: var(--yellow); font-weight: 700; font-size: 1rem; text-align: right; }
.pricing-note {
  text-align: center;
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-style: italic;
}

/* ===== WHY US ===== */
#dlaczego { background: var(--black2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.why-card {
  padding: 2rem;
  background: var(--black3);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-direction: column; gap: 0.8rem;
  transition: all 0.3s;
}
.why-card:hover { border-color: rgba(245,200,0,0.25); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.why-icon { font-size: 2rem; margin-bottom: 0.2rem; }
h3.why-title { font-weight: 700; font-size: 1.05rem; }
.why-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ===== GALLERY ===== */
#realizacje { background: var(--black); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.85);
}
.gallery-item:hover img { transform: scale(1.07); filter: brightness(0.6); }
.gallery-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { font-weight: 700; font-size: 0.95rem; color: var(--yellow); }
.gallery-sub { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.before-after-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--yellow); color: var(--black);
  font-size: 0.7rem; font-weight: 800;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 1px; text-transform: uppercase;
}

/* ===== REVIEWS ===== */
#opinie { background: var(--black2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.review-card {
  background: var(--black3);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: all 0.3s;
}
.review-card:hover { border-color: rgba(245,200,0,0.2); transform: translateY(-3px); }
.review-card::before {
  content: '"';
  position: absolute; top: 1rem; right: 1.5rem;
  font-size: 5rem;
  color: rgba(245,200,0,0.08);
  font-family: Georgia, serif;
  line-height: 1;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 1rem; color: var(--yellow); font-size: 1.1rem; }
.review-text { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 1.2rem; }
.review-author { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--black); font-size: 1rem; flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.9rem; }
.review-loc { font-size: 0.75rem; color: var(--gray); }
.review-platform {
  display: flex; align-items: center; gap: 0.3rem;
  color: var(--yellow); font-size: 0.72rem; font-weight: 600;
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ===== SEO SECTION ===== */
#seo-lokalne { background: var(--black); }
.seo-content { max-width: 900px; margin: 0 auto; display: grid; gap: 2rem; }
.seo-block {
  background: var(--black2);
  border-radius: 12px;
  padding: 2rem;
  border-left: 3px solid var(--yellow);
}
h3.seo-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; font-weight: 800; margin-bottom: 0.8rem;
}
.seo-text { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.8; }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.area-tag {
  background: rgba(245,200,0,0.08);
  border: 1px solid rgba(245,200,0,0.2);
  color: var(--yellow);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem; font-weight: 600;
}

/* ===== HERO (homepage) ===== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=80') center/cover no-repeat;
  opacity: 0.12;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 60%, rgba(10,10,10,0.4) 100%);
}
.hero-accent {
  position: absolute; top: 20%; right: 8%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,200,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 5% 5%;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center; gap: 0.5rem;
  background: rgba(245,200,0,0.15);
  border: 1px solid rgba(245,200,0,0.3);
  color: var(--yellow);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--yellow); border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
h1.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 1.05; letter-spacing: -1px;
  margin-bottom: 1.2rem;
}
h1.hero-title span { color: var(--yellow); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 600px; margin-bottom: 2rem; line-height: 1.7;
}
.hero-usp { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 2.5rem; }
.usp-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.usp-item svg { color: var(--yellow); flex-shrink: 0; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 3.5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--yellow); line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--gray); margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 1px; }

/* ===== CONTACT PAGE EXTRAS ===== */
.contact-map {
  background: var(--black3);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  text-align: center;
}
.contact-map-icon { font-size: 2.5rem; }
.contact-map a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}
.contact-map a:hover { text-decoration: underline; }

.contact-steps {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.step-card {
  background: var(--black2);
  border-radius: 12px;
  padding: 1.8rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: all 0.3s;
}
.step-card:hover { border-color: rgba(245,200,0,0.25); transform: translateY(-3px); }
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; font-weight: 900;
  color: var(--yellow);
  line-height: 1; margin-bottom: 0.5rem;
}
.step-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.4rem; }
.step-desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ===== FOOTER ===== */
footer {
  background: var(--black2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 5% 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-top: 0.7rem; line-height: 1.6; }
.footer-col h4 {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-copy span { color: var(--yellow); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section { padding: 3.5rem 1.2rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  h1.hero-title { font-size: 2.2rem; }
  .hero-stats { display: none; }
  .services-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .services-grid::-webkit-scrollbar { display: none; }
  .service-card {
    min-width: 80vw;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  .pricing-table td, .pricing-table th { padding: 0.8rem 1rem; font-size: 0.85rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-band { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { min-height: 200px; }
  h1.page-title { font-size: 2.2rem; }
  .contact-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-steps { grid-template-columns: 1fr; }
}
