:root {
  --black: #080b0d;
  --black-2: #101518;
  --ink: #17212b;
  --muted: #65717d;
  --line: #e5e9ec;
  --soft: #f6f8f8;
  --white: #ffffff;
  --green: #0f9865;
  --green-2: #32b57b;
  --orange: #ee8a1d;
  --gold: #f1b637;
  --blue: #2f6383;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow: 0 24px 65px rgba(17, 28, 35, .13);
  --shadow-soft: 0 14px 40px rgba(17, 28, 35, .08);
  --gradient: linear-gradient(120deg, #f0a52f 0%, #e18e28 19%, #9aa739 41%, #21986b 66%, #2d6585 100%);
  --gradient-green: linear-gradient(135deg, #0d8d60 0%, #32b57b 100%);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin: 0 auto; }
.narrow { max-width: 860px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 11, 13, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 35px rgba(0,0,0,.18); background: rgba(8,11,13,.96); }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.brand img {
  width: 280px;
  height: 88px;
  object-fit: contain;
  display: block;
}
.main-nav { display: flex; align-items: center; gap: 28px; color: rgba(255,255,255,.8); font-size: .95rem; font-weight: 600; }
.main-nav > a { position: relative; padding: 28px 0 25px; transition: color .2s ease; }
.main-nav > a:hover, .main-nav > a.active { color: #fff; }
.main-nav > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 17px; height: 2px; background: var(--gradient); transition: right .2s ease; border-radius: 99px; }
.main-nav > a:hover::after, .main-nav > a.active::after { right: 0; }
.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.language-switch button {
  min-width: 52px;
  height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,.70);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .03em;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.language-switch button:hover {
  color: #fff;
}

.language-switch button.active {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.language-switch span {
  display: none;
}
.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(255,255,255,.15); background: transparent; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 21px; height: 2px; background: #fff; border-radius: 999px; }

.hero, .page-hero { position: relative; overflow: hidden; background: var(--black); color: #fff; }
.hero { min-height: 720px; display: flex; align-items: center; padding: 78px 0 96px; }
.page-hero { padding: 105px 0 92px; }
.hero::before, .page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 72% 25%, rgba(34, 151, 106, .12), transparent 36%), linear-gradient(110deg, rgba(255,255,255,.02), transparent 45%); }
.hero::after, .page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--gradient); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 68px; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(12px); pointer-events: none; opacity: .26; }
.hero-glow-one { width: 520px; height: 520px; right: -190px; top: -200px; background: radial-gradient(circle, rgba(239,153,38,.75), rgba(26,157,100,.35), transparent 68%); }
.hero-glow-two { width: 580px; height: 580px; left: -300px; bottom: -320px; background: radial-gradient(circle, rgba(33,152,105,.55), rgba(45,101,133,.24), transparent 68%); }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 11px; font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow { color: rgba(255,255,255,.72); }
.eyebrow > span:first-child { width: 30px; height: 2px; background: var(--gradient); border-radius: 99px; }
.kicker { color: var(--green); }
.kicker-light { color: rgba(255,255,255,.76); }
.hero h1, .page-hero h1 { margin: 20px 0 22px; line-height: 1.05; letter-spacing: -.045em; max-width: 760px; }
.hero h1 { font-size: clamp(3rem, 5.5vw, 5.6rem); }
.page-hero h1 { font-size: clamp(2.7rem, 5vw, 4.7rem); }
.hero-lead, .page-hero p { color: rgba(255,255,255,.68); font-size: 1.08rem; max-width: 700px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 12px; font-weight: 800; font-size: .94rem; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: var(--gradient);
  background-size: 180% 180%;
  box-shadow: 0 18px 36px rgba(11, 25, 22, .30);
  border: 0;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(11, 25, 22, .38);
  background-position: 100% 50%;
}
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.04); }
.btn-light { color: var(--ink); background: #fff; box-shadow: 0 15px 32px rgba(0,0,0,.13); }
.role-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.role-pills span { padding: 7px 11px; font-size: .78rem; border-radius: 999px; color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.035); }
.hero-visual { position: relative; min-height: 555px; display: flex; align-items: center; justify-content: center; }
.device-card { width: min(100%, 515px); background: #f8f8f2; border-radius: 25px; padding: 11px; box-shadow: 0 42px 90px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.1); transform: rotate(1.6deg); }
.device-topbar { display: flex; gap: 5px; padding: 4px 3px 10px; }
.device-topbar span { width: 7px; height: 7px; border-radius: 50%; background: #d4d7d5; }
.device-card img { width: 100%; max-height: 500px; object-fit: cover; object-position: top; border-radius: 16px; }
.floating-card { position: absolute; max-width: 230px; background: rgba(255,255,255,.96); color: var(--ink); border-radius: 16px; padding: 14px 16px; box-shadow: var(--shadow); }
.floating-card strong { display: block; font-size: .88rem; margin-bottom: 2px; }
.floating-card span { display: block; color: var(--muted); font-size: .76rem; line-height: 1.4; }
.floating-card-a { left: -8px; top: 88px; }
.floating-card-b { right: -8px; bottom: 70px; }

.section { padding: 92px 0; }
.section-light { background: #fff; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 740px; margin-bottom: 48px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h2, .showcase-copy h2, .about-copy h2, .contact-form-panel h2, .contact-info-panel h2, .map-caption h2 { margin: 12px 0 14px; font-size: clamp(2rem, 3.4vw, 3.35rem); line-height: 1.13; letter-spacing: -.035em; }
.section-heading p, .about-copy p, .showcase-copy p, .contact-info-panel p { color: var(--muted); }
.experience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.experience-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(238,138,29,.10), transparent 32%),
    radial-gradient(circle at bottom left, rgba(15,152,101,.10), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #fcfcfb 45%, #f6faf8 100%);
  border: 1px solid rgba(23,33,43,.08);
  border-radius: var(--radius-md);
  padding: 25px;
  min-height: 225px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.experience-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--gradient);
}

.experience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15,152,101,.24);
  box-shadow: var(--shadow);
}

.icon-badge {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(238,138,29,.18), rgba(15,152,101,.20), rgba(47,99,131,.18));
  color: var(--green);
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.experience-card h3 { font-size: 1.06rem; margin: 18px 0 8px; }
.experience-card p { color: var(--muted); font-size: .91rem; margin: 0; }
.split-showcase, .about-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.image-stack { position: relative; padding: 20px 55px 55px 0; }
.image-stack img { border-radius: 20px; background: #fff; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,.06); }
.main-shot { width: 88%; }
.secondary-shot { width: 52%; position: absolute; right: 0; bottom: 0; }
.feature-lines { margin: 28px 0 24px; display: grid; gap: 19px; }
.feature-lines > div { display: grid; grid-template-columns: 14px 1fr; gap: 11px; }
.line-dot { width: 9px; height: 9px; margin-top: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(15,152,101,.1); }
.feature-lines strong { font-size: .98rem; }
.feature-lines p { margin: 4px 0 0; font-size: .91rem; }
.text-link { display: inline-flex; gap: 9px; color: var(--green); font-weight: 800; }
.cta-band { background: var(--gradient); color: #fff; padding: 60px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-inner h2 { margin: 8px 0 0; max-width: 780px; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.15; letter-spacing: -.035em; }

.about-visual .photo-card { border-radius: var(--radius-lg); background: #fff; padding: 14px; box-shadow: var(--shadow); transform: rotate(1deg); }
.about-visual img { border-radius: 18px; width: 100%; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(238,138,29,.10), transparent 34%),
    radial-gradient(circle at bottom left, rgba(15,152,101,.10), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #fcfcfb 45%, #f6faf8 100%);
  border: 1px solid rgba(23,33,43,.08);
  border-radius: var(--radius-md);
  padding: 27px;
  min-height: 240px;
  box-shadow: var(--shadow-soft);
}

.value-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--gradient);
}

.value-card > span {
  font-size: .76rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: .13em;
}

.value-card h3 { margin: 28px 0 8px; }
.value-card p { color: var(--muted); font-size: .92rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23,33,43,.08);
  background:
    radial-gradient(circle at top right, rgba(238,138,29,.10), transparent 32%),
    radial-gradient(circle at bottom left, rgba(15,152,101,.10), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #fcfcfb 45%, #f6faf8 100%);
  padding: 27px;
  border-radius: var(--radius-md);
  min-height: 275px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--gradient);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(15,152,101,.24);
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(238,138,29,.18), rgba(15,152,101,.20), rgba(47,99,131,.18));
  color: var(--green);
  font-weight: 900;
  font-size: .8rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.service-card h3 { margin: 20px 0 9px; font-size: 1.08rem; }
.service-card p { color: var(--muted); margin: 0; font-size: .9rem; }
.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.module-card { background: var(--black-2); color: #fff; border-radius: var(--radius-md); padding: 30px; min-height: 220px; position: relative; overflow: hidden; }
.module-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--gradient); }
.module-number { color: rgba(255,255,255,.35); font-size: .8rem; font-weight: 900; }
.module-card h3 { font-size: 1.35rem; margin: 35px 0 9px; }
.module-card p { color: rgba(255,255,255,.62); font-size: .91rem; }
.screenshot-band { padding-top: 0; background: var(--soft); }
.screenshots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.screenshots img { width: 100%; height: 430px; object-fit: cover; object-position: top; background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); border: 1px solid var(--line); }

.contact-section { padding-bottom: 105px; }
.contact-grid { align-items: stretch; }
.contact-form-panel, .contact-info-panel { border-radius: var(--radius-lg); padding: 40px; }
.contact-form-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23,33,43,.08);
  background:
    radial-gradient(circle at top right, rgba(238,138,29,.10), transparent 32%),
    radial-gradient(circle at bottom left, rgba(15,152,101,.10), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #fcfcfb 45%, #f6faf8 100%);
  box-shadow: var(--shadow-soft);
}

.contact-form-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--gradient);
}
.contact-info-panel { color: #fff; background: var(--black-2); position: relative; overflow: hidden; }
.contact-info-panel::before { content: ""; position: absolute; width: 330px; height: 330px; right: -160px; top: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(238,138,29,.32), rgba(15,152,101,.18), transparent 68%); }
.contact-info-panel .kicker { color: #68d7a6; }
.contact-info-panel p { color: rgba(255,255,255,.62); }
.contact-form-panel form { margin-top: 28px; }
.field { margin-bottom: 17px; }
.field label { display: block; margin-bottom: 7px; font-weight: 750; font-size: .84rem; color: #39434c; }
.field input, .field textarea { width: 100%; border: 1px solid #dce2e5; background: #fbfcfc; padding: 13px 14px; border-radius: 12px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.field textarea { resize: vertical; min-height: 145px; }
.field input:focus, .field textarea:focus { border-color: rgba(15,152,101,.6); box-shadow: 0 0 0 4px rgba(15,152,101,.08); background: #fff; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }
.btn-submit { width: 100%; border: 0; }
.form-status { min-height: 24px; margin: 12px 0 0; font-size: .88rem; font-weight: 700; }
.form-status.success { color: var(--green); }
.form-status.error { color: #c73a37; }
.contact-list { display: grid; gap: 10px; margin-top: 32px; position: relative; z-index: 2; }
.contact-list > a, .contact-list > div { display: grid; grid-template-columns: 43px 1fr; gap: 13px; align-items: center; padding: 13px; border: 1px solid rgba(255,255,255,.09); background: rgba(255,255,255,.04); border-radius: 14px; }
.contact-mark { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.08); color: #82e0b6; font-weight: 900; }
.contact-list small { display: block; color: rgba(255,255,255,.45); font-size: .72rem; margin-bottom: 1px; }
.contact-list strong { display: block; color: #fff; font-size: .9rem; word-break: break-word; }
.map-section { position: relative; background: #eaf0ed; }
.map-caption { padding: 38px 0 30px; background: #fff; border-top: 1px solid var(--line); }
.map-caption h2 { font-size: clamp(1.55rem, 2.8vw, 2.4rem); margin-bottom: 6px; }
.map-caption p { color: var(--muted); margin: 0; }
.map-section iframe { display: block; width: 100%; height: 480px; border: 0; filter: saturate(.92) contrast(.98); }

.site-footer {
  background: #080b0d;
  color: rgba(255,255,255,.66);
  padding: 58px 0 20px;
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  font-size: .88rem;
}

.footer-grid strong {
  color: #fff;
  margin-bottom: 7px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-brand {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center;
  gap: 0px !important;
  flex-wrap: wrap;
}

.footer-brand img {
  width: 190px;
  height: auto;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  object-fit: contain;
}

.footer-brand p {
  max-width: none;
  margin: 0;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .78rem;
  color: rgba(255,255,255,.42);
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer-bottom {
  flex-direction: column;
  gap: 6px;
}

.footer-bottom {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}

.footer-slogan {
  display: block;
  width: 100%;
  text-align: center;
}

.footer-slogan {
  display: inline-block;
  width: fit-content;

  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .01em;

  /* Exactement les couleurs du gradient KAMEDU */
  background: linear-gradient(
    90deg,
    #f0a52f 0%,
    #e18e28 19%,
    #9aa739 41%,
    #21986b 66%,
    #2d6585 100%
  );

  background-size: 100% 100%;
  background-position: center;

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;

  /* aucun fond derrière */
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1020px) {
  .hero-grid, .split-showcase, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 65px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 500px; }
  .device-card { width: min(78%, 520px); }
  .floating-card-a { left: 9%; }
  .floating-card-b { right: 9%; }
  .experience-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .module-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1180px); }
  .nav-wrap { height: 72px; }
  .brand img { width: 190px; height: 56px; }
  .menu-toggle { display: flex; }
  .main-nav { position: fixed; left: 14px; right: 14px; top: 81px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; background: #101518; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; box-shadow: 0 25px 70px rgba(0,0,0,.4); }
  .main-nav.open { display: flex; }
  .main-nav > a { padding: 12px 13px; border-radius: 10px; }
  .main-nav > a::after { display: none; }
  .main-nav > a.active { background: rgba(255,255,255,.06); }
  .language-switch { margin-top: 8px; width: max-content; }
  .hero { min-height: auto; padding: 64px 0 72px; }
  .page-hero { padding: 70px 0 62px; }
  .hero-grid { gap: 44px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .page-hero h1 { font-size: clamp(2.35rem, 11vw, 3.6rem); }
  .hero-lead, .page-hero p { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 385px; }
  .device-card { width: 90%; transform: none; }
  .floating-card { display: none; }
  .section { padding: 68px 0; }
  .experience-grid, .value-grid, .service-grid, .screenshots { grid-template-columns: 1fr; }
  .experience-card, .value-card, .service-card { min-height: auto; }
  .image-stack { padding: 0 35px 45px 0; }
  .main-shot { width: 92%; }
  .secondary-shot { width: 48%; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-inner .btn { width: 100%; }
  .screenshots img { height: 390px; }
  .contact-form-panel, .contact-info-panel { padding: 27px 22px; }
  .map-section iframe { height: 390px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
