/* ========================================
   ZAFERSA - HOME PAGE STYLES v3
   Corporate Light Edition (SAP / Bosch)
   ======================================== */

/* ---- HERO (split: light text / deep imagery accent) ---- */
.hero {
  position: relative;
  min-height: calc(100vh - 40px);
  padding-top: var(--nav-h);
  display: flex;
  align-items: stretch;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(245,163,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 10% 90%, rgba(245,163,0,0.04) 0%, transparent 70%),
    var(--bg);
  overflow: hidden;
}

/* Vertical accent stripe — vanguard editorial detail */
.hero::before {
  content: '';
  position: absolute;
  top: var(--nav-h); bottom: 0;
  left: 56px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(245,163,0,0.45) 30%, rgba(245,163,0,0.45) 70%, transparent);
  z-index: 1;
  pointer-events: none;
}
.hero::after {
  content: '01 / ZAFERSA';
  position: absolute;
  top: calc(var(--nav-h) + 18px);
  left: 64px;
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--yellow);
  z-index: 2;
  pointer-events: none;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hero-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  z-index: 0;
  background: var(--bg-deep);
  overflow: hidden;
}

.hero-bg img.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: heroImgIn 1.8s var(--ease-out) both;
}

@keyframes heroImgIn {
  from { transform: scale(1.12); opacity: 0; filter: blur(8px); }
  to { transform: scale(1); opacity: 1; filter: blur(0); }
}

/* Cinematic vignette + tint */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 35%, rgba(0,0,0,0.15) 100%),
    linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle technical grid overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent, transparent 80px,
      rgba(255,255,255,0.035) 80px, rgba(255,255,255,0.035) 81px
    ),
    repeating-linear-gradient(
      90deg,
      transparent, transparent 80px,
      rgba(255,255,255,0.035) 80px, rgba(255,255,255,0.035) 81px
    );
}

.hero-bg-pattern {
  display: none;
}

/* ---- 3D Wireframe Crane (Three.js) ---- */
.hero-3d {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.hero-3d canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  animation: hero3dFadeIn 1.6s var(--ease-out) 0.4s forwards;
}
@keyframes hero3dFadeIn {
  to { opacity: 1; }
}
/* Static photo: heavily desaturated and dimmed in dark theme */
.hero-bg img.hero-img {
  filter: saturate(0.4) brightness(0.55) contrast(1.1);
}
.hero-bg[data-3d-ready] .hero-img {
  opacity: 0.12;
  filter: blur(3px) saturate(0.2) brightness(0.4);
  transition: opacity 1s var(--ease-out), filter 1s var(--ease-out);
}
@media (max-width: 900px) {
  .hero-3d { display: none; }
  .hero-bg[data-3d-ready] .hero-img { opacity: 1; filter: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-3d { display: none; }
}

/* hide stock overlays — we don't need them on the light hero */
.hero-overlay,
.hero-overlay-bottom { display: none; }

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 56px;
  padding-top: 80px;
  padding-bottom: 100px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 80px;
}

.hero-main {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  border-radius: 0;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.1s forwards;
}

.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,163,0,0.18);
  animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {
  0%,100% { opacity:1; }
  50% { opacity:0.5; }
}

.hero-badge span {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero-title {
  font-family: var(--font-condensed);
  font-size: clamp(44px, 6.5vw, 92px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.25s forwards;
  text-transform: none;
}

.hero-title .line-accent {
  color: var(--ink);
  font-weight: 400;
  display: block;
  position: relative;
}

.hero-title .line-accent::after {
  content: '';
  display: block;
  width: 64px; height: 4px;
  background: var(--orange);
  margin-top: 18px;
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.55s forwards;
}

/* Hero right: vertical stats — placed over the deep panel */
.hero-side-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  position: relative;
  opacity: 0;
  animation: fadeIn 0.9s var(--ease-out) 0.8s forwards;
}

.side-stat {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(4px);
}

.side-stat:first-child { border-top: 1px solid rgba(255,255,255,0.10); }
.side-stat:last-child { border-bottom: 1px solid rgba(255,255,255,0.10); }

.side-stat .num {
  font-family: var(--font-condensed);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: #FFFFFF;
  letter-spacing: -1px;
}

.side-stat .num::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--orange);
  margin-left: 8px;
  vertical-align: middle;
  margin-bottom: 6px;
}

.side-stat .lbl {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

/* Visual stat — image + indicator (Grúas 30 – 500 TON) */
.side-stat-visual {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
}

.side-stat-visual .side-stat-img {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.side-stat-visual .side-stat-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,163,0,0.18), transparent 60%);
  pointer-events: none;
}

.side-stat-visual .side-stat-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}

.side-stat-visual .side-stat-body {
  flex: 1 1 auto;
  min-width: 0;
}

.side-stat-visual .num {
  font-size: 34px;
  letter-spacing: -0.5px;
}

.side-stat-visual .num::after { display: none; }

.side-stat-visual .lbl {
  margin-top: 4px;
}

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 56px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}

.hero-scroll span {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-mute);
}

.scroll-line {
  width: 40px; height: 1px;
  background: linear-gradient(to right, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity:0.4; transform: scaleX(1); transform-origin: left; }
  50% { opacity:1; transform: scaleX(0.7); }
}

/* ---- TICKER (clean trust strip) ---- */
.ticker {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: tickerRun 36s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
}

.ticker-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 14px;
  background: var(--line-strong);
}

.ticker-item:first-child::before { display: none; }

.ticker-item svg { color: var(--orange); flex-shrink: 0; }

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

/* ---- SERVICES ---- */
.services-section {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  background: var(--bg);
  padding: 40px 32px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s var(--ease);
}

.service-card:hover {
  background: var(--bg-elev);
  z-index: 2;
  box-shadow: 0 16px 40px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,163,0,0.15);
  transform: translateY(-2px);
}
.service-card:hover::after { transform: scaleY(1); }
.service-card:hover .service-icon-wrap { background: var(--yellow); border-color: var(--yellow); }
.service-card:hover .service-icon-wrap svg { color: var(--on-yellow); }

.service-icon-wrap {
  width: 56px; height: 56px;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.35s var(--ease);
}

.service-icon-wrap svg { color: var(--ink); transition: color 0.35s; }

.service-card h3 {
  font-family: var(--font-condensed);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange-dark);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s;
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateX(0);
}

/* ---- WHY US ---- */
.why-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.why-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-condensed);
  font-size: clamp(140px, 22vw, 320px);
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 6px;
  user-select: none;
}

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

.why-visual {
  position: relative;
}

.why-img-wrap {
  aspect-ratio: 4/5;
  background: var(--bg-deep);
  border: none;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 56px -28px rgba(0,0,0,0.3);
}

.why-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 100%; height: 100%;
  border: 2px solid var(--orange);
  z-index: -1;
}

.why-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.why-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.why-img-placeholder svg { color: rgba(255,255,255,0.18); opacity: 1; }

.why-img-placeholder p {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.why-badge {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 150px; height: 150px;
  background: var(--orange);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  border: none;
  box-shadow: 0 16px 40px -16px rgba(245,163,0,0.5);
}

.why-badge .b-num {
  font-family: var(--font-condensed);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -1px;
}

.why-badge .b-lbl {
  font-family: var(--font-condensed);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.8);
  line-height: 1.3;
  margin-top: 4px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s var(--ease);
}

.why-feature:hover { padding-left: 12px; }

.why-feature-icon {
  width: 44px; height: 44px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange-dark);
  transition: all 0.3s;
}

.why-feature:hover .why-feature-icon {
  background: var(--yellow);
  color: var(--on-yellow);
  border-color: var(--yellow);
}

.why-feature-body h4 {
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 6px;
}

.why-feature-body p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ---- FLEET PREVIEW ---- */
.fleet-preview {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.fleet-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
}

.fleet-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}

.fleet-tab {
  padding: 12px 24px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-mute);
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.25s;
  margin-bottom: -1px;
}

.fleet-tab:hover { color: var(--ink); }
.fleet-tab.active {
  background: transparent;
  color: var(--ink);
  border-bottom-color: var(--orange);
}

.fleet-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.fleet-prev-card {
  background: var(--bg);
  border: none;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s var(--ease);
  text-decoration: none;
  display: block;
}

.fleet-prev-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.fleet-prev-card:hover { background: var(--bg-elev); z-index: 2; box-shadow: 0 14px 32px -16px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,163,0,0.18); transform: translateY(-2px); }
.fleet-prev-card:hover::after { transform: scaleX(1); }
.fleet-prev-card:hover .fpc-icon { color: var(--orange); }
.fleet-prev-card:hover .fpc-number { color: rgba(245,163,0,0.10); }

.fpc-number {
  font-family: var(--font-condensed);
  font-size: 68px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: 14px; right: 18px;
  transition: color 0.3s;
}

.fpc-icon {
  color: var(--ink);
  margin-bottom: 18px;
  transition: color 0.4s;
}

.fpc-name {
  font-family: var(--font-condensed);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 6px;
}

.fpc-detail {
  font-size: 13px;
  color: var(--text-mute);
  letter-spacing: 0.2px;
}

/* Single-card mode (e.g. Grúas indicator) */
.fleet-preview-grid.single { grid-template-columns: 1fr; }

.fleet-prev-card-wide {
  display: grid;
  grid-template-columns: minmax(280px, 38%) 1fr;
  padding: 0;
  min-height: 280px;
  background: var(--bg);
}

.fleet-prev-card-wide .fpc-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245,163,0,0.10), rgba(255,255,255,0.02));
  border-right: 1px solid var(--line);
}

.fleet-prev-card-wide .fpc-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(245,163,0,0.18), transparent 60%);
  pointer-events: none;
}

.fleet-prev-card-wide .fpc-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.5));
  transition: transform 0.5s var(--ease);
}

.fleet-prev-card-wide:hover .fpc-image img { transform: scale(1.04); }

.fleet-prev-card-wide .fpc-image-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: transform 0.5s var(--ease);
}

.fleet-prev-card-wide .fpc-image-icon svg {
  filter: drop-shadow(0 8px 18px rgba(245,163,0,0.3));
}

.fleet-prev-card-wide:hover .fpc-image-icon { transform: scale(1.06); }

.fleet-prev-card-wide .fpc-wide-body {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.fleet-prev-card-wide .fpc-icon {
  margin-bottom: 14px;
  color: var(--orange);
}

.fleet-prev-card-wide .fpc-name {
  font-size: 32px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.fleet-prev-card-wide .fpc-detail {
  font-size: 15px;
  margin-bottom: 22px;
}

.fleet-prev-card-wide .fpc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: border-color 0.3s, gap 0.3s var(--ease);
}

.fleet-prev-card-wide:hover .fpc-link { border-bottom-color: var(--orange); gap: 12px; }

/* ---- SHOWCASE (Equipos Destacados) ---- */
.showcase-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
  position: relative;
}

.showcase-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.showcase-head .section-tag { justify-content: center; }
.showcase-head .section-tag::before {
  display: block;
}
.showcase-head .section-desc { margin: 0 auto; }

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.showcase-card {
  position: relative;
  display: block;
  background: var(--bg-elev);
  text-decoration: none;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.showcase-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--yellow);
  z-index: 4;
  transition: width 0.5s var(--ease);
}

.showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,163,0,0.3);
  box-shadow: 0 24px 56px -20px rgba(0,0,0,0.75), 0 0 0 1px rgba(245,163,0,0.18);
}
.showcase-card:hover::before { width: 100%; }

.sc-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-deep);
}

.sc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter 0.6s var(--ease-out);
  filter: saturate(0.85) brightness(0.85) contrast(1.05);
}

.showcase-card:hover .sc-img img {
  transform: scale(1.06);
  filter: saturate(1.1) brightness(1.02) contrast(1.05);
}

.sc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}

.sc-body {
  padding: 26px 28px 30px;
  border-top: 1px solid var(--line);
  position: relative;
}

.sc-cat {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}

.sc-name {
  font-family: var(--font-condensed);
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
  line-height: 1.15;
}

.sc-desc {
  font-size: 14px;
  color: var(--text-mute);
  margin-bottom: 18px;
  line-height: 1.6;
}

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--yellow);
  transition: gap 0.3s var(--ease), color 0.3s;
}
.showcase-card:hover .sc-link { gap: 14px; color: #FFFFFF; }

@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .sc-name { font-size: 20px; }
}

/* ---- GALLERY SECTION ---- */
.gallery-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.gallery-head {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-head .section-tag { justify-content: center; }
.gallery-head .section-tag::before { display: none; }
.gallery-head .section-tag::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--orange);
}
.gallery-head .section-desc { margin: 0 auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}

.gallery-item { overflow: hidden; position: relative; cursor: pointer; background: var(--bg-mute); }
.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 1; aspect-ratio: auto; min-height: 380px; }
.gallery-item:nth-child(2) { grid-column: span 5; grid-row: span 1; min-height: 185px; }
.gallery-item:nth-child(3) { grid-column: span 5; grid-row: span 1; min-height: 185px; }
.gallery-item:nth-child(4) { grid-column: span 4; min-height: 260px; }
.gallery-item:nth-child(5) { grid-column: span 4; min-height: 260px; }
.gallery-item:nth-child(6) { grid-column: span 4; min-height: 260px; }

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  display: block;
}

.gallery-item-ph {
  width: 100%; height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-mute);
}

.gallery-item-ph svg { color: var(--text-faint); opacity: 0.5; }
.gallery-item-ph span {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-faint);
}

.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-zoom-btn {
  width: 52px; height: 52px;
  border-radius: 0;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.gallery-zoom-btn:hover { background: #FFFFFF; transform: scale(1.05); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width:90vw; max-height:90vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top:24px; right:24px;
  width:44px; height:44px; border-radius:0;
  background: var(--orange);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; color:var(--ink);
  transition: background 0.25s;
}
.lightbox-close:hover { background: #FFFFFF; }

/* ---- CTA SECTION (deep, not bright orange) ---- */
.cta-section {
  padding: 90px 0;
  background: var(--bg-deep);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: var(--orange);
}

.cta-section::after {
  content: 'ZAFERSA';
  position: absolute;
  top: 50%; right: -40px;
  transform: translateY(-50%);
  font-family: var(--font-condensed);
  font-size: clamp(100px, 16vw, 220px);
  font-weight: 800;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 6px;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-family: var(--font-condensed);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 0.98;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.cta-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 380px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  flex-shrink: 0;
}

.cta-actions .btn-dark {
  background: var(--yellow);
  color: var(--on-yellow);
  border-color: var(--yellow);
}
.cta-actions .btn-dark:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--on-yellow);
}

.cta-phone-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 6px;
}

.cta-phone-row svg { color: var(--orange); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
  .fleet-preview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .hero { min-height: auto; padding-bottom: 60px; }
  .hero-bg { width: 100%; opacity: 0.18; }
  .hero-content { grid-template-columns: 1fr; padding-top: 100px; padding-bottom: 60px; gap: 48px; }
  .hero-side-stats { flex-direction: row; gap: 0; flex-wrap: wrap; }
  .side-stat { flex: 1; min-width: 140px; padding: 18px 20px; background: var(--bg-alt); border: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: -1px 0 0 -1px; }
  .side-stat:first-child, .side-stat:last-child { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .side-stat .num { color: var(--ink); font-size: 38px; }
  .side-stat .lbl { color: var(--text-mute); }
  .side-stat-visual { flex: 2 1 280px; gap: 14px; }
  .side-stat-visual .side-stat-img { background: rgba(0,0,0,0.04); border-color: var(--line); }
  .side-stat-visual .num { color: var(--ink); font-size: 28px; }
  .hero-scroll { display: none; }
  .services-head { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { max-width: 460px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; aspect-ratio: 4/3 !important; min-height: auto !important; }
  .cta-inner { flex-direction: column; text-align: center; align-items: flex-start; }
  .cta-actions { align-items: flex-start; width: 100%; }
  .fleet-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .hero-content { padding: 100px 22px 60px; }
  .hero-title .line-accent::after { width: 48px; height: 3px; margin-top: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-preview-grid { grid-template-columns: 1fr; }
  .fleet-prev-card-wide { grid-template-columns: 1fr; min-height: auto; }
  .fleet-prev-card-wide .fpc-image { min-height: 200px; border-right: none; border-bottom: 1px solid var(--line); }
  .fleet-prev-card-wide .fpc-wide-body { padding: 28px 24px; }
  .fleet-prev-card-wide .fpc-name { font-size: 24px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cta-inner { align-items: center; text-align: center; }
  .cta-actions { align-items: center; }
}
