/* ============================================================
   CONAT — Dawid Siedlarek | Metalworking Company
   Mobile-first responsive stylesheet
   ============================================================ */

/* --- Google Fonts import --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --clr-bg:          #0d0d0f;
  --clr-bg-alt:      #141418;
  --clr-surface:     #1a1a22;
  --clr-surface-2:   #22222e;
  --clr-border:      #2a2a38;
  --clr-text:        #c8c8d0;
  --clr-text-muted:  #6b6b7b;
  --clr-heading:     #eaeaf0;
  --clr-accent:      #f59e0b;
  --clr-accent-hot:  #ef4444;
  --clr-accent-glow: rgba(245, 158, 11, 0.15);
  --clr-steel:       #4a5568;
  --font-display:    'Bebas Neue', sans-serif;
  --font-body:       'Barlow', sans-serif;
  --font-condensed:  'Barlow Condensed', sans-serif;
  --radius:          6px;
  --transition:      0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width:       1200px;
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--clr-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #fbbf24;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--clr-heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.25em;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--clr-accent);
  margin-top: 10px;
  border-radius: 2px;
}

.section-title--center {
  text-align: center;
}

.section-title--center::after {
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-family: var(--font-condensed);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

section {
  padding: 60px 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--clr-heading);
  letter-spacing: 0.08em;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.navbar__logo-img {
  height: 40px;
  width: auto;
  filter: brightness(1.1);
  transition: filter var(--transition);
}

.navbar__logo:hover .navbar__logo-img {
  filter: brightness(1.3);
}

.navbar__logo span {
  color: var(--clr-accent);
}

.navbar__links {
  display: none;
  list-style: none;
  gap: 32px;
}

.navbar__links a {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-text);
  position: relative;
  padding-bottom: 4px;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: width var(--transition);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--clr-accent);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

/* Hamburger */
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.navbar__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-heading);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.navbar__mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 13, 15, 0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.navbar__mobile-menu.active {
  display: flex;
}

.navbar__mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--clr-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.navbar__mobile-menu a:hover {
  color: var(--clr-accent);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(13, 13, 15, 0.55) 0%, rgba(13, 13, 15, 0.85) 70%),
    linear-gradient(180deg, rgba(13, 13, 15, 0.3) 0%, rgba(13, 13, 15, 0.95) 100%);
  z-index: 1;
}

/* Grid overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42, 42, 56, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 42, 56, 0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clr-accent);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
  background: var(--clr-accent-glow);
}

.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--clr-accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  color: var(--clr-heading);
  line-height: 0.95;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.hero__title span {
  color: var(--clr-accent);
}

.hero__subtitle {
  font-family: var(--font-condensed);
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 300;
  color: var(--clr-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-bg);
  background: var(--clr-accent);
  padding: 16px 40px;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 2px solid var(--clr-accent);
}

.hero__cta:hover {
  background: transparent;
  color: var(--clr-accent);
}

.hero__cta svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.hero__cta:hover svg {
  transform: translateX(4px);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}

.hero__scroll-indicator span {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--clr-text-muted);
}

.hero__scroll-indicator .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--clr-accent), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   SERVICES BAR
   ============================================================ */
.services-bar {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 30px 0;
}

.services-bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: center;
}

.services-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px;
}

.services-bar__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--clr-accent-glow);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: var(--clr-accent);
}

.services-bar__icon svg {
  width: 24px;
  height: 24px;
}

.services-bar__label {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-heading);
}

/* ============================================================
   O NAS (ABOUT)
   ============================================================ */
.about {
  background: var(--clr-bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about__text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.about__stat {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.about__stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--clr-accent);
  line-height: 1;
}

.about__stat-label {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.about__image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about__image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  pointer-events: none;
}

.about__image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--clr-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--clr-text-muted);
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px dashed var(--clr-border);
  border-radius: var(--radius);
}

.about__image-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

/* ============================================================
   REALIZACJE (GALLERY)
   ============================================================ */
.gallery {
  background: var(--clr-bg-alt);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  transition: all var(--transition);
}

.gallery__item:hover {
  border-color: var(--clr-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.1);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 15, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-title {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery__item-desc {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-top: 4px;
}

.gallery__item-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(245, 158, 11, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition);
}

.gallery__item:hover .gallery__item-zoom {
  opacity: 1;
  transform: scale(1);
}

.gallery__item-zoom svg {
  width: 18px;
  height: 18px;
  color: var(--clr-bg);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: zoom-out;
}

.lightbox.active {
  display: flex;
}

.lightbox__img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  cursor: default;
  animation: lightbox-in 0.3s ease-out;
}

@keyframes lightbox-in {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.lightbox__close:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
}

.lightbox__close svg {
  width: 20px;
  height: 20px;
  color: white;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  color: white;
}

.lightbox__nav:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
}

.lightbox__nav svg {
  width: 20px;
  height: 20px;
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

.lightbox__caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-condensed);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  max-width: 80%;
}

/* ============================================================
   ZAUFALI NAM (TRUSTED BY)
   ============================================================ */
.trusted {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.trusted__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.trusted__logo {
  flex: 0 0 auto;
  width: 140px;
  opacity: 0.4;
  filter: grayscale(1);
  transition: all var(--transition);
  padding: 12px;
}

.trusted__logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ============================================================
   KONTAKT (CONTACT)
   ============================================================ */
.contact {
  background: var(--clr-bg-alt);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 32px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color var(--transition);
}

.contact__card:hover {
  border-color: var(--clr-accent);
}

.contact__card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-accent-glow);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 50%;
  color: var(--clr-accent);
}

.contact__card-icon svg {
  width: 20px;
  height: 20px;
}

.contact__card-label {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-text-muted);
  margin-bottom: 4px;
}

.contact__card-value {
  font-size: 1rem;
  color: var(--clr-heading);
}

.contact__card-value a {
  color: var(--clr-heading);
}

.contact__card-value a:hover {
  color: var(--clr-accent);
}

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  min-height: 300px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  filter: grayscale(0.7) brightness(0.7) contrast(1.2);
  transition: filter var(--transition);
}

.contact__map:hover iframe {
  filter: grayscale(0.3) brightness(0.8) contrast(1.1);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: 24px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer__copy {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

.footer__copy strong {
  color: var(--clr-heading);
  font-weight: 600;
}

.footer__credit {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

.footer__credit a {
  color: var(--clr-text-muted);
  border-bottom: 1px solid rgba(107, 107, 123, 0.3);
  transition: all var(--transition);
}

.footer__credit a:hover {
  color: var(--clr-accent);
  border-bottom-color: var(--clr-accent);
}

/* ============================================================
   ANIMATIONS ON SCROLL
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  animation: aosRevealFallback 0s 1.5s forwards;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

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

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (min-width: 640px) {
  .services-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trusted__logo {
    width: 160px;
  }
}

/* ============================================================
   RESPONSIVE — DESKTOP
   ============================================================ */
@media (min-width: 960px) {
  .container {
    padding: 0 40px;
  }

  section {
    padding: 100px 0;
  }

  /* Nav */
  .navbar__hamburger {
    display: none;
  }

  .navbar__links {
    display: flex;
  }

  /* Services */
  .services-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* About */
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact__map {
    min-height: 400px;
  }

  .contact__map iframe {
    min-height: 400px;
  }

  /* Footer */
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1200px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   v2.0.0 — LIGHT THEME
   ============================================================ */
[data-theme="light"] {
  --clr-bg:          #f5f5f7;
  --clr-bg-alt:      #eeeef0;
  --clr-surface:     #ffffff;
  --clr-surface-2:   #f0f0f4;
  --clr-border:      #d4d4dc;
  --clr-text:        #2a2a3a;
  --clr-text-muted:  #555568;
  --clr-heading:     #111122;
  --clr-accent:      #d97706;
  --clr-accent-hot:  #dc2626;
  --clr-accent-glow: rgba(217, 119, 6, 0.12);
  --clr-steel:       #6b7280;
}

/* --- NAVBAR --- */
[data-theme="light"] .navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

[data-theme="light"] .navbar__logo {
  color: #111122;
}

[data-theme="light"] .navbar__links a {
  color: #2a2a3a;
}

[data-theme="light"] .navbar__links a:hover,
[data-theme="light"] .navbar__links a.active {
  color: #d97706;
}

[data-theme="light"] .navbar__hamburger span {
  background: #2a2a3a;
}

[data-theme="light"] .navbar__mobile-menu {
  background: rgba(255, 255, 255, 0.98);
}

[data-theme="light"] .navbar__mobile-menu a {
  color: #2a2a3a;
}

/* --- HERO GRID — hide on light theme --- */
[data-theme="light"] .hero__grid {
  display: none;
}

/* --- HERO OVERLAY — stronger for readability --- */
[data-theme="light"] .hero__bg-overlay {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255,255,255,0.45) 0%, rgba(245,245,247,0.8) 60%),
    linear-gradient(180deg, rgba(245,245,247,0.3) 0%, rgba(245,245,247,0.95) 100%);
}

/* --- HERO TEXT --- */
[data-theme="light"] .hero__title {
  color: #111122;
  text-shadow: 0 1px 8px rgba(255,255,255,0.6);
}

[data-theme="light"] .hero__subtitle {
  color: #3a3a4a;
  text-shadow: 0 1px 4px rgba(255,255,255,0.5);
}

[data-theme="light"] .hero__badge {
  background: rgba(255,255,255,0.7);
  border-color: rgba(217, 119, 6, 0.4);
  color: #b45309;
}

[data-theme="light"] .hero__scroll-indicator {
  color: #555568;
}

/* --- SERVICES BAR --- */
[data-theme="light"] .services-bar {
  background: #ffffff;
  border-color: var(--clr-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

[data-theme="light"] .services-bar__icon {
  color: #d97706;
}

/* --- ABOUT / SECTIONS --- */
[data-theme="light"] .about {
  background: #f5f5f7;
}

[data-theme="light"] .about__image-wrapper img {
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

[data-theme="light"] .about__stat {
  background: #ffffff;
  border-color: var(--clr-border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

/* --- GALLERY --- */
[data-theme="light"] .gallery__item-overlay {
  background: linear-gradient(transparent 30%, rgba(255,255,255,0.95) 100%);
}

[data-theme="light"] .gallery__item-overlay .gallery__item-title,
[data-theme="light"] .gallery__item-overlay .gallery__item-desc {
  color: #111122;
}

[data-theme="light"] .gallery__item {
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* --- TRUSTED/PARTNERS --- */
[data-theme="light"] .trusted {
  background: #eeeef0;
}

[data-theme="light"] .trusted__logo {
  filter: none;
  opacity: 0.7;
}

/* --- CONTACT --- */
[data-theme="light"] .contact__card {
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

[data-theme="light"] .contact__card-icon svg {
  stroke: #d97706;
}

/* --- FOOTER (keep dark) --- */
[data-theme="light"] .footer {
  background: #1a1a2e;
  color: #c8c8d0;
}
[data-theme="light"] .footer a { color: #f59e0b; }

/* --- SCROLL TOP + THEME TOGGLE --- */
[data-theme="light"] .scroll-top {
  background: rgba(255,255,255,0.9);
  border: 1px solid #d4d4dc;
  color: #2a2a3a;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

[data-theme="light"] .scroll-top:hover {
  background: #d97706;
  color: #ffffff;
  border-color: #d97706;
}

[data-theme="light"] .theme-toggle {
  background: rgba(255,255,255,0.9);
  border: 1px solid #d4d4dc;
  color: #2a2a3a;
}

/* --- CONSENT BANNER --- */
[data-theme="light"] .consent-banner {
  background: #ffffff;
  border-top: 1px solid #d4d4dc;
  color: #2a2a3a;
}

/* --- LIGHTBOX --- */
[data-theme="light"] .lightbox {
  background: rgba(255,255,255,0.95);
}

/* ============================================================
   v2.0.0 — SCROLL TO TOP BUTTON
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  background: var(--clr-surface);
  color: var(--clr-accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--clr-accent);
  color: #0d0d0f;
  border-color: var(--clr-accent);
}

/* ============================================================
   v2.0.0 — THEME TOGGLE BUTTON
   ============================================================ */
.theme-toggle {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  background: var(--clr-surface);
  color: var(--clr-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  transition: opacity 0.2s ease;
}

.theme-toggle__moon { display: none; }

[data-theme="light"] .theme-toggle__sun { display: none; }
[data-theme="light"] .theme-toggle__moon { display: block; }

.theme-toggle:hover {
  background: var(--clr-accent);
  color: #0d0d0f;
  border-color: var(--clr-accent);
}

/* ============================================================
   v2.0.0 — CONSENT BANNER (RODO)
   ============================================================ */
.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.consent-banner.visible {
  transform: translateY(0);
}

.consent-banner.hidden {
  transform: translateY(100%);
}

.consent-banner__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.consent-banner__text {
  flex: 1;
  min-width: 280px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--clr-text-muted);
}

.consent-banner__text a {
  color: var(--clr-accent);
  text-decoration: underline;
}

.consent-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.consent-banner__btn {
  padding: 10px 22px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.consent-banner__btn--accept {
  background: var(--clr-accent);
  color: #0d0d0f;
}

.consent-banner__btn--accept:hover {
  background: #fbbf24;
}

.consent-banner__btn--reject {
  background: transparent;
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
}

.consent-banner__btn--reject:hover {
  border-color: var(--clr-text-muted);
  color: var(--clr-text);
}

@media (max-width: 640px) {
  .consent-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .consent-banner__actions {
    width: 100%;
    justify-content: center;
  }
  .scroll-top { bottom: 16px; right: 16px; width: 42px; height: 42px; }
  .theme-toggle { bottom: 66px; right: 16px; width: 38px; height: 38px; }
}
