/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #52b788;
  --green-bright: #4ade80;
  --green-dark: #1b4332;
  --green-mid: #2d6a4f;
  --bg-dark: #080e0a;
  --bg-card: rgba(255,255,255,0.04);
  --bg-card-hover: rgba(82,183,136,0.1);
  --text: #e8f4ee;
  --text-muted: #8aab96;
  --border: rgba(82,183,136,0.2);
  --border-hover: rgba(82,183,136,0.5);
  --shadow: 0 4px 30px rgba(0,0,0,0.5);
  --shadow-green: 0 0 40px rgba(82,183,136,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--green);
  display: block;
}

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #0a0f0d;
  box-shadow: 0 4px 20px rgba(82,183,136,0.35);
}
.btn-primary:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(82,183,136,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-hover);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(82,183,136,0.08);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--green);
  padding: 10px 0;
  gap: 8px;
}
.btn-ghost .arrow {
  transition: transform var(--transition);
  display: inline-block;
}
.btn-ghost:hover .arrow { transform: translateX(6px); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(8,14,10,0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text .brand { font-size: 1.2rem; font-weight: 800; color: #fff; }
.nav-logo-text .tagline { font-size: 0.65rem; letter-spacing: 0.1em; color: var(--green); text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--green);
}

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--green);
  font-size: 0.95rem;
}
.nav-phone svg { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/background.png');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(8,14,10,0.92) 0%,
    rgba(8,14,10,0.75) 50%,
    rgba(8,14,10,0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82,183,136,0.12);
  border: 1px solid var(--border-hover);
  border-radius: 50px;
  padding: 6px 16px 6px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title { margin-bottom: 1.5rem; }
.hero-title em {
  font-style: normal;
  color: var(--green);
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat-num span { color: var(--green); }
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SERVICES STRIP ===== */
#services-strip {
  background: rgba(82,183,136,0.06);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.services-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: rgba(82,183,136,0.08); }
.strip-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(82,183,136,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.strip-text strong { display: block; font-size: 0.95rem; color: #fff; }
.strip-text span { font-size: 0.78rem; color: var(--text-muted); }

/* ===== SERVICES FULL ===== */
#uslugi { background: var(--bg-dark); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header p {
  color: var(--text-muted);
  max-width: 580px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: rgba(82,183,136,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(82,183,136,0.2);
  border-color: var(--green);
}
.service-card h3 { margin-bottom: 12px; color: #fff; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }
.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.service-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
#o-nas {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(27,67,50,0.15) 50%, var(--bg-dark) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-main {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-image-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.85);
  transition: var(--transition);
}
.about-image-main:hover img { filter: grayscale(0%) brightness(0.95); }
.about-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--green-dark);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
}
.about-badge-float .num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.about-badge-float .label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

.about-content { padding-right: 20px; }
.about-content h2 { margin-bottom: 1.5rem; }
.about-content > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.about-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 2.5rem;
}
.about-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(82,183,136,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

/* ===== NUMBERS ===== */
#liczby {
  padding: 80px 0;
  background: rgba(82,183,136,0.04);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.number-item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.number-item:last-child { border-right: none; }
.number-item:hover { background: rgba(82,183,136,0.06); }
.number-val {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.number-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== REALIZACJE ===== */
#realizacje { background: var(--bg-dark); }
.realizacje-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.realizacja-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  group: true;
}
.realizacja-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}
.realizacja-img {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, #1a2e1f, #0d1a11);
}
.realizacja-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.7) grayscale(20%);
}
.realizacja-card:hover .realizacja-img img {
  transform: scale(1.05);
  filter: brightness(0.85) grayscale(0%);
}
.realizacja-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  opacity: 0.4;
}
.realizacja-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,14,10,0.9) 0%, transparent 60%);
}
.realizacja-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(82,183,136,0.2);
  border: 1px solid var(--border-hover);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  backdrop-filter: blur(8px);
}
.realizacja-body { padding: 20px; }
.realizacja-body h3 { margin-bottom: 8px; color: #fff; font-size: 1rem; }
.realizacja-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.realizacje-cta { text-align: center; }

/* ===== SYSTEMY ===== */
#systemy {
  background: linear-gradient(135deg, rgba(27,67,50,0.2) 0%, var(--bg-dark) 60%);
  position: relative;
  overflow: hidden;
}
#systemy::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,183,136,0.06), transparent 70%);
}
.systemy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.systemy-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 2rem;
}
.system-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.system-feature:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}
.system-feature-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(82,183,136,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.system-feature-text h4 { color: #fff; margin-bottom: 6px; font-size: 1rem; }
.system-feature-text p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

.systemy-visual {
  position: relative;
}
.system-dashboard {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
}
.dashboard-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.dashboard-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.d-red { background: #ff5f57; }
.d-yellow { background: #febc2e; }
.d-green { background: #28c840; }
.dashboard-title { margin-left: 8px; font-size: 0.8rem; color: var(--text-muted); }
.dashboard-rows { display: flex; flex-direction: column; gap: 12px; }
.dashboard-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.d-label { font-size: 0.8rem; color: var(--text-muted); white-space: nowrap; }
.d-bar-wrap {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.d-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green-mid), var(--green));
  border-radius: 4px;
  animation: barGrow 1.5s ease-out forwards;
}
@keyframes barGrow {
  from { width: 0; }
}
.d-val { font-size: 0.8rem; color: var(--green); font-weight: 600; white-space: nowrap; }
.dashboard-status {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #28c840;
  animation: pulse 2s infinite;
}
.dashboard-status span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== WHY US ===== */
#dlaczego-my { background: var(--bg-dark); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}
.why-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(82,183,136,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin: 0 auto 20px;
  font-size: 1.8rem;
}
.why-card h3 { margin-bottom: 12px; color: #fff; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ===== CONTACT CTA ===== */
#kontakt-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, rgba(8,14,10,0.95) 100%);
  position: relative;
  overflow: hidden;
}
#kontakt-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/background.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-inner h2 { margin-bottom: 1rem; color: #fff; }
.cta-inner p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 2.5rem; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.cta-contact-info {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.cta-contact-item svg { color: var(--green); flex-shrink: 0; }

/* ===== FOOTER ===== */
footer {
  background: rgba(0,0,0,0.6);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img { height: 52px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-social:hover { border-color: var(--green); color: var(--green); }

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--green); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: var(--transition);
}
.footer-contact-item svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--text-muted); }
.footer-contact-item a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-muted); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--green); }

/* ===== SUBPAGE HERO ===== */
.subpage-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}
.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/background.png');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.15;
}
.subpage-hero-inner {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: var(--green); }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 2rem; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }
.contact-info-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(82,183,136,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.contact-info-card-text .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}
.contact-info-card-text .value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.contact-info-card-text a { color: #fff; transition: var(--transition); }
.contact-info-card-text a:hover { color: var(--green); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 { margin-bottom: 8px; }
.contact-form > p { color: var(--text-muted); margin-bottom: 28px; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: rgba(82,183,136,0.05);
  box-shadow: 0 0 0 3px rgba(82,183,136,0.1);
}
.form-group select option { background: #111a14; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(138,171,150,0.5); }

/* ===== MOBILE NAV ===== */
@media (max-width: 1024px) {
  .services-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(2) { border-right: none; }
  .strip-item:nth-child(1), .strip-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid, .systemy-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge-float { right: 16px; bottom: 16px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-item:nth-child(2) { border-right: none; }
  .number-item:nth-child(3), .number-item:nth-child(4) { border-top: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(8,14,10,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
    gap: 4px;
  }
  .nav-links.open a { padding: 12px 16px; border-radius: 8px; color: var(--text); }
  .realizacje-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

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