/*
	Theme Name: FW16 PL
	Theme URI: https://www.fw16.pl
	Description: 
	Author: FW16
	Author URI: https://www.fw16.pl
	Version: 3.4.6
	Stable tag: 3.4.6
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/
 :root {
      --red: #D90700;
      --red-dark: #A80500;
      --red-glow: rgba(217, 7, 0, 0.15);
      --black: #080808;
      --dark: #0f0f0f;
      --dark2: #161616;
      --dark3: #1e1e1e;
      --border: rgba(255,255,255,0.07);
      --border-red: rgba(217,7,0,0.3);
      --text: #f0f0f0;
      --muted: #888;
      --font: 'Exo', sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font);
      background: var(--black);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ─── SCROLLBAR ─── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--black); }
    ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%;
      height: 70px;
      background: rgba(8,8,8,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      font-size: 1.6rem;
      font-weight: 900;
      letter-spacing: -0.03em;
      color: #fff;
      text-decoration: none;
    }
    .nav-logo span { color: var(--red); }

    .nav-links {
      display: flex; align-items: center; gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: #fff; }

    .nav-cta {
      background: var(--red);
      color: #fff !important;
      padding: 0.5rem 1.25rem;
      border-radius: 3px;
      font-weight: 700 !important;
      letter-spacing: 0.04em;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--red-dark) !important; color: #fff !important; }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
    .hamburger span { width: 24px; height: 2px; background: #fff; display: block; transition: 0.3s; }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      display: flex; flex-direction: column; justify-content: center;
      padding: 120px 5% 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 70% 50%, rgba(217,7,0,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(217,7,0,0.04) 0%, transparent 60%);
    }

    .hero-grid {
      position: absolute; inset: 0;
      background-image: linear-gradient(var(--border) 1px, transparent 1px),
                        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(217,7,0,0.1);
      border: 1px solid var(--border-red);
      padding: 0.4rem 1rem;
      border-radius: 2px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 2rem;
      width: fit-content;
    }

    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--red);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.8); }
    }

    h1 {
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
      max-width: 800px;
    }

    h1 .accent { color: var(--red); }
    h1 .outline {
      -webkit-text-stroke: 1px rgba(255,255,255,0.3);
      color: transparent;
    }

    .hero-sub {
      font-size: 1.15rem;
      color: var(--muted);
      max-width: 560px;
      margin-bottom: 2.5rem;
      font-weight: 400;
    }

    .hero-actions {
      display: flex; flex-wrap: wrap; gap: 1rem;
      margin-bottom: 4rem;
    }

    .btn-primary {
      background: var(--red);
      color: #fff;
      padding: 0.85rem 2rem;
      border-radius: 3px;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.03em;
      transition: background 0.2s, transform 0.1s;
      font-family: var(--font);
    }
    .btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

    .btn-ghost {
      border: 1px solid var(--border);
      color: var(--text);
      padding: 0.85rem 2rem;
      border-radius: 3px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); }

    .hero-stats {
      display: flex; flex-wrap: wrap; gap: 2.5rem;
    }

    .stat {
      display: flex; flex-direction: column;
    }
    .stat-value {
      font-size: 2rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.04em;
    }
    .stat-value span { color: var(--red); }
    .stat-label {
      font-size: 0.75rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    /* ─── PARTNERS BAR ─── */
    .partners-bar {
      background: var(--dark);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 1.25rem 5%;
      display: flex; align-items: center; justify-content: center; gap: 3rem;
      flex-wrap: wrap;
    }
    .partner-tag {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .partner-sep { width: 1px; height: 16px; background: var(--border); }

    /* ─── SECTIONS ─── */
    section { padding: 100px 5%; }

    .section-label {
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 1rem;
      display: flex; align-items: center; gap: 0.75rem;
    }
    .section-label::after {
      content: '';
      flex: 1; max-width: 40px;
      height: 1px; background: var(--red);
    }

    h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 1.25rem;
    }

    h2 .accent { color: var(--red); }

    .section-intro {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 600px;
      margin-bottom: 4rem;
    }

    /* ─── PROBLEM SECTION ─── */
    #problem { background: var(--dark); }

    .problem-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5px;
      background: var(--border);
      border: 1px solid var(--border);
    }

    .problem-card {
      background: var(--dark);
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }
    .problem-card:hover { background: var(--dark2); }

    .problem-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px; background: var(--red);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s;
    }
    .problem-card:hover::before { transform: scaleX(1); }

    .problem-icon { font-size: 2rem; margin-bottom: 1.25rem; }

    .problem-card h3 {
      font-size: 1.1rem;
      font-weight: 800;
      margin-bottom: 0.75rem;
      letter-spacing: -0.01em;
    }

    .problem-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

    .problem-cta-box {
      margin-top: 3rem;
      background: linear-gradient(135deg, rgba(217,7,0,0.08), rgba(217,7,0,0.03));
      border: 1px solid var(--border-red);
      padding: 2rem 2.5rem;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: gap;
      gap: 1.5rem;
    }

    .problem-cta-box p {
      font-weight: 700;
      font-size: 1.05rem;
    }
    .problem-cta-box span { color: var(--red); }

    /* ─── SERVICES ─── */
    #services { background: var(--black); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1px;
      background: var(--border);
    }

    .service-card {
      background: var(--black);
      padding: 2.5rem;
      position: relative;
      transition: background 0.3s;
    }
    .service-card:hover { background: var(--dark); }

    .service-num {
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      color: var(--red);
      margin-bottom: 1rem;
    }

    .service-icon { font-size: 1.75rem; margin-bottom: 1rem; }

    .service-card h3 {
      font-size: 1.15rem;
      font-weight: 800;
      margin-bottom: 0.75rem;
      letter-spacing: -0.01em;
    }

    .service-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

    .service-link {
      display: inline-flex; align-items: center; gap: 0.4rem;
      margin-top: 1.25rem;
      color: var(--red);
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: gap 0.2s;
    }
    .service-link:hover { gap: 0.7rem; }

    /* ─── PROCESS ─── */
    #process { background: var(--dark); }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 0;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 28px; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border-red), transparent);
    }

    .step {
      padding: 0 2rem 2rem;
      position: relative;
    }

    .step-num {
      width: 56px; height: 56px;
      background: var(--red);
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      font-weight: 900;
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 1;
    }

    .step h3 {
      font-size: 1rem;
      font-weight: 800;
      margin-bottom: 0.75rem;
    }

    .step p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

    /* ─── RESULTS ─── */
    #results { background: var(--black); }

    .results-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .result-card {
      background: var(--dark);
      border: 1px solid var(--border);
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
    }

    .result-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--red), transparent);
    }

    .result-badge {
      display: inline-block;
      background: rgba(217,7,0,0.1);
      border: 1px solid var(--border-red);
      color: var(--red);
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.3rem 0.75rem;
      margin-bottom: 1.25rem;
    }

    .result-metric {
      font-size: 2.75rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.04em;
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    .result-metric span { color: var(--red); }

    .result-desc {
      font-size: 0.875rem;
      color: var(--muted);
      margin-top: 1rem;
      line-height: 1.65;
    }

    .result-sector {
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
      font-size: 0.75rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      display: flex; align-items: center; gap: 0.5rem;
    }

    /* ─── PRICING ─── */
    #pricing { background: var(--dark); }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      align-items: start;
    }

    .pricing-card {
      background: var(--dark2);
      border: 1px solid var(--border);
      padding: 2.5rem;
      position: relative;
      transition: border-color 0.3s;
    }
    .pricing-card:hover { border-color: rgba(255,255,255,0.15); }

    .pricing-card.featured {
      border-color: var(--red);
      background: var(--dark3);
    }

    .pricing-featured-tag {
      position: absolute;
      top: -12px; left: 50%;
      transform: translateX(-50%);
      background: var(--red);
      color: #fff;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.35rem 1rem;
    }

    .pricing-name {
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.75rem;
    }

    .pricing-tier {
      font-size: 1.4rem;
      font-weight: 900;
      margin-bottom: 0.5rem;
    }

    .pricing-price {
      display: flex; align-items: baseline; gap: 0.25rem;
      margin-bottom: 0.5rem;
    }
    .price-currency { font-size: 1.25rem; font-weight: 700; color: var(--muted); }
    .price-amount { font-size: 3rem; font-weight: 900; letter-spacing: -0.05em; }
    .price-period { font-size: 0.875rem; color: var(--muted); }

    .pricing-alt { font-size: 0.8rem; color: var(--muted); margin-bottom: 2rem; }

    .pricing-features { list-style: none; margin-bottom: 2rem; }
    .pricing-features li {
      padding: 0.6rem 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.875rem;
      display: flex; gap: 0.75rem; align-items: flex-start;
    }
    .pricing-features li:last-child { border-bottom: none; }
    .pricing-features li .check { color: var(--red); font-weight: 900; flex-shrink: 0; }

    /* ─── AWARDS ─── */
    #awards { background: var(--black); }

    .awards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 1px;
      background: var(--border);
    }

    .award-card {
      background: var(--black);
      padding: 2rem;
      transition: background 0.3s;
    }
    .award-card:hover { background: var(--dark); }

    .award-year {
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      color: var(--red);
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }

    .award-card h3 {
      font-size: 0.95rem;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 0.5rem;
    }

    .award-card span {
      font-size: 0.75rem;
      color: var(--muted);
    }

    /* ─── TESTIMONIALS ─── */
    #testimonials { background: var(--dark); }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .testimonial-card {
      background: var(--dark2);
      border: 1px solid var(--border);
      padding: 2rem;
    }

    .stars { color: var(--red); font-size: 0.875rem; margin-bottom: 1rem; }

    .testimonial-text {
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-style: italic;
      color: rgba(240,240,240,0.85);
    }

    .testimonial-author {
      display: flex; align-items: center; gap: 0.75rem;
    }

    .author-avatar {
      width: 36px; height: 36px;
      background: var(--red);
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-weight: 900; font-size: 0.85rem;
      flex-shrink: 0;
    }

    .author-name { font-size: 0.875rem; font-weight: 700; }
    .author-role { font-size: 0.75rem; color: var(--muted); }

    /* ─── WORLD ─── */
    #world { background: var(--black); }

    .world-stats {
      display: flex; gap: 4rem; flex-wrap: wrap;
      margin-bottom: 3rem;
    }

    .world-stat-value {
      font-size: 3rem;
      font-weight: 900;
      letter-spacing: -0.05em;
      color: var(--red);
    }

    .world-stat-label {
      font-size: 0.75rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .countries-grid {
      display: flex; flex-wrap: wrap; gap: 0.75rem;
    }

    .country-tag {
      display: inline-flex; align-items: center; gap: 0.5rem;
      border: 1px solid var(--border);
      padding: 0.5rem 1rem;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--muted);
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
    }
    .country-tag:hover { border-color: var(--red); color: #fff; }
    .country-tag.active { border-color: var(--red); color: #fff; background: rgba(217,7,0,0.08); }

    /* ─── SECTORS ─── */
    #sectors { background: var(--dark); }

    .sectors-cols {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
    }

    .sector-group h3 {
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--border-red);
    }

    .sector-list { list-style: none; }
    .sector-list li {
      padding: 0.35rem 0;
      font-size: 0.85rem;
      color: var(--muted);
      border-bottom: 1px solid rgba(255,255,255,0.04);
      transition: color 0.2s;
    }
    .sector-list li:hover { color: #fff; }

    /* ─── CTA ─── */
    #cta {
      background: var(--dark);
      padding: 100px 5%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #cta::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(217,7,0,0.07) 0%, transparent 70%);
    }

    #cta h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
    #cta p { color: var(--muted); max-width: 540px; margin: 0 auto 2.5rem; font-size: 1rem; }

    .cta-actions {
      display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--black);
      border-top: 1px solid var(--border);
      padding: 60px 5% 30px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand p {
      font-size: 0.875rem;
      color: var(--muted);
      margin-top: 1rem;
      line-height: 1.7;
      max-width: 260px;
    }

    .footer-logo {
      font-size: 1.5rem;
      font-weight: 900;
      letter-spacing: -0.03em;
      color: #fff;
      text-decoration: none;
    }
    .footer-logo span { color: var(--red); }

    .footer-col h4 {
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 1rem;
    }

    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.5rem; }
    .footer-col ul li a {
      color: rgba(240,240,240,0.5);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: #fff; }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 1.5rem;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom p { font-size: 0.8rem; color: var(--muted); }

    .footer-legal a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.8rem;
      transition: color 0.2s;
    }
    .footer-legal a:hover { color: #fff; }

    /* ─── CONTACT FORM ─── */
    .form-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      max-width: 680px;
      margin: 0 auto;
    }

    .form-grid .full { grid-column: 1 / -1; }

    .form-input input, .form-input textarea {
      background: var(--dark2) !important;
      border: 1px solid var(--border) !important;
      color: #fff !important;
      padding: 0.85rem 1.25rem !important;
      font-family: var(--font) !important;
      font-size: 0.9rem !important;
      width: 100% !important;
      transition: border-color 0.2s !important;
      outline: none !important;
    }
    .form-input input:focus, .form-input textarea:focus { border-color: var(--red) !important; }
    .form-input input::placeholder, .form-input textarea::placeholder { color: var(--muted) !important; }

     .form-input textarea { resize: vertical; min-height: 120px; }

    .form-submit {
      background: var(--red) !important;
      color: #fff !important;
      border: none !important;
      padding: 0.9rem 2.5rem !important;
      font-family: var(--font) !important;
      font-size: 1rem !important;
      font-weight: 700 !important;
      cursor: pointer !important;
      letter-spacing: 0.03em !important;
      transition: background 0.2s !important;
      width: 100% !important;
    }
    .form-submit:hover { background: var(--red-dark) !important; }

    /* ─── TICKER ─── */
    .ticker-wrap {
      overflow: hidden;
      background: var(--red);
      padding: 0.65rem 0;
      white-space: nowrap;
    }

    .ticker-track {
      display: inline-flex;
      animation: ticker 20s linear infinite;
    }

    .ticker-item {
      padding: 0 3rem;
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #fff;
    }
    .ticker-item::after { content: ' ✦ '; margin-left: 3rem; }

    @keyframes ticker {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .footer-top { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 700px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: 70px; left: 0; right: 0;
        background: var(--dark);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
      }
      .form-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .process-steps::before { display: none; }
      .process-steps { grid-template-columns: 1fr; }
      .step { padding: 0 0 2rem; }
      .world-stats { gap: 2rem; }
    }

    /* ─── ANIMATE IN ─── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }