
:root {
  --color-bg: #f5f5f4;
  --color-bg-alt: #ffffff;
  --color-dark: #1a1a1a;
  --color-dark-soft: #2b2b2b;
  --color-gray: #6b6b6b;
  --color-gray-light: #9c9c9c;
  --color-border: #e5e5e4;
  --color-accent: #b08855;
  --color-accent-dark: #8c6a40;
  --color-accent-light: #d4b590;
  --color-blue: #2563eb;
  --color-blue-dark: #1d4ed8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.2;
  color: var(--color-dark);
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== TOP BAR ========== */
.topbar {
  background: var(--color-dark);
  color: #e5e5e5;
  padding: 8px 0;
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar-info { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-info span { display: flex; align-items: center; gap: 6px; }
.topbar-info svg { width: 14px; height: 14px; fill: var(--color-accent); }

/* ========== HEADER ========== */
.header {
  background: var(--color-bg-alt);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 60px;
  width: auto;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--color-dark);
}
.logo-text .sub {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--color-gray);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-dark-soft);
  transition: color 0.2s;
  position: relative;
  padding: 8px 0;
}
.nav a:hover { color: var(--color-accent); }
.nav a.active { color: var(--color-accent); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '▾';
  margin-left: 4px;
  font-size: 10px;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  border-top: 3px solid var(--color-accent);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  border-bottom: 1px solid var(--color-border);
  letter-spacing: 0.5px;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--color-bg); color: var(--color-accent); }

.nav-cta {
  background: var(--color-accent);
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--color-accent-dark) !important; color: white !important; }
.nav-cta svg { width: 14px; height: 14px; fill: currentColor; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle svg { width: 26px; height: 26px; fill: var(--color-dark); }

/* ========== HERO ========== */
.hero {
  position: relative;
  background: #1a1a1a;
  color: white;
  padding: 100px 0 110px;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('realizacja2-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8,8,8,0.92) 0%, rgba(12,12,12,0.82) 45%, rgba(18,18,18,0.68) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(176,136,85,0.20) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(176,136,85,0.10) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-badge {
  display: inline-block;
  background: rgba(176,136,85,0.25);
  border: 1px solid var(--color-accent);
  color: var(--color-accent-light);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border-radius: 2px;
}
.hero h1 {
  font-size: 64px;
  color: white;
  margin-bottom: 22px;
  line-height: 1.05;
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero h1 .accent { color: var(--color-accent); }
.hero p.lead {
  font-size: 19px;
  color: #e5e5e5;
  margin-bottom: 40px;
  max-width: 620px;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(176,136,85,0.3);
}
.btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}
.btn-outline:hover {
  background: white;
  color: var(--color-dark);
}
.btn-blue {
  background: var(--color-blue);
  color: white;
  border-color: var(--color-blue);
}
.btn-blue:hover {
  background: var(--color-blue-dark);
  border-color: var(--color-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,99,235,0.4);
  color: white;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  padding: 20px 28px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08);
  display: inline-flex;
}
.hero-stat {
  border-left: 2px solid var(--color-accent);
  padding-left: 14px;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 12px;
  color: var(--color-accent-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

.hero-visual {
  display: none;
}

/* ========== TRUST BAR ========== */
.trustbar {
  background: white;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--color-accent);
}
.trust-icon svg { width: 24px; height: 24px; fill: var(--color-accent); }
.trust-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.trust-item p {
  font-size: 13px;
  color: var(--color-gray);
  margin: 0;
}

/* ========== SECTIONS ========== */
.section {
  padding: 80px 0;
}
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-label {
  display: inline-block;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  padding: 0 40px;
}
.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--color-accent);
}
.section-label::before { left: 0; }
.section-label::after { right: 0; }
.section-head h2 {
  font-size: 40px;
  margin-bottom: 14px;
}
.section-head p {
  color: var(--color-gray);
  font-size: 17px;
}

/* ========== SERVICES ========== */
.services {
  background: var(--color-bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  padding: 36px 28px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--color-accent);
}
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 30px; height: 30px; fill: white; }
.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--color-gray);
  font-size: 15px;
  line-height: 1.6;
}

/* ========== HOW IT WORKS ========== */
.how {
  background: white;
  position: relative;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  z-index: 0;
}
.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.how-number {
  width: 80px;
  height: 80px;
  background: white;
  border: 3px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-accent);
  position: relative;
}
.how-number::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(176,136,85,0.1);
  z-index: -1;
}
.how-step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.how-step p {
  color: var(--color-gray);
  font-size: 15px;
  max-width: 280px;
  margin: 0 auto;
}

/* ========== COVERAGE ========== */
.coverage {
  background: var(--color-dark);
  color: white;
  position: relative;
  overflow: hidden;
}
.coverage::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.coverage .section-head h2 { color: white; }
.coverage .section-head p { color: #c5c5c5; }
.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.region-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 30px 24px;
  border-radius: 4px;
  transition: all 0.3s;
  text-align: center;
  display: block;
}
.region-card:hover {
  background: rgba(176,136,85,0.15);
  border-color: var(--color-accent);
  transform: translateY(-4px);
}
.region-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.region-icon svg { width: 28px; height: 28px; fill: white; }
.region-card h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 8px;
}
.region-card p {
  color: var(--color-accent-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========== REALIZATIONS ========== */
.realizations {
  background: var(--color-bg);
}
.real-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.real-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.real-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.real-card:hover img { transform: scale(1.05); }
.real-card .overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
  color: white;
}
.real-card .overlay h3 {
  color: white;
  font-size: 22px;
  margin-bottom: 4px;
}
.real-card .overlay p {
  color: #d5d5d5;
  font-size: 14px;
}

/* ========== FAQ ========== */
.faq {
  background: white;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--color-accent); }
.faq-question .icon {
  width: 32px;
  height: 32px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
  font-size: 18px;
  color: var(--color-accent);
  font-weight: 700;
}
.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
  background: var(--color-accent);
  color: white;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--color-gray);
  font-size: 16px;
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

/* ========== CTA SECTION ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.cta-banner h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  font-size: 18px;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.95);
  position: relative;
}
.cta-banner .btn-primary {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: white;
  position: relative;
}
.cta-banner .btn-primary:hover {
  background: #000;
  border-color: #000;
}

/* ========== CONTACT ========== */
.contact {
  background: var(--color-bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
.contact-info-card {
  background: white;
  padding: 40px 36px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}
.contact-info-card h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
.contact-info-card > p {
  color: var(--color-gray);
  margin-bottom: 30px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--color-border);
}
.contact-detail:last-of-type { border-bottom: none; margin-bottom: 30px; }
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; fill: var(--color-accent); }
.contact-detail h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gray);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-detail p, .contact-detail a {
  font-size: 17px;
  color: var(--color-dark);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--color-accent); }

.contact-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
}

.form-card {
  background: white;
  padding: 40px 36px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}
.form-card h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
.form-card > p {
  color: var(--color-gray);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-dark-soft);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--color-bg);
  transition: all 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.form-note {
  font-size: 12px;
  color: var(--color-gray);
  text-align: center;
  margin-top: 12px;
}

/* ========== FOOTER ========== */
.footer {
  background: #0f0f0f;
  color: #c5c5c5;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: white;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-accent);
}
.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #a5a5a5;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-logo img { height: 48px; }
.footer-logo .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: white;
  letter-spacing: 2px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col li a {
  color: #a5a5a5;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col li a:hover { color: var(--color-accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #a5a5a5;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--color-accent);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item a { color: inherit; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: #8a8a8a;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .hero { padding: 70px 0 80px; min-height: 480px; }
  .hero h1 { font-size: 44px; }
  .hero p.lead { font-size: 17px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-grid::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 60px 0; }
  .section-head h2 { font-size: 32px; }
}

@media (max-width: 640px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; box-shadow: var(--shadow-md); gap: 0; align-items: stretch; }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--color-border); }
  .nav a:last-child { border-bottom: none; }
  .nav-dropdown > a::after { content: none; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    background: var(--color-bg);
    padding-left: 16px;
  }
  .nav-dropdown-menu a { border-bottom: 1px solid var(--color-border); padding: 10px 0; }
  .nav-cta { justify-content: center; margin-top: 6px; }
  .menu-toggle { display: block; }
  .logo img { height: 48px; }
  .logo-text .name { font-size: 18px; }
  .logo-text .sub { font-size: 9px; letter-spacing: 2px; }
  .topbar { font-size: 11px; }
  .topbar-info { gap: 12px; }
  .hero { padding: 50px 0 60px; min-height: 420px; }
  .hero h1 { font-size: 32px; }
  .hero p.lead { font-size: 16px; }
  .hero-stats { gap: 14px; padding: 14px 18px; }
  .hero-stat { padding-left: 10px; }
  .hero-stat .num { font-size: 22px; }
  .hero-stat .lbl { font-size: 10px; letter-spacing: 0.5px; }
  .btn { padding: 14px 24px; font-size: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .regions-grid { grid-template-columns: 1fr; }
  .real-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 26px; }
  .cta-banner h2 { font-size: 26px; }
  .section { padding: 50px 0; }
  .contact-info-card, .form-card { padding: 28px 22px; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}


/* ========== SUB HERO (dla podstron) ========== */
.subhero {
  position: relative;
  background: #1a1a1a;
  color: white;
  padding: 70px 0 80px;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
}
.subhero-bg {
  position: absolute;
  inset: 0;
  background-image: url('realizacja2-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.subhero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8,8,8,0.92) 0%, rgba(12,12,12,0.82) 45%, rgba(18,18,18,0.68) 100%);
}
.subhero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(176,136,85,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(176,136,85,0.10) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.subhero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}
.subhero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.subhero h1 {
  font-size: 56px;
  color: white;
  margin-bottom: 20px;
  line-height: 1.05;
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.subhero h1 .accent { color: var(--color-accent); }
.subhero p.lead {
  font-size: 18px;
  color: #e5e5e5;
  margin-bottom: 36px;
  max-width: 620px;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #b5b5b5;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.breadcrumbs a {
  color: var(--color-accent-light);
  transition: color 0.2s;
}
.breadcrumbs a:hover { color: var(--color-accent); }
.breadcrumbs span { color: #777; }

/* ========== INTRO ========== */
.intro { background: white; }
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.intro-text .section-label {
  display: inline-block;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.intro-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.intro-text p {
  color: var(--color-gray);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.intro-text strong {
  color: var(--color-dark);
  font-weight: 600;
}
.intro-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--color-bg);
  border-radius: 4px;
  border-left: 3px solid var(--color-accent);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--color-accent);
}
.feature-icon svg { width: 22px; height: 22px; fill: var(--color-accent); }
.feature-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 600;
}
.feature-item p {
  margin: 0;
  font-size: 14px;
  color: var(--color-gray);
}

/* ========== CITIES ========== */
.cities { background: var(--color-bg); }
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}
.city-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark-soft);
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.city-chip:hover {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(176,136,85,0.3);
}
.city-chip:hover .city-dot { background: white; }
.city-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.2s;
}
.cities-note {
  text-align: center;
  color: var(--color-gray);
  font-size: 15px;
}
.cities-note a {
  color: var(--color-accent);
  font-weight: 600;
  border-bottom: 1px solid var(--color-accent);
}

/* ========== SERVICES COMPACT ========== */
.services-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card-sm {
  background: white;
  padding: 28px 24px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}
.service-card-sm:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--color-accent);
}
.service-card-sm .service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
}
.service-card-sm .service-icon svg { width: 26px; height: 26px; }
.service-card-sm h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.service-card-sm p {
  color: var(--color-gray);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ========== WHY US ========== */
.why { background: white; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.why-item {
  padding: 30px 24px;
  background: var(--color-bg);
  border-radius: 4px;
  position: relative;
  border-top: 3px solid var(--color-accent);
}
.why-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.8;
}
.why-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.why-item p {
  color: var(--color-gray);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ========== ADDITIONAL SERVICES PAGE ========== */
.extra-services {
  background: var(--color-bg);
}
.extra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.extra-card {
  background: white;
  padding: 36px 32px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.3s;
  border-left: 4px solid var(--color-accent);
}
.extra-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.extra-card .extra-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.extra-card .extra-icon svg { width: 32px; height: 32px; fill: white; }
.extra-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.extra-card p {
  color: var(--color-gray);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.extra-card .extra-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.extra-card .extra-cta:hover { color: var(--color-accent-dark); }
.extra-card .extra-cta svg { width: 14px; height: 14px; fill: currentColor; }

/* ========== RESPONSIVE FOR SUBPAGES ========== */
@media (max-width: 960px) {
  .subhero { padding: 50px 0 60px; min-height: 380px; }
  .subhero h1 { font-size: 38px; }
  .intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .services-grid-compact { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .extra-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .subhero { padding: 40px 0 50px; min-height: 340px; }
  .subhero h1 { font-size: 28px; }
  .subhero p.lead { font-size: 15px; }
  .intro-text h2 { font-size: 26px; }
  .services-grid-compact { grid-template-columns: 1fr; }
  .city-chip { padding: 10px 16px; font-size: 14px; }
  .extra-card { flex-direction: column; padding: 24px 20px; }
  .extra-card .extra-icon { margin-bottom: 4px; }
}


/* ========== SERVICES EXTRA PAIR (międzymiastowe + tragarze) ========== */
.services-extra-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.service-card-wide {
  display: flex !important;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 28px !important;
}
.service-card-wide .service-icon {
  margin: 0 !important;
  flex-shrink: 0;
}
.service-card-wide h3 {
  margin-bottom: 6px;
}
.service-card-wide p {
  margin: 0;
}

@media (max-width: 960px) {
  .services-extra-pair { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .service-card-wide { flex-direction: column; padding: 28px 22px !important; }
  .service-card-wide .service-icon { margin-bottom: 4px !important; }
}
