:root{
  --bg: #ffffff;
  --text: #0f1020;
  --muted: #5b5e7a;
  --border: rgba(20, 18, 52, 0.12);
  --shadow: 0 18px 50px rgba(20, 18, 52, 0.10);
  --shadow-soft: 0 10px 30px rgba(20, 18, 52, 0.08);
  --accent-1: #7c3aed; /* fiolet */
  --accent-2: #ec4899; /* róż */
  --accent-3: #a855f7; /* fiolet jasny */
  --grad: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  --grad-soft: linear-gradient(135deg, rgba(124,58,237,0.14), rgba(236,72,153,0.12));
  --ring: 0 0 0 6px rgba(236,72,153,0.12);
  --radius: 18px;
  --max: 1120px;
  /* Sticky topbar + sticky header overlap (used for anchor navigation like #audyt/#faq) */
  --anchor-offset: 120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: var(--anchor-offset); }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

/* Subtle baseline animation smoothing */
body{ text-rendering: optimizeLegibility; }

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; height: auto; }

.container{ width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 18, 52, 0.08);
}
.topbar__inner{ display:flex; align-items:center; justify-content:space-between; padding: 10px 0; gap: 14px; }
.topbar__note{ display:flex; align-items:center; gap: 10px; color: var(--muted); font-size: 13px; flex-wrap: wrap; }

.pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--grad-soft);
  border: 1px solid rgba(124,58,237,0.16);
  color: rgba(15,16,32,0.88);
}

.header{
  position: sticky;
  top: 41px;
  z-index: 40;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(20, 18, 52, 0.08);
}

.nav{ display:flex; align-items:center; justify-content:space-between; padding: 14px 0; gap: 18px; }

.brand{ display:flex; align-items:center; gap: 12px; font-weight: 800; letter-spacing: -0.02em; }
.brand__mark{
  width: 34px; height: 34px; border-radius: 12px;
  background: transparent;
  box-shadow: none;
  position: relative;
}
.brand__mark::after{
  content: "";
  position: absolute;
  inset: -8px;
  background: radial-gradient(circle at 30% 30%, rgba(236,72,153,0.35), transparent 60%);
  filter: blur(8px);
  opacity: 0.9;
  z-index: -1;
}

.brand__mark img{ width: 100%; height: 100%; display:block; border-radius: 12px; }

/* A bit of depth so the logo looks crisp on white */
.brand__mark img{ filter: drop-shadow(0 10px 18px rgba(124,58,237,0.18)); }

.nav__links{ display:flex; gap: 18px; align-items:center; color: rgba(15,16,32,0.88); font-weight: 650; font-size: 14px; }
.nav__links a{ padding: 10px 10px; border-radius: 12px; }
.nav__links a:hover{ background: rgba(124,58,237,0.08); }

.nav__actions{ display:flex; align-items:center; gap: 10px; }

.btn{
  display: inline-flex; align-items:center; justify-content:center; gap: 10px;
  padding: 12px 14px; border-radius: 14px;
  border: 1px solid rgba(20, 18, 52, 0.12);
  background: white;
  color: rgba(15,16,32,0.92);
  font-weight: 750;
  font-size: 14px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover{ box-shadow: 0 10px 30px rgba(20,18,52,0.08); transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.btn--primary{ border: 0; background: var(--grad); color: white; box-shadow: 0 18px 40px rgba(124,58,237,0.22); }
.btn--primary:hover{ box-shadow: 0 22px 60px rgba(124,58,237,0.28); }

.btn--ghost{ background: rgba(124,58,237,0.06); border: 1px solid rgba(124,58,237,0.16); }

.icon{ width: 18px; height: 18px; }
.menuBtn{ display:none; }

.hero{ padding: 54px 0 34px; position: relative; overflow:hidden; }
.hero::before{
  content: "";
  position: absolute;
  left: 50%;
  top: -260px;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background:
    radial-gradient(circle at 30% 30%, rgba(124,58,237,0.20), transparent 55%),
    radial-gradient(circle at 70% 55%, rgba(236,72,153,0.18), transparent 52%);
  filter: blur(16px);
  pointer-events: none;
}

.hero__grid{ display:grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; align-items:center; }

.kicker{
  display:inline-flex; align-items:center; gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(124,58,237,0.18);
  background: rgba(124,58,237,0.06);
  padding: 8px 12px;
  font-size: 13px;
  color: rgba(15,16,32,0.85);
}

h1{ font-size: clamp(34px, 5vw, 52px); line-height: 1.05; letter-spacing: -0.04em; margin: 14px 0 12px; }
.lead{ color: rgba(15,16,32,0.72); font-size: 16px; max-width: 62ch; }

.hero__cta{ display:flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.hero__bullets{ display:grid; grid-template-columns: 1fr; gap: 10px; margin-top: 16px; }

.check{ display:flex; align-items:flex-start; gap: 10px; color: rgba(15,16,32,0.78); font-size: 14px; }
.check span{
  width: 22px; height: 22px; border-radius: 10px;
  background: rgba(124,58,237,0.10);
  border: 1px solid rgba(124,58,237,0.16);
  display:inline-flex; align-items:center; justify-content:center;
  flex: 0 0 auto;
}

.panel{ border-radius: var(--radius); background: rgba(255,255,255,0.88); border: 1px solid rgba(20, 18, 52, 0.10); box-shadow: var(--shadow); overflow:hidden; }
.panel__head{ padding: 14px 14px 10px; display:flex; align-items:center; justify-content:space-between; gap: 12px; border-bottom: 1px solid rgba(20, 18, 52, 0.08); background: linear-gradient(180deg, rgba(124,58,237,0.08), rgba(255,255,255,0)); }
.panel__title{ font-weight: 850; letter-spacing: -0.02em; }
.panel__body{ padding: 14px; }

.miniStats{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.stat{ border-radius: 16px; padding: 12px; border: 1px solid rgba(20, 18, 52, 0.10); background: rgba(255,255,255,0.85); box-shadow: 0 10px 30px rgba(20,18,52,0.06); }
.stat strong{ display:block; font-size: 18px; letter-spacing: -0.02em; }
.stat span{ color: rgba(15,16,32,0.65); font-size: 12px; }

.chart{ height: 140px; border-radius: 16px; background: linear-gradient(180deg, rgba(124,58,237,0.18), rgba(236,72,153,0.08)); position: relative; overflow:hidden; border: 1px solid rgba(124,58,237,0.12); }
.chart::before{
  content: "";
  position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.30) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.20) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.35;
}
.chart svg{ position:absolute; inset:0; width:100%; height:100%; }

/* Interactive chart */
.chart{ touch-action: none; }
.chart__line{
  transition: stroke-dashoffset 1.35s cubic-bezier(.2,.9,.2,1);
}
.chart__overlay{ opacity: 0; transition: opacity .18s ease; }
.chart--hover .chart__overlay{ opacity: 1; }

.chart__vline{
  stroke: rgba(255,255,255,0.55);
  stroke-width: 1;
}
.chart__dot{
  fill: rgba(255,255,255,0.95);
  stroke: rgba(124,58,237,0.55);
  stroke-width: 0.8;
}
.chart__tipBg{
  fill: rgba(15,16,32,0.75);
  stroke: rgba(255,255,255,0.35);
  stroke-width: 0.4;
}
.chart__tipText{
  fill: rgba(255,255,255,0.95);
  font-size: 4.2px;
  font-weight: 850;
  dominant-baseline: middle;
}

.logos{ padding: 18px 0 8px; }
.logos__row{ display:flex; flex-wrap: wrap; gap: 12px; align-items:center; color: rgba(15,16,32,0.66); font-size: 13px; }
.logoBadge{ display:inline-flex; padding: 8px 10px; border-radius: 999px; border: 1px dashed rgba(124,58,237,0.22); background: rgba(124,58,237,0.05); }

section{ padding: 58px 0; }

/* Ensure in-page anchors stop above sticky header (e.g. clicking “Audyt” in menu) */
main [id]{ scroll-margin-top: var(--anchor-offset); }
.section.section--alt{ background: rgba(124,58,237,0.04); border-top: 1px solid rgba(20,18,52,0.06); border-bottom: 1px solid rgba(20,18,52,0.06); }
.sectionHead{ display:grid; gap: 10px; margin-bottom: 18px; }
.sectionHead h2{ margin: 0; font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.03em; line-height: 1.1; }
.sectionHead p{ margin: 0; color: rgba(15,16,32,0.70); max-width: 78ch; }

.grid3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.grid2{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.card{ border-radius: var(--radius); border: 1px solid rgba(20, 18, 52, 0.10); background: rgba(255,255,255,0.9); box-shadow: 0 10px 40px rgba(20,18,52,0.06); padding: 18px; }
.card h3{ margin: 0 0 8px; letter-spacing: -0.02em; font-size: 16px; }
.card p{ margin: 0; color: rgba(15,16,32,0.70); }
.card--tint{ background: linear-gradient(180deg, rgba(124,58,237,0.08), rgba(255,255,255,0.86)); border-color: rgba(124,58,237,0.14); }

/* Interactive tiles/cards */
.card, .case, .plan, .step, .faqItem, .kpi, .stat{
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}
.card:hover, .case:hover, .plan:hover, .step:hover, .faqItem:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(20,18,52,0.12);
  border-color: rgba(124,58,237,0.22);
}
.card:active, .case:active, .plan:active, .step:active, .faqItem:active{
  transform: translateY(-2px);
}

/* Slight glow accent for featured plan on hover */
.plan--featured:hover{ box-shadow: 0 30px 80px rgba(236,72,153,0.22); }

/* Scroll reveal
   Fail-open by default: elements are visible unless JS explicitly enables the effect.
*/
.reveal{ opacity: 1; transform: none; filter: none; }

.reveal-enhanced .reveal{
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
  transition:
    opacity .65s ease,
    transform .75s cubic-bezier(.2,.9,.2,1),
    filter .75s ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform, filter;
}
.reveal-enhanced .reveal.is-visible{
  opacity: 1;
  transform: none;
  filter: none;
}

.reveal-enhanced .reveal--fade{ transform: none; filter: none; }
.reveal-enhanced .reveal--scale{ transform: translateY(10px) scale(0.98); }

/* More polish for icon/arrow micro-interactions */
.btn .icon{ transition: transform .18s ease; }
.btn:hover .icon{ transform: translateX(1px); }

/* Make focus states feel intentional */
:focus-visible{ outline: none; box-shadow: var(--ring); border-radius: 14px; }

.blogCard h3{ font-size: 15px; line-height: 1.25; }
.blogMeta{ color: rgba(15,16,32,0.60); font-size: 12px; margin-bottom: 8px; }

/* Blog filters + tags */
.filterRow{ display:flex; flex-wrap: wrap; gap: 10px; align-items:center; margin: 2px 0 12px; }
.chip{
  display:inline-flex;
  align-items:center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(20,18,52,0.10);
  background: rgba(255,255,255,0.75);
  color: rgba(15,16,32,0.78);
  font-size: 13px;
  font-weight: 750;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.chip:hover{ transform: translateY(-1px); box-shadow: 0 10px 28px rgba(20,18,52,0.08); border-color: rgba(124,58,237,0.22); }
.chip.is-active{ background: var(--grad-soft); border-color: rgba(124,58,237,0.22); color: rgba(15,16,32,0.86); }

.tagRow{ display:flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag{
  display:inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(124,58,237,0.18);
  background: rgba(124,58,237,0.06);
  color: rgba(124,58,237,1);
  font-size: 12px;
  font-weight: 850;
}
.tag:hover{ text-decoration: underline; }

/* Make whole card clickable without breaking layout */
.blogCard{ position: relative; overflow: hidden; }
.cardHit{ position:absolute; inset: 0; border-radius: inherit; z-index: 5; }
.blogCard > *{ position: relative; z-index: 2; }

.postLink{ text-decoration: none; }
.postLink:hover{ text-decoration: underline; }

/* Ensure tags behave like small chips, not big circles */
.tagRow{ margin-top: 10px; }
.tag{ line-height: 1; }

/* Keep tag links clickable even though the card has a clickable overlay */
.tagRow{ position: relative; z-index: 6; }
.tag{ position: relative; z-index: 7; }

.ctaBand{ margin-top: 16px; padding: 18px; border-radius: var(--radius); background: var(--grad-soft); border: 1px solid rgba(124,58,237,0.16); display:flex; align-items:center; justify-content:space-between; gap: 14px; flex-wrap: wrap; }
.ctaBand p{ margin: 0; color: rgba(15,16,32,0.75); }

.inlineCta{
  margin: 14px 0 0;
  color: rgba(15,16,32,0.72);
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(124,58,237,0.05);
  border: 1px solid rgba(124,58,237,0.14);
}
.inlineCta a{ color: rgba(124,58,237,1); font-weight: 800; }
.inlineCta a:hover{ text-decoration: underline; }

.miniSplit{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }

.link{ color: rgba(124,58,237,1); font-weight: 800; }
.link:hover{ text-decoration: underline; }

.cases{ display:grid; grid-template-columns: 1.2fr 0.8fr; gap: 14px; }
.caseList{ display:grid; gap: 12px; }
.case{ border-radius: var(--radius); border: 1px solid rgba(20, 18, 52, 0.10); background: rgba(255,255,255,0.92); box-shadow: 0 12px 40px rgba(20,18,52,0.06); padding: 18px; }
.case__meta{ color: rgba(15,16,32,0.62); font-size: 12px; }
.case__kpis{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.kpi{ border-radius: 16px; border: 1px solid rgba(124,58,237,0.14); background: rgba(124,58,237,0.05); padding: 10px; }
.kpi strong{ display:block; font-size: 16px; letter-spacing:-0.02em; }
.kpi span{ color: rgba(15,16,32,0.64); font-size: 12px; }

.steps{ display:grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.step{ padding: 16px; border-radius: var(--radius); border: 1px solid rgba(20,18,52,0.10); background: rgba(255,255,255,0.92); box-shadow: 0 12px 40px rgba(20,18,52,0.05); position: relative; overflow:hidden; }
.step::before{ content:""; position:absolute; inset:0; background: radial-gradient(circle at 20% 10%, rgba(236,72,153,0.10), transparent 55%); pointer-events:none; }
.step__no{ width: 34px; height: 34px; border-radius: 14px; background: rgba(124,58,237,0.10); border: 1px solid rgba(124,58,237,0.18); display:inline-flex; align-items:center; justify-content:center; font-weight: 900; margin-bottom: 10px; }
.step h3{ margin: 0 0 8px; font-size: 15px; }
.step p{ margin: 0; color: rgba(15,16,32,0.70); font-size: 13px; }

.pricing{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.plan{ border-radius: var(--radius); border: 1px solid rgba(20,18,52,0.10); background: rgba(255,255,255,0.92); box-shadow: 0 10px 30px rgba(20,18,52,0.08); padding: 18px; display:grid; gap: 12px; }
.plan--featured{ border-color: rgba(236,72,153,0.28); box-shadow: 0 26px 70px rgba(236,72,153,0.16); background: linear-gradient(180deg, rgba(236,72,153,0.10), rgba(255,255,255,0.92)); }
.badge{ display:inline-flex; align-items:center; gap: 8px; padding: 6px 10px; border-radius: 999px; border: 1px solid rgba(236,72,153,0.22); background: rgba(236,72,153,0.08); font-size: 12px; font-weight: 850; }
.plan h3{ margin: 0; font-size: 16px; }
.plan p{ margin: 0; color: rgba(15,16,32,0.70); }

.price{
  font-size: 30px;
  letter-spacing: -0.03em;
  font-weight: 950;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  row-gap: 4px;
  column-gap: 10px;
}
.price small{ font-size: 12px; color: rgba(15,16,32,0.60); font-weight: 750; }

/* Pricing: old price (crossed out) */
.priceWas{
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-left: 0;
  font-size: 14px;
  font-weight: 850;
  color: rgba(15,16,32,0.45);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.ul{ margin: 0; padding-left: 18px; color: rgba(15,16,32,0.74); display:grid; gap: 8px; font-size: 14px; }

.faq{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; align-items: start; }
.faqItem{
  border-radius: var(--radius);
  border: 1px solid rgba(20,18,52,0.10);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 12px 40px rgba(20,18,52,0.05);
  padding: 14px;
  align-self: start; /* don't stretch to match the height of an expanded neighbor */
}
.faqQ{ width: 100%; border: 0; background: transparent; padding: 0; text-align: left; font: inherit; display:flex; align-items:center; justify-content:space-between; gap: 12px; cursor: pointer; }
.faqQ strong{ font-size: 14px; }
.chev{ width: 18px; height: 18px; opacity: 0.7; transition: transform .2s ease; }
.faqItem[data-open="true"] .chev{ transform: rotate(180deg); }
.faqA{ margin-top: 10px; color: rgba(15,16,32,0.72); display:none; font-size: 14px; }
.faqItem[data-open="true"] .faqA{ display:block; }

.audit{ border-radius: calc(var(--radius) + 10px); background:
  radial-gradient(circle at 20% 10%, rgba(124,58,237,0.16), transparent 52%),
  radial-gradient(circle at 80% 20%, rgba(236,72,153,0.14), transparent 55%),
  rgba(255,255,255,0.88);
  border: 1px solid rgba(124,58,237,0.16);
  box-shadow: var(--shadow);
  padding: 22px;
}

.auditGrid{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 14px; }

.form{ display:grid; gap: 10px; }
.row{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; }

label{ display:grid; gap: 6px; font-size: 12px; color: rgba(15,16,32,0.72); }
input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(20,18,52,0.12);
  background: rgba(255,255,255,0.95);
  outline: none;
}
input:focus, textarea:focus{ box-shadow: 0 0 0 6px rgba(236,72,153,0.12); border-color: rgba(236,72,153,0.28); }
textarea{ min-height: 98px; resize: vertical; }

select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(20,18,52,0.12);
  background: rgba(255,255,255,0.95);
  outline: none;
}
select:focus{ box-shadow: 0 0 0 6px rgba(236,72,153,0.12); border-color: rgba(236,72,153,0.28); }

.note{ color: rgba(15,16,32,0.62); font-size: 12px; }
.checkbox{ display:flex; gap: 10px; align-items:flex-start; font-size: 12px; color: rgba(15,16,32,0.70); }
.checkbox input{ width: 18px; height: 18px; margin-top: 2px; }

.footer{ padding: 38px 0; border-top: 1px solid rgba(20,18,52,0.08); color: rgba(15,16,32,0.70); }
.footerGrid{ display:grid; grid-template-columns: 1.2fr 0.8fr; gap: 14px; }
.footer small{ color: rgba(15,16,32,0.60); }
.linkGrid{ display:grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.muted{ color: rgba(15,16,32,0.62); }

@media (max-width: 980px){
  :root{ --anchor-offset: 140px; }
  .hero__grid{ grid-template-columns: 1fr; }
  .cases{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .faq{ grid-template-columns: 1fr; }
  .auditGrid{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .row{ grid-template-columns: 1fr; }
  .miniSplit{ grid-template-columns: 1fr; }
}

/* Extra mobile polish */
@media (max-width: 520px){
  .container{ width: min(var(--max), calc(100% - 28px)); }

  /* Reduce vertical rhythm */
  .hero{ padding: 38px 0 20px; }
  section{ padding: 44px 0; }

  h1{ font-size: clamp(30px, 8vw, 40px); }
  .lead{ font-size: 15px; }

  /* Make CTA blocks easier to tap */
  .ctaBand{ padding: 16px; }
  .ctaBand .btn{ width: 100%; }

  /* Plans: make buttons full width */
  .plan .btn{ width: 100%; }

  /* Sticky bars take a lot of space on phones: keep only the main header sticky */
  .topbar{ position: relative; }
  .header{ top: 0; }

  /* Nav actions: keep only primary CTA + menu button */
  .nav__actions > a.btn:not(.btn--primary){ display:none; }
  .btn{ padding: 11px 12px; border-radius: 14px; }

  /* Footer readability */
  .footerGrid{ grid-template-columns: 1fr; }
  .linkGrid{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .nav__links{ display:none; }
  .menuBtn{ display:inline-flex; }
  .nav[data-open="true"] .nav__links{
    display:grid;
    position:absolute;
    left: 0; right: 0;
    top: 66px;
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid rgba(20,18,52,0.08);
    padding: 12px 20px;
    gap: 6px;
  }
  .nav{ position: relative; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .btn:hover{ transform: none; }
  .card:hover, .case:hover, .plan:hover, .step:hover, .faqItem:hover{ transform: none; }
  .reveal{ opacity: 1; transform: none; filter: none; transition: none; }
}

