/* ==========================================================================
   NORDIQ & CORVIDS ECOSYSTEM — NYILVÁNOS WEBOLDAL STÍLUSLAP (site.css)
   Verzió: 7.7 (2026) | 14+1 Szekció Pontos CMS Sorrendben | 100/100 CWV
   ========================================================================== */

:root {
  --bg-primary: #05070b;
  --bg-surface: #0b0f17;
  --bg-surface-elevated: #111723;
  --bg-surface-hover: #172030;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-glow: rgba(56, 189, 248, 0.35);

  --accent-cyan: #38bdf8;
  --accent-blue: #0284c7;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  --accent-purple: #a855f7;

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --font-main: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 35px rgba(56, 189, 248, 0.18);
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body:not([data-nordiq-adapted]) {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
}
body {
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Globális alapértelmezett hivatkozás-stílus: aláhúzásmentes minden linken */
a {
  text-decoration: none;
}

/* Ambient Glowing Background Grid */
body:not([data-nordiq-adapted]) .ambient-bg-grid {
  position: fixed;
  inset: 0;
  background-size: 48px 48px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

body:not([data-nordiq-adapted]) .ambient-glow-orb {
  position: fixed;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.12) 0%, rgba(14, 165, 233, 0.04) 50%, transparent 75%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

/* Layout Utilities */
.site-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

body:not([data-nordiq-adapted]) .site-section {
  padding: 96px 0;
  position: relative;
  z-index: 2;
}

body:not([data-nordiq-adapted]) .site-section.section-alt {
  background: rgba(11, 15, 23, 0.6);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.site-section.d-none {
  display: none !important;
}

/* Section Header Component */
body:not([data-nordiq-adapted]) .section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto;
}

body:not([data-nordiq-adapted]) .section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.28);
  color: var(--accent-cyan);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

body:not([data-nordiq-adapted]) .section-title {
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

body:not([data-nordiq-adapted]) .section-subtitle {
  font-size: 1.06rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Buttons */
.btn-site-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  color: #030712;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.35);
  transition: var(--transition);
}

.btn-site-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(56, 189, 248, 0.5);
  color: #030712;
}

.btn-site-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-site-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--border-glow);
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

/* ==========================================================================
   1. SZEKCIÓ: FELSŐ ÉRTESÍTÉSI SÁV (topbar)
   ========================================================================== */
body:not([data-nordiq-adapted]) #sec-topbar {
  background: #0c1017;
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 0;
  font-size: 0.85rem;
  position: relative;
  z-index: 100;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
}

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-social-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.topbar-social-link:hover {
  color: var(--accent-cyan);
}

/* ==========================================================================
   2. SZEKCIÓ: FŐ NAVIGÁCIÓ ÉS LOGÓ (navbar)
   ========================================================================== */
body:not([data-nordiq-adapted]) #sec-navbar {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(5, 7, 11, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 18px 0;
  transition: var(--transition);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(2, 132, 199, 0.4));
  border: 1px solid rgba(56, 189, 248, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.15rem;
}

body:not([data-nordiq-adapted]) .navbar-nav,
body:not([data-nordiq-adapted]) #navbar-links-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

body:not([data-nordiq-adapted]) .navbar-nav li,
body:not([data-nordiq-adapted]) #navbar-links-list li {
  list-style: none;
  display: inline-flex;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-cyan);
}

body[data-nordiq-adapted] .nav-link {
  font-weight: inherit;
}

.navbar-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   3. SZEKCIÓ: HEADER BANNER ÉS SLIDESHOW (header-banner)
   ========================================================================== */
body:not([data-nordiq-adapted]) #sec-header-banner {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #080c14;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
}

.banner-slides-track {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: flex;
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.banner-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.banner-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 11, 0.92) 0%, rgba(5, 7, 11, 0.75) 50%, rgba(5, 7, 11, 0.4) 100%);
  z-index: 1;
}

.banner-slide-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding: 80px 0;
}

.banner-slide-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: var(--accent-cyan);
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.banner-slide-title {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.banner-slide-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 640px;
}

.banner-slide-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Banner Nav Arrows & Dots */
.banner-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(5, 7, 11, 0.6);
  border: 1px solid var(--border-medium);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.banner-nav-btn:hover {
  background: rgba(56, 189, 248, 0.2);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.banner-nav-prev { left: 24px; }
.banner-nav-next { right: 24px; }

.banner-dots-container {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.banner-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition);
}

.banner-dot.active {
  width: 28px;
  background: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
}

/* ==========================================================================
   4. SZEKCIÓ: SZOLGÁLTATÁSAINK (services)
   ========================================================================== */
body:not([data-nordiq-adapted]) .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

body:not([data-nordiq-adapted]) .service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body:not([data-nordiq-adapted]) .service-card:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

body:not([data-nordiq-adapted]) .service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.5rem;
  margin-bottom: 22px;
}

body:not([data-nordiq-adapted]) .service-card-title {
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

body:not([data-nordiq-adapted]) .service-card-desc {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ==========================================================================
   5. SZEKCIÓ: TERMÉKEINK ÉS CSOMAGJAINK (products)
   ========================================================================== */
body:not([data-nordiq-adapted]) .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: stretch;
}

body:not([data-nordiq-adapted]) .product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body:not([data-nordiq-adapted]) .product-card.featured {
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.08) 0%, rgba(11, 15, 23, 0.95) 100%);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 35px rgba(56, 189, 248, 0.14);
  transform: scale(1.02);
}

body:not([data-nordiq-adapted]) .product-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #38bdf8, #0284c7);
  color: #030712;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

body:not([data-nordiq-adapted]) .product-price-box {
  margin: 20px 0 24px 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

body:not([data-nordiq-adapted]) .product-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
}

body:not([data-nordiq-adapted]) .product-period {
  color: var(--text-muted);
  font-size: 0.9rem;
}

body:not([data-nordiq-adapted]) .product-features-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body:not([data-nordiq-adapted]) .product-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

body:not([data-nordiq-adapted]) .product-feature-item i {
  color: var(--accent-emerald);
  font-size: 1.1rem;
}

/* ==========================================================================
   6. SZEKCIÓ: RÓLUNK ÉS SZAKMAI TÖRTÉNET (about)
   ========================================================================== */
body:not([data-nordiq-adapted]) .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

body:not([data-nordiq-adapted]) .about-media-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  background: var(--bg-surface);
  aspect-ratio: 4 / 3;
}

body:not([data-nordiq-adapted]) .about-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body:not([data-nordiq-adapted]) .about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}

body:not([data-nordiq-adapted]) .about-stat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

body:not([data-nordiq-adapted]) .stat-number {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1;
  margin-bottom: 6px;
}

body:not([data-nordiq-adapted]) .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   7. SZEKCIÓ: REFERENCIÁK ÉS PORTFÓLIÓ (portfolio)
   ========================================================================== */
body:not([data-nordiq-adapted]) .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

body:not([data-nordiq-adapted]) .portfolio-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

body:not([data-nordiq-adapted]) .portfolio-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
}

body:not([data-nordiq-adapted]) .portfolio-img-box {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #111723;
  overflow: hidden;
}

body:not([data-nordiq-adapted]) .portfolio-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

body:not([data-nordiq-adapted]) .portfolio-card:hover .portfolio-img-box img {
  transform: scale(1.05);
}

body:not([data-nordiq-adapted]) .portfolio-body {
  padding: 24px;
}

body:not([data-nordiq-adapted]) .portfolio-tag {
  color: var(--accent-cyan);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

/* ==========================================================================
   7b. SZEKCIÓ: MAPPÁS FOTÓGALÉRIA (gallery) ÉS LIGHTBOX
   ========================================================================== */
body:not([data-nordiq-adapted]) .gallery-folders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

body:not([data-nordiq-adapted]) .gallery-folder-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

body:not([data-nordiq-adapted]) .gallery-folder-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
}

body:not([data-nordiq-adapted]) .gallery-folder-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #111723;
  overflow: hidden;
}

body:not([data-nordiq-adapted]) .gallery-folder-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

body:not([data-nordiq-adapted]) .gallery-folder-card:hover .gallery-folder-cover img {
  transform: scale(1.05);
}

body:not([data-nordiq-adapted]) .gallery-folder-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

body:not([data-nordiq-adapted]) .gallery-folder-body {
  padding: 22px;
}

body:not([data-nordiq-adapted]) .gallery-folder-year {
  color: var(--accent-cyan);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

body:not([data-nordiq-adapted]) .gallery-folder-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

body:not([data-nordiq-adapted]) .gallery-folder-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Nyitott mappa fotórács és fejléc */
.gallery-back-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.gallery-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-back-btn:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--accent-cyan);
  color: #fff;
}

.gallery-folder-open-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.gallery-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.gallery-photo-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: #111723;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-photo-thumb:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
}

.gallery-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Lightbox Modal */
#nordiq-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(10, 15, 26, 0.94);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

#nordiq-gallery-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.nordiq-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nordiq-lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  user-select: none;
}

.nordiq-lightbox-caption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  text-align: center;
  max-width: 800px;
}

.nordiq-lightbox-counter {
  color: var(--accent-cyan);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 4px;
}

.nordiq-lightbox-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.nordiq-lightbox-btn:hover {
  background: rgba(56, 189, 248, 0.3);
  border-color: #38bdf8;
  color: #fff;
  transform: scale(1.08);
}

.nordiq-lightbox-close {
  top: 24px;
  right: 24px;
}

.nordiq-lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.nordiq-lightbox-prev:hover {
  transform: translateY(-50%) scale(1.08);
}

.nordiq-lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.nordiq-lightbox-next:hover {
  transform: translateY(-50%) scale(1.08);
}

@media (max-width: 768px) {
  body:not([data-nordiq-adapted]) .gallery-folders-grid {
    grid-template-columns: 1fr;
  }
  .gallery-photos-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }
  .nordiq-lightbox-prev {
    left: 8px;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .nordiq-lightbox-next {
    right: 8px;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .nordiq-lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   8. SZEKCIÓ: ÜGYFÉLVÉLEMÉNYEK (reviews)
   ========================================================================== */
body:not([data-nordiq-adapted]) .reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

body:not([data-nordiq-adapted]) .review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body:not([data-nordiq-adapted]) .review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

body:not([data-nordiq-adapted]) .review-text {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
}

body:not([data-nordiq-adapted]) .review-author-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

body:not([data-nordiq-adapted]) .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-weight: 700;
}

/* ==========================================================================
   9. SZEKCIÓ: GYAKRAN ISMÉTELT KÉRDÉSEK (faqs)
   ========================================================================== */
body:not([data-nordiq-adapted]) .faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body:not([data-nordiq-adapted]) .faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

body:not([data-nordiq-adapted]) .faq-item.is-open {
  border-color: var(--border-glow);
  background: var(--bg-surface-elevated);
}

body:not([data-nordiq-adapted]) .faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

body:not([data-nordiq-adapted]) .faq-answer {
  padding: 0 24px 22px 24px;
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.65;
  display: none;
}

body:not([data-nordiq-adapted]) .faq-item.is-open .faq-answer {
  display: block;
}

/* ==========================================================================
   10. SZEKCIÓ: SZAKMAI BLOG ÉS HÍREK (blogs)
   ========================================================================== */
body:not([data-nordiq-adapted]) .blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

body:not([data-nordiq-adapted]) .blog-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

body:not([data-nordiq-adapted]) .blog-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
}

body:not([data-nordiq-adapted]) .blog-img-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111723;
}

body:not([data-nordiq-adapted]) .blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body:not([data-nordiq-adapted]) .blog-body {
  padding: 24px;
}

/* ==========================================================================
   11. SZEKCIÓ: IDŐPONTFOGLALÓ (booking)
   ========================================================================== */
body:not([data-nordiq-adapted]) .booking-panel {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 42px;
}

body:not([data-nordiq-adapted]) .booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Visual Monthly Calendar Component (Public Booking Widget) */
.booking-calendar-wrapper {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}

.booking-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.booking-cal-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: capitalize;
}

.booking-cal-nav-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.booking-cal-nav-btn:hover:not(:disabled) {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.booking-cal-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.booking-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 8px;
  text-align: center;
}

.booking-cal-weekday {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 6px 0;
}

.booking-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.cal-day-cell {
  aspect-ratio: 1 / 1;
  min-height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 2px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: var(--transition);
  cursor: pointer;
  user-select: none;
}

.cal-day-cell.empty {
  background: transparent;
  cursor: default;
  pointer-events: none;
}

/* Past days */
.cal-day-cell.past {
  opacity: 0.28;
  cursor: not-allowed;
  text-decoration: line-through;
  background: rgba(0, 0, 0, 0.2);
}

/* Non-working days */
.cal-day-cell.non-work {
  opacity: 0.35;
  cursor: not-allowed;
  background: rgba(0, 0, 0, 0.15);
  color: var(--text-muted);
}

/* Fully booked days */
.cal-day-cell.full {
  opacity: 0.45;
  cursor: not-allowed;
  border-color: rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.05);
  color: #fca5a5;
  text-decoration: line-through;
}

.cal-day-cell.full .cal-status-label {
  font-size: 0.65rem;
  color: #f87171;
  text-decoration: none;
  font-weight: 600;
  margin-top: 2px;
}

/* Available days */
.cal-day-cell.available {
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.06);
  color: var(--text-primary);
  font-weight: 600;
}

.cal-day-cell.available:hover {
  border-color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.18);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.25);
  transform: translateY(-2px);
}

.cal-day-cell.available .cal-status-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-cyan);
  margin-top: 3px;
}

/* Selected day */
.cal-day-cell.selected {
  border-color: var(--accent-cyan) !important;
  background: var(--accent-cyan) !important;
  color: #04101d !important;
  font-weight: 700 !important;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.5) !important;
  transform: scale(1.04);
}

.cal-day-cell.selected .cal-status-dot {
  background: #04101d !important;
}

/* Time slots matrix */
.booking-slots-wrapper {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}

.booking-slots-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}

.booking-slots-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.booking-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 10px;
}

.booking-slot-pill {
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.booking-slot-pill:hover:not(.disabled) {
  border-color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent-cyan);
}

.booking-slot-pill.active {
  background: var(--accent-cyan) !important;
  border-color: var(--accent-cyan) !important;
  color: #04101d !important;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.4);
}

.booking-slot-pill.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
  background: rgba(0, 0, 0, 0.2);
  color: var(--text-muted);
}

/* ==========================================================================
   12. SZEKCIÓ: KAPCSOLAT ÉS AJÁNLATKÉRÉS (contact)
   ========================================================================== */
body:not([data-nordiq-adapted]) .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

body:not([data-nordiq-adapted]) .contact-info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}

body:not([data-nordiq-adapted]) .contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

body:not([data-nordiq-adapted]) .contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.2rem;
  flex-shrink: 0;
}

body:not([data-nordiq-adapted]) .contact-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
}

body:not([data-nordiq-adapted]) .form-group {
  margin-bottom: 20px;
}

body:not([data-nordiq-adapted]) .form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

body:not([data-nordiq-adapted]) .form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  font-size: 0.94rem;
  font-family: inherit;
  transition: var(--transition);
}

body:not([data-nordiq-adapted]) .form-input:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

/* ==========================================================================
   13. SZEKCIÓ: FŐ LÁBLÉC (footer)
   ========================================================================== */
body:not([data-nordiq-adapted]) #sec-footer {
  background: #030508;
  border-top: 1px solid var(--border-subtle);
  padding: 72px 0 36px 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

body:not([data-nordiq-adapted]) .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

body:not([data-nordiq-adapted]) #footer-nav-columns {
  display: contents;
}

body:not([data-nordiq-adapted]) .footer-col-title {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

body:not([data-nordiq-adapted]) .footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body:not([data-nordiq-adapted]) .footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

body:not([data-nordiq-adapted]) .footer-link:hover {
  color: var(--accent-cyan);
}

body:not([data-nordiq-adapted]) .footer-bottom-bar {
  border-top: 1px solid var(--border-subtle);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   14. SZEKCIÓ: GLOBÁLIS SEO (seo-footer)
   ========================================================================== */
body:not([data-nordiq-adapted]) #sec-seo-footer {
  background: #020305;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 32px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.seo-footer-box {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  line-height: 1.7;
}

/* ==========================================================================
   15. EGYEDI SZEKCIÓK KONTÉNER (custom-container)
   ========================================================================== */
body:not([data-nordiq-adapted]) #sec-custom-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body:not([data-nordiq-adapted]) .custom-zblock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

body:not([data-nordiq-adapted]) .custom-zblock-grid.image-left {
  direction: rtl;
}
body:not([data-nordiq-adapted]) .custom-zblock-grid.image-left > * {
  direction: ltr;
}

body:not([data-nordiq-adapted]) .custom-zblock-media {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

body:not([data-nordiq-adapted]) .custom-zblock-img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

body:not([data-nordiq-adapted]) .custom-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

body:not([data-nordiq-adapted]) .custom-stat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

body:not([data-nordiq-adapted]) .custom-stat-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

body:not([data-nordiq-adapted]) .custom-stat-icon {
  font-size: 2rem;
  color: var(--accent-cyan);
  margin-bottom: 12px;
  display: inline-block;
}

body:not([data-nordiq-adapted]) .custom-stat-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 6px;
}

body:not([data-nordiq-adapted]) .custom-stat-lbl {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

body:not([data-nordiq-adapted]) .custom-stat-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

body:not([data-nordiq-adapted]) .custom-tabs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

body:not([data-nordiq-adapted]) .custom-tab-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

body:not([data-nordiq-adapted]) .custom-tab-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

body:not([data-nordiq-adapted]) .custom-cta-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  box-shadow: 0 12px 32px rgba(0, 210, 255, 0.08);
}

@media (max-width: 991px) {
  body:not([data-nordiq-adapted]) .custom-zblock-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  body:not([data-nordiq-adapted]) .about-grid,
  body:not([data-nordiq-adapted]) .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  body:not([data-nordiq-adapted]) .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  body:not([data-nordiq-adapted]) .navbar-nav {
    display: none;
  }
  body:not([data-nordiq-adapted]) .navbar-mobile-toggle {
    display: block;
  }
  body:not([data-nordiq-adapted]) .banner-nav-btn {
    display: none;
  }
}

@media (max-width: 767px) {
  body:not([data-nordiq-adapted]) .site-section {
    padding: 64px 0;
  }
  body:not([data-nordiq-adapted]) .booking-form-grid {
    grid-template-columns: 1fr;
  }
  body:not([data-nordiq-adapted]) .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  body:not([data-nordiq-adapted]) #sec-header-banner,
  body:not([data-nordiq-adapted]) .banner-slides-track {
    min-height: 480px;
  }
}

/* ==========================================================================
   PÁLYÁZATI LOGÓK (GRANT LOGOS)
   ========================================================================== */
.grant-logo-img {
  object-fit: contain;
  vertical-align: middle;
  max-width: 100%;
}
.grant-logo-sm {
  max-height: 40px;
}
.grant-logo-md {
  max-height: 70px;
}
.grant-logo-lg {
  max-height: 100px;
}
.grant-logos-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.grant-logos-footer-wrap {
  padding: 24px 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.grant-logo-floating {
  position: fixed;
  z-index: 9980;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  background: rgba(13, 17, 23, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}
.grant-floating-left {
  bottom: 24px;
  left: 80px;
}
.grant-floating-right {
  bottom: 24px;
  right: 24px;
}

/* ==========================================================================
   TÁMOGATÓI LOGÓK (SUPPORTER LOGOS)
   ========================================================================== */
.supporter-logos-section {
  padding: 36px 0 28px;
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.supporter-logos-inner {
  text-align: center;
}
.supporter-logos-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted, #94a3b8);
  margin-bottom: 20px;
}
.supporter-logos-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.supporter-logo-anchor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.supporter-logo-item {
  max-height: 44px;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.supporter-logo-anchor:hover .supporter-logo-item {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}

/* ==========================================================================
   GDPR COOKIE SÁV (COOKIE BANNER)
   ========================================================================== */
.nordiq-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 680px;
  z-index: 9999;
  background: rgba(15, 20, 32, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  padding: 18px 22px;
  color: #f8fafc;
  font-family: inherit;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner-fadeout {
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
}
.cookie-banner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cookie-shield-icon {
  color: #00d2ff;
  font-size: 1.15rem;
}
.cookie-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}
.cookie-btn-close {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.2s;
}
.cookie-btn-close:hover {
  color: #ffffff;
}
.cookie-text {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 14px;
}
.cookie-policy-link {
  color: #00d2ff;
  text-decoration: underline;
}
.cookie-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.cookie-cat-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  cursor: pointer;
  margin-bottom: 0;
}
.cookie-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.btn-cookie {
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.btn-cookie-primary {
  background: linear-gradient(135deg, #00d2ff, #3a7bd5);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 210, 255, 0.3);
}
.btn-cookie-primary:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}
.btn-cookie-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-cookie-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 600px) {
  .nordiq-cookie-banner {
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 14px 16px;
  }
  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-cookie {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   AKADÁLYMENTESÍTŐ ESZKÖZTÁR (A11Y TOOLBAR)
   ========================================================================== */
.skip-to-content {
  position: absolute;
  top: -9999px;
  left: 16px;
  z-index: 100000;
  padding: 10px 18px;
  background: #000000;
  color: #ffff00;
  font-weight: 700;
  border: 2px solid #ffff00;
  border-radius: 6px;
  text-decoration: none;
}
.skip-to-content:focus {
  top: 16px;
  outline: 3px solid #00d2ff;
}

:focus-visible {
  outline: 2px solid #00d2ff !important;
  outline-offset: 3px !important;
}

.nordiq-a11y-toggle-btn {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 9990;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0c121e;
  border: 2px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.nordiq-a11y-toggle-btn:hover {
  transform: scale(1.08);
  border-color: #38bdf8;
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.4);
}

.nordiq-a11y-panel {
  position: fixed;
  bottom: 76px;
  left: 20px;
  z-index: 9991;
  width: 290px;
  max-width: calc(100vw - 40px);
  background: rgba(12, 18, 30, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  padding: 16px;
  color: #f8fafc;
  font-family: inherit;
}
.a11y-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
}
.a11y-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
}
.a11y-close-btn {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}
.a11y-close-btn:hover {
  color: #ffffff;
}
.a11y-control-group {
  margin-bottom: 10px;
}
.a11y-group-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 6px;
}
.a11y-btn-row {
  display: flex;
  gap: 6px;
}
.a11y-opt-btn {
  flex: 1;
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.a11y-opt-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.a11y-opt-btn.active {
  background: rgba(56, 189, 248, 0.2);
  border-color: #38bdf8;
  color: #38bdf8;
}
.a11y-toggle-row-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}
.a11y-toggle-row-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}
.a11y-toggle-row-btn.active {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.4);
  color: #ffffff;
}
.a11y-status-pill {
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
}
.a11y-status-pill.active {
  background: #10b981;
  color: #ffffff;
}
.a11y-reset-btn {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  background: none;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: #94a3b8;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s;
}
.a11y-reset-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

/* Modifiers on body */
body.a11y-font-md {
  font-size: 115% !important;
}
body.a11y-font-lg {
  font-size: 130% !important;
}
body.a11y-high-contrast {
  background: #000000 !important;
  color: #ffff00 !important;
}
body.a11y-high-contrast * {
  background-color: #000000 !important;
  color: #ffff00 !important;
  border-color: #ffff00 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
body.a11y-high-contrast a,
body.a11y-high-contrast button {
  color: #00ffff !important;
  border-color: #00ffff !important;
}
body.a11y-high-contrast img {
  filter: contrast(130%) !important;
}
body.a11y-dyslexic {
  font-family: Arial, Helvetica, sans-serif !important;
  letter-spacing: 0.05em !important;
  word-spacing: 0.1em !important;
  line-height: 1.8 !important;
}
body.a11y-dyslexic * {
  animation: none !important;
  transition: none !important;
}
body.a11y-links-highlight a {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 3px !important;
  font-weight: 700 !important;
  color: #ffeb3b !important;
  background-color: rgba(0, 0, 0, 0.8) !important;
  padding: 2px 4px !important;
  border-radius: 2px !important;
}

/* 97. Fejezet: Rólunk leírás bekezdések közötti térköz */
#about-desc-text p:not(:last-child) {
  margin-bottom: 1.15em;
}
