@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --surface: #161616;
  --surface-2: #1c1c1c;
  --border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #9ca3af;
  --accent: #c8f31d;
  --accent-hover: #d4ff33;
  --accent-text: #0a0a0a;
  --radius: 16px;
  --radius-lg: 24px;
  --max: 1240px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

/* ── Top bar ── */
.top-bar {
  background: #050505;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  gap: 16px;
}

.top-bar a {
  color: var(--accent);
  font-weight: 600;
}

.top-bar a:hover { color: var(--accent-hover); }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: auto;
  max-height: 88px;
  width: auto;
  max-width: 200px;
  display: block;
}

.main-nav {
  display: flex;
  gap: 4px;
}

.main-nav a {
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 999px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.25rem;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.header-cta {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 10px 20px;
  line-height: 1.25;
  font-size: 0.9rem;
}

/* Skryť duplicitný odkaz v menu — CTA tlačidlo vpravo stačí */
@media (min-width: 769px) {
  .main-nav a[href="#nahlasit-poruchu"] { display: none; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-accent {
  background: var(--accent);
  color: var(--accent-text);
  box-shadow: 0 8px 32px rgba(200, 243, 29, 0.25);
}

.btn-accent:hover {
  background: var(--accent-hover);
  box-shadow: 0 12px 40px rgba(200, 243, 29, 0.35);
}

.btn-arrow::after {
  content: '→';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  font-size: 0.9rem;
}

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.link-arrow::after { content: '→'; }

.link-arrow:hover { color: var(--accent-hover); }

/* ── Section tags (Tekmino brackets) ── */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}

.section-top { margin-bottom: 48px; }

.section-top-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.section-top h2,
.about-content h2,
.contact-info h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0;
}

.section { padding: 96px 0; }
.section-dark { background: var(--bg-2); }

/* ── Hero ── */
.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(200, 243, 29, 0.04) 0%, transparent 50%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 80px,
      rgba(255, 255, 255, 0.015) 80px,
      rgba(255, 255, 255, 0.015) 81px
    );
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 48ch;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.hero-phone:hover { color: var(--accent); }

.phone-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.hero-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-checks li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 800;
}

.hero-sms-support {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(200, 243, 29, 0.08);
  border: 1px solid rgba(200, 243, 29, 0.22);
  max-width: 34rem;
}

.hero-sms-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(200, 243, 29, 0.14);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-sms-support strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.hero-sms-support span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
}

.hero-visual > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 40%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 55%, rgba(10, 10, 10, 0.35) 100%);
  pointer-events: none;
}

.float-card {
  position: absolute;
  background: rgba(22, 22, 22, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.float-card-trust {
  top: 24px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 220px;
}

.float-card-trust strong { display: block; font-size: 0.9rem; }
.float-card-trust span { font-size: 0.78rem; color: var(--muted); }
.float-icon { font-size: 1.5rem; }

.float-card-rating {
  bottom: 32px;
  right: -12px;
  text-align: center;
  min-width: 140px;
}

.float-card-rating strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.stars { color: #fbbf24; font-size: 0.85rem; letter-spacing: 2px; }
.rating-text { display: block; font-size: 0.75rem; color: var(--muted); margin-top: 4px; }

.scroll-hint {
  position: absolute;
  left: 24px;
  bottom: 40px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-hint:hover { color: var(--accent); }

/* ── Marquee ── */
.marquee-section {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 20px;
  font-weight: 600;
}

.marquee { overflow: hidden; }

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Why grid ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s;
}

.why-card:hover {
  border-color: rgba(200, 243, 29, 0.3);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(200, 243, 29, 0.1);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.why-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
}

.why-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── About ── */
.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 400px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
}

.exp-badge {
  text-align: center;
  z-index: 1;
}

.exp-num {
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}

.exp-plus {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
}

.exp-label {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  color: var(--muted);
}

.about-logo-watermark {
  position: absolute;
  opacity: 0.08;
  max-width: 70%;
}

.about-content p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 20px 0 32px;
}

.about-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 36px;
}

.about-stat strong {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
}

.about-stat span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.about-stat p {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ── Services grid (Tekmino cards) ── */
.section-services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.services-intro {
  align-self: start;
  padding: 8px 24px 0 0;
}

.services-intro h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
}

.services-intro .btn {
  margin-top: 4px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 28px 28px 52px;
  min-height: 100%;
  transition: border-color 0.25s, transform 0.25s;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 44px;
  background: var(--bg);
  border-bottom-left-radius: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-card:hover {
  border-color: rgba(200, 243, 29, 0.2);
  transform: translateY(-4px);
}

.service-card-num {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 2;
  font-size: 0.88rem;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.02em;
}

.service-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(200, 243, 29, 0.35);
  background: rgba(200, 243, 29, 0.06);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
}

.service-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  flex: 1;
}

.service-card-features {
  margin-top: 20px;
  padding: 16px 18px;
  background: #0a0a0a;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.service-card-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: #9ca3af;
  line-height: 1.45;
  margin-bottom: 10px;
}

.service-card-features li:last-child {
  margin-bottom: 0;
}

.service-card-features li::before {
  content: '✓';
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text);
  margin-top: 2px;
}

.service-card-link {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 14px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  background: #1a1a1a;
  border-top-left-radius: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s, background 0.2s;
}

.service-card-link:hover {
  color: var(--accent);
  background: #222;
}

/* ── Process ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.process-card:hover::before { transform: scaleX(1); }

.process-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(200, 243, 29, 0.15);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.process-card h3 {
  margin: 0 0 10px;
  font-weight: 800;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-group {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
}

.gallery-group:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 243, 29, 0.25);
}

.gallery-group-cover {
  position: relative;
  background: #111;
}

.gallery-cover-open {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-cover-open img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.gallery-group:hover .gallery-cover-open img { transform: scale(1.03); }

.gallery-cover-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.gallery-cover-nav:hover:not(:disabled) {
  background: rgba(200, 243, 29, 0.92);
  color: #111;
  border-color: transparent;
}

.gallery-cover-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.gallery-cover-prev { left: 10px; }
.gallery-cover-next { right: 10px; }

.gallery-cover-counter {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  z-index: 2;
}

.gallery-caption { padding: 16px 18px; }
.gallery-caption strong { display: block; margin-bottom: 4px; font-weight: 700; }
.gallery-caption span { color: var(--muted); font-size: 0.88rem; }

.gallery-item {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: inherit;
}

.gallery-item figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
}

.gallery-item:hover figure {
  transform: translateY(-6px);
  border-color: rgba(200, 243, 29, 0.25);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-empty {
  grid-column: 1 / -1;
  padding: 48px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: rgba(200, 243, 29, 0.1);
  color: var(--accent);
  border-color: rgba(200, 243, 29, 0.35);
}

/* ── Contact ── */
.section-contact {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-info > p {
  color: var(--muted);
  margin: 16px 0 32px;
}

.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.info-block h4 {
  margin: 0 0 8px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.info-block p {
  margin: 0 0 4px;
  color: var(--muted);
}

.info-block a:hover { color: var(--accent); }

.info-block-sms .sms-note {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.sms-option {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px !important;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(200, 243, 29, 0.06);
  border: 1px solid rgba(200, 243, 29, 0.16);
}

.sms-option input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--accent);
}

.sms-option > span {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
}

.contact-form {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}

.contact-form h3 {
  margin: 0 0 28px;
  font-size: 1.35rem;
  font-weight: 800;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.section-service-request {
  background: linear-gradient(180deg, rgba(200, 243, 29, 0.04) 0%, transparent 100%);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-field span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(200, 243, 29, 0.5);
  box-shadow: 0 0 0 3px rgba(200, 243, 29, 0.1);
}

.form-field textarea { min-height: 130px; resize: vertical; }

.form-status { margin-top: 12px; font-weight: 600; font-size: 0.92rem; }
.form-status.ok { color: var(--accent); }
.form-status.error { color: #f87171; }

/* ── Footer ── */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo {
  height: auto;
  max-height: 72px;
  width: auto;
  max-width: 180px;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p { color: var(--muted); font-size: 0.92rem; margin: 0; }

.footer-col h4 {
  margin: 0 0 16px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-bottom a:hover { color: var(--accent); }

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
}

.lightbox.open { display: flex; }

.lightbox-inner { max-width: min(1000px, 100%); width: 100%; position: relative; z-index: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.lightbox-nav:hover:not(:disabled) {
  background: rgba(200, 243, 29, 0.92);
  color: #111;
  border-color: transparent;
}

.lightbox-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-inner img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-caption { text-align: center; color: var(--muted); margin-top: 16px; }

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Page hero (galeria) ── */
.page-hero {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin: 0 0 12px;
}

.page-hero p { color: var(--muted); margin: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-intro { grid-column: 1 / -1; padding-right: 0; }
}

@media (max-width: 768px) {
  .hero-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual { order: -1; }
  .float-card-trust { left: 8px; top: 12px; }
  .float-card-rating { right: 8px; bottom: 12px; }
  .scroll-hint { display: none; }

  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }

  .nav-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }

  .main-nav.open { display: flex; }
  .header-cta { display: none; }
  .header-inner { position: relative; flex-wrap: wrap; }
  .section { padding: 64px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
