/* ==========================================================================
   GEO-EKO — Styl główny
   ========================================================================== */

/* ==========================================================================
   1) Zmienne globalne
   ========================================================================== */
:root {
  /* Brand & kolorystyka */
  --brand: #0ea5a0;
  --brand-acc: #60a5fa;
  --brand-50: #eefcfb;

  --bg: #ffffff;
  --bg-soft: #fbfcfe;
  --surface: #ffffff;

  --text: #0b1220;
  --muted: #647188;

  --border: #e6ebf2;
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.06);

  --radius: 18px;
  --container: 1180px;
  --ring: 0 0 0 4px color-mix(in oklab, var(--brand) 20%, transparent);

  /* Typografia */
  --ui-font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial;
  --brand-font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system,
    "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* ==========================================================================
   2) Reset + bazowe
   ========================================================================== */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--ui-font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 1.25rem;
}
.muted {
  color: var(--muted);
}
.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: #000;
  color: #fff;
  z-index: 1000;
}
:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 12px;
}

/* ==========================================================================
   4) Przyciski (btn)
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  border: 1px solid color-mix(in oklab, var(--brand) 60%, var(--border) 40%);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.1px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(2, 6, 23, 0.1);
}
.btn--primary {
  background: linear-gradient(
    135deg,
    var(--brand) 0%,
    color-mix(in oklab, var(--brand) 90%, var(--brand-acc) 10%) 100%
  );
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(14, 165, 160, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(14, 165, 160, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn--ghost {
  color: var(--brand);
  background: #fff;
}

/* ==========================================================================
   5) Sekcja ogólna (spacing)
   ========================================================================== */
.section {
  padding: clamp(2.6rem, 3.5vw + 1rem, 6rem) 0;
}

/* ==========================================================================
   7) Usługi (karty)
   ========================================================================== */
.services .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card {
  padding: 1.45rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    380px 120px at -5% -5%,
    color-mix(in oklab, var(--brand-acc) 12%, transparent),
    transparent 60%
  );
  opacity: 0.18;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  border-color: #dfe6f0;
}
.card h3 {
  margin: 0.25rem 0 0.4rem;
}
.card p {
  color: var(--muted);
  margin: 0 0 0.6rem;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
}
.card-link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.card:hover .card-link::after {
  transform: translateX(3px);
}
.card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 0.5rem;
  color: var(--brand);
  background: linear-gradient(180deg, #f4fbff, #effafe);
  border: 1px solid #e6eef7;
}

/* ==========================================================================
   8) Atuty (features)
   ========================================================================== */
.features .f-grid {
  gap: 1.25rem;
}
.f-item {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.f-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}
.f-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f4fbff, #effafe);
  border: 1px solid #e6eef7;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   9) Statystyki
   ========================================================================== */
.stats {
  background: linear-gradient(180deg, var(--bg-soft), #fff);
  border-block: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.2rem;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-num {
  font-size: clamp(1.8rem, 2.2vw + 1rem, 3rem);
  font-weight: 900;
  letter-spacing: 0.5px;
}
.stat-label {
  color: var(--muted);
}

/* ==========================================================================
   10) Highlight + Checklist
   ========================================================================== */
.highlight {
  background: linear-gradient(180deg, var(--bg-soft), #fff);
  padding: clamp(2rem, 3vw + 1rem, 4rem) 0;
  border-block: 1px solid var(--border);
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}
.checklist li {
  padding-left: 2rem;
  position: relative;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.42rem;
  width: 1.05rem;
  height: 1.05rem;
  background: conic-gradient(from 180deg, var(--brand), var(--brand-acc));
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23fff" viewBox="0 0 24 24"><path d="M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>')
    center/100% 100% no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23fff" viewBox="0 0 24 24"><path d="M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>')
    center/100% 100% no-repeat;
  border-radius: 4px;
}

/* ==========================================================================
   11) Proces
   ========================================================================== */
.process {
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--brand), var(--brand-acc));
  opacity: 0.12;
  mask-image: linear-gradient(90deg, transparent, #000 10% 90%, transparent);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.step {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}
.s-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6fbff;
  border: 1px solid #e6eef7;
  color: var(--brand);
  margin-bottom: 0.4rem;
}

/* ==========================================================================
   12) Portfolio
   ========================================================================== */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.p-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.p-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}
.p-thumb {
  height: 170px;
  background: linear-gradient(135deg, #f5fbff, #f7fffb);
}
.p-body {
  padding: 1.05rem;
}
.p-tags {
  display: flex;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0;
}
.p-tags li {
  font-size: 0.82rem;
  border: 1px solid var(--border);
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  color: var(--muted);
}

/* ==========================================================================
   13) Opinie (testimonials)
   ========================================================================== */
.testimonials {
  background: linear-gradient(180deg, #fff, var(--bg-soft));
  border-block: 1px solid var(--border);
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.t-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.t-quote {
  font-size: 1.06rem;
  line-height: 1.5;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #f1f5f9;
  color: #0b1220;
  font-weight: 800;
}

/* ==========================================================================
   14) Logotypy (slider)
   ========================================================================== */
.logos {
  position: relative;
  overflow: hidden;
  padding: 0.6rem 0;
  margin-top: 0.6rem;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logos-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: logos-scroll var(--logos-speed, 26s) linear infinite;
}
.logos img {
  height: 42px;
  width: auto;
  opacity: 0.95;
  filter: grayscale(1) contrast(0.9);
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.logos img:hover {
  filter: none;
  opacity: 1;
}
.logos-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
}
.logos-fade.left {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 35%, transparent);
}
.logos-fade.right {
  right: 0;
  background: linear-gradient(-90deg, var(--bg) 35%, transparent);
}

/* ==========================================================================
   15) CTA (call to action)
   ========================================================================== */
.cta {
  background: linear-gradient(
    180deg,
    color-mix(in oklab, var(--brand) 94%, white 6%),
    color-mix(in oklab, var(--brand) 86%, #0b756f 14%)
  );
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    820px 220px at 50% -20%,
    rgba(255, 255, 255, 0.18),
    transparent 60%
  );
  mix-blend-mode: screen;
  opacity: 0.7;
}
.cta .btn {
  background: #fff;
  color: #0a3a38;
  border-color: #fff;
}
.cta .btn:hover {
  transform: translateY(-1px);
}

/* ==========================================================================
   16) Layout helpers (gridy, prose)
   ========================================================================== */
.grid-2 {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.prose h1,
.prose h2,
.prose h3 {
  line-height: 1.2;
}
.prose h1 {
  font-size: 2.08rem;
}
.prose h2 {
  font-size: 1.62rem;
  margin-top: 2rem;
}
.prose ul {
  padding-left: 1.25rem;
}

/* ==========================================================================
   17) Formularz kontaktowy
   ========================================================================== */
.contact-form {
  display: grid;
  gap: 0.85rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  font: inherit;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: color-mix(in oklab, var(--brand) 50%, var(--border) 50%);
  box-shadow: var(--ring);
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.map-embed {
  height: 360px;
  border: 1px dashed #dbe6f3;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff, #f7fffb);
}

/* ==========================================================================
   18) Stopka
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg), var(--bg-soft));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding: 2.3rem 0;
}
.footer-nav a {
  position: relative;
  text-decoration: none;
}
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-acc));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.footer-nav a:hover::after {
  transform: scaleX(1);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

/* ==========================================================================
   19) Sticky CTA
   ========================================================================== */
.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 60;
  background: color-mix(in oklab, #ffffff 92%, var(--bg-soft) 8%);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.06);
}
.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
}
.sticky-actions {
  display: flex;
  gap: 0.6rem;
}

/* ==========================================================================
   20) Responsive (media queries)
   ========================================================================== */

/* 20.1 Header — szerokość kapsuły */
@media (max-width: 1200px) {
  .header-bar {
    width: min(1280px, calc(100% - 2.5rem));
    margin: 0.875rem auto;
  }
}

/* 20.2 Header — układ mobilny i kontakt */
@media (max-width: 960px) {
  .header-bar {
    width: calc(100% - 2rem);
    margin: 0.75rem auto;
    border-radius: 28px;
  }
  .header-inner {
    padding: 0.875rem 1.25rem;
    gap: 1rem;
  }
  .header-contact-btn {
    display: none;
  } /* ukryj Kontakt w headerze na mobile */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .site-nav {
    display: none;
  }
  .nav-open #site-nav {
    display: block;
    position: fixed;
    inset: var(--header-h, 72px) 0 0 0; /* zaczyna pod headerem */
    background: var(--bg);
    padding: 1rem 1.25rem 2rem;
    box-shadow: var(--shadow);
    overflow: auto;
  }
  .nav-open .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  .submenu {
    position: static;
    min-width: 0;
    max-width: none;
    border-radius: 14px;
    margin: 0.25rem 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .submenu::before {
    display: none;
  }
}

/* 20.3 Dropdown — szerszy layout na dużych ekranach */
@media (min-width: 1100px) {
  .submenu {
    max-width: 640px;
    padding: 0.6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem;
  }
  .submenu > li {
    break-inside: avoid;
  }
}

/* 20.4 Desktop: otwieranie submenu na hover (gdy dostępny hover) */
@media (hover: hover) and (min-width: 961px) {
  .site-nav .has-sub:hover > .submenu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .site-nav .has-sub:hover > .sub-toggle .chev {
    transform: rotate(-180deg);
  }
}

/* 20.5 Layout sekcji i siatki */
@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 960px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-3,
  .services .grid-3 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .t-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .sticky-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .sticky-actions {
    width: 100%;
  }
  .sticky-actions .btn {
    flex: 1;
    text-align: center;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   21) Animacje (keyframes + reveal)
   ========================================================================== */
@keyframes shimmer-wave {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
@keyframes logos-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* efekty wejścia (scroll reveal) */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   22) Utils
   ========================================================================== */
.no-scroll {
  overflow: hidden;
}

/* Zmienne dostosowane do branży geologicznej */
:root {
  /* Paleta kolorów geologicznych */
  --earth-green: #2d5016; /* Ciemna zieleń ziemi */
  --forest-green: #4a7c59; /* Zieleń lasu */
  --sage-green: #8fbc8f; /* Szałwiowa zieleń */
  --mineral-blue: #5f8a8b; /* Błękit mineralny */
  --stone-gray: #6b7280; /* Szarość kamienia */

  /* Główne kolory brandu */
  --primary: #2d5016;
  --primary-light: #4a7c59;
  --primary-lighter: #8fbc8f;
  --accent: #5f8a8b;
  --secondary: #5f8a8b;

  /* Neutralne */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;

  /* Efekty */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Typografia */
  --font-sans: "Poppins", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Poppins", ui-sans-serif, system-ui, sans-serif;

  /* Spacing */
  --container-max: 1280px;
  --header-height: 80px;

  /* Header effects */
  --header-blur: 14px; /* bazowy blur */
  --header-blur-scrolled: 18px; /* blur po scrollu */
  --glass-bg: 255, 255, 255; /* tło szkła (RGB) */
  --glass-alpha: 0.55; /* przezroczystość tła */
  --glass-alpha-scrolled: 0.7;
  --glass-border: 255, 255, 255; /* kolor obramowania */
  --glass-border-alpha: 0.35;

  --gradient-primary: linear-gradient(
    135deg,
    #2d5016 0%,
    #3d6b1f 50%,
    #4d7c28 100%
  );
  --gradient-accent: linear-gradient(
    135deg,
    rgba(143, 188, 143, 0.1) 0%,
    rgba(95, 138, 139, 0.1) 100%
  );
  --font-display: "Inter", system-ui, sans-serif;
  --shadow-soft: 0 4px 20px rgba(17, 24, 39, 0.08);
  --shadow-strong: 0 8px 32px rgba(17, 24, 39, 0.12);
}

/* Reset i podstawy */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ==========================================================================
   HEADER STYLES
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent; /* tłem zajmie się ::before */
  border-bottom: 0; /* border rysujemy pseudo-elementem */
  isolation: isolate; /* pewny stacking dla ::before/::after */
}

/* Szkło + blur */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* delikatny radial highlight u góry */ radial-gradient(
      120% 70% at 50% -10%,
      rgba(255, 255, 255, 0.35) 0%,
      rgba(255, 255, 255, 0.12) 30%,
      rgba(255, 255, 255, 0) 60%
    ),
    /* subtelny linear gradient zgodny z brandem */
      linear-gradient(
        135deg,
        rgba(var(--glass-bg), var(--glass-alpha)) 0%,
        rgba(var(--glass-bg), calc(var(--glass-alpha) * 0.92)) 100%
      );
  backdrop-filter: blur(var(--header-blur)) saturate(120%);
  -webkit-backdrop-filter: blur(var(--header-blur)) saturate(120%);
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.08); /* miły cień pod headerem */
  z-index: -1;
  pointer-events: none;
}

/* Glass border (subtelna obwódka na dole) */
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(var(--glass-border), 0) 0%,
    rgba(var(--glass-border), var(--glass-border-alpha)) 20%,
    rgba(var(--glass-border), var(--glass-border-alpha)) 80%,
    rgba(var(--glass-border), 0) 100%
  );
  z-index: -1;
  pointer-events: none;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gray-300);
}

@media (prefers-reduced-transparency: no-preference) {
  .site-header::before {
    /* tiny data-URI noise 1x PNG powtarzany; możesz podmienić na swój */
    background-image: radial-gradient(
        120% 70% at 50% -10%,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.12) 30%,
        rgba(255, 255, 255, 0) 60%
      ),
      linear-gradient(
        135deg,
        rgba(var(--glass-bg), var(--glass-alpha)) 0%,
        rgba(var(--glass-bg), calc(var(--glass-alpha) * 0.92)) 100%
      ),
      url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR4nGMAAQAABQABn9w9XwAAAABJRU5ErkJggg==");
    background-size: auto, auto, 4px 4px;
    background-repeat: no-repeat, no-repeat, repeat;
    mix-blend-mode: normal;
  }
}

/* Fallback, gdy przeglądarka nie wspiera backdrop-filter */
@supports not (
  (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))
) {
  .site-header::before {
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.85)
    );
    /* bez blur – mocniejszy cień, żeby zachować kontrast */
    box-shadow: 0 10px 25px rgba(17, 24, 39, 0.14);
  }
}

/* Płynne przejścia (jeśli nie wyłączono animacji) */
@media (prefers-reduced-motion: no-preference) {
  .site-header,
  .site-header::before {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

/* Wzmocnienie efektu przy scrollu */
.site-header.scrolled::before {
  background: radial-gradient(
      120% 70% at 50% -10%,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0.14) 30%,
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(
      135deg,
      rgba(var(--glass-bg), var(--glass-alpha-scrolled)) 0%,
      rgba(var(--glass-bg), calc(var(--glass-alpha-scrolled) * 0.92)) 100%
    );
  backdrop-filter: blur(var(--header-blur-scrolled)) saturate(130%);
  -webkit-backdrop-filter: blur(var(--header-blur-scrolled)) saturate(130%);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.12);
}

.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 2rem;
}

/* ==========================================================================
   LOGO SECTION
   ========================================================================== */

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--primary);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-icon {
  width: 64px; /* z 50px → 64px */
  height: 64px; /* z 50px → 64px */
  border-radius: 12px; /* bardziej miękkie narożniki */
  background: linear-gradient(
    135deg,
    var(--primary-lighter),
    var(--primary-light)
  );
  border: 2px solid var(--primary-light);
  transition: all 0.3s ease;
}

.logo:hover .logo-icon {
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
  transform: rotate(-2deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 2rem; /* z 2.5rem → 3rem */
  font-weight: 700; /* delikatnie lżejsze niż 800 */
  letter-spacing: -0.015em;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.85rem; /* z 0.75rem → 0.85rem */
  font-weight: 600;
  color: var(--stone-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.25rem; /* trochę więcej miejsca */
  color: var(--gray-700);
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.05rem; /* z 0.95rem → 1rem */
  letter-spacing: 0.02em; /* subtelne zwiększenie odstępów */
  border-radius: 10px; /* miększy border-radius */
  transition: all 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
  background: var(--gray-50);
  transform: translateY(-2px);
}

.nav-link.active {
  color: var(--primary);
  background: linear-gradient(
    135deg,
    rgba(45, 80, 22, 0.1),
    rgba(74, 124, 89, 0.08)
  );
  font-weight: 600;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 1px;
}

.nav-icon {
  font-size: 1rem;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.nav-link:hover .nav-icon {
  transform: scale(1.1);
}

/* ==========================================================================
   DROPDOWN MENU
   ========================================================================== */

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.dropdown-toggle:hover {
  color: var(--primary);
  background: var(--gray-50);
}

.dropdown-toggle.active {
  color: var(--primary);
  background: linear-gradient(
    135deg,
    rgba(45, 80, 22, 0.08) 0%,
    rgba(74, 124, 89, 0.06) 100%
  );
  font-weight: 600;
}

.dropdown-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
  padding: 0.5rem;
}

.dropdown.open .dropdown-menu,
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-bottom: none;
  border-right: none;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  color: var(--gray-700);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: var(--gray-50);
  color: var(--primary);
}

.dropdown-item.active {
  background: linear-gradient(
    135deg,
    rgba(45, 80, 22, 0.08) 0%,
    rgba(74, 124, 89, 0.06) 100%
  );
  color: var(--primary);
  border-left: 3px solid var(--primary);
}

.dropdown-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-light);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.dropdown-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: inherit;
}

.dropdown-content p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ==========================================================================
   CONTACT BUTTON
   ========================================================================== */

.header-contact {
  flex-shrink: 0;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem; /* większy „hit area” */
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem; /* nieco większy tekst */
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-lg);
}

.contact-button:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
  animation: phone-vibrate 0.7s linear infinite;
}
.contact-button:hover .contact-icon::after {
  animation: phone-ring-wave 0.9s ease-out infinite;
}

/* Bazowe ustawienia ikonki */
.contact-icon {
  font-size: 1.1rem;
  display: inline-block;
  transform-origin: 60% 40%; /* „zawias” z boku jak słuchawka */
  will-change: transform;
  position: relative; /* dla pseudo-elementu falki */
}

/* Delikatne auto-wibrowanie co kilka sekund */
.contact-icon {
  animation: phone-vibrate 3.2s ease-in-out infinite;
}

/* Subtelna falka dźwięku co cykl */
.contact-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.12) 40%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
  opacity: 0;
  animation: phone-ring-wave 3.2s ease-out infinite;
}

/* --- Vibrate: delikatny jitter telefonu --- */
@keyframes phone-vibrate {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  5% {
    transform: translate(1px, -1px) rotate(-6deg);
  }
  10% {
    transform: translate(-1px, 1px) rotate(6deg);
  }
  15% {
    transform: translate(1px, -1px) rotate(-5deg);
  }
  20% {
    transform: translate(-1px, 1px) rotate(5deg);
  }
  25% {
    transform: translate(1px, -1px) rotate(-4deg);
  }
  30% {
    transform: translate(-1px, 1px) rotate(4deg);
  }
  35% {
    transform: translate(0, 0) rotate(0);
  }
  /* reszta czasu „cisza”, by nie męczyć oka */
  100% {
    transform: translate(0, 0) rotate(0);
  }
}

/* --- Ring wave: falka wychodząca z ikonki --- */
@keyframes phone-ring-wave {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  5% {
    opacity: 0.35;
  }
  25% {
    opacity: 0.15;
    transform: scale(1.4);
  }
  35% {
    opacity: 0;
    transform: scale(1.6);
  }
  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.mobile-menu-toggle:hover {
  background: var(--gray-100);
}

.menu-bar {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .menu-bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .menu-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .menu-bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  padding: 1rem;
  list-style: none;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
}

.mobile-dropdown-content {
  padding-left: 2rem;
  padding-top: 0.5rem;
}

.mobile-dropdown-item {
  display: block;
  padding: 0.75rem 0;
  color: var(--gray-600);
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s ease;
}

.mobile-dropdown-item:hover,
.mobile-dropdown-item.active {
  color: var(--primary);
}

.mobile-contact {
  padding: 1.5rem 1rem 1rem;
  border-top: 1px solid var(--gray-200);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .header-inner {
    gap: 1.5rem;
  }

  .logo-main {
    font-size: 1.375rem;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .header-contact {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-inner {
    min-height: 70px;
    gap: 1rem;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-main {
    font-size: 1.25rem;
  }

  .logo-subtitle {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 1rem;
  }

  .logo-text {
    display: none;
  }
}

/* ==========================================================================
   UTILITIES & ANIMATIONS
   ========================================================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Smooth animations */
@media (prefers-reduced-motion: no-preference) {
  .site-header {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-link,
  .dropdown-toggle,
  .contact-button {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

/* Demo content styling */
.demo-content {
  min-height: 200vh;
  padding: 2rem;
  background: linear-gradient(180deg, var(--gray-50), var(--white));
}

.demo-section {
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
  padding: 4rem 0;
}

.demo-section h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.demo-section p {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================================================
   HERO SECTION - Professional Geological Services
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(45, 80, 22, 0.95) 0%,
    rgba(74, 124, 89, 0.92) 50%,
    rgba(95, 138, 139, 0.88) 100%
  );
  overflow: hidden;
  isolation: isolate;
}

/* Animated background pattern */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(143, 188, 143, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(95, 138, 139, 0.08) 0%,
      transparent 50%
    );
  z-index: -2;
}

/* Subtle geometric pattern */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      30deg,
      transparent 40%,
      rgba(255, 255, 255, 0.02) 40%,
      rgba(255, 255, 255, 0.02) 60%,
      transparent 60%
    ),
    linear-gradient(
      -30deg,
      transparent 40%,
      rgba(255, 255, 255, 0.02) 40%,
      rgba(255, 255, 255, 0.02) 60%,
      transparent 60%
    );
  background-size: 60px 60px;
  opacity: 0.3;
  z-index: -1;
  animation: subtle-move 20s ease-in-out infinite;
}

@keyframes subtle-move {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-10px, -10px);
  }
  50% {
    transform: translate(10px, -5px);
  }
  75% {
    transform: translate(-5px, 10px);
  }
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

/* Content Section */
.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: transform 0.2s ease;
}

.hero-badge:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(143, 188, 143, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  padding-top: 1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  font-weight: 400;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn--primary {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.85)
  );
  color: var(--primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0.95)
  );
}

.btn--outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn--outline:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Statistics/Badges */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  max-width: 400px;
}

.hero-stat {
  text-align: left;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
  color: rgba(143, 188, 143, 1);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  line-height: 1.3;
}

/* Visual Element */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  position: relative;
  max-width: 100%;
  animation: hero-float 6s ease-in-out infinite;
}

.hero-image-container::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: linear-gradient(
    135deg,
    rgba(143, 188, 143, 0.3) 0%,
    rgba(95, 138, 139, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  border-radius: 20px;
  filter: blur(20px);
  z-index: -1;
  animation: hero-glow 4s ease-in-out infinite alternate;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.02);
}

/* Floating elements */
.hero-decoration {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(143, 188, 143, 0.2),
    rgba(95, 138, 139, 0.2)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-decoration:nth-child(1) {
  top: 10%;
  right: 10%;
  animation: hero-float 8s ease-in-out infinite;
}

.hero-decoration:nth-child(2) {
  bottom: 20%;
  left: 5%;
  animation: hero-float 6s ease-in-out infinite reverse;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

/* Animations */
@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateY(-5px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-1deg);
  }
}

@keyframes hero-glow {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-stats {
    justify-self: center;
  }

  .hero-decoration {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
    padding: 2rem 0;
  }

  .hero-container {
    gap: 2rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero-stat {
    padding: 0.75rem;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

/* Demo content styling */
.demo-content {
  min-height: 100vh;
  padding: 4rem 2rem;
  background: linear-gradient(180deg, var(--gray-50), var(--white));
}

.demo-section {
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
}

.demo-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.demo-section p {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================================================
   Oferta SECTION - Professional Geological Services
   ========================================================================== */
.offer {
  position: relative;
  padding: clamp(3rem, 6vw, 6rem) 1.5rem;
  background: radial-gradient(
      120% 80% at 100% 0%,
      rgba(143, 188, 143, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      120% 80% at 0% 100%,
      rgba(95, 138, 139, 0.07) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
  overflow: hidden;
  isolation: isolate;
}

.offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      30deg,
      transparent 40%,
      rgba(0, 0, 0, 0.015) 40% 60%,
      transparent 60%
    ),
    linear-gradient(
      -30deg,
      transparent 40%,
      rgba(0, 0, 0, 0.015) 40% 60%,
      transparent 60%
    );
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}

.offer-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Header */
.offer-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.offer-kicker {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(45, 80, 22, 0.08);
  border: 1px solid rgba(45, 80, 22, 0.15);
  backdrop-filter: blur(6px);
}

.offer-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin: 0.9rem 0 0.5rem;
  letter-spacing: -0.01em;
  color: var(--gray-900);
}

.offer-subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: var(--gray-600);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

/* Grid */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.offer-card {
  grid-column: span 6; /* 2 w rzędzie na desktopie */
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 16px;
  color: var(--gray-800);

  /* glassmorphism */
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);

  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease,
    border-color 0.25s ease;
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(
    120% 80% at 0% 0%,
    rgba(143, 188, 143, 0.18),
    transparent 60%
  );
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.75);
}
.offer-card:hover::after {
  opacity: 0.5;
}

/* Ikonka */
.offer-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(143, 188, 143, 0.22),
    rgba(95, 138, 139, 0.22)
  );
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  color: var(--primary);
}
.offer-icon svg {
  width: 24px;
  height: 24px;
}

/* Treść karty */
.offer-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gray-900);
  margin-top: 0.25rem;
}

.offer-card p {
  color: var(--gray-600);
}

.offer-list {
  margin: 0.25rem 0 0.25rem 1.25rem;
  color: var(--gray-700);
}
.offer-list li {
  list-style: disc;
  margin: 0.25rem 0;
}

/* Link „czytaj więcej” */
.offer-link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.offer-link::after {
  content: "→";
  transform: translateX(0);
  transition: transform 0.2s ease;
}
.offer-link:hover {
  background: rgba(45, 80, 22, 0.08);
  transform: translateY(-1px);
}
.offer-link:hover::after {
  transform: translateX(2px);
}

/* Stopka sekcji (CTA) */
.offer-footer {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}
.offer-footer .btn {
  padding: 0.9rem 1.4rem;
  border-radius: 10px;
}
.offer-footer .btn.btn--ghost {
  background: rgba(45, 80, 22, 0.06);
  color: var(--primary);
  border: 1px solid rgba(45, 80, 22, 0.18);
}
.offer-footer .btn.btn--ghost:hover {
  background: rgba(45, 80, 22, 0.1);
}

/* Responsywność */
@media (max-width: 1024px) {
  .offer-card {
    grid-column: span 6;
  } /* 2 w rzędzie */
}
@media (max-width: 768px) {
  .offer-card {
    grid-column: span 12;
  } /* 1 w rzędzie */
}

/* ==========================================================================
    FEATURES (glass + animacje)
========================================================================== */
.features {
  position: relative;
  padding: clamp(3rem, 6vw, 6rem) 1.5rem;
  background: radial-gradient(
      120% 80% at 100% 0%,
      rgba(143, 188, 143, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      120% 80% at 0% 100%,
      rgba(95, 138, 139, 0.07) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
  isolation: isolate;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      30deg,
      transparent 40%,
      rgba(0, 0, 0, 0.015) 40% 60%,
      transparent 60%
    ),
    linear-gradient(
      -30deg,
      transparent 40%,
      rgba(0, 0, 0, 0.015) 40% 60%,
      transparent 60%
    );
  background-size: 60px 60px;
  opacity: 0.35;
  pointer-events: none;
}

.features-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.features-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.features-head .kicker {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(45, 80, 22, 0.08);
  border: 1px solid rgba(45, 80, 22, 0.15);
  backdrop-filter: blur(6px);
  margin-bottom: 0.9rem;
}

.features-head h2 {
  margin: 0.9rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--gray-900);
  font-weight: 700;
}

.features-head .subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: var(--gray-600);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

/* Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* Karta feature */
.feature-card {
  grid-column: span 4;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease,
    border-color 0.3s ease;
  cursor: pointer;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(
    120% 80% at 0% 0%,
    rgba(143, 188, 143, 0.16),
    transparent 60%
  );
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

/* delikatny „połysk" */
.feature-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 60%;
  height: 180%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0)
  );
  transform: translateZ(0) rotate(12deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.6s ease;
}

.feature-card:hover {
  transform: translateY(-6px) rotateX(1deg) rotateY(-1deg);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.75);
}

.feature-card:hover::after {
  opacity: 0.5;
}

.feature-card:hover::before {
  opacity: 0.35;
  transform: translateX(140%) rotate(12deg);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: linear-gradient(
    135deg,
    rgba(143, 188, 143, 0.22),
    rgba(95, 138, 139, 0.22)
  );
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: translateZ(20px);
  margin-bottom: 0.5rem;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

/* Tytuł + opis */
.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.feature-card p {
  color: var(--gray-600);
  line-height: 1.5;
}

/* --- Animacje wejścia (reveal) --- */
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px) scale(0.98);
}

[data-reveal].is-visible {
  animation: reveal-up 0.6s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
}

[data-delay="100"].is-visible {
  animation-delay: 0.1s;
}

[data-delay="200"].is-visible {
  animation-delay: 0.2s;
}

/* Responsywność */
@media (max-width: 1024px) {
  .feature-card {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .feature-card {
    grid-column: span 12;
  }
}

/* Szacunek dla dostępności */
@media (prefers-reduced-motion: reduce) {
  .feature-card,
  [data-reveal],
  .feature-card::before {
    transition: none !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

@supports not (
  (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))
) {
  .feature-card {
    background: #fff;
  }
}

/* Dodatkowe style dla lepszego wyglądu */
.features-head {
  animation: fadeInUp 0.8s ease-out;
}

/* Hover na całej sekcji */
.features-grid:hover .feature-card:not(:hover) {
  opacity: 0.8;
  transform: scale(0.98);
}

/* ==========================================================================
    STATS SECTION
========================================================================== */
.stats {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) 1.5rem;
  background: radial-gradient(
      circle at 20% 10%,
      rgba(143, 188, 143, 0.12) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 90%,
      rgba(95, 138, 139, 0.1) 0%,
      transparent 40%
    ),
    linear-gradient(135deg, #ffffff 0%, #f8faf9 50%, #f0f4f1 100%);
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(45, 80, 22, 0.03) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(95, 138, 139, 0.03) 2px,
      transparent 2px
    );
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  opacity: 0.6;
  pointer-events: none;
}

.stats::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(143, 188, 143, 0.3),
    transparent
  );
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  justify-items: center;
}

/* Stat Card */
.stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.7)
    ),
    var(--gradient-accent);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  min-width: 200px;
}

.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 24px 24px 0 0;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
      45deg,
      transparent 48%,
      rgba(143, 188, 143, 0.1) 49%,
      rgba(143, 188, 143, 0.1) 51%,
      transparent 52%
    ),
    linear-gradient(
      -45deg,
      transparent 48%,
      rgba(95, 138, 139, 0.1) 49%,
      rgba(95, 138, 139, 0.1) 51%,
      transparent 52%
    );
  background-size: 20px 20px;
  border-radius: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.stat.animate {
  transform: translateY(0);
  opacity: 1;
}

.stat.animate::before {
  transform: scaleX(1);
}

.stat:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 0 1px rgba(143, 188, 143, 0.2);
}

.stat:hover::after {
  opacity: 0.6;
}

/* Number */
.stat-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(3rem, 6vw, 4rem);
}

.stat-num::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.stat.animate .stat-num::after {
  transform: translateX(-50%) scaleX(1);
}

/* Label */
.stat-label {
  font-size: clamp(0.9rem, 1.2vw, 0.9rem);
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.stat.animate .stat-label {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.stat-num.has-plus {
  position: relative; /* już masz */
  padding-left: 0.6em; /* zostaw trochę miejsca na plus z lewej */
}

.stat-num.has-plus::before {
  content: "+";
  position: absolute;
  left: 0; /* przy lewej krawędzi liczby */
  top: 50%;
  transform: translateY(-50%) scale(0.8) rotate(-15deg);
  font-size: 0.6em;
  background: var(--gradient-primary);
  background-clip: text; /* standard */
  -webkit-background-clip: text; /* Safari/Chrome */
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* bez 0.6s na końcu */
  color: currentColor; /* dziedziczy gradient z tekstu */
}

/* Pokaż plus przy animacji */
.stat.animate .stat-num.has-plus::before {
  opacity: 0.9;
  transform: translateY(-50%) scale(1) rotate(0deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .stat,
  .stat-num,
  .stat-label,
  .stat::before,
  .stat::after {
    transition: none !important;
    animation: none !important;
  }

  .stat {
    transform: none !important;
    opacity: 1 !important;
  }

  .stat-label {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Additional hover effects */
.stat:hover .stat-num {
  transform: scale(1.05);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stat:hover .stat-label {
  color: var(--gray-700);
  transform: translateY(-2px);
}

.stat:nth-child(1).animate {
  animation-delay: 0s;
}
.stat:nth-child(2).animate {
  animation-delay: 0.1s;
}
.stat:nth-child(3).animate {
  animation-delay: 0.2s;
}
.stat:nth-child(4).animate {
  animation-delay: 0.3s;
}

/* Fallback for older browsers */
@supports not (backdrop-filter: blur(12px)) {
  .stat {
    background: rgba(255, 255, 255, 0.95);
  }
}

/* ==========================================================================
    HIGHLIGHT SECTION
========================================================================== */
.highlight {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) 1.5rem;
  background: radial-gradient(
      ellipse 80% 50% at 20% 0%,
      rgba(143, 188, 143, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 60% 40% at 80% 100%,
      rgba(95, 138, 139, 0.06) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #ffffff 0%, #f8faf9 30%, #f0f4f1 70%, #e8f2e9 100%);
  overflow: hidden;
}

.highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      60deg,
      transparent 40%,
      rgba(143, 188, 143, 0.02) 41%,
      rgba(143, 188, 143, 0.02) 59%,
      transparent 60%
    ),
    linear-gradient(
      -60deg,
      transparent 40%,
      rgba(95, 138, 139, 0.02) 41%,
      rgba(95, 138, 139, 0.02) 59%,
      transparent 60%
    );
  background-size: 80px 80px;
  opacity: 0.7;
  pointer-events: none;
}

.highlight::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-light),
    transparent
  );
  opacity: 0.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

/* Content Column */
.content-col {
  position: relative;
}

.content-col h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.content-col h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.content-col.animate h2 {
  opacity: 1;
  transform: translateY(0);
}

.content-col.animate h2::after {
  transform: scaleX(1);
}

/* Checklist */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.checklist li {
  position: relative;
  padding-left: 3.5rem;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.6;
  color: var(--gray-700);
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--green-100) 0%, var(--green-50) 100%),
    var(--gradient-primary);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8) rotate(-12deg);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.checklist li::after {
  content: "✓";
  position: absolute;
  left: 0.5rem;
  top: 0.1em;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0;
  transform: scale(0.5) rotate(15deg);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Animation states */
.content-col.animate .checklist li:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.content-col.animate .checklist li:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.content-col.animate .checklist li:nth-child(3) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}

.content-col.animate .checklist li:nth-child(4) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}

.content-col.animate .checklist li::before {
  transform: scale(1) rotate(0deg);
  transition-delay: calc(0.3s + var(--i, 0) * 0.1s + 0.2s);
}

.content-col.animate .checklist li::after {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition-delay: calc(0.3s + var(--i, 0) * 0.1s + 0.4s);
}

.content-col.animate .checklist li:nth-child(1)::before,
.content-col.animate .checklist li:nth-child(1)::after {
  --i: 0;
}
.content-col.animate .checklist li:nth-child(2)::before,
.content-col.animate .checklist li:nth-child(2)::after {
  --i: 1;
}
.content-col.animate .checklist li:nth-child(3)::before,
.content-col.animate .checklist li:nth-child(3)::after {
  --i: 2;
}
.content-col.animate .checklist li:nth-child(4)::before,
.content-col.animate .checklist li:nth-child(4)::after {
  --i: 3;
}

/* Hover effects */
.checklist li:hover {
  color: var(--gray-900);
  transform: translateX(4px);
}

.checklist li:hover::before {
  transform: scale(1.1) rotate(3deg);
  box-shadow: var(--shadow-strong), var(--shadow-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Visual Column */
.visual-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(30px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.visual-col.animate {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.visual-element {
  position: relative;
  width: clamp(300px, 40vw, 500px);
  height: clamp(200px, 25vw, 320px);
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.7)
    ),
    var(--gradient-accent);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.visual-element::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(143, 188, 143, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(95, 138, 139, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.visual-element::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.1;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.2;
  }
}

.visual-icon {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  color: var(--primary);
  opacity: 0;
  transform: scale(0.8) rotate(-15deg);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.8s;
}

.visual-col.animate .visual-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Floating elements */
.floating-element {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.3;
}

.floating-element:nth-child(1) {
  top: 20%;
  left: 20%;
  animation: float 4s ease-in-out infinite;
}

.floating-element:nth-child(2) {
  top: 60%;
  right: 25%;
  animation: float 4s ease-in-out infinite 1s;
}

.floating-element:nth-child(3) {
  bottom: 30%;
  left: 30%;
  animation: float 4s ease-in-out infinite 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-8px) rotate(120deg);
  }
  66% {
    transform: translateY(4px) rotate(240deg);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-2 {
    gap: clamp(2rem, 4vw, 3rem);
  }
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .visual-col {
    order: -1;
  }

  .checklist li {
    padding-left: 3rem;
  }

  .checklist li::before,
  .checklist li::after {
    width: 1.5rem;
    height: 1.5rem;
    left: 0.25rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .content-col h2,
  .checklist li,
  .visual-col {
    opacity: 1 !important;
    transform: none !important;
  }

  .checklist li::before,
  .checklist li::after {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Fallback for older browsers */
@supports not (backdrop-filter: blur(12px)) {
  .visual-element {
    background: rgba(255, 255, 255, 0.95);
  }
}

/*==========================================================================
  MAP SECTION
==========================================================================*/
.map-section {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: radial-gradient(
      ellipse 70% 40% at 30% 0%,
      rgba(143, 188, 143, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 50% 30% at 70% 100%,
      rgba(95, 138, 139, 0.04) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8faf9 50%, #f0f4f1 100%);
  overflow: hidden;
}

.map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(143, 188, 143, 0.02) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(95, 138, 139, 0.02) 1px,
      transparent 1px
    );
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  opacity: 0.8;
  pointer-events: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Section Header */
.map-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-header.animate {
  opacity: 1;
  transform: translateY(0);
}

.map-header .kicker {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(45, 80, 22, 0.08);
  border: 1px solid rgba(45, 80, 22, 0.15);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  backdrop-filter: blur(6px);
}

.map-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.map-header p {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Main Grid */
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
}

/* Contact Info Column */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.contact-info.animate {
  opacity: 1;
  transform: translateX(0);
}

.contact-card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.7)
    ),
    var(--gradient-accent);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 20px 20px 0 0;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info.animate .contact-card::before {
  transform: scaleX(1);
  transition-delay: 0.4s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong), var(--shadow-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-info.animate .contact-icon {
  transform: scale(1);
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-details h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-details a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-details a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* Map Column */
.map-container {
  position: relative;
  opacity: 0;
  transform: translateX(30px) scale(0.98);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.map-container.animate {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: clamp(400px, 50vw, 500px);
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.7)
    ),
    var(--gradient-accent);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.15), var(--shadow-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.map-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 20px 20px 0 0;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.map-container.animate .map-wrapper::before {
  transform: scaleX(1);
  transition-delay: 0.6s;
}

/* Interactive Map Placeholder */
.map-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 40% 30%,
      rgba(143, 188, 143, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(95, 138, 139, 0.12) 0%,
      transparent 40%
    ),
    linear-gradient(135deg, #f8faf9 0%, #f0f4f1 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      45deg,
      transparent 30%,
      rgba(143, 188, 143, 0.03) 30% 70%,
      transparent 70%
    ),
    linear-gradient(
      -45deg,
      transparent 30%,
      rgba(95, 138, 139, 0.03) 30% 70%,
      transparent 70%
    );
  background-size: 30px 30px;
  opacity: 0.6;
}

.map-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-strong);
  animation: pulse-map 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes pulse-map {
  0%,
  100% {
    transform: scale(1);
    box-shadow: var(--shadow-strong), 0 0 0 0 rgba(143, 188, 143, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: var(--shadow-strong), 0 0 0 20px rgba(143, 188, 143, 0);
  }
}

.map-icon svg {
  width: 2rem;
  height: 2rem;
}

.map-text {
  text-align: center;
  z-index: 2;
}

.map-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.map-text p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* Floating Map Elements */
.map-float {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary-light);
  border-radius: 50%;
  opacity: 0.4;
}

.map-float:nth-child(1) {
  top: 20%;
  left: 25%;
  animation: float-1 5s ease-in-out infinite;
}

.map-float:nth-child(2) {
  top: 60%;
  right: 30%;
  animation: float-2 4s ease-in-out infinite 1s;
}

.map-float:nth-child(3) {
  bottom: 25%;
  left: 40%;
  animation: float-3 6s ease-in-out infinite 2s;
}

@keyframes float-1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(10px, -8px);
  }
  66% {
    transform: translate(-5px, 6px);
  }
}

@keyframes float-2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-8px, -10px);
  }
}

@keyframes float-3 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(6px, -4px);
  }
  75% {
    transform: translate(-4px, 8px);
  }
}

/* CTA Button */
.map-cta {
  margin-top: 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
}

.map-cta.animate {
  opacity: 1;
  transform: translateY(0);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong), var(--shadow-glow);
}

.cta-button:hover::before {
  opacity: 1;
}

.cta-button svg {
  width: 1.125rem;
  height: 1.125rem;
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .map-grid {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

@media (max-width: 768px) {
  .map-grid {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .map-wrapper {
    height: clamp(300px, 40vw, 400px);
  }

  .contact-info {
    order: 1;
  }

  .map-container {
    order: 0;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .map-header,
  .contact-info,
  .map-container,
  .map-cta {
    opacity: 1 !important;
    transform: none !important;
  }

  .contact-icon {
    transform: none !important;
  }
}

/* Fallback for older browsers */
@supports not (backdrop-filter: blur(12px)) {
  .contact-card,
  .map-wrapper {
    background: rgba(255, 255, 255, 0.95);
  }
}

.cta-section {
  background: linear-gradient(
    135deg,
    rgba(95, 138, 139, 0.1) 0%,
    rgba(143, 188, 143, 0.1) 100%
  );
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  margin: 2rem 0;
  border-radius: 16px;
  text-align: center;
}
.cta-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.cta-section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--green-800);
  margin: 0;
}
.cta-section__subtitle {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--gray-700);
  margin: 0;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-primary);
  color: #fff;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 600;
  padding: 0.75em 1.75em;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-button__icon {
  width: 1.25em;
  height: 1.25em;
  margin-left: 0.5em;
  transition: transform 0.2s ease;
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}
.cta-button:hover .cta-button__icon {
  transform: translateX(3px);
}
@media (min-width: 768px) {
  .cta-section__inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .cta-section__content {
    text-align: left;
    max-width: 60%;
  }
}

/*==========================================================================
  FOOTER SECTION
==========================================================================*/
.footer-section {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: var(--gray-100);
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(34, 197, 94, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(34, 197, 94, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 60% 40%,
      rgba(59, 130, 246, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col {
  position: relative;
}

.footer-brand-col {
  grid-column: span 1;
}

.footer-brand {
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--green-400), var(--green-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.footer-desc {
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.footer-col h4 {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--green-400), var(--green-600));
  border-radius: 1px;
}

.footer-contact-list,
.footer-nav {
  list-style: none;
}

.footer-contact-list li,
.footer-nav li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 0.5rem;
  position: relative;
}

.footer-contact-list li:hover,
.footer-nav li:hover {
  background: rgba(34, 197, 94, 0.05);
  transform: translateX(4px);
}

.footer-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  fill: var(--green-400);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer-contact-list li:hover .footer-icon {
  fill: var(--green-300);
  transform: scale(1.1);
}

.footer-nav a {
  color: var(--gray-300);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-nav li:hover a {
  color: var(--green-300);
}

.footer-hours-info {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.footer-hours-info h5 {
  color: var(--green-400);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.footer-hours-info p {
  color: var(--gray-200);
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--green-400);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--gray-400);
}

.newsletter-form button {
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.newsletter-form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.newsletter-form button:hover::before {
  left: 100%;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

.social-link:hover::before {
  opacity: 1;
}

.social-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--gray-300);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.social-link:hover .social-icon {
  fill: white;
  transform: scale(1.1);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  margin: 2rem 0;
}

.footer-bottom {
  text-align: center;
  padding: 2rem 0;
  color: var(--gray-400);
  font-size: 0.875rem;
  position: relative;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-600), var(--green-400));
  border-radius: 1px;
}

.footer-bottom p {
  margin-top: 1rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    padding: 1rem;
  }

  .footer-social {
    justify-content: center;
  }
}

/* Animacja fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}
.fade-in:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
