/* NET-PRIZOVU v2 — cinematic blocks */

.btn-red {
  color: #fff;
  background: var(--accent);
  border: none;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-red:hover {
  background: #c93434;
  box-shadow: 0 6px 32px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-outline-gold {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--gold);
  font-weight: 600;
  padding: 10px 20px;
  font-size: 0.85rem;
}
.btn-outline-gold:hover {
  background: rgba(166, 138, 109, 0.12);
  border-color: var(--gold);
}

.btn-video {
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  gap: 12px;
}
.btn-video:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.04);
}
.btn-video__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: grid;
  place-items: center;
  font-size: 0.55rem;
  padding-left: 2px;
}

.text-red { color: var(--accent); }

/* ---- Hero cinematic ---- */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-cinematic__media {
  position: absolute;
  inset: 0;
  background:
    url("/assets/images/hero-main.jpg") center/cover no-repeat,
    url("https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=1920&q=80") center/cover no-repeat,
    #1a1a1a;
  transform: scale(1.02);
}
.hero-cinematic__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(18, 18, 18, 0.92) 0%, rgba(18, 18, 18, 0.75) 42%, rgba(18, 18, 18, 0.25) 72%, rgba(18, 18, 18, 0.15) 100%),
    linear-gradient(0deg, rgba(18, 18, 18, 1) 0%, transparent 35%);
}
.hero-cinematic__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-cinematic__title {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-cinematic__lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-cinematic__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ---- Help section ---- */
.section-help {
  padding: 88px 0;
  background: var(--bg);
}
.section-title-left {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 48px;
  color: var(--text);
}
.help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.help-card {
  text-align: center;
  padding: 0 12px;
}
.help-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.2;
}
.help-card h3 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 12px;
}
.help-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ---- Stats cinematic ---- */
.stats-cinematic {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}
.stats-cinematic__bg {
  position: absolute;
  inset: 0;
  background:
    url("/assets/images/stats-bg.jpg") center/cover no-repeat,
    url("https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&q=60") center/cover no-repeat,
    #0d0d0d;
  filter: saturate(0.4) brightness(0.45);
}
.stats-cinematic__veil {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.72);
}
.stats-cinematic__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.stat-block__num {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-block__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 10px;
}
.stat-block__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

/* ---- About ---- */
.section-about {
  padding: 88px 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-copy h2 { margin-bottom: 24px; }
.about-copy p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.about-copy .btn { margin-top: 12px; }
.about-graffiti__wall {
  min-height: 360px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.5)),
    url("/assets/images/graffiti-wall.jpg") center/cover no-repeat,
    url("https://images.unsplash.com/photo-1504307651254-35695f786c63?w=1200&q=70") center/cover no-repeat,
    #2a2a2a;
  display: grid;
  place-items: center;
  padding: 40px;
  filter: contrast(1.1) grayscale(0.35);
}
.about-graffiti__text {
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  text-shadow: 3px 3px 0 rgba(184, 44, 44, 0.35);
  max-width: 14ch;
  line-height: 1.25;
  font-family: var(--font-display);
}

/* ---- Services detail cards ---- */
.section-services-detail {
  padding: 88px 0;
  background: var(--bg-2);
}
.section-services-detail .service-card {
  background: var(--bg-card);
  border-color: var(--border);
  overflow: hidden;
}
.section-services-detail .service-card:hover {
  border-color: rgba(166, 138, 109, 0.25);
}
.section-services-detail .service-body h3 {
  color: var(--text);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.section-services-detail .service-img img {
  filter: saturate(0.85) contrast(1.05);
}

/* ---- Dark sections polish ---- */
.section-band {
  background: var(--bg-2) !important;
}
.section-band--alt {
  background: var(--bg) !important;
}
.section-how,
.section-offices,
#faq,
#why-app {
  background: var(--bg);
}
.section-reviews {
  background: var(--bg-2) !important;
}
.team-card,
.review-card,
.faq-item,
.why-card,
.office-card {
  background: var(--bg-card) !important;
  border-color: var(--border) !important;
}
.service-card {
  background: var(--bg-card);
  border-color: var(--border);
}
.step-row {
  background: var(--bg-card);
  border-color: var(--border);
}
.step-n {
  color: var(--gold);
  background: rgba(166, 138, 109, 0.12);
}

/* ---- CTA box ---- */
.cta-box-section {
  padding: 0 0 64px;
  background: var(--bg);
}
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 36px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.cta-box h2 {
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  max-width: 22ch;
  line-height: 1.2;
}

/* ---- Footer ---- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  margin-top: 32px;
  font-size: 0.82rem;
  color: var(--muted-2);
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social a {
  color: var(--muted);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--gold); }

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }

@media (max-width: 960px) {
  .help-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .stats-cinematic__grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-graffiti__wall { min-height: 280px; }
  .hero-cinematic { min-height: 88vh; }
  .hero-cinematic__inner { max-width: 100%; }
}

/* ---- Team 3-col ---- */
#team .team-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
}
@media (max-width: 960px) {
  #team .team-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ---- Section head left ---- */
.section-head--left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  max-width: 560px;
}

/* ---- Offices ---- */
.section-offices {
  padding: 88px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.office-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.25s, transform 0.25s;
}
.office-card:hover {
  border-color: rgba(166, 138, 109, 0.35);
  transform: translateY(-3px);
}
.office-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(184, 44, 44, 0.12);
  border: 1px solid rgba(184, 44, 44, 0.2);
  display: grid;
  place-items: center;
  color: var(--gold);
}
.office-card__icon svg { width: 22px; height: 22px; }
.office-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.office-addr {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 10px;
}
.office-hours {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
}

/* ---- Security block ---- */
.section-security {
  padding: 88px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.security-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.security-intro h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 12px 0 16px;
  line-height: 1.15;
}
.security-intro p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 36ch;
}
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.security-item {
  padding: 22px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  border-left: 3px solid var(--accent);
}
.security-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 10px;
}
.security-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.security-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 960px) {
  .offices-grid { grid-template-columns: 1fr; }
  .security-layout { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .help-grid { grid-template-columns: 1fr; }
  .stats-cinematic__grid { grid-template-columns: 1fr 1fr; }
  .cta-box { flex-direction: column; text-align: center; padding: 28px 24px; }
  .nav a.nav-active::after { display: none; }
}
