/* ============================================================
   MDBdesign — style.css  v3
   Clash Display + Plus Jakarta Sans | Kék (#46a5fd) akcentszín
   ============================================================ */

@font-face { font-family:'Clash Display'; font-display:swap; src:local('Clash Display'); }
@font-face { font-family:'Plus Jakarta Sans'; font-display:swap; src:local('Plus Jakarta Sans'); }

/* ── CSS VÁLTOZÓK ── */
:root {
  --blue:       #46a5fd;
  --blue-dark:  #1a7fd4;
  --blue-mid:   #2e96f0;
  --blue-light: #6bbefe;
  --blue-pale:  #c8e7ff;
  --blue-xpale: #eaf4ff;
  --dark:       #1a1a2e;
  --dark2:      #2d3748;
  --grey:       #64748b;
  --grey-light: #94a3b8;
  --border:     #e2e8f0;
  --bg:         #eef5ff;
  --bg-light:   #e6f0ff;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(70,165,253,.08);
  --shadow-lg:  0 12px 48px rgba(70,165,253,.14);
}

/* ── DARK MODE VÁLTOZÓK ── */
[data-theme="dark"] {
  --dark:       #c8d8f5;
  --dark2:      #dde6ff;
  --grey:       #94a3b8;
  --grey-light: #64748b;
  --border:     #1e2a4a;
  --bg:         #0b0f1e;
  --bg-light:   #0f1628;
  --blue-xpale: rgba(70,165,253,.18);
  --blue-pale:  rgba(70,165,253,.35);
  --shadow:     0 4px 24px rgba(0,0,0,.4);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.5);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  transition: background .3s, color .3s;
}
.page-wrap { overflow-x: clip; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 14px; }
ul { list-style: none; }

/* ── SKIP LINK ── */
.skip-link { position: absolute; top: -100px; left: 20px; background: var(--dark); color: #fff; padding: 10px 20px; border-radius: 6px; font-size: 13px; z-index: 10000; transition: top .2s; }
.skip-link:focus { top: 20px; }

/* ── LOADER ── */
.loader { position: fixed; inset: 0; background: var(--bg); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; animation: loaderHide .5s ease 1.8s forwards; pointer-events: none; }
@keyframes loaderHide { to { opacity: 0; visibility: hidden; } }
.loader-logo { font-family: 'Clash Display', system-ui, sans-serif; font-size: 32px; font-weight: 700; letter-spacing: 2px; color: var(--dark); }
.loader-logo span { color: var(--blue); }
.loader-line { width: 140px; height: 2px; background: var(--border); overflow: hidden; border-radius: 2px; }
.loader-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--blue-light)); animation: loaderAnim 1.6s ease forwards; }
@keyframes loaderAnim { from { width: 0 } to { width: 100% } }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */
.header {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 1180px;
  z-index: 800;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(22px) saturate(200%);
  -webkit-backdrop-filter: blur(22px) saturate(200%);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 20px;
  box-shadow: 0 4px 28px rgba(70,165,253,.1), 0 1px 0 rgba(255,255,255,.9);
  transition: box-shadow .3s, transform .3s ease, background .3s;
}
.header--hidden { transform: translateX(-50%) translateY(calc(-100% - 20px)); }
[data-theme="dark"] .header {
  background: rgba(11,15,30,.55);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 4px 28px rgba(0,0,0,.45), 0 1px 0 rgba(255,255,255,.05);
}
.nav {
  display: flex; align-items: center; height: 62px;
  padding: 0 28px; gap: 32px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-text { font-family: 'Clash Display', system-ui, sans-serif; font-size: 32px; font-weight: 700; letter-spacing: .5px; color: var(--dark); white-space: nowrap; }
.logo-text em { color: var(--blue); font-style: normal; }
.logo-img { height: 26px; width: auto; display: block; filter: drop-shadow(0 0 5px rgba(70,165,253,.12)); transition: filter .3s; }
.footer-logo-img { height: 32px; }
[data-theme="dark"] .logo-img { filter: drop-shadow(0 0 6px rgba(70,165,253,.22)); }
@media (max-width: 768px) { .logo-img { height: 18px; } }
.nav-links { display: flex; align-items: center; gap: 28px; flex: 1; }
.nav-links li { list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--grey); transition: color .2s; position: relative; white-space: nowrap; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; border-radius: 2px; }
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.btn-nav { padding: 9px 18px; background: var(--blue-mid); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .4px; border-radius: 8px; transition: background .2s, transform .2s; white-space: nowrap; }
.btn-nav:hover { background: var(--blue-dark); transform: translateY(-1px); }
.theme-toggle { background: none; border: 1.5px solid var(--border); border-radius: 6px; padding: 5px 10px; cursor: pointer; display: flex; align-items: center; transition: border-color .2s; }
.theme-toggle:hover { border-color: var(--blue); }
.toggle-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; color: var(--grey); }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; width: 32px; height: 32px; padding: 6px 4px; justify-content: center; flex-shrink: 0; }
.burger span { display: block; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  display: inline-block; padding: 13px 28px;
  background: var(--blue-mid); color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: .3px;
  border-radius: 10px; border: 2px solid var(--blue-mid);
  transition: background .2s, transform .2s, box-shadow .2s; cursor: pointer;
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(70,165,253,.3); }
.btn-primary.full { width: 100%; text-align: center; display: block; }
.btn-ghost {
  display: inline-block; padding: 13px 28px;
  background: transparent; color: var(--dark);
  font-size: 13px; font-weight: 600; letter-spacing: .3px;
  border-radius: 10px; border: 2px solid var(--border);
  transition: border-color .2s, color .2s, transform .2s; cursor: pointer;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-ghost.full { width: 100%; text-align: center; display: block; }
[data-theme="dark"] .btn-ghost { color: var(--dark); }

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
.section { padding: 56px 0; background: transparent; }
.bg-light { background: transparent; }
[data-theme="dark"] .bg-light { background: transparent; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head h2 {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: clamp(28px, 3.8vw, 47px); font-weight: 700;
  line-height: 1.12; color: var(--dark); margin: 10px 0 16px; letter-spacing: 0px;
}
.section-head p { font-size: 15px; color: var(--grey); max-width: 520px; margin: 0 auto; line-height: 1.8; }
.section-tag {
  display: inline-block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); font-weight: 700; background: var(--blue-xpale);
  padding: 4px 12px; border-radius: 20px;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 60px; overflow: hidden;
  background: transparent;
}

/* Shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
/* Pontháló háttér */
.hero-shapes::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(70,165,253,.35) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 55% 45%, rgba(0,0,0,.7) 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 85% 85% at 55% 45%, rgba(0,0,0,.7) 0%, transparent 75%);
}

@keyframes aurora1 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(12vw, 10vh) scale(1.15); }
  50%  { transform: translate(6vw, 20vh) scale(0.9); }
  75%  { transform: translate(-8vw, 8vh) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes aurora2 {
  0%   { transform: translate(0, 0) scale(1); }
  30%  { transform: translate(-14vw, 12vh) scale(1.18); }
  60%  { transform: translate(-6vw, 22vh) scale(0.88); }
  80%  { transform: translate(10vw, 6vh) scale(1.12); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes aurora3 {
  0%   { transform: translate(0, 0) scale(1); }
  35%  { transform: translate(10vw, -8vh) scale(1.2); }
  65%  { transform: translate(-10vw, 10vh) scale(0.85); }
  100% { transform: translate(0, 0) scale(1); }
}
.floating-line { display: none; }
.line-1 { height: 180px; right: 27%; top: 12%; transform: rotate(28deg); animation: linePulse 3s ease-in-out infinite; }
.line-2 { height: 140px; right: 42%; bottom: 22%; transform: rotate(-22deg); animation: linePulse 4s ease-in-out infinite 1s; }

@keyframes linePulse { 0%,100%{opacity:.3} 50%{opacity:1} }

.hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--grey); margin-bottom: 28px; font-weight: 600; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(70,165,253,.4)} 50%{box-shadow:0 0 0 8px rgba(70,165,253,0)} }
.hero-title { font-family: 'Clash Display', system-ui, sans-serif; font-size: clamp(44px, 6vw, 80px); font-weight: 700; line-height: 1.06; color: var(--dark); margin-bottom: 24px; letter-spacing: -1px; }
.hero-title em { font-style: normal; color: var(--blue); position: relative; display: inline-block; min-width: 4px; }
.hero-title em::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--blue-light)); border-radius: 3px; }
.hero-cursor { display: inline-block; color: var(--blue); font-weight: 300; margin-left: 1px; animation: hero-blink .75s step-end infinite; }
@keyframes hero-blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-sub { font-size: 17px; line-height: 1.8; color: var(--grey); margin: 0 auto 36px; max-width: 560px; text-align: center; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }

/* Mockup elrejtve — középre igazított layout */
.hero-visual { display: none; }
.hero-mockup { position: relative; }
.mockup-browser {
  background: var(--bg); border-radius: 16px; overflow: hidden; width: 380px;
  box-shadow: 0 24px 80px rgba(70,165,253,.2), 0 0 0 1px var(--border);
  animation: mockupFloat 5s ease-in-out infinite;
}
[data-theme="dark"] .mockup-browser { background: #111827; box-shadow: 0 24px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.08); }
@keyframes mockupFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.mockup-bar { background: #f1f5f9; padding: 11px 16px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--border); }
[data-theme="dark"] .mockup-bar { background: #0d1117; }
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #fc5c65; }
.mockup-dots span:nth-child(2) { background: #fed330; }
.mockup-dots span:nth-child(3) { background: #26de81; }
.mockup-url { flex: 1; background: var(--bg); border-radius: 4px; padding: 4px 10px; font-size: 11px; color: var(--grey); text-align: center; border: 1px solid var(--border); }
.mockup-content { padding: 18px; }
.mc-header { height: 7px; background: var(--blue); border-radius: 4px; margin-bottom: 14px; }
.mc-hero { background: var(--bg-light); border-radius: 10px; padding: 14px; margin-bottom: 11px; }
.mc-title { height: 12px; background: var(--dark); border-radius: 4px; width: 68%; margin-bottom: 8px; opacity: .6; }
.mc-sub { height: 7px; background: var(--border); border-radius: 4px; width: 90%; margin-bottom: 11px; }
.mc-btn { height: 26px; background: var(--blue); border-radius: 6px; width: 38%; opacity: .85; }
.mc-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.mc-card { height: 36px; background: var(--blue-xpale); border-radius: 6px; border: 1px solid var(--blue-pale); }
.mockup-float {
  position: absolute; background: var(--bg); border-radius: 12px; padding: 8px 13px;
  box-shadow: 0 6px 20px rgba(0,0,0,.1); display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--dark); white-space: nowrap;
  border: 1px solid var(--border);
}
.f1 { top: -18px; left: -44px; animation: badgeFloat1 4s ease-in-out infinite; }
.f2 { bottom: 44px; left: -52px; animation: badgeFloat2 5s ease-in-out infinite; }
.f3 { top: 64px; right: -52px; animation: badgeFloat1 3.5s ease-in-out infinite 1s; }
@keyframes badgeFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes badgeFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; }
.scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--blue), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.4} 50%{opacity:1} }
.hero-scroll span { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey-light); }

/* ══════════════════════════════════════
   MIÉRT FONTOS?
══════════════════════════════════════ */
.miert-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.miert-left h2 { font-family: 'Clash Display', system-ui, sans-serif; font-size: clamp(28px, 3.5vw, 45px); font-weight: 700; color: var(--dark); margin: 12px 0 24px; line-height: 1.1; letter-spacing: 0px; }
.miert-lead { font-size: 16px; line-height: 1.8; color: var(--grey); margin-bottom: 16px; }
.miert-left > p { font-size: 15px; line-height: 1.8; color: var(--grey); margin-bottom: 0; }
.miert-left strong { color: var(--dark); font-weight: 700; }
.miert-cta { margin-top: 32px; }
.miert-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.miert-feat { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px; display: flex; gap: 14px; align-items: flex-start; transition: border-color .2s, transform .2s; }
.miert-feat:hover { border-color: var(--blue-pale); transform: translateY(-3px); }
[data-theme="dark"] .miert-feat { background: var(--bg-light); }
.miert-feat-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--blue-xpale); border: 1px solid var(--blue-pale); display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }
.miert-feat h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.miert-feat p { font-size: 13px; color: var(--grey); line-height: 1.6; }
.miert-quote { background: var(--bg-light); border-radius: var(--radius-lg); padding: 28px 32px; border-left: 4px solid var(--blue); position: relative; }
[data-theme="dark"] .miert-quote { background: rgba(70,165,253,.08); border-left-color: var(--blue); }
.quote-mark { font-family: Georgia, serif; font-size: 72px; color: var(--blue); opacity: .2; line-height: .8; display: block; margin-bottom: -8px; }
.miert-quote p { font-size: 15px; color: var(--dark); font-weight: 600; line-height: 1.7; font-style: italic; }

/* ══════════════════════════════════════
   ABOUT / RÓLAM
══════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-placeholder { background: linear-gradient(135deg, var(--blue-xpale), var(--blue-pale)); border-radius: 20px; aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; border: 2px solid var(--blue-pale); }
.about-img-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.about-img-inner span { font-size: 13px; color: var(--blue); font-weight: 600; }
.about-accent-line { position: absolute; bottom: -20px; left: 20px; width: 70px; height: 4px; background: linear-gradient(90deg, var(--blue), var(--blue-light)); border-radius: 4px; }
.about-text h2 { font-family: 'Clash Display', system-ui, sans-serif; font-size: clamp(26px, 3vw, 39px); font-weight: 700; color: var(--dark); margin: 12px 0 24px; line-height: 1.15; letter-spacing: 0px; }
.about-text p { font-size: 15px; color: var(--grey); line-height: 1.8; margin-bottom: 14px; }
.skills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.skill-tag { background: var(--blue-xpale); color: var(--blue); font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 20px; border: 1px solid var(--blue-pale); letter-spacing: .3px; }

/* ══════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════ */

/* ══════════════════════════════════════
   REFERENCIÁK — HORIZONTAL SCROLL
══════════════════════════════════════ */
.ref-section { overflow: hidden; }
/* ── Swiper wrapper ── */
.ref-swiper { width: 100%; padding: 12px 0 36px !important; overflow: hidden; }
.ref-swiper .swiper-wrapper { display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; align-items: stretch !important; }
/* ── Cards ── */
.swiper-slide.ref-card { width: min(640px, 62vw) !important; height: auto; border-radius: 20px; overflow: hidden; background: var(--bg); border: 1.5px solid var(--border); box-shadow: var(--shadow); cursor: grab; will-change: transform, filter, opacity; }
.swiper-slide-active.ref-card { box-shadow: var(--shadow-lg); }
.ref-card-img { position: relative; height: 380px; overflow: hidden; }
.ref-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform .5s ease; }
.ref-card:hover .ref-card-img img { transform: scale(1.03); }
.ref-card-img > div { width: 100%; height: 100%; }
.ref-cat-badge { position: absolute; top: 14px; left: 14px; background: rgba(0,0,0,.45); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: rgba(255,255,255,.92); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; border: 1px solid rgba(255,255,255,.15); }
.ref-card-footer { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ref-cat-label { font-size: 11px; color: var(--blue); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 3px; }
.ref-card-title { font-family: 'Clash Display', sans-serif; font-size: 20px; font-weight: 700; color: var(--dark); }
.ref-card-cta { flex-shrink: 0; font-size: 13px; font-weight: 600; color: var(--blue); white-space: nowrap; }
/* ── Dots (Swiper pagination) ── */
.ref-dots.swiper-pagination { position: relative !important; bottom: auto !important; display: flex !important; justify-content: center; align-items: center; gap: 6px; margin-top: 0; height: 24px; }
.ref-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); opacity: 1 !important; border: none; cursor: pointer; transition: all .35s cubic-bezier(.4,0,.2,1); padding: 0; display: inline-block; }
.ref-dot:hover:not(.active) { background: var(--grey-light); transform: scale(1.3); }
.ref-dot.active { width: 26px; border-radius: 4px; background: var(--blue); }
/* ── Modal ── */
.ref-modal { position: fixed; inset: 0; background: rgba(0,0,0,.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.ref-modal.open { opacity: 1; visibility: visible; }
.ref-modal-inner { background: var(--bg); border-radius: 24px; max-width: 680px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; transform: scale(.96) translateY(16px); transition: transform .3s cubic-bezier(.4,0,.2,1); box-shadow: 0 32px 80px rgba(0,0,0,.25); }
.ref-modal.open .ref-modal-inner { transform: scale(1) translateY(0); }
.ref-modal-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,.3); backdrop-filter: blur(6px); border: none; font-size: 20px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; z-index: 10; transition: background .2s; }
.ref-modal-close:hover { background: rgba(0,0,0,.55); }
.ref-modal-img { height: 320px; overflow: hidden; border-radius: 24px 24px 0 0; }
.ref-modal-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.ref-modal-img > div { width: 100%; height: 100%; }
.ref-modal-body { padding: 28px 32px 36px; }
.ref-modal-cat { font-size: 11px; color: var(--blue); font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }
.ref-modal-body h3 { font-family: 'Clash Display', sans-serif; font-size: 26px; font-weight: 700; color: var(--dark); margin: 8px 0 14px; }
.ref-modal-desc { color: var(--grey); line-height: 1.75; font-size: 15px; margin-bottom: 20px; }
.ref-modal-kinek { background: var(--blue-xpale); border-left: 3px solid var(--blue); border-radius: 0 10px 10px 0; padding: 14px 18px; margin-bottom: 28px; }
.ref-modal-kinek strong { font-size: 12px; color: var(--dark); font-weight: 700; letter-spacing: .5px; display: block; margin-bottom: 4px; }
.ref-modal-kinek p { font-size: 13px; color: var(--grey); margin: 0; line-height: 1.6; }
@media (max-width: 768px) {
  .swiper-slide.ref-card { width: calc(100vw - 64px) !important; }
  .ref-card-img { height: 220px; }
  .ref-modal-img { height: 220px; }
  .ref-modal-body { padding: 20px 20px 28px; }
}

/* ══════════════════════════════════════
   FOLYAMAT (PROCESS) — vertikális idővonal
══════════════════════════════════════ */
.process-wrap {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Középen futó függőleges vonal */
.process-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--blue-pale) 8%, var(--blue-pale) 92%, transparent);
  transform: translateX(-50%);
  z-index: 0;
}


/* Minden lépés: 2 oszlopos grid, alternálva */
.proc-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  padding: 40px 0;
  z-index: 2;
}

/* Bal oldali: illusztráció bal, szöveg jobb */
.proc-item.left .proc-visual { 
  display: flex; justify-content: flex-end; padding-right: 52px; order: 1; 
}
.proc-item.left .proc-content { 
  padding-left: 52px; order: 2; 
}

/* Jobb oldali: szöveg bal, illusztráció jobb */
.proc-item.right .proc-visual { 
  display: flex; justify-content: flex-start; padding-left: 52px; order: 2; 
}
.proc-item.right .proc-content { 
  padding-right: 52px; text-align: right; order: 1; 
}

/* Kör a középső vonalon */
.proc-item::after {
  content: attr(data-step);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 0 0 6px var(--bg-light), 0 4px 16px rgba(70,165,253,.35);
  transition: transform .3s, box-shadow .3s;
}
.proc-item:hover::after {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 0 8px var(--bg-light), 0 6px 24px rgba(70,165,253,.45);
}

/* Összekötő — nem kell, megoldottuk ::after-rel */
.proc-connector { display: none; }

/* Illusztráció doboz */
.proc-visual {
  align-items: center;
}
.proc-illus {
  width: 220px;
  height: 185px;
  background: var(--bg);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
  flex-shrink: 0;
}
.proc-illus:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 20px 60px rgba(70,165,253,.18); }
.proc-illus svg { width: 188px; height: 153px; flex-shrink: 0; }
[data-theme="dark"] .proc-illus { background: var(--bg-light); }

/* Szöveg rész */
.proc-item.right .proc-content .proc-time { float: right; }

.proc-num {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: 96px; font-weight: 700;
  color: var(--blue); opacity: .1;
  line-height: 1; letter-spacing: -1px;
  margin-bottom: -28px;
  display: block;
}
.proc-content h3 {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--dark); margin-bottom: 12px; letter-spacing: 0px;
}
.proc-content p { font-size: 14px; color: var(--grey); line-height: 1.8; margin-bottom: 16px; }
.proc-time {
  display: inline-block; background: var(--blue-xpale); color: var(--blue);
  font-size: 12px; font-weight: 700; padding: 5px 14px;
  border-radius: 20px; letter-spacing: .4px;
}

/* ══════════════════════════════════════
   ÁRLISTA
══════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; align-items: stretch; max-width: 760px; margin: 0 auto; }
.pcard {
  background: var(--bg); border: 2px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px 26px; position: relative; display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .2s;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-pale); }
.pcard.featured { border-color: var(--blue); background: linear-gradient(145deg, var(--blue), var(--blue-dark)); }
.pcard.featured:hover { border-color: var(--blue-light); }
.pcard-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--blue-light); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 20px; letter-spacing: .5px; white-space: nowrap; }
.pcard.featured .pcard-badge { background: #fff; color: var(--blue); }
.pcard-head { margin-bottom: 26px; }
.pcard-tag { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); }
.pcard.featured .pcard-tag { color: rgba(255,255,255,.65); }
.pcard-price { display: flex; align-items: baseline; gap: 6px; margin: 10px 0 10px; flex-wrap: wrap; }
.pcard-price strong { font-family: 'Clash Display', system-ui, sans-serif; font-size: 32px; font-weight: 700; color: var(--dark); letter-spacing: 0px; line-height: 1; }
.pcard.featured .pcard-price strong { color: #fff; }
.pcard-price span { font-size: 13px; color: var(--grey); }
.pcard.featured .pcard-price span { color: rgba(255,255,255,.65); }
.pcard-head > p { font-size: 13px; color: var(--grey); line-height: 1.6; }
.pcard.featured .pcard-head > p { color: rgba(255,255,255,.65); }
.pcard-features { flex: 1; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.pcard-features li { font-size: 13px; color: var(--dark); padding-left: 22px; position: relative; line-height: 1.5; }
.pcard.featured .pcard-features li { color: rgba(255,255,255,.9); }
.pcard-features li.yes::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; font-size: 12px; }
.pcard.featured .pcard-features li.yes::before { color: rgba(255,255,255,.9); }
.pcard-features li.no { opacity: .38; }
.pcard-features li.no::before { content: '✗'; position: absolute; left: 0; font-weight: 700; font-size: 12px; }
.pcard.featured .btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); }
.pcard.featured .btn-ghost:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════
   FAQ / GYIK
══════════════════════════════════════ */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg); border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
[data-theme="dark"] .faq-item { background: var(--bg-light); }
.faq-item:hover { border-color: var(--blue-pale); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 19px 22px; font-size: 14px; font-weight: 600; color: var(--dark); text-align: left; gap: 16px; transition: color .2s; background: none; }
.faq-q:hover, [aria-expanded="true"].faq-q { color: var(--blue); }
.faq-icon { font-size: 20px; font-weight: 300; flex-shrink: 0; color: var(--blue); transition: transform .3s; }
[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a.open { max-height: 220px; }
.faq-a p { padding: 0 22px 20px; font-size: 14px; color: var(--grey); line-height: 1.8; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.contact-left h2 { font-family: 'Clash Display', system-ui, sans-serif; font-size: clamp(26px, 3vw, 41px); font-weight: 700; color: var(--dark); margin: 10px 0 18px; line-height: 1.12; letter-spacing: 0px; }
.contact-left > p { font-size: 15px; color: var(--grey); line-height: 1.8; margin-bottom: 30px; }
.contact-infos { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.cinfo { display: flex; align-items: center; gap: 13px; font-size: 14px; color: var(--grey); }
.cinfo svg { color: var(--blue); flex-shrink: 0; }
.cinfo a:hover { color: var(--blue); }
.social-links { display: flex; gap: 10px; }
.social-link { width: 40px; height: 40px; border-radius: 10px; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--grey); transition: all .2s; }
.social-link:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-xpale); }
.contact-right { background: var(--bg); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
[data-theme="dark"] .contact-right { background: var(--bg-light); }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--dark); letter-spacing: .3px; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 15px; border: 2px solid var(--border); border-radius: 10px;
  font-size: 14px; color: var(--dark); background: var(--bg);
  transition: border-color .2s; outline: none; width: 100%; resize: vertical;
}
[data-theme="dark"] .form-group input, [data-theme="dark"] .form-group select, [data-theme="dark"] .form-group textarea {
  background: var(--bg); color: var(--dark); border-color: var(--border);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--grey-light); }
.form-success { display: none; padding: 13px 18px; background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.3); border-radius: 10px; color: #059669; font-size: 14px; font-weight: 600; text-align: center; }
.field-error { display: none; font-size: 12px; color: #dc2626; font-weight: 600; margin-top: 2px; }
.form-gdpr { gap: 6px !important; }
.gdpr-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.gdpr-label input[type="checkbox"] { width: 17px; height: 17px; min-width: 17px; margin-top: 2px; accent-color: var(--blue); cursor: pointer; }
.gdpr-label span { font-size: 12px; color: var(--grey); line-height: 1.5; }
.gdpr-label a { color: var(--blue); text-decoration: underline; }

/* ══════════════════════════════════════
   FOOTER — DARK MODE FIX
══════════════════════════════════════ */
.footer {
  background: #0d1326;   /* Erős sötét alap — world módban is */
  color: #fff;
  padding: 64px 0 32px;
}
[data-theme="dark"] .footer {
  background: #060a16;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 72px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.45); margin-top: 14px; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; }
.fl-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col-title { font-family: 'Clash Display', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 4px; }
.fl-col a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .2s; }
.fl-col a:hover { color: #fff; }
.fl-col span { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-logo-text { font-family: 'Clash Display', system-ui, sans-serif; font-size: 32px; font-weight: 700; color: #fff; display: inline-block; }
.footer-logo-text em { color: var(--blue); font-style: normal; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.07); flex-wrap: wrap; gap: 14px; }
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,.28); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.28); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════
   COOKIE
══════════════════════════════════════ */
.cookie-banner { display: none; position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 9000; width: calc(100% - 40px); max-width: 660px; }
.cookie-inner { background: var(--bg); border-radius: 16px; padding: 20px 24px; box-shadow: 0 20px 60px rgba(0,0,0,.18); border: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-text strong { display: block; font-size: 14px; color: var(--dark); margin-bottom: 4px; }
.cookie-text p { font-size: 13px; color: var(--grey); line-height: 1.5; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: var(--blue); color: #fff; border: none; border-radius: 10px; padding: 9px 18px; font-size: 13px; font-weight: 600; cursor: pointer; transition: background .2s; }
.cookie-accept:hover { background: #1246b5; }
.cookie-decline { background: transparent; color: var(--grey); border: 1.5px solid var(--border); border-radius: 10px; padding: 9px 18px; font-size: 13px; font-weight: 600; cursor: pointer; transition: border-color .2s, color .2s; }
.cookie-decline:hover { border-color: var(--blue); color: var(--blue); }

/* ══════════════════════════════════════
   SCROLL ANIMÁCIÓ
══════════════════════════════════════ */
/* Scroll reveal rendszer */
.sr {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.sr.sr-left  { transform: translateX(-40px); }
.sr.sr-right { transform: translateX(40px); }
.sr.sr-scale { transform: translateY(20px) scale(0.96); }
.sr.sr-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .sr { transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════════════ */
/* Hero badges — mindig látszanak, középre igazítva */
.hero-mobile-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.hero-mobile-badges .mockup-float {
  position: static;
  animation: badgeFloat 3.6s ease-in-out infinite;
}
.hero-mobile-badges .mockup-float:nth-child(2) { animation-delay: -1.2s; }
.hero-mobile-badges .mockup-float:nth-child(3) { animation-delay: -2.4s; }
@keyframes badgeFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-6px); }
}

@media (max-width: 1024px) {
  .hero-sub { margin: 0 auto 36px; }
  .miert-grid { grid-template-columns: 1fr; gap: 48px; }
  .miert-left { text-align: center; }
  .miert-cta { display: flex; justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { width: 100%; max-width: 420px; margin: 0 auto; }
  .about-img-placeholder { width: 100%; }
  .about-img-wrap img { width: 100%; }
  .about-text { text-align: center; }
  .skills { justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* ── Folyamat: tablet ── */
  .proc-item.left .proc-visual { padding-right: 36px; }
  .proc-item.left .proc-content { padding-left: 36px; }
  .proc-item.right .proc-visual { padding-left: 36px; }
  .proc-item.right .proc-content { padding-right: 36px; }
  .proc-illus { width: 170px; height: 148px; padding: 12px; }
  .proc-illus svg { width: 146px; height: 124px; }
  .proc-num { font-size: 72px; margin-bottom: -22px; }
  .proc-content h3 { font-size: 22px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
══════════════════════════════════════ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* ── NAV mobilon ── */
  .nav { padding: 0 20px; gap: 0; height: 64px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 0 0 24px;
    gap: 0;
    overflow-y: auto;
    max-height: calc(100vh - 64px);
    z-index: 790;
    border-top: 1px solid var(--border);
    box-shadow: 0 16px 48px rgba(0,0,0,.15);
    animation: none;
  }
  [data-theme="dark"] .nav-links { background: #0b0f1e; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); margin: 0; padding: 0; list-style: none; }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    transition: background .15s, color .15s;
  }
  .nav-links a:hover { background: var(--bg-light); color: var(--blue); }
  .nav-links a::after { display: none; }
  .burger { display: flex; }
  .btn-nav { display: none; }
  .theme-toggle { padding: 4px 8px; }
  .nav-actions { gap: 8px; margin-left: auto; }

  /* ── Sections ── */
  .section { padding: 36px 0; }
  .section-head { margin-bottom: 32px; }
  .miert-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .hero-title { font-size: 40px; }
  .hero-sub { font-size: 15px; }
  .hero { padding-top: calc(64px + 40px + env(safe-area-inset-top, 0px)); }
  .contact-right { padding: 24px 18px; }
  .contact-left { text-align: center; }
  .contact-infos { align-items: center; }
  .social-links { justify-content: center; }
  .miert-quote { padding: 20px 22px; }

  /* ── Folyamat mobilon: kártyák egymás alatt ── */
  .process-wrap::before { display: none; }
  .proc-item,
  .proc-item.right {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
  }
  .proc-item.last { border-bottom: none; }
  .proc-item::after { 
    display: none;
  }
  .proc-item.left .proc-visual,
  .proc-item.right .proc-visual {
    order: 2 !important;
    justify-content: center;
    padding: 0;
    margin-bottom: 16px;
  }
  .proc-item.left .proc-content,
  .proc-item.right .proc-content {
    order: 3 !important;
    padding: 0;
    text-align: center;
    width: 100%;
  }
  .proc-item.right .proc-content .proc-time { float: none; }
  .proc-illus { width: 180px; height: 155px; padding: 12px; }
  .proc-illus svg { width: 156px; height: 131px; }
  .proc-num { font-size: 64px; margin-bottom: -20px; }
  .proc-content h3 { font-size: 22px; }
  .proc-content p { font-size: 14px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL (≤480px)
══════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-title { font-size: 34px; letter-spacing: 0px; line-height: 1.15; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn-primary, .hero-cta .btn-ghost { width: 100%; text-align: center; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }
  .footer-links { grid-template-columns: 1fr; }
  .miert-feat { flex-direction: column; align-items: center; text-align: center; }
  .pricing-grid { max-width: 100%; }
  .proc-illus { width: 160px; height: 138px; }
  .proc-illus svg { width: 136px; height: 114px; }
}

/* ══════════════════════════════════════
   NOISE / GRAIN TEXTÚRA
══════════════════════════════════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
[data-theme="dark"] body::before { opacity: 0.045; }

/* ══════════════════════════════════════
   SZÖVEG REVEAL ANIMÁCIÓ
══════════════════════════════════════ */
.reveal-wrap {
  overflow: hidden;
  display: block;
}
.reveal-line {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease;
}
.reveal-line.revealed {
  transform: translateY(0);
  opacity: 1;
}

/* ══════════════════════════════════════
   TYPEWRITER EFFEKT
══════════════════════════════════════ */
.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--blue);
  margin-left: 3px;
  vertical-align: middle;
  border-radius: 2px;
  animation: cursorBlink 0.9s ease-in-out infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}


/* ══════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .reveal-line { transition: none; transform: translateY(0); opacity: 1; }
  .typewriter-cursor { animation: none; }
  .scroll-hint-arrow span { animation: none; }
  body::before { display: none; }
}


/* ══════════════════════════════════════
   OLDAL HÁTTÉR — gradient + pont minta
══════════════════════════════════════ */
body {
  background-color: #eaf1ff;
  background-image: linear-gradient(180deg, #dce8ff 0%, #e4eeff 30%, #eef4ff 65%, #ffffff 100%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

[data-theme="dark"] body {
  background-color: #0b0f1e;
  background-image: linear-gradient(180deg, #0c1525 0%, #0d1628 30%, #0c1422 65%, #0b0f1e 100%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* Minden szekció átlátszó hogy a body háttér látsszon */
.section, .bg-light {
  background: transparent !important;
}

/* ══════════════════════════════════════
   GLOBÁLIS AURORA — egész oldalon látszik
══════════════════════════════════════ */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
}
.a1 {
  width: 70vw; height: 60vh;
  background: rgba(30, 100, 200, 0.5);
  top: -20vh; left: -15vw;
  animation: aurora1 7s ease-in-out infinite;
}
.a2 {
  width: 55vw; height: 55vh;
  background: rgba(80, 160, 240, 0.4);
  top: -10vh; right: -12vw;
  animation: aurora2 9s ease-in-out infinite;
}
.a3 {
  width: 45vw; height: 45vh;
  background: rgba(120, 190, 255, 0.3);
  top: 5vh; left: 25vw;
  animation: aurora3 6s ease-in-out infinite;
}
[data-theme="light"] .a1 { background: rgba(30, 110, 220, 0.18); }
[data-theme="light"] .a2 { background: rgba(100, 180, 255, 0.15); }
[data-theme="light"] .a3 { background: rgba(180, 225, 255, 0.2); }

/* Minden tartalom az aurora felett */
.page-wrap > * { position: relative; z-index: 1; }

/* ══════════════════════════════════════
   STATS + ILLUSZTRÁCIÓ SZEKCIÓ
══════════════════════════════════════ */
.stats-section {
  background: transparent;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before { display: none; }
.stats-section::after { display: none; }
.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Illusztráció */
.stats-illus { position: relative; display: flex; justify-content: center; }
.illus-wrap { position: relative; width: 100%; max-width: 420px; }
.laptop-svg { width: 100%; filter: drop-shadow(0 20px 60px rgba(70,165,253,.3)); }

/* Kódsorok animáció */
.code-line {
  animation: codeDraw 0.6s ease forwards;
  animation-play-state: paused;
}
.stats-section.visible .code-line:nth-child(1)  { animation-delay: 0.1s; animation-play-state: running; }
.stats-section.visible .code-line:nth-child(2)  { animation-delay: 0.25s; animation-play-state: running; }
.stats-section.visible .code-line:nth-child(3)  { animation-delay: 0.4s; animation-play-state: running; }
.stats-section.visible .code-line:nth-child(4)  { animation-delay: 0.55s; animation-play-state: running; }
.stats-section.visible .code-line:nth-child(5)  { animation-delay: 0.7s; animation-play-state: running; }
.stats-section.visible .code-line:nth-child(6)  { animation-delay: 0.85s; animation-play-state: running; }
.stats-section.visible .code-line:nth-child(7)  { animation-delay: 1.0s; animation-play-state: running; }
.stats-section.visible .code-line:nth-child(8)  { animation-delay: 1.15s; animation-play-state: running; }
.stats-section.visible .code-line:nth-child(9)  { animation-delay: 1.3s; animation-play-state: running; }

@keyframes codeDraw {
  0%   { width: 0; }
  100% { width: var(--w, 120px); }
}

/* Lebegő ikonok */
.float-icon {
  position: absolute;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(70,165,253,.2);
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #46a5fd;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(70,165,253,.1);
}
.float-icon span { color: #1a1a2e; font-size: 11px; }
.float-1 { top: -10px; left: -20px; animation: floatA 3s ease-in-out infinite; }
.float-2 { top: 30px; right: -24px; animation: floatB 3.5s ease-in-out infinite; }
.float-3 { bottom: 60px; left: -24px; animation: floatA 4s ease-in-out infinite 0.5s; }
.float-4 { bottom: 10px; right: -16px; animation: floatB 3.2s ease-in-out infinite 1s; }
@keyframes floatA {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-10px); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(8px); }
}

/* Statisztikák */
.stats-right { color: var(--dark); }
.stats-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-xpale);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.stats-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 40px;
}
.stats-title em { font-style: normal; color: #46a5fd; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-item {
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(70,165,253,.15);
  border-radius: 16px;
  padding: 24px 20px;
  transition: border-color .3s, background .3s, box-shadow .3s;
  backdrop-filter: blur(8px);
}
.stat-item:hover {
  border-color: rgba(70,165,253,.4);
  background: #fff;
  box-shadow: 0 8px 32px rgba(70,165,253,.12);
}
.stat-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1;
  display: inline;
}
.stat-plus {
  font-family: 'Clash Display', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #46a5fd;
  display: inline;
  margin-left: 2px;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-top: 8px;
  line-height: 1.4;
}
.stat-label small {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 400;
}

/* Mobil */
@media (max-width: 768px) {
  .stats-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-illus { justify-content: center; width: 100%; overflow: visible; }
  .illus-wrap { width: 85%; max-width: 300px; margin: 0 auto; padding: 0; }
  .float-icon { display: flex; }
  .float-1 { top: -14px; left: 10px; }
  .float-2 { top: 20px; right: 10px; }
  .float-3 { bottom: 40px; left: 10px; }
  .float-4 { bottom: 40px; right: 10px; }
  .stats-grid { gap: 14px; }
  .stat-num { font-size: 34px; }
  .stats-right { text-align: center; }
  .stat-item { text-align: center; }
}

[data-theme="dark"] .stats-section {
  background: transparent;
}
[data-theme="dark"] .stat-item {
  background: rgba(255,255,255,.04);
  border-color: rgba(70,165,253,.2);
}
[data-theme="dark"] .stat-item:hover {
  background: rgba(70,165,253,.08);
}
[data-theme="dark"] .stat-num { color: #fff; }
[data-theme="dark"] .stat-label { color: rgba(255,255,255,.7); }
[data-theme="dark"] .stat-label small { color: rgba(255,255,255,.4); }
[data-theme="dark"] .stats-title { color: #fff; }
[data-theme="dark"] .float-icon { background: rgba(255,255,255,.06); color: #93c5fd; border-color: rgba(70,165,253,.3); box-shadow: none; }
[data-theme="dark"] .float-icon span { color: #e2e8f0; }

/* Laptop SVG - világos mód */
/* Laptop - alapértelmezett (light mód, nincs data-theme) */
.laptop-body-rect { fill: #dde6f5; stroke: #93c5fd; }
.laptop-screen-rect { fill: #eef4ff; }
.laptop-base-rect { fill: #c8d8ee; stroke: #93c5fd; }
.laptop-panel-rect { fill: #dde6f5; stroke: #93c5fd; }
.laptop-inner-rect { fill: #bfd4f0; }
.laptop-svg { filter: drop-shadow(0 20px 60px rgba(70,165,253,.12)); }
/* Laptop - dark mód */
[data-theme="dark"] .laptop-body-rect { fill: #1e293b; stroke: #46a5fd; }
[data-theme="dark"] .laptop-screen-rect { fill: #0f172a; }
[data-theme="dark"] .laptop-base-rect { fill: #334155; stroke: #46a5fd; }
[data-theme="dark"] .laptop-panel-rect { fill: #1e293b; stroke: #46a5fd; }
[data-theme="dark"] .laptop-inner-rect { fill: #0f2040; }
[data-theme="dark"] .laptop-svg { filter: drop-shadow(0 20px 60px rgba(70,165,253,.3)); }
/* ============================================================
   CHAT WIDGET
   ============================================================ */
#mdb-chat { position: fixed; bottom: 28px; right: 28px; z-index: 9999; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; }

/* Toggle gomb */
#chat-toggle {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--blue); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(70,165,253,.45);
  transition: transform .2s, box-shadow .2s; position: relative;
}
#chat-toggle:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(70,165,253,.55); }
.chat-badge {
  position: absolute; top: -3px; right: -3px; background: #e63030;
  color: #fff; font-size: 11px; font-weight: 700; width: 18px; height: 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff; animation: chatPulse 2s ease-in-out infinite;
}
@keyframes chatPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }

/* Chat doboz */
#chat-box {
  position: absolute; bottom: 70px; right: 0;
  width: 340px; background: var(--bg);
  border-radius: 18px; box-shadow: 0 12px 48px rgba(0,0,0,.18);
  overflow: hidden; display: none; flex-direction: column;
  border: 1px solid var(--border);
  animation: chatSlideUp .25s ease;
}
#chat-box.open { display: flex; }
@keyframes chatSlideUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

/* Fejléc */
.chat-head {
  background: var(--blue); color: #fff;
  padding: 14px 16px; display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.chat-head-actions { margin-left: auto; display: flex; gap: 6px; }
#chat-new, #chat-close-mobile {
  background: rgba(255,255,255,.2); border: none; cursor: pointer;
  color: #fff; width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .2s;
}
#chat-new:hover, #chat-close-mobile:hover { background: rgba(255,255,255,.35); }
#chat-close-mobile { display: none; }
.chat-notice { display: flex; align-items: flex-start; gap: 10px; background: rgba(70,165,253,.1); border-bottom: 1px solid rgba(70,165,253,.2); padding: 10px 14px; }
.chat-notice p { font-size: 12px; line-height: 1.5; color: var(--grey); margin: 0; flex: 1; }
.chat-notice-hidden { display: none !important; }
#chat-notice-close { flex-shrink: 0; background: none; border: none; font-size: 18px; line-height: 1; cursor: pointer; color: var(--grey); padding: 0; margin-top: -2px; }
.chat-avatar-wrap { position: relative; flex-shrink: 0; }
.chat-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.25); color: #fff;
  font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.chat-online {
  position: absolute; bottom: 1px; right: 1px;
  width: 10px; height: 10px; background: #22c55e;
  border-radius: 50%; border: 2px solid var(--blue);
}
.chat-name { font-weight: 700; font-size: 15px; }
.chat-status { font-size: 12px; opacity: .8; margin-top: 1px; }

/* Üzenetek */
.chat-messages {
  flex: 1; min-height: 0; padding: 14px 12px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 10px; max-height: 320px;
}
.chat-msg { display: flex; }
.chat-msg.bot { justify-content: flex-start; }
.chat-msg.user { justify-content: flex-end; }
.chat-bubble {
  max-width: 82%; padding: 10px 13px; border-radius: 14px;
  font-size: 14px; line-height: 1.5;
}
.chat-msg.bot .chat-bubble {
  background: var(--bg-light); color: var(--dark);
  border-bottom-left-radius: 4px; border: 1px solid var(--border);
}
.chat-msg.user .chat-bubble {
  background: var(--blue); color: #fff;
  border-bottom-right-radius: 4px;
}

/* Typing */
.chat-typing { padding: 4px 12px 0; display: none; }
.chat-typing .chat-bubble {
  display: flex; gap: 5px; align-items: center;
  width: fit-content; padding: 10px 14px;
}
.chat-typing span {
  width: 7px; height: 7px; background: var(--grey-light);
  border-radius: 50%; animation: typingDot 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot { 0%,80%,100%{transform:scale(1);opacity:.5} 40%{transform:scale(1.3);opacity:1} }

/* Input */
.chat-footer {
  padding: 10px 12px; border-top: 1px solid var(--border);
  display: flex; gap: 8px; align-items: center;
  flex-shrink: 0;
}
#chat-input {
  flex: 1; border: 1px solid var(--border); border-radius: 22px;
  padding: 9px 14px; font-size: 14px; background: var(--bg);
  color: var(--dark); outline: none; transition: border-color .2s;
  font-family: inherit;
}
#chat-input:focus { border-color: var(--blue); }
#chat-send {
  width: 36px; height: 36px; border-radius: 50%; background: var(--blue);
  color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .2s;
}
#chat-send:hover { background: var(--blue-dark); }
#chat-send:disabled { background: var(--grey-light); cursor: not-allowed; }

/* Hibaüzenet */
.chat-error { color: #e63030; font-size: 12px; padding: 4px 12px; }

/* Dark mode */
[data-theme="dark"] #chat-box { background: #0f172a; border-color: #1e293b; }
[data-theme="dark"] .chat-msg.bot .chat-bubble { background: #1e293b; color: #e2e8f0; border-color: #2d3748; }
[data-theme="dark"] #chat-input { background: #1e293b; color: #e2e8f0; border-color: #2d3748; }
[data-theme="dark"] .chat-footer { border-color: #1e293b; }
[data-theme="dark"] .chat-messages { color: #e2e8f0; }

/* Scroll-to-top gomb */
#scrollTop {
  position: fixed; bottom: 100px; right: 28px; z-index: 9998;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg); color: var(--blue); border: 1.5px solid var(--border);
  cursor: pointer; display: none; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.12); transition: all .2s;
}
#scrollTop:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
#scrollTop.visible { display: flex; }
[data-theme="dark"] #scrollTop { background: #1e293b; border-color: #2d3748; color: var(--blue-light); }
[data-theme="dark"] #scrollTop:hover { background: var(--blue); color: #fff; }

/* Chat + ScrollTop mobil fix */
@media(max-width:480px) {
  #mdb-chat { bottom: 16px; right: 16px; }
  #chat-box {
    position: fixed !important;
    top: 0 !important; left: 0 !important;
    right: 0 !important; bottom: 0 !important;
    width: 100% !important;
    max-height: none !important;
    border-radius: 0 !important;
    flex-direction: column;
    overflow: hidden;
  }
  #chat-box.open { display: flex; }
  .chat-messages {
    max-height: none; min-height: 0;
    -webkit-overflow-scrolling: touch; /* iOS lendületes görgetés */
    overflow-y: scroll;
  }
  .chat-notice { flex-shrink: 0; }
  .chat-typing { flex-shrink: 0; }
  #chat-close-mobile { display: flex; }
  #scrollTop { bottom: 88px; right: 16px; }
}

/* ============================================================
   CONFIGURATOR
   ============================================================ */
.configurator { display: flex; flex-direction: column; gap: 20px; }
.config-top { display: flex; flex-direction: column; gap: 8px; }
.config-step-label { font-size: 12px; font-weight: 700; color: var(--text-light); letter-spacing: .6px; text-transform: uppercase; }
.config-progress-wrap { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.config-progress-bar { height: 100%; background: linear-gradient(90deg,#46a5fd,#3b82f6); border-radius: 2px; transition: width .4s ease; }

.config-step { display: none; }
.config-step.active { display: block; }
.config-question { font-family: 'Clash Display',system-ui,sans-serif; font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.config-hint { font-size: 13px; color: var(--text-light); margin-bottom: 10px; margin-top: -10px; }

/* Radio option cards */
.config-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-items: stretch; }
.config-option { cursor: pointer; display: flex; }
.config-option input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.config-option-inner { display: flex; flex-direction: column; justify-content: center; gap: 3px; padding: 14px 16px; width: 100%; border-radius: 10px; border: 2px solid var(--border); background: var(--bg-light); transition: border-color .18s, background .18s; }
.config-option:hover .config-option-inner { border-color: #46a5fd; }
.config-option input:checked ~ .config-option-inner,
.config-option.selected .config-option-inner { border-color: #46a5fd; background: rgba(70,165,253,.08); }
.config-option-inner strong { font-size: 14px; font-weight: 600; color: var(--text); }
.config-option-inner small { font-size: 12px; color: var(--text-light); }

/* Checkbox groups */
.config-checkgroups { display: flex; flex-direction: column; gap: 10px; max-height: 360px; overflow-y: auto; padding-right: 4px; scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
.config-checkgroups::-webkit-scrollbar { width: 4px; }
.config-checkgroups::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.config-checkgroup { background: var(--bg-light); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; }
.config-checkgroup-title { font-size: 11px; font-weight: 700; color: #46a5fd; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 8px; }
.config-checks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.config-check { display: flex; align-items: center; gap: 7px; cursor: pointer; padding: 4px 6px; border-radius: 6px; font-size: 13px; color: var(--text); transition: background .15s; }
.config-check:hover { background: var(--border); }
.config-check input[type="checkbox"] { width: 14px; height: 14px; accent-color: #46a5fd; flex-shrink: 0; cursor: pointer; }
.config-other-input { display: none; width: 100%; margin-top: 8px; padding: 7px 11px; border-radius: 8px; border: 1px solid var(--border); background: var(--bg); color: var(--text); font-size: 13px; font-family: inherit; outline: none; transition: border-color .2s; }
.config-other-input.visible { display: block; }
.config-other-input:focus { border-color: #46a5fd; }

/* Navigation */
.config-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.config-btn { min-width: 120px; }
.config-step-error { font-size: 13px; color: #e63030; text-align: center; margin-top: -8px; display: none; }
.config-step-error.visible { display: block; }

@keyframes configShake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-7px); }
  60%      { transform: translateX(7px); }
  80%      { transform: translateX(-3px); }
}

/* Dark mode */
[data-theme="dark"] .config-option-inner { background: rgba(255,255,255,.04); }
[data-theme="dark"] .config-option input:checked ~ .config-option-inner,
[data-theme="dark"] .config-option.selected .config-option-inner { background: rgba(70,165,253,.18); }
[data-theme="dark"] .config-checkgroup { background: rgba(255,255,255,.04); }
[data-theme="dark"] .config-other-input { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }

/* Mobile */
@media (max-width: 520px) {
  .config-options { grid-template-columns: 1fr; }
  .config-checks-grid { grid-template-columns: 1fr; }
  .config-btn { min-width: 100px; }
}


/* ══════════════════════════════════════
   GLASSMORPHISM — egységes kártyákon
══════════════════════════════════════ */
.miert-feat,
.miert-quote,
.swiper-slide.ref-card,
.pcard:not(.featured),
.faq-item,
.contact-right,
.stat-item,
.mockup-float,
.config-option-inner,
.config-checkgroup,
.proc-illus,
.about-img-placeholder,
.ref-modal-inner,
.cookie-inner {
  background: rgba(255,255,255,.25) !important;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,.55) !important;
  box-shadow: 0 4px 24px rgba(70,165,253,.08), inset 0 1px 0 rgba(255,255,255,.6) !important;
}

[data-theme="dark"] .miert-feat,
[data-theme="dark"] .miert-quote,
[data-theme="dark"] .swiper-slide.ref-card,
[data-theme="dark"] .pcard:not(.featured),
[data-theme="dark"] .faq-item,
[data-theme="dark"] .contact-right,
[data-theme="dark"] .stat-item,
[data-theme="dark"] .mockup-float,
[data-theme="dark"] .config-option-inner,
[data-theme="dark"] .config-checkgroup,
[data-theme="dark"] .proc-illus,
[data-theme="dark"] .about-img-placeholder,
[data-theme="dark"] .ref-modal-inner,
[data-theme="dark"] .cookie-inner {
  background: rgba(255,255,255,.06) !important;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,.1) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.08) !important;
}

/* ref-card footer külön */
.ref-card-footer {
  background: rgba(255,255,255,.25);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
[data-theme="dark"] .ref-card-footer {
  background: rgba(255,255,255,.05);
}
