/* =============================================================
   Gladiators Laser Game – Home / Landing page CSS
   Fonty: Cinzel + Inter (Google Fonts)
   Schéma: černé pozadí, žlutá #FFD400, červená #D62828, bílá
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Tokeny ─────────────────────────────────────────────────── */
:root {
  --black:        #000000;
  --dark:         #0d0d0d;
  --dark2:        #151515;
  --dark3:        #1e1e1e;
  --yellow:       #FFD400;
  --yellow-dim:   rgba(255, 212, 0, 0.12);
  --yellow-glow:  rgba(255, 212, 0, 0.3);
  --red:          #D62828;
  --white:        #FFFFFF;
  --grey:         #888888;
  --grey-light:   #CCCCCC;

  --font-heading: 'Cinzel', serif;
  --font-body:    'Inter', sans-serif;

  --nav-h:        70px;
  --radius:       10px;
  --radius-lg:    18px;
  --container:    1140px;
  --gap:          2rem;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Container ───────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}




/* ══════════════════════════════════════════════════════════════
   NAVIGACE
══════════════════════════════════════════════════════════════ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s;
}

.nav-header.scrolled {
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.nav-logo-text small {
  font-size: 0.65rem;
  color: var(--grey-light);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Desktop menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--grey-light);
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.nav-link:hover {
  color: var(--yellow);
  background: var(--yellow-dim);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: auto;  /* na mobilu drží akce vpravo i bez .nav-menu */
}

/* Rezervace button */
.btn-rezervace {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-rezervace:hover {
  background: #ffe033;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--yellow-glow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--yellow-dim); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,0.97);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-menu.open {
  max-height: 600px;
}
.mob-link {
  font-size: 1rem;
  color: var(--grey-light);
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mob-link:hover { color: var(--yellow); }
.mob-link--cta {
  margin-top: 0.75rem;
  text-align: center;
  background: var(--yellow);
  color: var(--black) !important;
  font-weight: 700;
  border-radius: 8px;
  border-bottom: none;
  padding: 0.8rem;
}
.mob-link--active {
  color: var(--yellow);
  border-bottom-color: rgba(255,212,0,0.15);
}
/* Aktivní link v desktop menu */
.nav-link.active {
  color: var(--yellow);
  background: var(--yellow-dim);
}
/* Odsazení obsahu na podstránkách */
.page-content {
  padding-top: calc(var(--nav-h) + 2rem);
  min-height: 80vh;
  background: var(--dark);
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/hero_background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Fallback: černé pozadí pokud obrázek chybí */
  background-color: var(--dark);
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 2rem 1.5rem;
  padding-top: calc(var(--nav-h) + 0.5rem); /* mezera nad hero */
  animation: heroFadeUp 1s ease both;
}

/* Logo v hero sekci */
.hero-logo {
  width: clamp(140px, 22vw, 220px);
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 0 30px rgba(255,212,0,0.35));
  animation: heroFadeUp 1s ease both;
}

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

.hero-pre {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: var(--yellow);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.2rem;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.hero-title--yellow { color: var(--yellow); text-shadow: 0 0 40px rgba(255,212,0,0.4); }
.hero-title--white  { color: var(--white); }

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.2rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn--primary:hover {
  background: #ffe033;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--yellow-glow);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}
.btn--lg {
  font-size: 1.05rem;
  padding: 1.1rem 2.8rem;
}

/* ══════════════════════════════════════════════════════════════
   SEKCE – OBECNÉ
══════════════════════════════════════════════════════════════ */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}
.section-sub {
    text-align: center;
    color: var(--grey);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.section-actions {
    display: flex;
    justify-content: center;
}

.section-actions .btn {
    width: auto;
}

/* ══════════════════════════════════════════════════════════════
   PROČ NÁS NAVŠTÍVIT
══════════════════════════════════════════════════════════════ */
.proc-nas {
  background: var(--dark2);
  padding: 5rem 0 4rem;
}
.proc-nas .section-sub { margin-bottom: 3.5rem; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}


.home-cta{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    width:100%;

    margin-top:2rem;

}

.home-cta-text{

    width:100%;

    text-align:center;

    color:var(--grey);

    font-size:1.1rem;

    margin:0 0 0.9rem 0;

}

.home-cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:1.25rem;

    flex-wrap:wrap;

}

.home-cta-buttons .btn{

    min-width:230px;

}


@media (max-width:768px){

    .home-cta-buttons{

        flex-direction:column;

    }

    .home-cta-buttons .btn{

        width:100%;

        max-width:340px;

    }

}


.card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--yellow-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,212,0,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.card:hover::before { opacity: 1; }

.card--accent {
  border-color: rgba(255,212,0,0.2);
  background: linear-gradient(160deg, #1c1a00 0%, var(--dark3) 100%);
}
.card--accent::before {
  background: linear-gradient(135deg, rgba(255,212,0,0.08) 0%, transparent 60%);
}

.card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 0 10px rgba(255,212,0,0.2));
}
.card-icon svg { width: 100%; height: 100%; }

.card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 1.1rem;
  letter-spacing: 0.03em;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.card-list li {
  font-size: 0.9rem;
  color: var(--grey-light);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.4;
}
.card-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 0.75rem;
  top: 0.12rem;
}

.proc-cta {
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   PLACEHOLDER SEKCE
══════════════════════════════════════════════════════════════ */

.section-placeholder {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
  background: var(--dark);
}

.section-placeholder--dark {
  background: var(--dark2);
}

/* ──────────────────────────────────────────────────────────────
   OBRÁZEK V POZADÍ
────────────────────────────────────────────────────────────── */

.section-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0.15;
  z-index: 0;
}

@media (max-width: 768px) {
  .section-placeholder::before {
    opacity: 0.7;
  }
}

/* ──────────────────────────────────────────────────────────────
   OBRÁZKY
────────────────────────────────────────────────────────────── */

.bg-deti::before {
  background-image: url("../images/deti.webp");
}

.bg-firmy::before {
  background-image: url("../images/firmy.webp");
}

.bg-klub::before {
  background-image: url("../images/klub.webp");
}

.bg-akce::before {
  background-image: url("../images/akce.webp");
}

.bg-galerie::before {
  background-image: url("../images/galerie.webp");
}

.bg-cenik::before {
  background-image: url("../images/cenik.webp");
}

/* ──────────────────────────────────────────────────────────────
   ZRCADLENÍ
   Firmy / Akce / Ceník
────────────────────────────────────────────────────────────── */

.section-placeholder.mirror::before {
  transform: scaleX(-1);
}

/* ──────────────────────────────────────────────────────────────
   OBSAH NAD OBRÁZKEM
────────────────────────────────────────────────────────────── */

.section-placeholder .container {
  position: relative;
  z-index: 1;
}

/* ──────────────────────────────────────────────────────────────
   TEXT
────────────────────────────────────────────────────────────── */

.placeholder-note {
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

@media (max-width: 768px) {
  .placeholder-note {
    color: rgba(255,255,255,0.8);
  }
}

/* ══════════════════════════════════════════════════════════════
   KLIKACÍ PLACEHOLDER SEKCE
══════════════════════════════════════════════════════════════ */

.section-placeholder {
  cursor: pointer;
}


/* ══════════════════════════════════════════════════════════════
   KONTAKT
══════════════════════════════════════════════════════════════ */
.kontakt {
  background: var(--dark);
  padding: 5rem 0;
  border-top: 1px solid rgba(255,212,0,0.1);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.kontakt-heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--yellow);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.kontakt-block p {
  font-size: 0.92rem;
  color: var(--grey-light);
  line-height: 1.7;
}
.kontakt-block a {
  color: var(--yellow);
  transition: color 0.2s;
}
.kontakt-block a:hover { color: #ffe033; }
/* Tlačítko uvnitř kontakt-block nesmí dědit žlutou barvu textu */
.kontakt-block .btn--primary {
  color: var(--black) !important;
}
.kontakt-block .btn--primary:hover {
  color: var(--black) !important;
}

.kontakt-mapa {
    flex: 1.15;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
}

.kontakt-mapa img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none;
    outline: none;
    box-shadow: none;
}

    border: none;
    outline: none;
    box-shadow: none;

    transition: transform .3s ease;
}

.kontakt-mapa:hover img {
    transform: scale(1.02);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--grey);
}
.footer-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--grey);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  width: 100%;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   TOAST (pro budoucí použití)
══════════════════════════════════════════════════════════════ */
#toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .mobile-menu {
    display: flex;
    flex-direction: column;

    max-height: 0;
    overflow: hidden;

    padding: 0 1.5rem;      /* místo 1rem 1.5rem 1.5rem */
    background: rgba(0,0,0,0.97);
    border-top: 1px solid rgba(255,255,255,0.06);

    transition:
        max-height .35s ease,
        padding .35s ease;
}

.mobile-menu.open {
    max-height: 600px;
    padding: 1rem 1.5rem 1.5rem;
}

  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .kontakt-grid {
    grid-template-columns: 1fr;
  }
  .kontakt-mapa { height: 300px; }
}

/* Mobile */
@media (max-width: 600px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn--lg { width: 100%; justify-content: center; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }

  .kontakt-grid { gap: 2rem; }
}

/* Large screens */
@media (min-width: 1400px) {
  .nav-link { font-size: 0.88rem; padding: 0.4rem 0.8rem; }
}

html {
  scrollbar-gutter: stable;
}

/* Přidá odsazení odshora, aby obsah nezačínal pod fixní hlavičkou */
main, 
body > section:first-of-type,
.page-header {
  padding-top: 120px; /* Upravte hodnotu podle reálné výšky vaší hlavičky */
}

/* =============================================================
   FIX: Definitivní odsazení pro podstránky a stabilizace
   ============================================================= */

/* 1. Trvalý scrollbar proti posunu hlavičky do stran */
html {
  overflow-y: scroll;
}

/* 2. Zvětšení odsazení podstránek (třída .page-content z vašeho CSS) */
.page-content {
  padding-top: 130px !important; /* Bezpečně odtlačí nadpis pod 70px hlavičku */
}

/* 3. Pokud podstránka nepoužívá .page-content, odtlačíme první H1 nadpis */
body > section:first-of-type,
body > div:first-of-type {
  padding-top: 70px;
}

h1 {
  margin-top: 2rem !important;
}

/* 4. Fix pro tlačítko v menu (aby neroztahovalo šířku) */
.nav-link.active {
  display: inline-block;
  padding: 0.4rem 0.6rem !important; /* Přesně stejný padding jako u neaktivních */
  margin: 0 !important;
}

/* ══════════════════════════════════════════════════════════════
   UPOZORNĚNÍ – WEB A ARÉNA VE VÝSTAVBĚ
══════════════════════════════════════════════════════════════ */

body.site-notice-open {
  overflow: hidden;
}

.site-notice {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.site-notice[hidden] {
  display: none;
}

.site-notice__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  animation: siteNoticeBackdropIn .2s ease both;
}

.site-notice__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  padding: 2.5rem 2.5rem 2.25rem;
  background: #1a1a1a;
  border: 1px solid rgba(255, 212, 0, .45);
  border-top: 4px solid #ffd400;
  border-radius: 18px;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, .65),
    0 0 35px rgba(255, 212, 0, .08);
  text-align: center;
  animation: siteNoticeDialogIn .25s ease both;
}

.site-notice__close {
  position: absolute;
  top: .7rem;
  right: .8rem;
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .65);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: color .2s ease, background .2s ease;
}

.site-notice__close:hover,
.site-notice__close:focus-visible {
  color: #ffd400;
  background: rgba(255, 212, 0, .08);
  outline: none;
}

.site-notice__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffd400;
  border-radius: 50%;
  color: #ffd400;
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.site-notice__eyebrow {
  margin: 0 0 .6rem;
  color: #ffd400;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.site-notice__content h2 {
  margin: 0 0 1.1rem;
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.2;
}

.site-notice__content p {
  max-width: 460px;
  margin: 0 auto .9rem;
  color: rgba(255, 255, 255, .78);
  font-size: .98rem;
  line-height: 1.65;
}

.site-notice__content p strong {
  color: #fff;
}

.site-notice__button {
  margin-top: .8rem;
  min-width: 150px;
  padding: .8rem 1.4rem;
  border: 1px solid #ffd400;
  border-radius: 999px;
  background: #ffd400;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.site-notice__button:hover,
.site-notice__button:focus-visible {
  background: #fff;
  border-color: #fff;
  transform: translateY(-1px);
  outline: none;
}

.site-notice.is-closing .site-notice__backdrop {
  animation: siteNoticeBackdropOut .18s ease both;
}

.site-notice.is-closing .site-notice__dialog {
  animation: siteNoticeDialogOut .18s ease both;
}

@keyframes siteNoticeBackdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes siteNoticeBackdropOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@keyframes siteNoticeDialogIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes siteNoticeDialogOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(8px) scale(.98);
  }
}

@media (max-width: 600px) {
  .site-notice {
    padding: .8rem;
  }

  .site-notice__dialog {
    max-height: calc(100vh - 1.6rem);
    padding: 2.2rem 1.35rem 1.5rem;
    border-radius: 14px;
  }

  .site-notice__content p {
    font-size: .92rem;
  }

  .site-notice__close {
    top: .45rem;
    right: .45rem;
  }
}


/* WHY-US VISUAL REFRESH */
.proc-nas{position:relative;isolation:isolate;overflow:hidden;padding:clamp(4.5rem,8vw,7rem) 0 clamp(4rem,7vw,6rem);border-block:1px solid rgba(255,212,0,.14);background:#080808}
.proc-nas::before{content:"";position:absolute;inset:0;z-index:-2;background:url("../images/hero_background.webp") center 58%/cover no-repeat;opacity:.12;filter:grayscale(.25) contrast(1.15);transform:scale(1.03)}
.proc-nas::after{content:"";position:absolute;inset:0;z-index:-1;background:radial-gradient(circle at 50% 0%,rgba(255,212,0,.09),transparent 42%),linear-gradient(180deg,rgba(5,5,5,.76),rgba(8,8,8,.94) 48%,#080808)}
.proc-nas .container{position:relative;z-index:1}
.proc-nas .section-kicker{margin:0 0 .65rem;color:var(--yellow);font-size:.76rem;font-weight:800;letter-spacing:.2em;text-align:center;text-transform:uppercase}
.proc-nas .section-title{max-width:820px;margin:0 auto .7rem;font-size:clamp(2rem,4.6vw,3.5rem);line-height:1.12;text-shadow:0 8px 35px rgba(0,0,0,.7)}
.proc-nas .section-sub{margin:0 auto clamp(2.2rem,5vw,3.8rem);color:rgba(255,255,255,.68);font-size:clamp(.95rem,1.8vw,1.08rem)}
.proc-nas .cards-grid{position:relative;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0;margin:0;overflow:hidden;border:1px solid rgba(255,255,255,.12);border-top-color:rgba(255,212,0,.5);border-radius:14px;background:rgba(9,9,9,.8);box-shadow:0 28px 80px rgba(0,0,0,.42);backdrop-filter:blur(5px)}
.proc-nas .card{min-height:100%;padding:clamp(2rem,4vw,3rem) clamp(1.5rem,3vw,2.4rem);overflow:hidden;border:0;border-right:1px solid rgba(255,255,255,.1);border-radius:0;background:transparent;box-shadow:none;transform:none;transition:background .25s ease}
.proc-nas .card:last-child{border-right:0}
.proc-nas .card::before{content:"";position:absolute;inset:0 0 auto;height:3px;border-radius:0;background:var(--yellow);opacity:0;transform:scaleX(.3);transition:opacity .25s ease,transform .25s ease}
.proc-nas .card::after{position:absolute;top:1rem;right:1.2rem;color:rgba(255,255,255,.08);font:700 2.5rem/1 var(--font-heading)}
.proc-nas .card:nth-child(1)::after{content:"01"}.proc-nas .card:nth-child(2)::after{content:"02"}.proc-nas .card:nth-child(3)::after{content:"03"}
.proc-nas .card:hover,.proc-nas .card--accent,.proc-nas .card--accent:hover{border-color:rgba(255,255,255,.1);background:linear-gradient(180deg,rgba(255,212,0,.07),rgba(255,212,0,.015));box-shadow:none;transform:none}
.proc-nas .card:hover::before,.proc-nas .card--accent::before{opacity:1;transform:scaleX(1)}
.proc-nas .card-icon{color:var(--yellow);width:70px;height:70px;display:grid;place-items:center;margin:0 0 1.6rem;border:2px solid rgba(255,212,0,.52);border-radius:50%;background:rgba(255,212,0,.09);filter:drop-shadow(0 0 18px rgba(255,212,0,.12))}
.proc-nas .card-icon svg{width:44px;height:44px}.proc-nas .card-title{margin:0 0 1.25rem;color:var(--white);font-size:clamp(1.1rem,2vw,1.35rem);line-height:1.3}.proc-nas .card-list{gap:.72rem}
.proc-nas .card-list li{padding-left:1.35rem;color:rgba(255,255,255,.67);font-size:.9rem;line-height:1.45}.proc-nas .card-list li::before{content:"";top:.55em;width:6px;height:6px;border-radius:50%;background:var(--yellow);box-shadow:0 0 8px rgba(255,212,0,.4)}
.proc-nas .home-cta{display:flex;align-items:center;justify-content:space-between;flex-direction:row;gap:2rem;margin:0;padding:2rem 0 0}.proc-nas .home-cta-text{width:auto;max-width:470px;margin:0;color:rgba(255,255,255,.7);font-size:1rem;line-height:1.55;text-align:left}.proc-nas .home-cta-buttons{flex:0 0 auto;gap:.8rem}.proc-nas .home-cta-buttons .btn{min-width:205px}
@media(max-width:900px){.proc-nas .cards-grid{grid-template-columns:1fr;max-width:680px}.proc-nas .card{border-right:0;border-bottom:1px solid rgba(255,255,255,.1)}.proc-nas .card:last-child{border-bottom:0}.proc-nas .home-cta{max-width:680px;margin-inline:auto;align-items:stretch;flex-direction:column;gap:1.2rem}.proc-nas .home-cta-text{max-width:none;text-align:center}.proc-nas .home-cta-buttons{justify-content:center}}
@media(max-width:600px){.proc-nas{padding-block:4rem}.proc-nas .section-title{font-size:clamp(1.8rem,10vw,2.5rem)}.proc-nas .card{padding:2rem 1.35rem}.proc-nas .card-icon{width:60px;height:60px}.proc-nas .card-icon svg{width:38px;height:38px}.proc-nas .home-cta-buttons{align-items:stretch;flex-direction:column}.proc-nas .home-cta-buttons .btn{width:100%;min-width:0}}
