/* ============================================================
   HRDelivered Homepage — CSS (matched to template-homepage.php)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Design Tokens ---- */
:root {
  --color-navy:         #001342;
  --color-crimson:      #d7013f;
  --color-crimson-dark: #a40130;
  --color-blue:         #094ffe;
  --color-blue-light:   #5b8cff;
  --color-cream:        #F6F3E8;
  --color-white:        #FFFFFF;
  --font-heading:       'Inter', system-ui, sans-serif;
  --font-body:          'Inter', system-ui, sans-serif;
  --radius-sm:          8px;
  --radius-md:          12px;
  --radius-lg:          16px;
  --radius-xl:          20px;
  --radius-full:        9999px;
  --shadow-card:        0 1px 3px rgba(0,19,66,0.06), 0 4px 16px rgba(0,19,66,0.04);
}

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

body {
  font-family: var(--font-body);
  color: var(--color-navy);
  background-color: var(--color-white);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

::selection { background-color: var(--color-crimson); color: var(--color-white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.875rem 1.75rem;
  background-color: var(--color-crimson);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.btn-primary:hover { background-color: var(--color-crimson-dark); }
.btn-primary-lg { padding: 1rem 2rem; font-size: 1.0625rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.875rem 1.75rem;
  background-color: transparent;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.30);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--color-blue-light); color: var(--color-blue-light); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem 2rem;
  background-color: transparent;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline-white:hover { border-color: var(--color-white); }

/* ================================================================
   HERO  —  .hero / .hero-glow1 / .hero-glow2 / .hero-inner
   ================================================================ */
.hero {
  background-color: var(--color-navy);
  padding: 8rem 1.5rem 6rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-glow1 {
  position: absolute;
  top: 4rem; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: rgba(9,79,254,0.25);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute;
  top: 4rem; left: 33%;
  transform: translateX(-50%);
  width: 400px; height: 300px;
  background: rgba(215,1,63,0.20);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 56rem;
  margin-inline: auto;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(91,140,255,0.40);
  border-radius: var(--radius-full);
  background-color: rgba(91,140,255,0.15);
  margin-bottom: 2rem;
}
.hero-badge-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.80);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--color-blue-light); }

.hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.70);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) { .hero-btns { flex-direction: row; } }

/* ================================================================
   STATS BAR  —  .stats / .stats-grid / .stat-item / .stat-value / .stat-label
   ================================================================ */
.stats {
  background-color: var(--color-cream);
  border-top: 1px solid rgba(0,19,66,0.10);
  border-bottom: 1px solid rgba(0,19,66,0.10);
  padding-block: 1rem;
}

.stats-grid {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) { .stats-grid { padding-inline: 2.5rem; } }

.stat-item {
  padding: 1.6rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(0,19,66,0.10);
}
@media (min-width: 961px) { .stat-item { padding: 1.6rem 2rem; } }
.stat-item--last,
.stat-item:last-child { border-right: none; }

@media (max-width: 960px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(0,19,66,0.10); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid rgba(0,19,66,0.10); }
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(0,19,66,0.55);
  margin-top: 0.25rem;
}

/* ================================================================
   SECTIONS  —  .section / .section-inner / .section-header
   ================================================================ */
.section { padding-block: 5rem; }
.section--white   { background-color: var(--color-white); }
.section--cream   { background-color: var(--color-cream); }
.section--bordered {
  border-top: 1px solid rgba(0,19,66,0.08);
  border-bottom: 1px solid rgba(0,19,66,0.08);
}

.section-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) { .section-inner { padding-inline: 2.5rem; } }

.section-header {
  text-align: center;
  max-width: 960px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.125rem;
  color: rgba(0,19,66,0.60);
  line-height: 1.7;
  max-width: 36rem;
  margin: 0 auto;
}

/* ================================================================
   CAROUSEL  —  infinite drag carousel with arrow controls
   ================================================================ */
.carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel-viewport {
  overflow: hidden;
  flex: 1;
  cursor: grab;
  user-select: none;
}
.carousel-viewport:active { cursor: grabbing; }

.carousel-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

/* tile width set by JS; these styles handle appearance */
.carousel-tile {
  flex-shrink: 0;
  background-color: var(--color-cream);
  border: 1px solid rgba(0,19,66,0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.carousel-tile:hover { border-color: rgba(9,79,254,0.40); box-shadow: 0 8px 24px rgba(0,19,66,0.06); }

.carousel-tile-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.carousel-tile-body h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}
.carousel-tile-body p {
  font-size: 0.9375rem;
  color: rgba(0,19,66,0.60);
  line-height: 1.6;
  flex: 1;
}
.carousel-tile-body .learn {
  display: block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-blue);
}
.carousel-tile img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  pointer-events: none; /* prevents image ghost-drag */
  user-select: none;
  -webkit-user-drag: none;
}

/* Arrow buttons */
.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,19,66,0.15);
  background-color: var(--color-white);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  box-shadow: 0 1px 4px rgba(0,19,66,0.08);
}
.carousel-btn:hover {
  background-color: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}

/* ================================================================
   CARDS 3-UP GRID  —  .cards-3 / .card
   ================================================================ */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .cards-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards-3 { grid-template-columns: 1fr; } }

.card {
  background-color: var(--color-white);
  border: 1px solid rgba(0,19,66,0.10);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.section--cream .card { background-color: var(--color-white); }
.card:hover { border-color: rgba(9,79,254,0.35); box-shadow: var(--shadow-card); }

.card--step { position: relative; overflow: hidden; }
.card-num {
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(9,79,254,0.10);
  line-height: 1;
  pointer-events: none;
}
.card-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(9,79,254,0.08);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}
.card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.625rem;
}
.card-body {
  font-size: 0.9375rem;
  color: rgba(0,19,66,0.60);
  line-height: 1.6;
}
.card-learn {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-blue);
}

/* ================================================================
   BENEFITS SPLIT  —  .benefits-grid / .benefits-img / .benefits-heading
   ================================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.benefits-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

.benefits-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.benefits-body {
  font-size: 1.0625rem;
  color: rgba(0,19,66,0.65);
  line-height: 1.75;
}
.benefits-body--spaced { margin-top: 1rem; margin-bottom: 2rem; }

/* ================================================================
   CALCULATOR  —  .calc-section / .calc-inner / .calc-stats / .calc-card
   ================================================================ */
.calc-section {
  background-color: var(--color-navy);
  padding-block: 6rem;
  position: relative;
  overflow: hidden;
}

.calc-glow {
  position: absolute;
  width: 700px; height: 700px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(9,79,254,0.18);
  filter: blur(120px);
  pointer-events: none;
}

.calc-section { text-align: center; }
.calc-inner {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.calc-eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue-light);
  margin-bottom: 1rem;
}

.calc-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.calc-inner > p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.text-white-strong { color: var(--color-white); font-weight: 600; }

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
}
.calc-count {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--color-blue-light);
}

.slider-wrap {
  position: relative;
  padding-block: 0.75rem;
  cursor: grab;
  touch-action: none;
}
.slider-wrap:active { cursor: grabbing; }

.slider-track {
  width: 100%;
  height: 6px;
  border-radius: var(--radius-full);
  background-color: rgba(255,255,255,0.20);
  position: relative;
}
.slider-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  border-radius: var(--radius-full);
  background-color: var(--color-blue-light);
  pointer-events: none;
}
.slider-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  background-color: var(--color-blue-light);
  border: 2px solid rgba(255,255,255,0.35);
  box-shadow: 0 2px 8px rgba(0,0,0,0.30);
  transition: transform 0.15s;
  pointer-events: none;
}
.slider-thumb:hover { transform: translate(-50%, -50%) scale(1.15); }

.slider-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.40);
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}

.calc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 600px) { .calc-stats { grid-template-columns: 1fr; } }

.calc-card {
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(91,140,255,0.25);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.25rem;
  backdrop-filter: blur(8px);
}
.calc-card-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
}
.calc-card-value {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--color-blue-light);
  line-height: 1;
}
.calc-card-value.white { color: var(--color-white); }

.calc-cta { margin-bottom: 1.5rem; }
.calc-disclaimer {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* ================================================================
   TESTIMONIALS  —  .testimonial / .testimonial-meta
   ================================================================ */
.testimonial {
  background-color: var(--color-white);
  border: 1px solid rgba(0,19,66,0.10);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.testimonial blockquote {
  font-size: 1rem;
  color: var(--color-navy);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testimonial-meta {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,19,66,0.08);
}
.testimonial-name {
  font-weight: 600;
  color: var(--color-navy);
  font-size: 0.9375rem;
}
.testimonial-title {
  font-size: 0.875rem;
  color: rgba(0,19,66,0.50);
  margin-top: 0.2rem;
}

/* ================================================================
   CTA SECTION  —  .cta-section / .cta-inner / .cta-btns
   ================================================================ */
.cta-section {
  background-color: var(--color-navy);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-glow1 {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: rgba(215,1,63,0.20);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.cta-glow2 {
  position: absolute;
  top: 33%; right: 25%;
  width: 400px; height: 400px;
  background: rgba(9,79,254,0.20);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.cta-inner p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.70);
  max-width: 36rem;
  margin: 0 auto 3rem;
}
.cta-btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) { .cta-btns { flex-direction: row; } }

/* ================================================================
   FOOTER  —  footer / .footer-grid / .footer-col / .footer-bottom
   ================================================================ */
footer {
  background-color: var(--color-navy);
  padding: 5rem 1.5rem 4rem;
}
@media (min-width: 768px) { footer { padding: 7rem 2.5rem 4rem; } }
footer a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  font-size: 0.9375rem;
}
footer a:hover { color: var(--color-white); }

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand { grid-column: span 1; }

.footer-logo { height: 3.5rem; width: auto; margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.55);
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--color-crimson); color: var(--color-crimson); }

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.50);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.10);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p, .footer-bottom a { font-size: 0.75rem; color: rgba(255,255,255,0.40); }

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.875rem; color: rgba(255,255,255,0.40); }
.footer-legal a:hover { color: var(--color-white); }

/* WordPress admin bar offset */
.nav { top: var(--wp-admin--admin-bar--height, 0); }

/* ================================================================
   RESPONSIVE — Mobile
   ================================================================ */
@media (max-width: 768px) {
  .hero { padding-top: 7rem; padding-bottom: 4rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .nav-links { display: none; } /* mobile nav handled separately if needed */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; }
}

/* ================================================================
   ENTRANCE ANIMATIONS
   ================================================================ */
@keyframes hrdFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hrdFadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes hrdFadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Hero: animate on page load (no JS needed) */
.hero-badge {
  animation: hrdFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0s;
}
.hero-inner h1 {
  animation: hrdFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.12s;
}
.hero-inner > p {
  animation: hrdFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.26s;
}
.hero-btns {
  animation: hrdFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.4s;
}

/* Scroll-triggered elements: hidden until .is-visible is added by JS */
.hrd-animate {
  opacity: 0;
  transform: translateY(24px);
}
.hrd-animate.is-visible {
  animation: hrdFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Directional variants */
.hrd-animate--from-left {
  opacity: 0;
  transform: translateX(-40px);
}
.hrd-animate--from-left.is-visible {
  animation: hrdFadeLeft 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hrd-animate--from-right {
  opacity: 0;
  transform: translateX(40px);
}
.hrd-animate--from-right.is-visible {
  animation: hrdFadeRight 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-badge,
  .hero-inner h1,
  .hero-inner > p,
  .hero-btns { animation: none; }
  .hrd-animate,
  .hrd-animate--from-left,
  .hrd-animate--from-right { opacity: 1; transform: none; }
  .hrd-animate.is-visible,
  .hrd-animate--from-left.is-visible,
  .hrd-animate--from-right.is-visible { animation: none; }
}
