/* Hongtu Rescue - Professional Stable Style */
:root {
  --blue-900: #0a2f5c;
  --blue-800: #0b4f9e;
  --blue-700: #1565c0;
  --blue-600: #1e6fcf;
  --blue-500: #2b7de0;
  --blue-50: #eef5fc;
  --ink: #1a1f2e;
  --ink-soft: #4a5568;
  --muted: #718096;
  --line: #e2e8f0;
  --white: #ffffff;
  --orange: #e8752a;
  --footer: #0d1b2a;
  --shadow: 0 12px 40px rgba(11, 47, 92, 0.12);
  --shadow-sm: 0 4px 16px rgba(11, 47, 92, 0.08);
  --radius: 14px;
  --header-h: 76px;
  --font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--blue-700);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.35);
}

.btn--primary:hover {
  background: var(--blue-800);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn--light {
  background: var(--white);
  color: var(--blue-700);
}

.btn--light:hover {
  background: var(--blue-50);
}

.btn--block {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
}

.header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo--footer .logo__img {
  height: 64px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__link {
  position: relative;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--blue-700);
}

.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  background: var(--blue-700);
  border-radius: 2px;
}

.header__hotline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  color: var(--blue-700);
  flex-shrink: 0;
}

.header__hotline-label {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.2;
}

.header__hotline-num {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-700);
  line-height: 1.2;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
  margin-inline: auto;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100vh, 820px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 160px;
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 47, 92, 0.55), rgba(10, 47, 92, 0.25)),
    url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1920&q=80")
      center / cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 28, 56, 0.82) 0%,
    rgba(8, 28, 56, 0.55) 48%,
    rgba(8, 28, 56, 0.28) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 36px;
}

.hero__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.hero__feat-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

/* Floating services */
.services-float {
  position: relative;
  z-index: 2;
  margin-top: -100px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.services-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 12px;
  border-radius: 12px;
  transition: transform 0.3s var(--ease), background 0.3s, box-shadow 0.3s;
}

.service-item:hover {
  transform: translateY(-6px);
  background: var(--blue-50);
  box-shadow: var(--shadow-sm);
}

.service-item__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  border-radius: 16px;
  background: linear-gradient(160deg, var(--blue-50), #dbeafe);
  color: var(--blue-700);
  transition: background 0.3s, color 0.3s;
}

.service-item:hover .service-item__icon {
  background: var(--blue-700);
  color: var(--white);
}

.service-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-800);
  margin-bottom: 6px;
}

.service-item p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Stats */
.stats {
  margin-top: 56px;
  background: linear-gradient(105deg, var(--blue-800), var(--blue-600));
  color: var(--white);
  padding: 36px 0;
}

.stats__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.stats__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  gap: 24px;
  flex: 1;
  min-width: 280px;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat-item span {
  font-size: 0.88rem;
  opacity: 0.9;
}

.stats__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.stats__cta p {
  font-weight: 600;
  white-space: nowrap;
}

/* About */
.about {
  background: linear-gradient(180deg, #f7fafc 0%, var(--white) 100%);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.about__text p {
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.about__list {
  display: grid;
  gap: 12px;
}

.about__list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue-700);
  box-shadow: inset 0 0 0 3px var(--blue-50);
}

.about__visual {
  min-height: 260px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 79, 158, 0.85), rgba(232, 117, 42, 0.55)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=900&q=80")
      center / cover;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.about__panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}

.about__panel span {
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-900);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  animation: floatIn 0.8s var(--ease) both;
}

.about__panel span:nth-child(2) {
  animation-delay: 0.12s;
}

.about__panel span:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Content grid */
.content-grid {
  background: #f4f7fb;
  padding-top: 72px;
}

.content-grid__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.panel h2 {
  font-size: 1.25rem;
  color: var(--blue-900);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue-50);
}

.panel__lead {
  font-weight: 600;
  color: var(--blue-700);
  margin-bottom: 14px;
}

.adv-grid {
  display: grid;
  gap: 14px;
}

.adv-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 10px;
  transition: background 0.25s;
}

.adv-item:hover {
  background: var(--blue-50);
}

.adv-item__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-50);
  color: var(--blue-700);
}

.adv-item h3 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--ink);
}

.adv-item p {
  font-size: 0.8rem;
  color: var(--muted);
}

.partner-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.partner-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.partner-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-700);
  font-weight: 700;
}

.partner-photo {
  height: 140px;
  border-radius: 10px;
  margin-bottom: 18px;
  background:
    linear-gradient(180deg, transparent 30%, rgba(10, 47, 92, 0.35)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=800&q=80")
      center / cover;
}

.news-list {
  display: grid;
  gap: 16px;
}

.news-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 10px;
  transition: background 0.25s;
}

.news-item:hover {
  background: var(--blue-50);
}

.news-item__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 56px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

.news-item__thumb--1 {
  background-image: url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=200&q=80");
}

.news-item__thumb--2 {
  background-image: url("https://images.unsplash.com/photo-1511919884226-fd3cad34687c?auto=format&fit=crop&w=200&q=80");
}

.news-item__thumb--3 {
  background-image: url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=200&q=80");
}

.news-item__body strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 4px;
}

.news-item__body time {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Contact */
.contact {
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.contact__info {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--blue-50);
  border: 1px solid #d6e6f8;
}

.contact-card h3 {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-card__phone {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue-700);
  margin-bottom: 4px;
}

.contact-card a:not(.contact-card__phone) {
  color: var(--blue-700);
  font-weight: 600;
}

.contact-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius);
  background: #f8fafc;
  border: 1px solid var(--line);
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form label span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(30, 111, 207, 0.15);
}

.form-tip {
  text-align: center;
  color: var(--blue-700);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.82);
  padding-top: 56px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 0.9fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-btn {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.8rem;
  transition: background 0.2s;
}

.social-btn:hover {
  background: var(--blue-600);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.footer__links h4,
.footer__contact h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.footer__links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact p {
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.65);
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.85);
}

.footer__qr {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.qr-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background:
    repeating-linear-gradient(
      90deg,
      #fff 0 4px,
      transparent 4px 8px
    ),
    repeating-linear-gradient(
      0deg,
      #1a1f2e 0 4px,
      #fff 4px 8px
    );
  opacity: 0.9;
  border: 4px solid #fff;
}

.footer__qr span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Float call */
.float-call {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(232, 117, 42, 0.45);
  transition: transform 0.25s var(--ease);
  animation: pulse 2.4s ease-in-out infinite;
}

.float-call:hover {
  transform: scale(1.08);
  animation: none;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(232, 117, 42, 0.45);
  }
  50% {
    box-shadow: 0 10px 28px rgba(232, 117, 42, 0.45), 0 0 0 12px rgba(232, 117, 42, 0.15);
  }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  transition-delay: 0s;
}

.hero .hero__title.reveal {
  transition-delay: 0.05s;
}

.hero .hero__subtitle.reveal {
  transition-delay: 0.15s;
}

.hero .hero__features.reveal {
  transition-delay: 0.25s;
}

.hero .hero__actions.reveal {
  transition-delay: 0.35s;
}

/* Responsive */
@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .header__hotline {
    margin-left: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .nav.is-open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    padding: 12px 20px 24px;
    box-shadow: var(--shadow);
    border-top: 1px solid var(--line);
    animation: slideDown 0.3s var(--ease);
  }

  .nav.is-open .nav__link {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open .nav__link.is-active::after {
    display: none;
  }

  .content-grid__inner {
    grid-template-columns: 1fr 1fr;
  }

  .panel--news {
    grid-column: 1 / -1;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer__contact {
    grid-column: 1 / -1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .stats__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__cta {
    width: 100%;
    justify-content: space-between;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 64px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .header__hotline-label {
    display: none;
  }

  .header__hotline-num {
    font-size: 0.9rem;
  }

  .logo__img {
    height: 44px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 36px) 0 130px;
    text-align: center;
  }

  .hero__content {
    margin-inline: auto;
  }

  .hero__features {
    justify-content: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .services-float {
    margin-top: -80px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .service-item {
    padding: 16px 8px;
  }

  .service-item__icon {
    width: 52px;
    height: 52px;
  }

  .section {
    padding: 64px 0;
  }

  .content-grid__inner {
    grid-template-columns: 1fr;
  }

  .stats {
    margin-top: 40px;
    padding: 28px 0;
  }

  .stats__cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }

  .float-call {
    right: 14px;
    bottom: 18px;
    width: 50px;
    height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
