/* ===== Fleetfines — clean rebuild ===== */

:root {
  --navy:        #1c2448;
  --navy-light:  #324a6d;
  --blue:        #0273ff;
  --blue-dark:   #168aff;
  --grey:        #69727d;
  --bg:          #ffffff;
  --bg-soft:     #f4f7fb;
  --bg-navy-soft:#eef3fb;
  --border:      #e4e9f2;
  --radius:      14px;
  --shadow:      0 18px 45px rgba(28, 36, 72, .12);
  --shadow-sm:   0 8px 24px rgba(28, 36, 72, .08);
  --maxw:        1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--navy-light);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5 {
  color: var(--navy);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -.021em;
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(2, 115, 255, .35);
}
.btn-primary:hover { background: var(--blue-dark); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; }

/* ===== Header ===== */
.site-header {
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  backdrop-filter: blur(16px) saturate(1.6);
  border-bottom: 1px solid rgba(28, 36, 72, .07);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
.logo img { height: 29px; width: auto; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  margin: 5px 0;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  color: var(--navy-light);
  font-weight: 600;
  font-size: 14.5px;
  padding: 9px 13px;
  border-radius: 8px;
  display: inline-block;
  transition: color .15s ease;
}
.main-nav > ul > li > a:hover { color: var(--navy); text-decoration: none; }
.main-nav .btn { padding: 9px 18px; font-size: 14px; border-radius: 999px; }
.main-nav .btn-primary { color: #fff; }
.main-nav .btn-ghost {
  background: #fff;
  color: var(--navy);
  border-color: var(--border);
}
.main-nav .btn-ghost:hover { background: var(--bg-soft); border-color: #c9d6ee; }

/* language switch — segmented toggle */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 10px;
  padding: 3px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.lang-switch .is-active,
.main-nav .lang-switch a {
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 5px 9px;
  border-radius: 999px;
  letter-spacing: .2px;
}
.lang-switch .is-active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 1px 2px rgba(28, 36, 72, .16);
}
.main-nav .lang-switch a { color: var(--grey); }
.main-nav .lang-switch a:hover { color: var(--navy); text-decoration: none; }

/* dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 7px;
}
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
  min-width: 320px;
  display: flex !important;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li { width: 100%; }
.dropdown a {
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 9px;
  width: 100%;
}
.dropdown a:hover { background: var(--bg-soft); text-decoration: none; }
.dropdown a strong { display: block; font-size: 15px; }
.dropdown a span { display: block; font-size: 13px; color: var(--grey); font-weight: 600; }

/* ===== Generic section ===== */
.section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy); }
.section-tight { padding: 60px 0; }

.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(25px, 3vw, 33px); margin-bottom: 14px; }
.section-head p { color: var(--grey); font-size: 17px; }

/* ===== Hero ===== */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 80px 0 0;
  overflow: hidden;
}
.hero-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.hero h1 {
  color: #fff;
  font-size: clamp(31px, 4.2vw, 43px);
  margin-bottom: 22px;
}
.hero p {
  color: #c8d5dc;
  font-size: 18px;
  margin-bottom: 16px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-actions .btn-ghost { color: #fff; }
.hero-image {
  margin: 56px auto -120px;
  max-width: 960px;
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .45);
}
.hero-image.phone {
  max-width: 420px;
  box-shadow: none;
  margin-bottom: -60px;
}
.hero-image.no-shadow { box-shadow: none; }
.hero-spacer { height: 130px; }
.hero-spacer.phone { height: 70px; }

/* Homepage hero — taller, image fully contained */
.hero-home { padding: 108px 0 104px; }
.hero-home .hero-inner { max-width: 900px; }
.hero-home .hero-image {
  margin: 72px auto 0;
  max-width: 1060px;
}
.hero-home + .hero-spacer { display: none; }

/* ===== Feature row (split) ===== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-row + .feature-row { margin-top: 90px; }
.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-media { order: 1; }
.feature-text h2 { font-size: clamp(24px, 2.9vw, 31px); margin-bottom: 18px; }
.feature-text h3 { font-size: 19px; margin: 22px 0 8px; }
.feature-text p { color: var(--grey); margin-bottom: 14px; }
.feature-text p .lead-in { color: var(--navy); font-weight: 700; }
.feature-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}
.feature-media.plain img { box-shadow: none; }

/* ===== Check list ===== */
.check-list { list-style: none; margin: 22px 0; }
.check-list li {
  position: relative;
  padding: 9px 0 9px 38px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== Card grid ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card .icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--bg-navy-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--grey); font-size: 16px; }

/* media card (with screenshot) */
.media-card { padding: 0; overflow: hidden; }
.media-card img { width: 100%; border-bottom: 1px solid var(--border); }
.media-card .media-card-body { padding: 24px 24px 28px; }

/* ===== Steps ===== */
.steps { display: flex; flex-direction: column; gap: 22px; max-width: 820px; margin: 0 auto; }
.step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  flex: 0 0 48px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { font-size: 19px; margin-bottom: 6px; }
.step p { color: var(--grey); margin-bottom: 8px; }
.step a { font-weight: 700; font-size: 14px; }

/* ===== Tag grid (municipalities) ===== */
.tag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.tag {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tag::before {
  content: "";
  flex: 0 0 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

/* ===== Highlight callout ===== */
.callout {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-navy-soft);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 22px;
}
.callout svg { width: 26px; height: 26px; color: var(--blue); flex: 0 0 26px; }
.callout strong { color: var(--navy); font-size: 17px; }

/* ===== Testimonial ===== */
.testimonial { background: var(--navy); color: #fff; padding: 90px 0; }
.testimonial-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.testimonial img { height: 46px; width: auto; margin: 0 auto 26px; }
.testimonial blockquote {
  font-size: clamp(19px, 2.1vw, 24px);
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 22px;
}
.testimonial cite { color: #9fb3d9; font-style: normal; font-weight: 700; }

/* ===== Image gallery strip ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  width: 100%;
}

/* ===== CTA band ===== */
.cta-band {
  background: var(--bg-navy-soft);
  text-align: center;
  padding: 80px 0;
}
.cta-band img { height: 54px; width: auto; margin: 0 auto 24px; }
.cta-band h2 { font-size: clamp(22px, 2.9vw, 29px); max-width: 720px; margin: 0 auto 14px; }
.cta-band p { color: var(--grey); max-width: 620px; margin: 0 auto 28px; font-size: 17px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: #8a9cbd; }
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.15fr 1fr;
  gap: 48px;
  padding: 66px 0 54px;
}
.footer-brand .footer-logo { height: 30px; width: auto; margin-bottom: 18px; opacity: .92; }
.footer-brand p { color: #7688ab; max-width: 290px; font-size: 14px; line-height: 1.7; }
.footer-col h3 {
  color: #e6ebf4;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: #8a9cbd; font-weight: 400; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 22px 0;
  font-size: 13px;
  color: #66789c;
  text-align: center;
}

/* ===== Breadcrumb ===== */
.breadcrumb-bar { background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0;
  font-size: 14px;
}
.breadcrumb li { color: var(--grey); }
.breadcrumb li::after { content: "/"; margin-left: 8px; color: var(--border); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--blue); font-weight: 700; }

/* ===== Prose / article ===== */
.prose { max-width: 760px; margin: 0 auto; }
.prose > p:first-of-type { font-size: 18px; color: var(--navy-light); }
.prose h2 { font-size: clamp(22px, 2.4vw, 27px); margin: 44px 0 14px; }
.prose h3 { font-size: 18px; margin: 26px 0 8px; }
.prose p { color: var(--navy-light); margin-bottom: 16px; }
.prose ul { margin: 0 0 18px 4px; list-style: none; }
.prose ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  color: var(--navy-light);
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.prose strong { color: var(--navy); }

/* ===== Related links box ===== */
.related-box {
  background: var(--bg-navy-soft);
  border-radius: var(--radius);
  padding: 28px 30px;
  margin: 38px 0;
}
.related-box h3 { font-size: 17px; margin-bottom: 14px; }
.related-box ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.related-box ul li { padding: 0; }
.related-box ul li::before { display: none; }
.related-box a { font-weight: 700; }
.related-box a::before { content: "\2192"; margin-right: 8px; }

/* ===== FAQ ===== */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--border);
}
.faq details:first-of-type { border-top: 1px solid var(--border); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 36px 22px 0;
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 400;
  color: var(--blue);
}
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--grey); padding: 0 0 22px; margin: 0; }

/* ===== Legal pages ===== */
.page-hero {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 70px 0;
}
.page-hero h1 { color: #fff; font-size: clamp(27px, 3.6vw, 37px); margin-bottom: 12px; }
.page-hero p { color: #c8d5dc; max-width: 640px; margin: 0 auto; }

.legal { padding: 64px 0; }
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 {
  font-size: 20px;
  margin: 38px 0 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.legal-content p { color: var(--navy-light); margin-bottom: 14px; }
.legal-content .principles {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 14px;
}
.legal-content .principles li { margin-left: 20px; margin-bottom: 6px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .feature-row { grid-template-columns: 1fr; gap: 36px; }
  .feature-row.reverse .feature-text,
  .feature-row.reverse .feature-media { order: 0; }
  .card-grid, .card-grid.cols-2, .card-grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .tag-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 30px rgba(28, 36, 72, .12);
    display: none;
    padding: 14px 24px 24px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav .btn { text-align: center; margin-top: 6px; }
  .lang-switch { align-self: flex-start; margin: 14px 0 2px; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: 0;
    background: var(--bg-soft);
    margin: 4px 0 8px;
  }
  .dropdown a { color: var(--navy); }
  .dropdown a span { color: var(--grey); }
  .dropdown a:hover { background: #e6ecf6; }
  .has-dropdown > a::after { float: right; margin-top: 8px; }
  .card-grid, .card-grid.cols-2, .card-grid.cols-4,
  .gallery, .tag-grid { grid-template-columns: 1fr; }
  .hero-image { margin-bottom: -70px; }
  .hero-spacer { height: 90px; }
  .hero-home { padding: 72px 0 60px; }
  .hero-home .hero-image { margin-top: 44px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand { grid-column: auto; }
  .step { flex-direction: column; gap: 12px; }
}

/* ============================================
   Motion, soft accents & micro-interactions
   ============================================ */

/* Sticky header gains depth once you scroll */
.site-header { transition: box-shadow .3s ease, background-color .3s ease; }
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 6px 22px rgba(28, 36, 72, .09);
}

/* Soft glow in the dark hero areas */
.hero {
  background-color: var(--navy);
  background-image:
    radial-gradient(56% 46% at 50% -6%, rgba(70, 127, 247, .34), transparent 72%),
    radial-gradient(40% 38% at 88% 6%, rgba(123, 97, 255, .20), transparent 70%);
}
.page-hero {
  background-color: var(--navy);
  background-image:
    radial-gradient(54% 72% at 50% 0%, rgba(70, 127, 247, .26), transparent 72%);
}

/* Soft pastel accent blob in light sections */
.section-soft { position: relative; overflow: hidden; }
.section-soft::before {
  content: "";
  position: absolute;
  width: 540px; height: 540px;
  top: -250px; right: -190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 97, 255, .12), transparent 70%);
  pointer-events: none;
}
.section-soft > .container { position: relative; z-index: 1; }

/* Warmer, softer CTA band */
.cta-band {
  background: radial-gradient(70% 130% at 50% 0%, #e9edfb, var(--bg-navy-soft));
}

/* Smoother micro-interactions */
.btn {
  transition: transform .28s cubic-bezier(.16, 1, .3, 1),
              box-shadow .28s ease, background-color .2s ease;
}
.btn:active { transform: translateY(0) scale(.97); }
.card {
  transition: transform .34s cubic-bezier(.16, 1, .3, 1), box-shadow .34s ease;
}
.card:hover { transform: translateY(-6px); }
.step { transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s ease; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tag { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.tag:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: #c9d6ee; }
.feature-media img { transition: transform .5s cubic-bezier(.16, 1, .3, 1); }
.feature-media:hover img { transform: scale(1.02); }
.footer-col a, .breadcrumb a, .related-box a { transition: color .18s ease; }

/* Scroll-reveal + entrance animations */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.16, 1, .3, 1),
                transform .7s cubic-bezier(.16, 1, .3, 1);
  }
  .reveal.is-visible { opacity: 1; transform: none; }
  .feature-media.reveal { transition-delay: .1s; }

  @keyframes ffFadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero .hero-inner > *,
  .hero > .container > .hero-image,
  .page-hero h1,
  .page-hero p {
    animation: ffFadeUp .85s cubic-bezier(.16, 1, .3, 1) both;
  }
  .hero .hero-inner > *:nth-child(1) { animation-delay: .06s; }
  .hero .hero-inner > *:nth-child(2) { animation-delay: .14s; }
  .hero .hero-inner > *:nth-child(3) { animation-delay: .22s; }
  .hero .hero-inner > *:nth-child(4) { animation-delay: .30s; }
  .hero .hero-inner > *:nth-child(5) { animation-delay: .38s; }
  .hero > .container > .hero-image { animation-delay: .44s; }
  .page-hero h1 { animation-delay: .05s; }
  .page-hero p  { animation-delay: .16s; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
