/*
 * home.css – WszystkoTo! – Nowa strona główna, O nas, Dla Biznesu
 * Uzupełnia site.css i Bootstrap 5.
 * Paleta: --green-primary:#00AD4B | --green-light:#86B84D | --green-dark:#007D35
 */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --green-primary: #00AD4B;
  --green-light:   #86B84D;
  --green-dark:    #007D35;
  --dark-bg:       #0a1a0f;
  --dark-mid:      #003d1a;
  --dark-accent:   #1a3a10;
  --text-muted-dark: rgba(255,255,255,0.72);
  --hero-min-h:    90vh;
  --radius-card:   20px;
  --radius-pill:   100px;
  --shadow-card:   0 8px 25px rgba(0,0,0,0.10);
  --shadow-hover:  0 15px 40px rgba(0,173,75,0.20);
  --transition:    all 0.3s ease;
}

/* ============================================================
   FONT — Plus Jakarta Sans (loaded via <link> in HTML)
   ============================================================ */

/* ============================================================
   NAVBAR — hamburger mobile, full desktop
   ============================================================ */
.wt-navbar {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Logo tekst — identyczny krój jak suffix-to z loading.html */
.wt-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  text-decoration: none !important;
  color: white !important;
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}

.wt-logo-prefix {
  color: white;
}

.wt-logo-suffix {
  color: white;
  opacity: 0.90;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.55)) drop-shadow(0 0 16px rgba(255,255,255,0.25));
}

.wt-navbar .nav-link {
  color: rgba(255,255,255,0.90) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  min-width: 120px;
  text-align: center;
}

.wt-navbar .nav-link:hover,
.wt-navbar .nav-link.active-page {
  color: white !important;
  background: rgba(255,255,255,0.15);
}

/* Glass + solid buttons in nav */
.btn-nav-glass {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.55);
  color: white !important;
  border-radius: var(--radius-pill);
  padding: 7px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-nav-glass:hover {
  background: rgba(255,255,255,0.30);
  color: white !important;
}

.btn-nav-solid {
  background: white;
  border: 1.5px solid white;
  color: var(--green-primary) !important;
  border-radius: var(--radius-pill);
  padding: 7px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-nav-solid:hover {
  background: transparent;
  color: white !important;
}

/* Nav actions — stała szerokość prawej strony navbara (wyrównanie centrum menu) */
.wt-nav-actions {
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .wt-nav-actions {
    min-width: unset;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* Hamburger toggler */
.wt-toggler {
  border: 2px solid rgba(255,255,255,0.55) !important;
  border-radius: 8px !important;
  padding: 6px 10px !important;
  box-shadow: none !important;
}

.wt-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Mobile nav dropdown */
@media (max-width: 991px) {
  .wt-navbar .navbar-collapse {
    background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-primary) 100%);
    margin-top: 10px;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  }

  .wt-navbar .navbar-nav {
    gap: 4px;
  }

  .wt-navbar .nav-link {
    padding: 10px 14px !important;
    border-radius: 10px;
  }

  .btn-nav-glass,
  .btn-nav-solid {
    display: block;
    text-align: center;
    margin-top: 6px;
    padding: 10px 20px;
  }
}

/* ============================================================
   DARK HERO — wspólny dla wszystkich stron
   ============================================================ */
.hero-dark {
  position: relative;
  min-height: var(--hero-min-h);
  background: radial-gradient(ellipse at 20% 50%, var(--dark-mid) 0%, var(--dark-bg) 60%),
              radial-gradient(ellipse at 80% 50%, var(--dark-accent) 0%, transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-dark.hero-short {
  min-height: 55vh;
}

/* background grid overlay */
.hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,173,75,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,173,75,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 520px; height: 520px;
  background: var(--green-primary);
  top: -160px; left: -120px;
  opacity: 0.28;
  animation: orbFloat 18s linear infinite;
}

.hero-orb-2 {
  width: 360px; height: 360px;
  background: var(--green-light);
  bottom: -100px; right: -80px;
  opacity: 0.22;
  animation: orbFloat 22s linear infinite;
  animation-delay: -8s;
}

.hero-orb-3 {
  width: 260px; height: 260px;
  background: #00e060;
  top: 40%; left: 55%;
  opacity: 0.16;
  animation: orbFloat 14s linear infinite;
  animation-delay: -3s;
}

@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-40px) scale(1.07); }
}

/* Hero content wrapper */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 60px 20px;
  width: 100%;
  max-width: 900px;
}

/* Main hero heading */
.hero-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.08;
  color: white;
  margin-bottom: 18px;
}

.hero-headline .ht-suffix {
  color: var(--green-light);
  filter: drop-shadow(0 0 8px rgba(134,184,77,0.7)) drop-shadow(0 0 22px rgba(134,184,77,0.35));
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted-dark);
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 32px;
}

/* Coming soon style badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px rgba(0,173,75,0.45);
  margin-bottom: 28px;
  animation: badgePop 0.6s 0.3s both cubic-bezier(0.22,1,0.36,1);
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  background: white;
  border-radius: 50%;
  opacity: 0.85;
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink { 0%,100% { opacity:0.85; } 50% { opacity:0.2; } }
@keyframes badgePop { from { opacity:0; transform: scale(0.8) translateY(6px); } to { opacity:1; transform: scale(1) translateY(0); } }

/* Fade-up animations */
.fade-up { opacity: 0; transform: translateY(18px); animation: fadeUpIn 0.8s forwards; }
.fade-up-d1 { animation-delay: 0.15s; }
.fade-up-d2 { animation-delay: 0.35s; }
.fade-up-d3 { animation-delay: 0.55s; }
.fade-up-d4 { animation-delay: 0.75s; }
.fade-up-d5 { animation-delay: 0.90s; }

@keyframes fadeUpIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SEARCH BAR — ZnajdźTo!
   ============================================================ */
.search-hero-wrap {
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 12px 14px;
  max-width: 680px;
  margin: 0 auto 28px;
  display: flex;
  align-items: stretch;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.search-hero-wrap .search-icon {
  color: var(--green-light);
  font-size: 1.2rem;
  flex-shrink: 0;
  padding-left: 6px;
}

.search-hero-input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: white !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 0;
  box-shadow: none !important;
}

.search-hero-input::placeholder {
  color: rgba(255,255,255,0.50);
}

.search-hero-btn {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
  border: none;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0 22px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-hero-btn-full {
  width: 100%;
  font-size: 1.05rem;
  padding: 13px 22px;
  border-radius: 14px;
  letter-spacing: 0.03em;
}

.search-hero-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,173,75,0.40);
}

@media (max-width: 575px) {
  .search-hero-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
  }
  .search-hero-wrap .search-icon { display: none; }
  .search-hero-input { color: white !important; }
  .search-hero-btn { width: 100%; text-align: center; padding: 12px; }
}

/* ============================================================
   SERVICE PILLS ROW
   ============================================================ */
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 0;
}

.service-pill {
  padding: 8px 20px;
  border: 1.5px solid rgba(0,173,75,0.45);
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  background: rgba(0,173,75,0.10);
  transition: var(--transition);
}

.service-pill:hover,
.service-pill.active {
  border-color: var(--green-primary);
  background: rgba(0,173,75,0.22);
  color: white;
  box-shadow: 0 0 16px rgba(0,173,75,0.30);
  transform: translateY(-2px);
}

/* ============================================================
   CTA BUTTONS (hero area — dark bg versions)
   ============================================================ */
.btn-hero-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
  border: none;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 28px rgba(0,173,75,0.40);
}

.btn-hero-primary:hover {
  color: white;
  filter: brightness(1.1);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,173,75,0.55);
}

.btn-hero-outline {
  display: inline-block;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.50);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: var(--transition);
}

.btn-hero-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.10);
  color: white;
  transform: translateY(-3px);
}

/* ============================================================
   SECTION WRAPPERS (jasne sekcje)
   ============================================================ */
.section-light {
  padding: 80px 0;
  background: #ffffff;
}

.section-alt {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-green-border {
  padding: 60px 40px;
  background: #f8f9fa;
  border: 2px solid var(--green-primary);
  border-radius: 25px;
  margin: 60px 0;
}

.wt-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--green-primary);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 14px;
}

.wt-section-subtitle {
  color: #666;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Decorative underline for section title */
.wt-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
  border-radius: var(--radius-pill);
  margin: 12px auto 0;
}

/* ============================================================
   SERVICE FEATURE CARDS (index — Wszystko w jednym miejscu)
   ============================================================ */
.wt-service-card {
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: var(--radius-card);
  padding: 40px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.wt-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
  opacity: 0;
  transition: var(--transition);
}

.wt-service-card:hover {
  transform: translateY(-8px);
  border-color: var(--green-light);
  box-shadow: var(--shadow-hover);
}

.wt-service-card:hover::before {
  opacity: 1;
}

.wt-service-icon {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 2.2rem;
  box-shadow: 0 8px 20px rgba(0,173,75,0.30);
  transition: var(--transition);
}

.wt-service-card:hover .wt-service-icon {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0,173,75,0.45);
}

.wt-service-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--green-primary);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.wt-service-card p {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

/* ============================================================
   HOW IT WORKS — Steps
   ============================================================ */
.step-card {
  text-align: center;
  padding: 30px 20px;
}

.step-number {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(0,173,75,0.35);
}

.step-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--green-primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Connector line between steps (desktop) */
@media (min-width: 768px) {
  .steps-row {
    position: relative;
  }

  .steps-row::before {
    content: '';
    position: absolute;
    top: 29px; left: 12.5%; right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-light), var(--green-primary));
    opacity: 0.30;
    z-index: 0;
  }

  .step-card { position: relative; z-index: 1; }
}

/* ============================================================
   APP DOWNLOAD SECTION
   ============================================================ */
.app-section {
  background: linear-gradient(135deg, var(--dark-mid) 0%, var(--dark-bg) 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.app-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,173,75,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,173,75,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.app-section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
}

.app-section h2 .ht-suffix {
  color: var(--green-light);
  filter: drop-shadow(0 0 8px rgba(134,184,77,0.6));
}

.app-section p {
  color: var(--text-muted-dark);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.app-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.app-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.30);
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 14px;
  transition: var(--transition);
  min-width: 180px;
}

.app-badge-btn:hover {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.55);
  color: white;
  transform: translateY(-4px);
}

.app-badge-btn i {
  font-size: 1.8rem;
}

.app-badge-btn strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
}

.app-badge-btn small {
  font-size: 0.75rem;
  opacity: 0.70;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
  padding: 36px 0;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-item .stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  display: block;
  color: #ffffff !important;
}

.stat-item .stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  display: block;
  color: #ffffff !important;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.mission-card {
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: var(--radius-card);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-align: center;
  height: 100%;
}

.mission-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-light);
  box-shadow: var(--shadow-hover);
}

.mission-card .mission-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
  box-shadow: 0 6px 18px rgba(0,173,75,0.28);
}

.mission-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--green-primary);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.mission-card p {
  color: #555;
  line-height: 1.7;
  font-size: 0.97rem;
}

/* Ecosystem badge row (about) */
.ecosystem-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 40px 0;
}

.eco-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 2px solid #e8f5ed;
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: var(--transition);
  min-width: 220px;
  max-width: 260px;
}

.eco-badge:hover {
  border-color: var(--green-primary);
  box-shadow: 0 8px 24px rgba(0,173,75,0.15);
  transform: translateY(-4px);
}

.eco-badge .eco-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.eco-badge .eco-text strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--green-primary);
  font-size: 1rem;
}

.eco-badge .eco-text span {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.4;
}

/* Timeline (about — historia) */
.wt-timeline {
  position: relative;
  padding-left: 36px;
  border-left: 3px solid #e0ede4;
}

.wt-timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.wt-timeline-item::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  border: 3px solid white;
  box-shadow: 0 0 0 3px rgba(0,173,75,0.2);
}

.wt-timeline-item h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--green-primary);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.wt-timeline-item p {
  color: #555;
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0;
}

.wt-timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  color: white;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

/* ============================================================
   BUSINESS PAGE
   ============================================================ */
.business-feature-card {
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: var(--radius-card);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
}

.business-feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-light);
  box-shadow: var(--shadow-hover);
}

.business-feature-card .bfc-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.9rem;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0,173,75,0.28);
  transition: var(--transition);
}

.business-feature-card:hover .bfc-icon {
  transform: scale(1.08) rotate(-4deg);
}

.business-feature-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--green-primary);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.business-feature-card p {
  color: #555;
  line-height: 1.7;
  font-size: 0.97rem;
}

/* Pricing cards */
.pricing-card {
  background: white;
  border: 2px solid #e0ede4;
  border-radius: var(--radius-card);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--green-primary);
  transform: scale(1.04);
  box-shadow: 0 16px 48px rgba(0,173,75,0.20);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,173,75,0.18);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0,173,75,0.35);
  white-space: nowrap;
}

.pricing-plan-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1;
  margin: 16px 0 4px;
}

.pricing-price small {
  font-size: 1rem;
  font-weight: 600;
  color: #888;
  vertical-align: middle;
}

.pricing-desc {
  color: #777;
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}

.pricing-features li {
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #444;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--green-primary);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-features li.disabled {
  color: #bbb;
}

.pricing-features li.disabled::before {
  content: '–';
  color: #ccc;
}

.btn-pricing {
  display: block;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-pricing:hover {
  color: white;
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,173,75,0.35);
}

.btn-pricing-outline {
  background: transparent;
  border: 2px solid var(--green-primary);
  color: var(--green-primary);
}

.btn-pricing-outline:hover {
  background: var(--green-primary);
  color: white;
  filter: none;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.contact-section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
}

.contact-section p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.btn-contact-white {
  display: inline-block;
  background: white;
  color: var(--green-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 38px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  margin: 6px;
}

.btn-contact-white:hover {
  background: var(--dark-bg);
  color: var(--green-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.20);
}

.btn-contact-outline-white {
  display: inline-block;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.65);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 38px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: var(--transition);
  margin: 6px;
}

.btn-contact-outline-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.12);
  color: white;
  transform: translateY(-3px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.wt-footer {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  padding: 48px 0 28px;
  color: rgba(255,255,255,0.85);
}

.wt-footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: white !important;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
}

.wt-footer-logo .ft-suffix {
  color: white;
  opacity: 0.85;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.4));
}

.wt-footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0;
}

.wt-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  justify-content: center;
}

.wt-footer-links li a {
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  display: block;
}

.wt-footer-links li a:hover {
  background: rgba(255,255,255,0.15);
  color: white;
}

.wt-footer-divider {
  border-color: rgba(255,255,255,0.18);
  margin: 24px 0 20px;
}

.wt-footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.50);
  text-align: center;
}

.wt-footer-copy a {
  color: rgba(255,255,255,0.70);
  text-decoration: none;
}

.wt-footer-copy a:hover {
  color: white;
}

/* ============================================================
   LIGHT HERO — białe tło, zielone akcenty (index.html)
   ============================================================ */
.hero-light {
  position: relative;
  min-height: var(--hero-min-h);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid #eaf3ee;
}

/* Subtelna siatka w tle */
.hero-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,173,75,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,173,75,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Dekoracyjne plamy w narożnikach */
.hero-light::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,173,75,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-light .hero-light-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
}

.hero-light .hero-light-orb-1 {
  width: 480px; height: 480px;
  background: rgba(0,173,75,0.08);
  top: -180px; left: -160px;
  animation: orbFloat 20s linear infinite;
}

.hero-light .hero-light-orb-2 {
  width: 320px; height: 320px;
  background: rgba(134,184,77,0.08);
  bottom: -120px; right: -100px;
  animation: orbFloat 25s linear infinite;
  animation-delay: -10s;
}

/* Nadpisanie kolorów tekstu dla jasnego hero */
.hero-light .hero-headline {
  color: #1a1a1a;
}

.hero-light .hero-headline .ht-suffix {
  color: var(--green-primary);
  filter: none;
  text-shadow: none;
}

.hero-light .hero-sub {
  color: #555;
}

/* Wyszukiwarka — wersja jasna */
.search-hero-wrap.light {
  background: #ffffff;
  border: 2px solid #d4eddf;
  box-shadow: 0 4px 24px rgba(0,173,75,0.10);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.search-hero-wrap.light .search-icon {
  color: var(--green-primary);
}

.search-hero-wrap.light .search-hero-input {
  color: #222 !important;
}

.search-hero-wrap.light .search-hero-input::placeholder {
  color: #aaa;
}

/* Service pills — wersja jasna */
.service-pill.light-pill {
  border-color: rgba(0,173,75,0.35);
  color: var(--green-dark);
  background: rgba(0,173,75,0.06);
}

.service-pill.light-pill:hover,
.service-pill.light-pill.active {
  border-color: var(--green-primary);
  background: rgba(0,173,75,0.12);
  color: var(--green-dark);
  box-shadow: 0 0 14px rgba(0,173,75,0.15);
}

/* Przycisk outline dla jasnego tła */
.btn-hero-outline-dark {
  display: inline-block;
  background: transparent;
  border: 2px solid #d0d0d0;
  color: #333;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: var(--transition);
}

.btn-hero-outline-dark:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  transform: translateY(-3px);
  background: rgba(0,173,75,0.04);
}

@media (max-width: 575px) {
  .search-hero-wrap.light {
    flex-direction: column;
    align-items: stretch;
  }
  .search-hero-wrap.light .search-icon { display: none; }
  .search-hero-wrap.light .search-hero-btn { width: 100%; text-align: center; padding: 12px; }
}

/* ============================================================
   PARTICLES (hero background)
   ============================================================ */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--green-primary);
  border-radius: 50%;
  opacity: 0;
  animation: particleRise linear infinite;
}

@keyframes particleRise {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.15; }
  100% { transform: translateY(-80vh) scale(0); opacity: 0; }
}

/* ============================================================
   SCROLL REVEAL utility (JS-driven)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NO CLICK EFFECT — col-md-4 reveal visible
   ============================================================ */
.col-md-4.reveal,
.col-md-4.reveal.visible {
  -webkit-tap-highlight-color: transparent;
}

.col-md-4.reveal .wt-service-card,
.col-md-4.reveal .benefit-card,
.col-md-4.reveal .mission-card,
.col-md-4.reveal .business-feature-card,
.col-md-4.reveal .pricing-card,
.col-md-4.reveal .category-card {
  cursor: default;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.col-md-4.reveal .wt-service-card:active,
.col-md-4.reveal .benefit-card:active,
.col-md-4.reveal .mission-card:active,
.col-md-4.reveal .business-feature-card:active,
.col-md-4.reveal .pricing-card:active,
.col-md-4.reveal .category-card:active {
  transform: none !important;
  box-shadow: var(--shadow-card) !important;
}

.col-md-4.reveal .wt-service-card:focus,
.col-md-4.reveal .benefit-card:focus,
.col-md-4.reveal .mission-card:focus,
.col-md-4.reveal .business-feature-card:focus,
.col-md-4.reveal .pricing-card:focus {
  outline: none;
  box-shadow: var(--shadow-card);
}

/* ============================================================
   MISC UTILS
   ============================================================ */
.text-green {
  color: var(--green-primary) !important;
}

.text-green-light {
  color: var(--green-light) !important;
}

.bg-green-gradient {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
}

/* ============================================================
   RESPONSIVE tweaks
   ============================================================ */
@media (max-width: 767px) {
  .section-light, .section-alt { padding: 56px 0; }
  .section-green-border { padding: 36px 20px; }
  .app-section { padding: 56px 0; }
  .stats-bar { padding: 28px 0; }
  .wt-footer { padding: 36px 0 22px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
}

/* ============================================================
   City autocomplete dropdown — floating above all content
   ============================================================ */
#heroCityDropdown,
#mapCityDropdown {
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border: 1px solid #d0e8d8;
  overflow: hidden;
  background: #fff;
}
#heroCityDropdown .list-group-item,
#mapCityDropdown .list-group-item {
  border-left: none;
  border-right: none;
  padding: 10px 14px;
  font-size: 0.93rem;
}
#heroCityDropdown .list-group-item:hover,
#mapCityDropdown .list-group-item:hover {
  background-color: #edfaf2;
  color: #00AD4B;
}
