/* ========================================
   Qwerty Roma — Presentazione
   CSS separato + miglioramenti grafici
   ======================================== */

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

/* --- VARIABLES --- */
:root {
  --r-background-color: #0a0a12;
  --r-main-font: 'Inter', 'Montserrat', sans-serif;
  --r-heading-font: 'Montserrat', sans-serif;
  --r-main-color: #e8e8e6;
  --r-heading-color: #fff;
  --g: #95C21F;
  --gd: #7AA318;
  --gl: #b5e030;
  --r: #E05252;
  --w: #F0A030;
  --b: #3A8FD4;
  --gr: #8899AA;
  --bg: #0a0a12;
  --card-bg: rgba(255,255,255,0.03);
  --card-border: rgba(255,255,255,0.07);
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
}

/* --- BASE --- */
.reveal {
  font-family: 'Inter', 'Montserrat', sans-serif;
}

.reveal h1, .reveal h2, .reveal h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.reveal h1 { font-size: 2.4em; }
.reveal h2 { font-size: 1.4em; text-shadow: 0 2px 20px rgba(0,0,0,0.3); margin-bottom: .2em; }
.reveal h3 { font-size: .9em; color: var(--g); letter-spacing: .1em; }

.reveal p {
  font-weight: 300;
  line-height: 1.6;
  font-size: .75em;
  color: #dde4ea;
}

.reveal .slide-number { display: none; }

/* --- PROGRESS & CONTROLS --- */
.reveal .progress { height: 3px; color: var(--g); }
.reveal .progress span { background: linear-gradient(90deg, var(--g), var(--gl)); }
.reveal .controls { color: var(--g); }
.reveal .controls button {
  transition: color 0.3s, transform 0.2s;
}
.reveal .controls button:hover {
  color: var(--gl);
  transform: scale(1.1);
}

/* --- KEYFRAMES --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: none; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.6); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes barSlide {
  from { width: 0; }
  to { width: 80px; }
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 14px rgba(149,194,31,.3); }
  50% { box-shadow: 0 0 32px rgba(149,194,31,.7); }
}
@keyframes shimmer {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}
@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: .35; }
  90% { opacity: .35; }
  100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}
@keyframes scan {
  0% { top: -2%; }
  100% { top: 102%; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}
@keyframes countUp {
  from { opacity: 0; transform: scale(0.5) rotateX(45deg); }
  to { opacity: 1; transform: scale(1) rotateX(0); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* --- ANIMATION CLASSES --- */
.reveal .slides section.present .animate-up { animation: fadeInUp .8s cubic-bezier(.22,1,.36,1) forwards; }
.reveal .slides section.present .animate-left { animation: fadeInLeft .8s cubic-bezier(.22,1,.36,1) forwards; }
.reveal .slides section.present .animate-right { animation: fadeInRight .8s cubic-bezier(.22,1,.36,1) forwards; }
.reveal .slides section.present .animate-scale { animation: scaleIn .7s cubic-bezier(.22,1,.36,1) forwards; }

.delay-1 { animation-delay: .15s !important; opacity: 0; }
.delay-2 { animation-delay: .3s !important; opacity: 0; }
.delay-3 { animation-delay: .5s !important; opacity: 0; }
.delay-4 { animation-delay: .7s !important; opacity: 0; }
.delay-5 { animation-delay: .9s !important; opacity: 0; }
.delay-6 { animation-delay: 1.1s !important; opacity: 0; }

/* --- PARTICLES & EFFECTS --- */
.particles {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden; pointer-events: none; z-index: 0;
}
.particles span {
  position: absolute; border-radius: 50%;
  animation: float linear infinite;
}
.particles span:nth-child(odd) {
  width: 3px; height: 3px;
  background: rgba(149,194,31,.2);
}
.particles span:nth-child(even) {
  width: 6px; height: 6px;
  background: rgba(149,194,31,.1);
  filter: blur(2px);
}
.particles span:nth-child(3n) {
  width: 2px; height: 2px;
  background: rgba(255,255,255,.08);
}

.scanline {
  position: absolute; left: 0; width: 100%; height: 2px;
  background: linear-gradient(transparent, rgba(149,194,31,.06), transparent);
  animation: scan 10s linear infinite; pointer-events: none; z-index: 1;
}

.grid-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(149,194,31,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(149,194,31,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Noise texture overlay */
.noise-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* --- TITLE SLIDE --- */
.title-slide {
  background: #050508 !important;
  overflow: hidden;
}

.video-bg {
  position: absolute; top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  z-index: 0; pointer-events: none;
  opacity: .35;
  filter: saturate(1.2) hue-rotate(-10deg);
  object-fit: cover;
}

.video-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(149,194,31,.06) 0%, transparent 55%),
    linear-gradient(180deg, rgba(5,5,8,.3) 0%, rgba(5,5,8,.1) 40%, rgba(5,5,8,.7) 100%);
}
.title-slide::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--g), var(--gl), var(--g));
  background-size: 200%; animation: shimmer 3s linear infinite; z-index: 3;
}
.title-slide::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--g); opacity: .2; z-index: 3;
}

.g-line {
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--g), var(--gl));
  margin: 0 auto;
  animation: barSlide 1s .2s ease forwards;
}

.title-logo {
  width: 200px; height: auto; margin-bottom: .5em;
  filter: drop-shadow(0 4px 20px rgba(149,194,31,.4));
}

.title-h1 {
  font-size: 3.2em; font-weight: 900; margin: .15em 0 0;
  color: #fff;
  line-height: 1.08;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}

.title-sub {
  color: var(--g); font-size: .95em; font-weight: 700;
  letter-spacing: .2em; margin-top: .35em;
  text-shadow: 0 0 20px rgba(149,194,31,.3);
}

.title-meta {
  color: #6b7a8a; font-size: .72em; font-weight: 300; margin-top: 1.5em;
  letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center; gap: 2px;
}
.title-meta .ico { flex-shrink: 0; }

/* --- DIVIDER SLIDES --- */
.div-slide { align-items: center; justify-content: center; }

.div-slide .bnum {
  position: absolute; font-size: 20em; font-weight: 900;
  opacity: .04; letter-spacing: -.04em; z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,.08), transparent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.div-slide .dc { position: relative; z-index: 2; text-align: center; }
.div-slide h1 { font-size: 3.6em; letter-spacing: .03em; }
.div-slide .dsub {
  font-size: .82em; color: var(--gr); font-weight: 300; margin-top: .5em;
  max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.55;
}

.div-danger {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(224,82,82,.08) 0%, transparent 55%),
    linear-gradient(135deg, #0e0608 0%, #1c0e10 50%, #0a0a12 100%) !important;
}
.div-danger h1 { color: var(--r); text-shadow: 0 0 50px rgba(224,82,82,.4), 0 0 100px rgba(224,82,82,.15); }

.div-green {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(149,194,31,.08) 0%, transparent 55%),
    linear-gradient(135deg, #060c08 0%, #0c1a10 50%, #0a0a12 100%) !important;
}
.div-green h1 { color: var(--g); text-shadow: 0 0 50px rgba(149,194,31,.4), 0 0 100px rgba(149,194,31,.15); }

/* --- SECTION HEADER --- */
.sh { margin-bottom: .25em; }

.sh .tag {
  display: inline-block; font-size: .48em; font-weight: 800;
  letter-spacing: .16em; padding: 4px 14px; margin-bottom: .25em;
  text-transform: uppercase; border-radius: 3px;
}
.sh .tag.g { background: var(--g); color: #111; }
.sh .tag.r { background: var(--r); color: #fff; }
.sh .tag.w { background: var(--w); color: #111; }
.sh .tag.b { background: var(--b); color: #fff; }

.sh .bar {
  height: 2px; width: 0;
  animation: barSlide .6s .15s ease forwards;
}
.sh .bar.g { background: linear-gradient(90deg, var(--g), transparent); }
.sh .bar.r { background: linear-gradient(90deg, var(--r), transparent); }
.sh .bar.w { background: linear-gradient(90deg, var(--w), transparent); }
.sh .bar.b { background: linear-gradient(90deg, var(--b), transparent); }

/* --- STATS --- */
.stats-grid {
  display: flex; gap: 12px; justify-content: center; margin-top: .3em;
}

.stat-card {
  flex: 1; border-radius: 12px; padding: 12px 14px;
  text-align: center; backdrop-filter: blur(10px);
  transition: transform .3s, box-shadow .3s;
}
.stat-card:hover {
  transform: translateY(-3px);
}

.stat-card .number { font-size: 2.2em; font-weight: 900; line-height: 1; }
.stat-card .label {
  font-size: .55em; font-weight: 700; letter-spacing: .12em;
  color: #fff; margin-top: .2em;
}
.stat-card .desc {
  font-size: .48em; color: #dde4ea; margin-top: .15em;
  font-weight: 300; line-height: 1.35;
}

.sc-r { border: 1px solid rgba(224,82,82,.2); background: rgba(224,82,82,.06); }
.sc-r .number { color: var(--r); }
.sc-r:hover { box-shadow: 0 8px 30px rgba(224,82,82,.15); }

.sc-w { border: 1px solid rgba(240,160,48,.2); background: rgba(240,160,48,.06); }
.sc-w .number { color: var(--w); }
.sc-w:hover { box-shadow: 0 8px 30px rgba(240,160,48,.15); }

.sc-g { border: 1px solid rgba(149,194,31,.2); background: rgba(149,194,31,.06); }
.sc-g .number { color: var(--g); }
.sc-g:hover { box-shadow: 0 8px 30px rgba(149,194,31,.15); }

.sc-b { border: 1px solid rgba(58,143,212,.2); background: rgba(58,143,212,.06); }
.sc-b .number { color: var(--b); }
.sc-b:hover { box-shadow: 0 8px 30px rgba(58,143,212,.15); }

/* --- PILLARS --- */
.pillars { display: flex; gap: 10px; margin-top: .3em; }

.pillar {
  flex: 1; padding: 10px 14px;
  border-left: 3px solid var(--g);
  background: rgba(149,194,31,.04);
  border-radius: 0 10px 10px 0;
  backdrop-filter: blur(6px);
  transition: transform .3s, background .3s;
}
.pillar:hover {
  transform: translateY(-2px);
  background: rgba(149,194,31,.08);
}
.pillar .icon { font-size: .9em; display: block; margin-bottom: .25em; }
.pillar h3 { font-size: .6em; color: var(--g); letter-spacing: .08em; margin-bottom: .2em; }
.pillar p { font-size: .52em; color: #aab8c0; line-height: 1.4; }

.pillar.r { border-color: var(--r); background: rgba(224,82,82,.04); }
.pillar.r h3 { color: var(--r); }
.pillar.r:hover { background: rgba(224,82,82,.08); }

.pillar.w { border-color: var(--w); background: rgba(240,160,48,.04); }
.pillar.w h3 { color: var(--w); }
.pillar.w:hover { background: rgba(240,160,48,.08); }

.pillar.b { border-color: var(--b); background: rgba(58,143,212,.04); }
.pillar.b h3 { color: var(--b); }
.pillar.b:hover { background: rgba(58,143,212,.08); }

/* --- FEATURE LIST --- */
.flist { list-style: none; margin: 0; padding: 0; }
.flist li {
  display: flex; gap: 8px; align-items: flex-start;
  padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: .6em; color: #e8eef2; line-height: 1.45;
}
.flist li:last-child { border-bottom: none; }
.ok { color: var(--g); font-weight: 900; flex-shrink: 0; }
.no { color: var(--r); font-weight: 900; flex-shrink: 0; }

/* --- HIGHLIGHT BOX --- */
.hbox {
  border-radius: 10px; padding: 10px 14px;
  border: 1px solid rgba(149,194,31,.18);
  background: rgba(149,194,31,.04);
  backdrop-filter: blur(8px);
  transition: border-color .3s;
}
.hbox:hover { border-color: rgba(149,194,31,.35); }

.hbox.r { border-color: rgba(224,82,82,.22); background: rgba(224,82,82,.04); }
.hbox.r:hover { border-color: rgba(224,82,82,.4); }
.hbox.w { border-color: rgba(240,160,48,.22); background: rgba(240,160,48,.04); }
.hbox.w:hover { border-color: rgba(240,160,48,.4); }
.hbox.b { border-color: rgba(58,143,212,.22); background: rgba(58,143,212,.04); }
.hbox.b:hover { border-color: rgba(58,143,212,.4); }

.hbox .hl {
  font-size: .52em; font-weight: 800; letter-spacing: .14em;
  color: var(--g); margin-bottom: .3em; text-transform: uppercase;
}
.hbox.r .hl { color: var(--r); }
.hbox.w .hl { color: var(--w); }
.hbox.b .hl { color: var(--b); }

/* --- CARDS --- */
.cards { display: flex; gap: 10px; margin-top: .3em; }

.card {
  flex: 1; padding: 10px 12px; border-radius: 10px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  border-color: rgba(255,255,255,.12);
}
.card .ctop {
  height: 3px; position: absolute; top: 0; left: 0; right: 0;
  transition: height .3s;
}
.card:hover .ctop { height: 4px; }
.card .cicon { font-size: .9em; margin-bottom: .25em; display: block; }
.card h4 { font-size: .62em; color: #fff; font-weight: 700; margin-bottom: .15em; }
.card p { font-size: .52em; }

/* --- LAYOUT --- */
.row { display: flex; gap: 16px; align-items: flex-start; margin-top: .2em; }
.col1 { flex: 1; min-width: 0; }
.col15 { flex: 1.5; min-width: 0; }
.col2 { flex: 2; min-width: 0; }

/* --- BACKUP --- */
.bk-cols { display: flex; gap: 12px; margin-top: .4em; }

.bk-col {
  flex: 1; border-radius: 10px; padding: 14px 16px;
  border: 1px solid; backdrop-filter: blur(6px);
  transition: transform .3s;
}
.bk-col:hover { transform: translateY(-2px); }

.bk-bad { border-color: rgba(224,82,82,.25); background: rgba(224,82,82,.04); }
.bk-good { border-color: rgba(149,194,31,.25); background: rgba(149,194,31,.04); }
.bk-blue { border-color: rgba(58,143,212,.25); background: rgba(58,143,212,.04); }

.bk-col .bt {
  font-size: .58em; font-weight: 800; letter-spacing: .1em;
  margin-bottom: .4em; text-transform: uppercase;
}
.bk-bad .bt { color: var(--r); }
.bk-good .bt { color: var(--g); }
.bk-blue .bt { color: var(--b); }

.bk-row {
  display: flex; gap: 6px; margin: 5px 0; font-size: .55em;
  color: #bcc8d0; line-height: 1.45; align-items: flex-start;
}

.nas-row { display: flex; align-items: center; gap: 8px; margin: 6px 0; }

.nas-disk {
  width: 30px; height: 40px;
  border: 2px solid rgba(149,194,31,.35);
  background: rgba(149,194,31,.06);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: .7em; position: relative; flex-shrink: 0;
}
.nas-disk::after {
  content: 'DISCO'; position: absolute; bottom: 1px;
  font-size: 6px; color: var(--gr);
}

.nas-arr { color: var(--g); font-weight: 900; font-size: .8em; }

.ver-box {
  background: rgba(30,60,130,.08);
  border: 1px solid rgba(58,143,212,.2);
  border-radius: 8px; padding: 6px 8px; margin-top: .4em;
}
.ver-row {
  display: flex; gap: 8px; padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,.04); font-size: .5em;
}
.ver-row:last-child { border-bottom: none; }
.ver-row .vd { color: var(--b); font-weight: 600; width: 80px; flex-shrink: 0; }
.ver-row .vf { color: #aab; flex: 1; }
.ver-row .vr { color: var(--g); font-weight: 700; flex-shrink: 0; }

/* --- VS COMPARISON --- */
.vs-wrap { display: flex; gap: 0; align-items: stretch; margin-top: .35em; }

.vs-box {
  flex: 1; padding: 16px 18px; border-radius: 10px;
  backdrop-filter: blur(8px);
}
.vs-bad { border: 1px solid rgba(224,82,82,.25); background: rgba(224,82,82,.04); }
.vs-good { border: 1px solid rgba(149,194,31,.25); background: rgba(149,194,31,.04); }

.vs-box h3 { font-size: .62em; letter-spacing: .07em; margin-bottom: .3em; }
.vs-bad h3 { color: var(--r); }
.vs-good h3 { color: var(--g); }

.vs-box .cost { font-size: 1.8em; font-weight: 900; line-height: 1; }
.vs-bad .cost { color: var(--r); }
.vs-good .cost { color: var(--g); }

.vs-box .csub { font-size: .48em; color: var(--gr); margin-bottom: .5em; }

.vs-box ul { list-style: none; margin: 0; padding: 0; }
.vs-box ul li {
  font-size: .55em; color: #e8eef2; padding: 3px 0; line-height: 1.4;
}
.vs-box ul li::before { content: '\25B8 '; opacity: .5; }

.vs-sep {
  width: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.vs-sep span {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .6em; font-weight: 900; color: #fff;
}

/* --- ESET UI --- */
.eset-ui {
  background: rgba(15,22,32,.9); border-radius: 10px;
  border: 1px solid rgba(149,194,31,.15);
  overflow: hidden; display: flex; flex-direction: column;
  backdrop-filter: blur(10px);
}
.eset-bar {
  background: rgba(25,32,48,.8); padding: 7px 14px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(149,194,31,.12);
}
.eset-logo { font-size: .62em; font-weight: 900; color: var(--g); letter-spacing: .08em; }
.eset-note { font-size: .5em; color: var(--gr); }
.eset-st {
  margin-left: auto; font-size: .5em; font-weight: 700;
  color: var(--g); display: flex; align-items: center; gap: 4px;
}
.eset-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--g); animation: glow 2s infinite;
}
.eset-body { display: flex; flex: 1; min-height: 0; }

.eset-nav {
  width: 90px; background: rgba(19,28,42,.8);
  padding: 4px 0; flex-shrink: 0;
}
.eset-ni {
  padding: 5px 8px; font-size: .5em; color: var(--gr);
  display: flex; align-items: center; gap: 4px;
  transition: background .2s;
}
.eset-ni.a {
  background: rgba(149,194,31,.1); color: var(--g);
  border-left: 2px solid var(--g);
}

.eset-main {
  flex: 1; padding: 8px 10px;
  display: flex; flex-direction: column; gap: 6px; overflow: hidden;
}
.eset-mets { display: flex; gap: 6px; }

.eset-met {
  flex: 1; background: rgba(25,32,48,.6); border-radius: 6px;
  padding: 6px 8px; border: 1px solid rgba(149,194,31,.08);
}
.eset-met .ev { font-size: 1em; font-weight: 900; line-height: 1; }
.eset-met .ev.ok { color: var(--g); }
.eset-met .ev.warn { color: var(--w); }
.eset-met .ev.bad { color: var(--r); }
.eset-met .el { font-size: .44em; color: var(--gr); margin-top: .2em; }

.eset-tbl { background: rgba(25,32,48,.6); border-radius: 6px; overflow: hidden; }

.eset-th {
  display: flex; background: rgba(19,28,42,.8);
  padding: 4px 8px; gap: 6px;
}
.eset-th span {
  font-size: .44em; font-weight: 700;
  letter-spacing: .08em; color: var(--gr); flex: 1;
}
.eset-tr {
  display: flex; padding: 3px 8px;
  border-top: 1px solid rgba(255,255,255,.03);
  align-items: center; gap: 6px;
}
.eset-tr span { font-size: .5em; flex: 1; color: #bcc8d0; }

.eset-bdg {
  font-size: .44em; padding: 2px 7px; border-radius: 9px;
  font-weight: 700; flex-shrink: 0;
}
.eset-bdg.g { background: rgba(149,194,31,.15); color: var(--g); }
.eset-bdg.r { background: rgba(224,82,82,.15); color: var(--r); }
.eset-bdg.w { background: rgba(240,160,48,.15); color: var(--w); }

.ecr { display: flex; align-items: center; gap: 6px; margin-bottom: 3px; }
.ecl { font-size: .46em; color: var(--gr); width: 80px; text-align: right; flex-shrink: 0; }
.ecb {
  flex: 1; height: 6px; background: rgba(255,255,255,.05);
  border-radius: 3px; overflow: hidden;
}
.ecf { height: 100%; border-radius: 3px; transition: width 1s ease; }
.ecv { font-size: .46em; color: #bcc8d0; width: 22px; flex-shrink: 0; }

/* --- GDPR --- */
.gdpr-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: .4em;
}

.gdpr-item {
  background: var(--glass); border-radius: 8px;
  padding: 12px 14px; border-left: 3px solid;
  backdrop-filter: blur(6px);
  transition: transform .3s;
}
.gdpr-item:hover { transform: translateY(-2px); }
.gdpr-big { font-size: 1.4em; font-weight: 900; line-height: 1; }

/* --- WHY SECTION --- */
.why-row { display: flex; gap: 10px; margin-top: .35em; }

.why {
  flex: 1; text-align: center; padding: 14px 10px;
  background: rgba(149,194,31,.04);
  border: 1px solid rgba(149,194,31,.12);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.why:hover {
  transform: translateY(-3px);
  border-color: rgba(149,194,31,.3);
  box-shadow: 0 8px 25px rgba(149,194,31,.1);
}
.why .wi { font-size: .9em; margin-bottom: .2em; display: block; }
.why h4 { color: var(--g); font-size: .58em; letter-spacing: .05em; margin: .2em 0 .25em; }
.why p { font-size: .52em; }

/* --- 3-2-1 RULE --- */
.r321 { display: flex; gap: 10px; margin-top: .5em; }

.r321-step {
  flex: 1; text-align: center; padding: 14px 12px;
  border: 1px solid rgba(149,194,31,.18);
  border-radius: 10px; background: rgba(149,194,31,.04);
  position: relative; backdrop-filter: blur(6px);
  transition: transform .3s;
}
.r321-step:hover { transform: translateY(-2px); }
.r321-step::after {
  content: '\2192'; position: absolute; right: -14px; top: 50%;
  transform: translateY(-50%); color: var(--g);
  font-size: .9em; font-weight: 900; z-index: 2;
}
.r321-step:last-child::after { display: none; }
.r321-step .rnum { font-size: 2em; font-weight: 900; color: var(--g); line-height: 1; }
.r321-step .rlbl { font-size: .52em; color: #bcc8d0; margin-top: .25em; line-height: 1.3; }

/* --- CHIPS & BADGES --- */
.chip {
  display: inline-block; font-size: .52em; font-weight: 700;
  padding: 3px 12px; border-radius: 12px; margin: 2px;
  letter-spacing: .05em; transition: transform .2s;
}
.chip:hover { transform: scale(1.05); }
.chip.g {
  background: rgba(149,194,31,.1); border: 1px solid rgba(149,194,31,.22); color: var(--g);
}

.sbadge {
  display: inline-block; background: rgba(149,194,31,.08);
  border: 1px solid rgba(149,194,31,.25); border-radius: 5px;
  padding: 3px 12px; color: var(--g); font-size: .5em;
  font-weight: 700; letter-spacing: .1em; margin-bottom: .4em;
}

.src {
  font-size: .4em; color: rgba(136,153,170,.35);
  font-style: italic; text-align: right; margin-top: .35em;
}

/* --- CTA SLIDE --- */
.cta-slide {
  background: linear-gradient(135deg, #080c16 0%, #0f1a28 40%, #0a1018 100%) !important;
}
.cta-slide::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--g), var(--gl), var(--g));
  background-size: 200%; animation: shimmer 3s linear infinite; z-index: 3;
}

.cta-inner { text-align: center; position: relative; z-index: 2; }

.cta-tag {
  font-size: .6em; color: var(--g); font-weight: 800;
  letter-spacing: .2em; margin-bottom: .5em;
}

.cta-inner h1 {
  font-size: 2.6em;
  background: linear-gradient(135deg, var(--g) 0%, #fff 50%, var(--gl) 100%);
  background-size: 200%;
  animation: gradientShift 4s ease infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.cta-sub {
  color: #7a8a9a; font-size: .75em; font-weight: 300;
  line-height: 1.55; margin: .4em 0 .8em;
}

.contacts {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; margin-bottom: .8em;
}

.cc {
  display: flex; align-items: center; gap: 9px;
  background: rgba(149,194,31,.06);
  border: 1px solid rgba(149,194,31,.18);
  border-radius: 10px; padding: 10px 18px;
  backdrop-filter: blur(6px);
  transition: transform .2s, border-color .3s;
}
.cc:hover {
  transform: translateY(-2px);
  border-color: rgba(149,194,31,.35);
}
.cc .ci { font-size: .9em; }
.cc .cl { font-size: .48em; color: var(--g); font-weight: 700; letter-spacing: .1em; }
.cc .cv { font-size: .68em; color: #fff; font-weight: 600; }

.cta-btn {
  display: inline-block; background: linear-gradient(135deg, var(--g), var(--gd));
  color: #111; font-weight: 900; font-size: .62em;
  padding: 12px 40px; border-radius: 6px;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none;
  animation: glow 2.5s infinite;
  transition: transform .2s, box-shadow .3s;
  cursor: pointer;
}
.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(149,194,31,.4);
  color: #111;
}

/* --- GLOW EFFECTS --- */
.glow-green {
  position: relative;
}
.glow-green::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 60%; height: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(149,194,31,.12) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.glow-red::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 60%; height: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(224,82,82,.1) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.glow-blue::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 60%; height: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(58,143,212,.1) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* --- IMAGE FRAME --- */
.img-frame {
  position: relative; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 8px 40px rgba(0,0,0,.4), 0 0 30px rgba(149,194,31,.08);
  transition: transform .4s, box-shadow .4s;
}
.img-frame:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 50px rgba(0,0,0,.5), 0 0 40px rgba(149,194,31,.15);
}
.img-frame img {
  width: 100%; height: auto; display: block;
}
.img-frame::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,18,.6) 100%);
  z-index: 1; pointer-events: none;
}
.img-frame.no-overlay::before { display: none; }

.img-frame-label {
  position: absolute; bottom: 8px; left: 10px; right: 10px;
  z-index: 2; font-size: .5em; color: var(--gr);
  font-weight: 600; letter-spacing: .08em;
}

/* Float animation for images */
@keyframes imgFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.img-float { animation: imgFloat 4s ease-in-out infinite; }

/* --- GRADIENT TEXT --- */
.gradient-text-green {
  background: linear-gradient(135deg, var(--g) 0%, #e0f0a0 50%, var(--g) 100%);
  background-size: 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}
.gradient-text-red {
  background: linear-gradient(135deg, var(--r) 0%, #ffb0b0 50%, var(--r) 100%);
  background-size: 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}
.gradient-text-blue {
  background: linear-gradient(135deg, var(--b) 0%, #a0d4ff 50%, var(--b) 100%);
  background-size: 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

/* --- SVG ICONS --- */
.ico {
  display: inline-block; width: 1em; height: 1em;
  vertical-align: middle; fill: none;
  stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.pillar .ico, .card .ico, .why .ico { width: 1.4em; height: 1.4em; }
.cc .ico { width: 1.1em; height: 1.1em; }

/* --- BRAND LOGOS --- */
.brand-logo {
  height: 22px; width: auto; vertical-align: middle;
  filter: brightness(0) invert(1); /* makes any logo white */
  opacity: .85; transition: opacity .3s;
  margin-right: 4px;
}
.brand-logo:hover { opacity: 1; }
.brand-logo.color { filter: none; } /* keep original colors */
.brand-logo.sm { height: 16px; }
.brand-logo.md { height: 28px; }
.brand-logo.lg { height: 36px; }
.brand-logo.xl { height: 48px; }

.brand-strip {
  display: flex; gap: 20px; align-items: center;
  justify-content: center; flex-wrap: wrap;
  margin-top: .5em; padding: 12px 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
}
.brand-strip .brand-logo { height: 24px; opacity: .55; }
.brand-strip .brand-logo:hover { opacity: 1; }
.brand-strip .brand-sep {
  width: 1px; height: 20px;
  background: rgba(255,255,255,.1);
}

.brand-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .52em; font-weight: 700;
  padding: 4px 14px; border-radius: 12px; margin: 2px;
  letter-spacing: .05em; transition: transform .2s;
}
.brand-badge:hover { transform: scale(1.05); }
.brand-badge.g {
  background: rgba(149,194,31,.1);
  border: 1px solid rgba(149,194,31,.22);
  color: var(--g);
}
.brand-badge .brand-logo { height: 16px; margin-right: 2px; }

/* Product icon grid for M365 */
.product-icons {
  display: flex; gap: 10px; margin-top: .4em;
  justify-content: center; flex-wrap: wrap;
}
.product-icon {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 8px 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  transition: transform .2s, background .2s;
}
.product-icon:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
}
.product-icon img { height: 28px; filter: none; }
.product-icon span {
  font-size: .48em; color: var(--gr); font-weight: 600;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 900px) {
  .reveal h1 { font-size: 2em; }
  .reveal h2 { font-size: 1.3em; }
  .title-h1 { font-size: 2.4em; }

  .pillars, .cards, .stats-grid, .why-row, .r321, .bk-cols {
    flex-wrap: wrap;
  }
  .pillar, .card, .why, .r321-step {
    flex: 1 1 calc(50% - 8px); min-width: 200px;
  }
  .stat-card { flex: 1 1 calc(50% - 8px); min-width: 140px; }

  .row { flex-direction: column; gap: 12px; }

  .vs-wrap { flex-direction: column; gap: 12px; }
  .vs-sep { width: auto; height: 30px; }
  .vs-sep span { width: 100%; border-radius: 6px; }

  .gdpr-grid { grid-template-columns: 1fr; }

  .eset-body { flex-direction: column; }
  .eset-nav { width: 100%; display: flex; overflow-x: auto; padding: 4px 8px; gap: 2px; }
  .eset-ni { white-space: nowrap; }

  .contacts { gap: 8px; }
  .cc { padding: 8px 14px; }

  .r321-step::after { display: none; }
  .bk-col { flex: 1 1 100%; }
}

/* Mobile */
@media (max-width: 560px) {
  .reveal h1 { font-size: 1.6em; }
  .reveal h2 { font-size: 1.1em; }
  .title-h1 { font-size: 1.8em; }
  .title-sub { font-size: .7em; letter-spacing: .1em; }
  .title-meta { font-size: .6em; }

  .div-slide h1 { font-size: 2.2em; }
  .div-slide .bnum { font-size: 10em; }

  .pillars, .cards, .stats-grid, .why-row, .r321 {
    flex-direction: column;
  }
  .pillar, .card, .stat-card, .why, .r321-step {
    flex: 1 1 100%;
  }

  .contacts { flex-direction: column; align-items: center; }
  .cc { width: 100%; max-width: 280px; justify-content: center; }

  .cta-inner h1 { font-size: 1.8em; }
  .cta-btn { padding: 10px 28px; font-size: .55em; }

  .flist li { font-size: .55em; }
  .chip { font-size: .48em; }

  .img-frame { border-radius: 8px; }
  .brand-strip { gap: 12px; padding: 8px 12px; }
  .brand-strip .brand-logo { height: 18px; }

  .video-bg { opacity: .25; }
  .title-h1 { font-size: 1.6em; }
  .title-meta { flex-wrap: wrap; justify-content: center; }
}
