:root {
  color-scheme: dark;
  --bg: #04060e;
  --panel: #080d18;
  --panel-2: #0c1422;
  --line: rgba(0, 200, 255, 0.13);
  --text: #f0faff;
  --muted: #8aaac2;
  --soft: #cce4f5;
  --blue: #1677ff;
  --blue-2: #00ccff;
  --cyan: #00e4ff;
  --lime: #b8ff5a;
  --ink: #04060e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.56);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 1px 1px, rgba(0, 200, 255, 0.038) 1px, transparent 0),
    radial-gradient(ellipse at 22% 55%, rgba(0, 120, 255, 0.07) 0%, transparent 52%),
    linear-gradient(180deg, #060a14 0%, var(--bg) 100%);
  background-size: 42px 42px, 100% 100%, 100% 100%;
  color: var(--text);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  gap: clamp(8px, 2vw, 20px);
  min-height: 34px;
  padding: 7px clamp(12px, 3vw, 32px);
  background: #05070d;
  border-bottom: 1px solid rgba(184, 255, 90, 0.2);
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 850;
}

.top-bar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.top-bar svg {
  width: 15px;
  height: 15px;
  color: var(--lime);
  stroke-width: 2.5;
}

.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 55;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
  padding: 14px clamp(16px, 4vw, 42px);
  background: #000107;
  border-bottom: 1px solid rgba(0, 200, 255, 0.16);
  backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(0, 184, 255, 0.06), 0 6px 40px rgba(0, 0, 0, 0.44);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  width: clamp(260px, 30vw, 400px);
  height: 62px;
  object-fit: cover;
  object-position: left center;
  flex: 0 0 auto;
  display: block;
}

.brand > span {
  display: none;
}

.nav-links {
  display: flex;
  gap: clamp(12px, 1.6vw, 22px);
  color: var(--soft);
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  font-weight: 800;
}

.nav-links a {
  position: relative;
  opacity: 0.82;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--cyan);
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(107, 232, 255, 0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--cyan);
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.header-actions,
.cta-row,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn,
.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn {
  padding: 0 18px;
}

.icon-btn {
  padding: 0 14px;
  font-size: 0.9rem;
}

.btn svg,
.icon-btn svg,
.feature-card svg,
.service-card svg,
.why-grid svg,
.mobile-cta svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.4;
}

.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  box-shadow: 0 0 0 1px rgba(0, 184, 255, 0.22), 0 16px 42px rgba(0, 184, 255, 0.34);
}

.primary:hover {
  box-shadow: 0 0 0 1px rgba(107, 232, 255, 0.5), 0 20px 56px rgba(0, 184, 255, 0.52);
}

.secondary,
.ghost,
.text {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
  color: #fff;
}

.text {
  background: rgba(5, 7, 11, 0.28);
}

.btn:hover,
.icon-btn:hover,
.menu-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(107, 232, 255, 0.55);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 166px 0 70px;
}

.page-hero {
  padding: 176px 0 56px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(22, 119, 255, 0.25), transparent 44%),
    linear-gradient(180deg, rgba(107, 232, 255, 0.08), transparent);
}

.pricing-hero,
.contact-hero,
.areas-hero,
.blog-hero,
.reviews-hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(4, 6, 14, 0.96) 0%, rgba(4, 6, 14, 0.78) 54%, rgba(4, 6, 14, 0.34) 100%),
    linear-gradient(135deg, rgba(0, 228, 255, 0.17), transparent 42%),
    url("assets/apx-f150-open-bed-service-hero.png") center right / cover;
}

.pricing-hero h1,
.contact-hero h1,
.areas-hero h1,
.blog-hero h1,
.reviews-hero h1 {
  max-width: 720px;
  font-size: clamp(2.55rem, 5.8vw, 5.15rem);
  line-height: 0.98;
  background: linear-gradient(135deg, #f7fcff 12%, #00e4ff 48%, #b8ff5a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-rate-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin: 0 0 20px;
  padding: 0 14px;
  border: 1px solid rgba(184, 255, 90, 0.35);
  border-radius: var(--radius);
  background: rgba(184, 255, 90, 0.08);
  color: var(--lime);
  font-weight: 900;
}

.hero-rate-note svg {
  width: 18px;
  height: 18px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background-image: url("assets/apx-f150-realistic-owner-hero.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 6, 14, 0.98) 0%, rgba(4, 6, 14, 0.86) 38%, rgba(4, 6, 14, 0.28) 78%),
    linear-gradient(0deg, #04060e 0%, rgba(4, 6, 14, 0.1) 34%);
}

.hero-grid,
.split-grid,
.faq-grid,
.contact-grid,
.area-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.hero-grid {
  grid-template-columns: minmax(0, 650px) minmax(240px, 330px);
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(107, 232, 255, 0.55);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.92;
  font-weight: 950;
  text-shadow: 0 0 80px rgba(0, 184, 255, 0.14);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  font-weight: 900;
}

.hero-copy h1::after,
.page-hero h1::after,
.section-heading h2::after,
.contact-copy h2::after,
.photo-strip-content h2::after,
.services-image-banner-content h2::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--cyan), rgba(184, 255, 90, 0.82));
  box-shadow: 0 0 16px rgba(107, 232, 255, 0.42);
}

h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero-lede,
.section-heading p,
.contact-copy p,
.service-area p,
.page-hero p {
  color: var(--soft);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-lede,
.page-hero p {
  max-width: 720px;
  margin: 24px 0 28px;
}

.hero-panel,
.feature-card,
.service-card,
.why-grid div,
.review-grid figure,
.booking-form,
.faq-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(203, 232, 255, 0.07), rgba(255, 255, 255, 0.022));
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.feature-card:hover,
.service-card:hover,
.why-grid div:hover,
.review-grid figure:hover {
  border-color: rgba(107, 232, 255, 0.38);
  box-shadow: 0 0 0 1px rgba(107, 232, 255, 0.12), 0 20px 60px rgba(0, 184, 255, 0.18);
  transform: translateY(-3px);
}

.hero-panel {
  align-self: end;
  padding: 22px;
  background: rgba(11, 16, 24, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel p {
  margin: 0 0 10px;
  color: var(--lime);
  font-weight: 850;
}

.hero-panel strong {
  display: block;
  color: #fff;
  line-height: 1.45;
}

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--lime);
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(184, 255, 90, 0.12), 0 0 8px rgba(184, 255, 90, 0.5); }
  50%       { box-shadow: 0 0 0 10px rgba(184, 255, 90, 0.04), 0 0 18px rgba(184, 255, 90, 0.7); }
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: #060c16;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid div {
  padding: 22px;
  border-left: 1px solid var(--line);
}

.trust-grid div:last-child {
  border-right: 1px solid var(--line);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 1.05rem;
  background: linear-gradient(135deg, #fff 20%, #a0d4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-grid span {
  margin-top: 6px;
  color: var(--muted);
}

.section {
  padding: 92px 0;
}

.rate-snapshot,
.contact-strip {
  padding: 34px 0;
  background: #02040a;
  border-block: 1px solid var(--line);
}

.snapshot-heading {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.snapshot-heading h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.8rem);
}

.snapshot-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.snapshot-grid,
.contact-option-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.snapshot-grid a,
.contact-option-grid a {
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 20px;
  border: 1px solid rgba(107, 232, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(0, 228, 255, 0.09), transparent 52%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.snapshot-grid span,
.contact-option-grid span {
  color: var(--soft);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.snapshot-grid strong,
.contact-option-grid strong {
  color: var(--lime);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  line-height: 1.05;
}

.snapshot-grid em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.area-map-band {
  padding: 52px 0;
  background:
    linear-gradient(135deg, rgba(0, 228, 255, 0.09), transparent 44%),
    #02040a;
  border-block: 1px solid var(--line);
}

.area-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.review-hero-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.review-hero-row span {
  padding: 9px 12px;
  border: 1px solid rgba(184, 255, 90, 0.28);
  border-radius: var(--radius);
  background: rgba(184, 255, 90, 0.07);
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.area-trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(184, 255, 90, 0.28);
  border-radius: var(--radius);
  background: rgba(184, 255, 90, 0.07);
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.area-map-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(280px, 0.68fr);
  gap: 38px;
  align-items: center;
}

.map-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(107, 232, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(107, 232, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 232, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 42% 55%, rgba(0, 228, 255, 0.18), transparent 32%),
    radial-gradient(circle at 68% 35%, rgba(184, 255, 90, 0.12), transparent 28%),
    #040913;
  background-size: 44px 44px, 44px 44px, 100% 100%, 100% 100%, 100% 100%;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.dispatch-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(184, 255, 90, 0.42);
  border-radius: var(--radius);
  background: rgba(3, 5, 12, 0.84);
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dispatch-badge strong {
  color: var(--lime);
}

.map-ring {
  position: absolute;
  display: grid;
  place-items: center;
  border: 2px solid rgba(0, 228, 255, 0.68);
  border-radius: 50%;
  color: #fff;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: inset 0 0 40px rgba(0, 228, 255, 0.08), 0 0 26px rgba(0, 228, 255, 0.22);
}

.map-ring.orlando {
  left: 12%;
  top: 24%;
  width: 260px;
  height: 260px;
}

.map-ring.seminole {
  right: 11%;
  top: 11%;
  width: 230px;
  height: 230px;
  border-color: rgba(184, 255, 90, 0.72);
  box-shadow: inset 0 0 40px rgba(184, 255, 90, 0.08), 0 0 26px rgba(184, 255, 90, 0.2);
}

.map-pin {
  position: absolute;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(3, 5, 12, 0.82);
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.map-pin.ucf { left: 42%; top: 48%; color: var(--lime); }
.map-pin.downtown { left: 31%; top: 56%; }
.map-pin.altamonte { right: 29%; top: 39%; }
.map-pin.sanford { right: 14%; top: 20%; }

.map-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.area-checks {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.area-checks span {
  padding: 12px 14px;
  border-left: 3px solid var(--lime);
  background: rgba(184, 255, 90, 0.07);
  color: var(--soft);
  font-weight: 850;
}

.dispatch-section {
  background: #04060e;
  border-bottom: 1px solid var(--line);
}

.dispatch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.dispatch-grid article {
  min-height: 185px;
  padding: 22px;
  border: 1px solid rgba(107, 232, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(0, 228, 255, 0.07), transparent 58%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.dispatch-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--lime);
  font-size: 1.35rem;
  font-weight: 950;
  text-shadow: 0 0 14px rgba(184, 255, 90, 0.28);
}

.dispatch-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.area-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.area-card-grid article {
  min-height: 205px;
  padding: 24px;
  border: 1px solid rgba(107, 232, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(0, 228, 255, 0.07), transparent 58%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.area-card-grid svg {
  width: 22px;
  height: 22px;
  margin-bottom: 18px;
  color: var(--cyan);
  stroke-width: 2.4;
}

.area-card-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.seminole-section {
  background: #060c16;
  border-block: 1px solid var(--line);
}

.review-summary-band {
  padding: 24px 0;
  background: #02040a;
  border-block: 1px solid var(--line);
}

.review-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.review-summary-grid div {
  padding: 20px;
  border: 1px solid rgba(107, 232, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.review-summary-grid strong,
.review-summary-grid span {
  display: block;
}

.review-summary-grid strong {
  color: var(--lime);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1;
}

.review-summary-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 850;
}

.review-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-wall figure {
  margin: 0;
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(107, 232, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(0, 228, 255, 0.07), transparent 58%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.review-wall blockquote {
  margin: 0 0 18px;
  color: var(--soft);
  line-height: 1.65;
}

.review-wall figcaption {
  color: #fff;
  font-weight: 900;
}

.review-proof-section {
  background: #060c16;
  border-block: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: start;
}

.review-proof-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.review-proof-list article {
  padding: 24px;
  border: 1px solid rgba(107, 232, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.review-proof-list svg {
  width: 22px;
  height: 22px;
  margin-bottom: 18px;
  color: var(--lime);
  stroke-width: 2.4;
}

.review-proof-list p {
  color: var(--muted);
  line-height: 1.6;
}

.blog-stats {
  padding: 24px 0;
  background: #02040a;
  border-block: 1px solid var(--line);
}

.blog-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.blog-stat-grid div {
  padding: 18px;
  border: 1px solid rgba(107, 232, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.blog-stat-grid strong,
.blog-stat-grid span {
  display: block;
}

.blog-stat-grid strong {
  color: #fff;
  font-size: 1rem;
}

.blog-stat-grid span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.45;
}

.blog-layout,
.newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: 28px;
  align-items: start;
}

.featured-article,
.blog-sidebar,
.blog-card-grid article {
  border: 1px solid rgba(107, 232, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(0, 228, 255, 0.07), transparent 58%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.featured-article {
  padding: 30px;
}

.featured-article > span,
.blog-card-grid article > span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-article h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.featured-article p,
.featured-article li,
.blog-card-grid p,
.blog-sidebar a,
.newsletter-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.featured-article ul {
  margin: 22px 0;
  padding-left: 20px;
}

.featured-article li + li {
  margin-top: 8px;
}

.blog-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
  padding: 24px;
}

.blog-sidebar h3 {
  margin-bottom: 4px;
}

.blog-sidebar a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 850;
}

.blog-sidebar a:last-child {
  border-bottom: 0;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.blog-card-grid article {
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: 24px;
}

.blog-card-grid h3 {
  font-size: 1.22rem;
}

.blog-card-grid a {
  align-self: end;
  margin-top: 18px;
  color: var(--cyan);
  font-weight: 900;
}

.home-blog,
.blog-index,
.blog-newsletter {
  background: #04060e;
  border-top: 1px solid var(--line);
}

.blog-newsletter {
  border-bottom: 1px solid var(--line);
}

.newsletter-grid {
  align-items: center;
}

.newsletter-grid h2 {
  font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.newsletter-grid .btn {
  justify-self: end;
}

.coupon-section {
  padding: 82px 0;
  background:
    linear-gradient(135deg, rgba(184, 255, 90, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(0, 184, 255, 0.08), rgba(0, 0, 0, 0));
  border-bottom: 1px solid var(--line);
}

.coupon-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
}

.coupon-copy {
  max-width: 470px;
}

.coupon-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3.7rem);
}

.coupon-copy p:not(.eyebrow) {
  color: var(--soft);
  font-size: 1.04rem;
  line-height: 1.7;
  margin: 24px 0;
}

.coupon-copy strong {
  color: var(--lime);
  letter-spacing: 0.08em;
}

.coupon-image {
  display: block;
  width: 100%;
  border: 1px solid rgba(107, 232, 255, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46), 0 0 36px rgba(0, 184, 255, 0.16);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 520px;
  margin-bottom: 0;
}

.about-section {
  background:
    linear-gradient(120deg, rgba(22, 119, 255, 0.12), transparent 44%),
    #04060e;
  border-top: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.about-copy {
  max-width: 620px;
}

.about-copy p:not(.eyebrow),
.about-points p {
  color: var(--muted);
  line-height: 1.7;
}

.about-copy p:not(.eyebrow) {
  font-size: 1.04rem;
  margin: 24px 0 0;
}

.about-points {
  display: grid;
  gap: 14px;
}

.about-points article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(203, 232, 255, 0.07), rgba(255, 255, 255, 0.022));
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
}

.about-points svg {
  width: 21px;
  height: 21px;
  margin-bottom: 18px;
  color: var(--cyan);
  stroke-width: 2.4;
}

.about-points h3 {
  margin-bottom: 8px;
}

.about-points p {
  margin: 0;
}

.feature-grid,
.service-grid,
.why-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-grid {
  grid-template-columns: repeat(2, 1fr);
}

.feature-card,
.service-card,
.why-grid div,
.review-grid figure {
  margin: 0;
  padding: 24px;
}

.service-card {
  min-height: 236px;
}

.feature-card svg,
.service-card svg,
.why-grid svg {
  margin-bottom: 22px;
  color: var(--cyan);
}

.feature-card p,
.service-card p,
.why-grid p,
.review-grid blockquote,
.review-grid figcaption,
.faq-answer p,
.footer-grid p,
.form-note,
.steps p {
  color: var(--muted);
  line-height: 1.65;
}

.panel-section,
.faq-section,
.home-reviews {
  background: #060c16;
  border-block: 1px solid var(--line);
}

.pricing-promise,
.comparison-section {
  background:
    linear-gradient(120deg, rgba(22, 119, 255, 0.12), transparent 42%),
    #060c16;
  border-block: 1px solid var(--line);
}

.promise-grid,
.comparison-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: start;
}

.process-grid,
.special-grid,
.guarantee-grid {
  display: grid;
  gap: 14px;
}

.process-grid {
  grid-template-columns: repeat(2, 1fr);
}

.process-grid article,
.special-card,
.compare-table article,
.guarantee-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(203, 232, 255, 0.07), rgba(255, 255, 255, 0.022));
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
}

.process-grid article {
  padding: 22px;
}

.process-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--lime);
  font-size: 1.35rem;
  font-weight: 950;
}

.process-grid p,
.pricing-table p,
.compare-table em,
.guarantee-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.specials-section {
  background:
    linear-gradient(135deg, rgba(184, 255, 90, 0.12), transparent 34%),
    #04060e;
}

.special-grid {
  grid-template-columns: repeat(2, 1fr);
}

.special-card {
  padding: 26px;
}

.special-card svg,
.guarantee-grid svg {
  width: 23px;
  height: 23px;
  margin-bottom: 20px;
  color: var(--lime);
  stroke-width: 2.4;
}

.special-card p {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}

.special-card em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.5;
}

.old-price {
  color: var(--muted);
  font-weight: 800;
  text-decoration: line-through;
}

.special-card strong,
.featured-price strong {
  color: var(--lime);
  text-shadow: 0 0 14px rgba(184, 255, 90, 0.35);
}

.special-card strong {
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1;
}

.student-discount {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 14px;
  padding: 24px;
  border: 1px solid rgba(184, 255, 90, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(184, 255, 90, 0.14), transparent 42%),
    rgba(0, 228, 255, 0.05);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28), 0 0 28px rgba(184, 255, 90, 0.1);
}

.student-discount svg {
  width: 28px;
  height: 28px;
  color: var(--lime);
  stroke-width: 2.3;
}

.student-discount h3 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

.student-discount p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
  margin: 10px 0 0;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pricing-table article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  min-height: 160px;
  padding: 20px;
  border: 1px solid rgba(107, 232, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(0, 228, 255, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.pricing-table h3,
.pricing-table p {
  margin: 0;
}

.pricing-table p {
  margin-top: 7px;
}

.pricing-table strong {
  color: var(--lime);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.08;
  text-align: right;
  text-shadow: 0 0 14px rgba(184, 255, 90, 0.28);
}

.pricing-table a,
.compare-table strong {
  color: var(--cyan);
  font-weight: 900;
}

.pricing-table a {
  grid-column: 1 / -1;
  justify-self: start;
  white-space: nowrap;
}

.pricing-table .featured-price {
  background: linear-gradient(90deg, rgba(184, 255, 90, 0.12), rgba(0, 184, 255, 0.04));
}

.pricing-table .emergency-price {
  background: rgba(22, 119, 255, 0.12);
}

.rate-disclaimer {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-option-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-option-grid a {
  min-height: 130px;
}

.contact-option-grid svg {
  width: 22px;
  height: 22px;
  color: var(--cyan);
}

.enhanced-contact-grid {
  align-items: stretch;
}

.contact-promises {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-promises span {
  padding: 12px 14px;
  border-left: 3px solid var(--lime);
  background: rgba(184, 255, 90, 0.07);
  color: var(--soft);
  font-weight: 850;
}

.contact-process {
  background: #04060e;
  border-top: 1px solid var(--line);
}

.compare-table {
  display: grid;
  gap: 12px;
}

.compare-table article {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.compare-table span {
  color: #fff;
  font-weight: 900;
}

.compare-table em {
  font-style: normal;
}

.guarantee-grid {
  grid-template-columns: repeat(4, 1fr);
}

.guarantee-grid article {
  padding: 24px;
}

.guarantee-grid p {
  margin: 10px 0 0;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.steps span {
  color: var(--cyan);
  font-size: 1.6rem;
  font-weight: 950;
}

.steps p {
  margin: 8px 0 0;
}

.service-area {
  padding: 58px 0;
  background:
    linear-gradient(135deg, rgba(0, 150, 255, 0.18), transparent 45%),
    #060e1c;
  border-block: 1px solid var(--line);
}

.area-grid {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.area-grid h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.stars {
  color: var(--lime);
  letter-spacing: 0;
  margin-bottom: 18px;
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-grid blockquote {
  margin: 0 0 18px;
  font-size: 1rem;
}

.review-grid figcaption {
  font-weight: 800;
}

.faq-list {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.faq-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 18px 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: #fff;
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.faq-item svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.faq-item[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer.open {
  grid-template-rows: 1fr;
  border-bottom: 1px solid var(--line);
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 20px;
}

.faq-answer.open p {
  padding: 0 20px 20px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 22px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

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

.form-heading {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.form-heading h3 {
  font-size: clamp(1.3rem, 2vw, 1.9rem);
}

.form-heading p {
  margin: 8px 0 0;
  color: var(--lime);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(203, 232, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  min-height: 48px;
  padding: 12px 14px;
  outline: none;
}

select option {
  color: #07101a;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(107, 232, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(0, 184, 255, 0.14);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.84rem;
}

.site-footer {
  padding: 42px 0 110px;
  background: #03050c;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: start;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 850;
}

.studio-credit {
  grid-column: 1 / -1;
  margin: 0;
}

.studio-credit a {
  color: #fff;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(107, 232, 255, 0.75);
  text-underline-offset: 4px;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(4, 6, 14, 0.94);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  gap: 5px;
  min-height: 62px;
  border-right: 1px solid var(--line);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 850;
}

.mobile-cta a:last-child {
  border-right: 0;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .top-bar {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .top-bar::-webkit-scrollbar {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: 112px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(4, 6, 14, 0.97);
    box-shadow: var(--shadow);
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 16px;
    border-radius: var(--radius);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split-grid,
  .about-grid,
  .snapshot-heading,
  .area-map-grid,
  .blog-layout,
  .newsletter-grid,
  .proof-grid,
  .promise-grid,
  .comparison-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

  .service-grid,
  .pricing-table,
  .area-card-grid,
  .blog-card-grid,
  .blog-stat-grid,
  .review-wall,
  .review-summary-grid,
  .dispatch-grid,
  .guarantee-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .top-bar {
    min-height: 38px;
    font-size: 0.72rem;
  }

  .site-header {
    min-height: 70px;
    top: 38px;
  }

  .brand-logo {
    width: min(220px, 60vw);
    height: 52px;
    object-fit: cover;
    object-position: left center;
  }

  .nav-links {
    top: 108px;
  }

  .hero {
    padding-top: 156px;
    padding-bottom: 52px;
  }

  .page-hero {
    padding-top: 156px;
  }

  .pricing-hero,
  .contact-hero,
  .areas-hero,
  .blog-hero {
    min-height: auto;
    padding-bottom: 48px;
    background:
      linear-gradient(90deg, rgba(4, 6, 14, 0.96), rgba(4, 6, 14, 0.78)),
      url("assets/apx-f150-open-bed-service-hero.png") center right / cover;
  }

  .hero-media {
    background-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 6, 14, 0.98), rgba(4, 6, 14, 0.76)),
      linear-gradient(0deg, #04060e, rgba(4, 6, 14, 0.34));
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.9rem);
  }

  .hero-lede,
  .section-heading p,
  .contact-copy p,
  .service-area p,
  .page-hero p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .cta-row .btn {
    width: 100%;
  }

  .trust-grid,
  .coupon-grid,
  .snapshot-grid,
  .contact-option-grid,
  .feature-grid,
  .service-grid,
  .pricing-table,
  .area-card-grid,
  .blog-card-grid,
  .blog-stat-grid,
  .review-wall,
  .review-summary-grid,
  .review-proof-list,
  .dispatch-grid,
  .process-grid,
  .special-grid,
  .guarantee-grid,
  .why-grid,
  .review-grid,
  .booking-form,
  .area-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div,
  .trust-grid div:last-child {
    border-inline: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 70px 0;
  }

  .coupon-section {
    padding: 62px 0;
  }

  .coupon-copy {
    max-width: none;
  }

  .pricing-table article {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
  }

  .pricing-table strong {
    text-align: left;
  }

  .student-discount {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .newsletter-grid .btn {
    justify-self: stretch;
  }

  .map-panel {
    min-height: 320px;
  }

  .map-ring.orlando {
    left: 8%;
    top: 30%;
    width: 185px;
    height: 185px;
  }

  .map-ring.seminole {
    right: 7%;
    top: 12%;
    width: 165px;
    height: 165px;
  }

  .map-pin {
    font-size: 0.68rem;
  }

  .steps article {
    grid-template-columns: 52px 1fr;
  }

  .area-grid .btn {
    width: 100%;
  }

  .mobile-cta {
    display: grid;
  }

  .photo-duo {
    grid-template-columns: 1fr;
    height: 560px;
  }

  .photo-duo-item:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .services-image-banner {
    height: 260px;
  }
}

/* ── Photo Duo (two-panel image section) ── */
.photo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 380px;
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.photo-duo-item {
  position: relative;
  overflow: hidden;
}

.photo-duo-item:first-child {
  border-right: 1px solid var(--line);
}

.photo-duo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 7s ease;
}

.photo-duo-item:hover .photo-duo-bg {
  transform: scale(1.08);
}

.photo-duo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 7, 11, 0.82) 0%, rgba(5, 7, 11, 0.12) 55%);
}

.photo-duo-label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 1;
}

.photo-duo-label p {
  margin: 0 0 5px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(107, 232, 255, 0.55);
}

.photo-duo-label h3 {
  margin: 0;
  font-size: 1.18rem;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 0 28px rgba(0, 184, 255, 0.28);
}

/* ── Photo Strip (full-width cinematic band) ── */
.photo-strip {
  position: relative;
  overflow: hidden;
  height: 320px;
  border-block: 1px solid var(--line);
}

.photo-strip-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.photo-strip:hover .photo-strip-img {
  transform: scale(1.07);
}

.photo-strip-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.78) 0%, rgba(5, 7, 11, 0.15) 50%, rgba(5, 7, 11, 0.6) 100%),
    linear-gradient(0deg, rgba(5, 7, 11, 0.92) 0%, rgba(5, 7, 11, 0) 40%);
}

.photo-strip-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding: 36px clamp(16px, 4vw, 42px);
  max-width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.photo-strip-content h2 {
  text-shadow: 0 0 40px rgba(0, 184, 255, 0.3);
}

/* ── Services Image Banner ── */
.services-image-banner {
  position: relative;
  overflow: hidden;
  height: 340px;
  border-bottom: 1px solid var(--line);
}

.services-image-banner-img {
  position: absolute;
  inset: 0;
  background-image: url("assets/apx-f150-open-bed-service-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.services-image-banner-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.9) 0%, rgba(5, 7, 11, 0.3) 55%),
    linear-gradient(0deg, rgba(5, 7, 11, 0.88) 0%, transparent 55%);
}

.services-image-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 clamp(16px, 4vw, 42px);
  max-width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.services-image-banner-content h2 {
  max-width: 560px;
  text-shadow: 0 0 40px rgba(0, 184, 255, 0.28);
}

/* ── Nav link active indicator ── */
.nav-links a[aria-current="page"] {
  position: relative;
}

.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--cyan);
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(107, 232, 255, 0.6);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
