/* ============================================================
   SHRUB — Garden Tidy Up / Maintenance Landing Page
   index.html
   Palette: Green #1F9C40 · Dark text #1E1E1E
            Light bg #F7F8F5 · White cards #FFFFFF
            Border #E4E7E0
   Font: Inter
   Matches the visual system used on the garden-clearance page.
   ============================================================ */

:root {
  --gm-green:       #1F9C40;
  --gm-green-dark:  #178534;
  --gm-text:        #1E1E1E;
  --gm-text-muted:  #555a52;
  --gm-text-faint:  #84897f;
  --gm-bg:          #F7F8F5;
  --gm-white:       #FFFFFF;
  --gm-border:      #E4E7E0;
  --gm-radius:      14px;
  --gm-radius-sm:   8px;
  --gm-shadow:      0 4px 18px rgba(30,30,30,0.06);
  --gm-shadow-lg:   0 12px 36px rgba(30,30,30,0.1);
  --gm-max:         1140px;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html.gm { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body.gm {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gm-text);
  background: var(--gm-bg);
  overflow-x: hidden;
}
.gm img { max-width: 100%; display: block; }
.gm a { color: inherit; text-decoration: none; }
.gm ul { list-style: none; }
.gm button { font-family: inherit; cursor: pointer; border: none; background: none; }
.gm h1, .gm h2, .gm h3, .gm h4 { line-height: 1.2; letter-spacing: -0.01em; color: var(--gm-text); }

.gm-container { max-width: var(--gm-max); margin: 0 auto; padding: 0 24px; }

/* ── Buttons ───────────────────────────────────────────────── */
.gm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s, border-color 0.18s, color 0.18s;
  cursor: pointer;
}
.gm-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
a.gm-btn-primary {
  background: var(--gm-green);
  color: #fff;
  border: 2px solid var(--gm-green);
  box-shadow: 0 6px 20px rgba(31,156,64,0.28);
}
.gm-btn-primary:hover { background: var(--gm-green-dark); border-color: var(--gm-green-dark); transform: translateY(-1px); }
a.gm-btn-secondary {
  background: #fff;
  color: var(--gm-green);
  border: 2px solid var(--gm-green);
}
.gm-btn-secondary:hover { background: #f0faf2; transform: translateY(-1px); }
.gm-btn-block { width: 100%; }

.gm-contact-links {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px 10px;
  font-size: 0.82rem; color: var(--gm-text-faint); margin-top: 20px; text-align: center;
}
.gm-contact-links a {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gm-text-muted); text-decoration: none; font-weight: 500;
  transition: color 0.15s;
}
.gm-contact-links a svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--gm-green); }
.gm-contact-links a:hover { color: var(--gm-green); }
.gm-contact-links-sep { color: var(--gm-border); }

.gm-contact-links-dark { color: rgba(255,255,255,0.45); margin-top: -8px; margin-bottom: 28px; }
.gm-contact-links-dark a { color: rgba(255,255,255,0.75); }
.gm-contact-links-dark a svg { color: var(--gm-green); }
.gm-contact-links-dark a:hover { color: #fff; }
.gm-contact-links-dark .gm-contact-links-sep { color: rgba(255,255,255,0.25); }

/* ── Header ────────────────────────────────────────────────── */
.gm-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,248,245,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gm-border);
  height: 68px;
  display: flex;
  align-items: center;
}
.gm-header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gm-logo { display: inline-flex; align-items: center; }
.gm-logo-img { height: 34px; width: auto; }
.gm-logo-text { font-size: 1.4rem; font-weight: 800; color: var(--gm-text); letter-spacing: -0.02em; }
.gm-logo-text span { color: var(--gm-green); }
.gm-header .gm-btn { padding: 10px 20px; font-size: 0.85rem; }
.gm-phone-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.9rem; font-weight: 600; color: var(--gm-text);
  transition: color 0.15s;
}
.gm-phone-link:hover { color: var(--gm-green); }
.gm-phone-link svg { width: 15px; height: 15px; color: var(--gm-green); flex-shrink: 0; }

/* ── Hero (simple, dark, no image) ────────────────────────── */
.gm-hero-simple { background: var(--gm-text); padding: 96px 0 88px; text-align: center; }
.gm-hero-simple .gm-container { max-width: 720px; }
.gm-hero-simple h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; margin-bottom: 20px; }
.gm-hero-simple p { color: rgba(255,255,255,0.7); font-size: 1.1rem; line-height: 1.7; max-width: 560px; margin: 0 auto 36px; }

/* ── Hero ──────────────────────────────────────────────────── */
.gm-hero { padding: 56px 0 48px; }
.gm-hero-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.gm-hero-image { min-height: 480px; }
.gm-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; color: var(--gm-green);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.gm-hero h1 { font-size: clamp(2.2rem, 4vw, 3.1rem); font-weight: 800; margin-bottom: 18px; }
.gm-hero-sub { font-size: 1.1rem; color: var(--gm-text-muted); line-height: 1.65; margin-bottom: 12px; max-width: 520px; }
.gm-hero-support { font-size: 0.95rem; color: var(--gm-text-faint); margin-bottom: 28px; }
.gm-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.gm-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.gm-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--gm-border);
  border-radius: 100px; padding: 8px 14px;
  font-size: 0.82rem; font-weight: 500; color: var(--gm-text-muted);
}
.gm-badge svg { width: 14px; height: 14px; color: var(--gm-green); flex-shrink: 0; }
.gm-hero-image .gm-placeholder { aspect-ratio: 4/3.2; border-radius: var(--gm-radius); }
.gm-hero-photo {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--gm-radius); box-shadow: var(--gm-shadow-lg);
}

.gm-placeholder {
  width: 100%; height: 100%; min-height: 220px;
  background: linear-gradient(150deg, #e8efe6 0%, #cfe6d4 100%);
  border: 1.5px dashed #b9d2bd;
  border-radius: var(--gm-radius-sm);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 24px; text-align: center;
}
.gm-placeholder svg { width: 30px; height: 30px; color: var(--gm-green); opacity: 0.55; }
.gm-placeholder span { font-size: 0.78rem; color: #5d7361; font-style: italic; max-width: 220px; line-height: 1.5; }

/* ── Section heading shared ───────────────────────────────── */
.gm-section { padding: 64px 0; }
.gm-section-head { max-width: 640px; margin-bottom: 40px; }
.gm-eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 600; color: var(--gm-green);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px;
}
.gm-section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; margin-bottom: 12px; }
.gm-section-head p { font-size: 1rem; color: var(--gm-text-muted); line-height: 1.7; }
.gm-section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ── Problem ───────────────────────────────────────────────── */
.gm-problem { background: var(--gm-white); }
.gm-problem-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gm-problem-card {
  background: var(--gm-bg); border: 1px solid var(--gm-border);
  border-radius: var(--gm-radius); padding: 28px 24px;
}
.gm-problem-card .gm-icon-circle { margin-bottom: 16px; }
.gm-problem-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.gm-problem-card p { font-size: 0.9rem; color: var(--gm-text-muted); line-height: 1.6; }

.gm-icon-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(31,156,64,0.1);
  display: flex; align-items: center; justify-content: center;
}
.gm-icon-circle svg { width: 20px; height: 20px; color: var(--gm-green); }

/* ── What's included ───────────────────────────────────────── */
.gm-includes { background: var(--gm-bg); }
.gm-includes-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 28px;
}
.gm-include-item {
  background: #fff; border: 1px solid var(--gm-border); border-radius: var(--gm-radius-sm);
  padding: 20px 16px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
}
.gm-include-item span { font-size: 0.88rem; font-weight: 600; line-height: 1.4; }
.gm-includes-note {
  font-size: 0.85rem; color: var(--gm-text-faint); line-height: 1.65;
  background: #fff; border: 1px solid var(--gm-border); border-radius: var(--gm-radius-sm);
  padding: 16px 20px;
}

/* ── Pricing ───────────────────────────────────────────────── */
.gm-pricing { background: var(--gm-white); }
.gm-pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 28px; }
.gm-price-card {
  background: var(--gm-bg); border: 1px solid var(--gm-border); border-radius: var(--gm-radius);
  padding: 36px 32px; position: relative; display: flex; flex-direction: column;
}
.gm-price-card.featured {
  background: #fff; border: 2px solid var(--gm-green); box-shadow: var(--gm-shadow-lg);
}
.gm-price-badge {
  position: absolute; top: -13px; left: 32px;
  background: var(--gm-green); color: #fff; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; padding: 5px 14px; border-radius: 100px;
}
.gm-price-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }
.gm-price-amount { font-size: 2.4rem; font-weight: 800; margin-bottom: 4px; color: var(--gm-green); }
.gm-price-amount sup { font-size: 1rem; font-weight: 600; color: var(--gm-text-faint); margin-left: 4px; }
.gm-price-was { font-size: 1.35rem; font-weight: 700; color: var(--gm-text-faint); text-decoration: line-through; display: block; margin-bottom: 2px; }
.gm-offer-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--gm-green); background: rgba(31,156,64,0.1);
  border: 1px solid rgba(31,156,64,0.25); border-radius: 4px; padding: 3px 9px; margin-bottom: 14px;
}
.gm-offer-note {
  font-size: 0.8rem; color: var(--gm-text-faint); line-height: 1.5; margin-top: 6px; margin-bottom: 20px;
}
.gm-offer-strip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--gm-green);
  background: rgba(31,156,64,0.08); border: 1px solid rgba(31,156,64,0.22);
  border-radius: 100px; padding: 7px 16px; margin-top: 20px;
}
.gm-price-team { font-size: 0.85rem; color: var(--gm-text-faint); margin-bottom: 20px; }
.gm-price-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.gm-price-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--gm-text-muted); line-height: 1.5; }
.gm-price-list svg { width: 16px; height: 16px; color: var(--gm-green); flex-shrink: 0; margin-top: 2px; }
.gm-price-best { font-size: 0.82rem; color: var(--gm-text-faint); margin-bottom: 20px; }
.gm-photos-note { font-size: 0.85rem; color: var(--gm-text-faint); text-align: center; margin-top: 6px; }
.gm-policy-box {
  background: #f0f7f2; border: 1px solid #c8e6d0; border-radius: var(--gm-radius); padding: 20px 24px; margin: 32px 0 0;
}
.gm-policy-box p { font-size: 0.9rem; color: var(--gm-text-muted); line-height: 1.6; margin: 0; }
.gm-policy-title { font-weight: 700; color: var(--gm-text) !important; font-size: 0.95rem !important; margin-bottom: 8px !important; }
.gm-sustainability-text {
  font-size: 0.95rem; color: var(--gm-text-muted); line-height: 1.7; text-align: center;
  max-width: 640px; margin: 28px auto 0;
}
.gm-pricing-help {
  text-align: center;
  background: var(--gm-bg); border: 1px solid var(--gm-border); border-radius: var(--gm-radius-sm);
  padding: 22px 24px;
}
.gm-pricing-help-title { font-size: 0.98rem; font-weight: 700; color: var(--gm-text); margin-bottom: 4px; }
.gm-pricing-help p:not(.gm-pricing-help-title) { font-size: 0.9rem; color: var(--gm-text-muted); }

/* ── How it works ──────────────────────────────────────────── */
.gm-how { background: var(--gm-bg); }
.gm-how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gm-how-step { background: #fff; border: 1px solid var(--gm-border); border-radius: var(--gm-radius-sm); padding: 24px 20px; }
.gm-how-num {
  width: 32px; height: 32px; border-radius: 50%; background: var(--gm-green); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem;
  margin-bottom: 14px;
}
.gm-how-step p { font-size: 0.92rem; color: var(--gm-text-muted); line-height: 1.6; font-weight: 500; }
.gm-how-note { margin-top: 28px; font-size: 0.88rem; color: var(--gm-text-faint); font-style: italic; }

/* ── Gallery ───────────────────────────────────────────────── */
.gm-gallery { background: var(--gm-white); }
.gm-gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: start; }
.gm-gallery-card { background: var(--gm-bg); border: 1px solid var(--gm-border); border-radius: var(--gm-radius); padding: 16px; }
.gm-gallery-imgs { display: grid; grid-template-columns: 1fr; gap: 8px; margin-bottom: 14px; }
.gm-gallery-imgs .gm-placeholder { aspect-ratio: 1/1; min-height: 0; padding: 10px; }
.gm-gallery-imgs .gm-placeholder svg { width: 20px; height: 20px; }
.gm-gallery-imgs .gm-placeholder span { font-size: 0.65rem; }
.gm-gallery-label { font-size: 0.85rem; font-weight: 600; color: var(--gm-text-muted); }
.gm-gallery-photo {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  border-radius: var(--gm-radius-sm); margin-bottom: 14px;
  cursor: zoom-in;
}

/* Lightbox */
#gm-lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
  padding: 24px;
}
#gm-lightbox.gm-lb-open { display: flex; }
#gm-lightbox-img {
  max-width: 100%; max-height: 90vh;
  border-radius: var(--gm-radius); object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
#gm-lightbox-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: #fff;
  font-size: 2.2rem; line-height: 1; cursor: pointer; opacity: 0.8;
}
#gm-lightbox-close:hover { opacity: 1; }
.gm-gallery-photo-half {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  border-radius: var(--gm-radius-sm);
}

/* ── Trust ─────────────────────────────────────────────────── */
.gm-trust { background: var(--gm-bg); }
.gm-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.gm-trust-item {
  background: #fff; border: 1px solid var(--gm-border); border-radius: var(--gm-radius-sm);
  padding: 22px; display: flex; align-items: center; gap: 14px;
}
.gm-trust-item span { font-size: 0.92rem; font-weight: 600; }
.gm-team-photo-wrap { margin: 40px 0 32px; }
.gm-team-photo { width: 100%; aspect-ratio: 16/7; object-fit: cover; object-position: center 30%; border-radius: var(--gm-radius); }
.gm-team-caption { text-align: center; font-size: 0.85rem; color: var(--gm-text-faint); margin-top: 12px; }
.gm-how-photo-wrap { margin-top: 40px; }
.gm-how-photo { width: 100%; aspect-ratio: 16/7; object-fit: cover; object-position: center; border-radius: var(--gm-radius); }
.gm-how-caption { text-align: center; font-size: 0.85rem; color: var(--gm-text-faint); margin-top: 12px; }
.gm-reviews-wrap { background: var(--gm-white); }
.gm-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gm-review-card {
  background: #fff; border: 1px solid var(--gm-border); border-radius: var(--gm-radius); padding: 26px;
}
.gm-review-stars { color: #f5a623; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 12px; }
.gm-review-card blockquote { font-size: 0.97rem; line-height: 1.65; color: var(--gm-text); margin-bottom: 14px; }
.gm-review-author { font-size: 0.82rem; color: var(--gm-text-faint); font-weight: 600; }

/* ── Service area ──────────────────────────────────────────── */
.gm-area { background: var(--gm-white); }
.gm-area-inner { max-width: 760px; }
.gm-area p { font-size: 1rem; color: var(--gm-text-muted); line-height: 1.75; margin-bottom: 16px; }
.gm-area-note {
  font-size: 0.88rem; color: var(--gm-text-faint);
  background: var(--gm-bg); border: 1px solid var(--gm-border); border-radius: var(--gm-radius-sm);
  padding: 14px 20px; display: inline-block;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.gm-faq { background: var(--gm-bg); }
.gm-faq-list { max-width: 760px; }
details.gm-faq-item {
  background: #fff; border: 1px solid var(--gm-border); border-radius: var(--gm-radius-sm);
  margin-bottom: 10px; overflow: hidden;
}
details.gm-faq-item summary {
  font-size: 0.98rem; font-weight: 700; color: var(--gm-text);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 18px 22px; user-select: none;
}
details.gm-faq-item summary::-webkit-details-marker { display: none; }
.gm-faq-icon {
  width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--gm-border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.2s, background 0.15s, border-color 0.15s;
}
.gm-faq-icon svg { width: 11px; height: 11px; color: var(--gm-text-faint); }
details.gm-faq-item[open] .gm-faq-icon { background: var(--gm-green); border-color: var(--gm-green); transform: rotate(45deg); }
details.gm-faq-item[open] .gm-faq-icon svg { color: #fff; }
.gm-faq-answer { font-size: 0.9rem; color: var(--gm-text-muted); line-height: 1.7; padding: 0 22px 20px; }

/* ── Final CTA ─────────────────────────────────────────────── */
.gm-final { background: var(--gm-text); text-align: center; }
.gm-final h2 { color: #fff; font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin-bottom: 14px; }
.gm-final p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 32px; }
.gm-final-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.gm-final-note { color: rgba(255,255,255,0.45); font-size: 0.85rem; }

/* ── Footer ────────────────────────────────────────────────── */
.gm-footer {
  background: var(--gm-text); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 32px 0 96px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.gm-footer-logo { display: inline-flex; align-items: center; }
.gm-footer-logo-img { height: 28px; width: auto; background: #fff; border-radius: 6px; padding: 3px 8px; }
.gm-footer-logo-text { color: #fff; font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; }
.gm-footer-links { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.gm-footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.gm-footer-links a:hover { color: #fff; }
.gm-footer-links span { font-size: 0.85rem; color: rgba(255,255,255,0.35); }

/* ── Sticky mobile CTA ─────────────────────────────────────── */
.gm-sticky {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: #fff; border-top: 1px solid var(--gm-border); padding: 12px 16px;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.08);
  transition: opacity 0.2s;
}
.gm-sticky .gm-btn { width: 100%; padding: 15px; font-size: 0.95rem; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 980px) {
  .gm-hero-grid { grid-template-columns: 1fr; }
  .gm-hero-image { order: -1; min-height: 260px; }
  .gm-problem-cards { grid-template-columns: 1fr; }
  .gm-includes-grid { grid-template-columns: repeat(2, 1fr); }
  .gm-pricing-cards { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .gm-how-steps { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .gm-gallery-grid { grid-template-columns: 1fr; }
  .gm-gallery-photo { cursor: default; }
  .gm-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .gm-reviews-grid { grid-template-columns: 1fr; }
  .gm-hero-simple { padding: 72px 0 64px; }
}

@media (max-width: 600px) {
  .gm-section { padding: 48px 0; }
  .gm-hero { padding: 36px 0 36px; }
  .gm-hero-actions { flex-direction: column; }
  .gm-hero-actions .gm-btn { width: 100%; }
  .gm-includes-grid { grid-template-columns: 1fr 1fr; }
  .gm-trust-grid { grid-template-columns: 1fr; }
  .gm-final-actions { flex-direction: column; }
  .gm-final-actions .gm-btn { width: 100%; }
  .gm-footer { flex-direction: column; align-items: flex-start; padding-bottom: 100px; }
  .gm-sticky { display: block; }
  .gm-final { padding-bottom: 64px; }
  .gm-hero-simple .gm-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .gm * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
