:root {
  --primary: #009454;
  --primary-hover: #00683b;
  --white: #ffffff;
  --surface: #f7f8fa;
  --text: #111827;
  --muted: #667085;
  --border: #e8ecf0;
  --soft-green: #f0faf5;
  --dark: #111827;
  --shadow: 0 22px 60px rgba(17, 24, 39, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(24, 169, 87, 0.28);
  outline-offset: 3px;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
}

.section {
  padding: 76px 0;
}

.section-heading {
  text-align: center;
  max-width: 100%;
  margin-bottom: 40px;
}

.section-heading h2,
.article h1,
.hero h1 {
  margin: 14px 0 16px;
  letter-spacing: 0;
  line-height: 1.05;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 52px);
}

.section-heading p,
.hero-copy p,
.demo-copy p,
.contact-copy p,
.article .lead {
  color: var(--muted);
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 12px 24px rgba(24, 169, 87, .18);
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-secondary,
.btn-ghost {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: rgba(24, 169, 87, .38);
}

.btn-large {
  min-height: 50px;
  padding: 10px 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 30px rgba(17, 24, 39, .05);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img,
.footer-brand img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.nav-links,
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  transition: color .2s ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  display: none;
}

.hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(24, 169, 87, .12), transparent 28%),
    linear-gradient(#e8ecf0 1px, transparent 1px),
    linear-gradient(90deg, #e8ecf0 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
}

.hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
}

.hero h1 {
  font-size: clamp(46px, 6vw, 74px);
}

.hero-copy p {
  max-width: 620px;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 14px;
}

.hero-copy small {
  color: var(--muted);
  font-weight: 600;
}

.hero-slider {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
}

.hero-slides {
  position: relative;
  min-height: 500px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  opacity: 0;
  transform: translateY(18px) scale(.985);
  transition: opacity .72s ease, transform .72s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 1;
}

.hero-slide img {
  width: min(100%, 920px);
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 26px 44px rgba(17, 24, 39, .14));
}

.hero-slide figcaption {
  display: none;
  min-height: 360px;
  width: min(100%, 760px);
  place-items: center;
  border: 1px dashed rgba(24, 169, 87, .32);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, .74);
  font-weight: 800;
}

.hero-slide.is-missing img {
  display: none;
}

.hero-slide.is-missing figcaption {
  display: grid;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 4px;
  z-index: 2;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cfd7df;
}

.slider-dots button.active {
  width: 28px;
  border-radius: 999px;
  background: var(--primary);
}

.platform-overview {
  padding-top: 0;
  scroll-margin-top: 74px;
  background: var(--surface);
}

.business-marquee {
  overflow: hidden;
  margin-bottom: 76px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.business-marquee-track {
  display: flex;
  width: max-content;
  animation: business-marquee 38s linear infinite;
}

.business-marquee-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 28px 14px 0;
  white-space: nowrap;
}

.business-marquee-group span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: #536174;
  font-size: 14px;
  font-weight: 800;
}

.business-marquee-group span::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  content: "";
}

@keyframes business-marquee {
  to {
    transform: translateX(-50%);
  }
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--border);
}

.feature-item {
  min-height: 220px;
  padding: 28px;
  background: #fff;
}

.feature-item h3 {
  margin: 14px 0 8px;
  font-size: 19px;
  line-height: 1.25;
}

.feature-item p,
.result-card p {
  margin: 0;
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--soft-green);
  color: var(--primary);
}

.icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.result-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.result-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}

.result-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.result-card div {
  padding: 24px;
}

.result-card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 19px;
}

.showcase {
  background: #fff;
}

.showcase-tabs {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.showcase-select {
  display: none;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.tab-button {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}

.tab-button.active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.showcase-panel {
  display: grid;
  grid-template-columns: .25fr .75fr;
  gap: 22px;
  align-items: stretch;
}

.showcase-copy {
  padding: 28px;
  border-radius: 12px;
  background: var(--surface);
}

.showcase-copy h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.showcase-copy p {
  margin: 0;
  color: var(--muted);
}

.showcase-image {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(135deg, #fff, #f7f8fa);
}

.showcase-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: contain;
  padding: 18px;
  transition: opacity .25s ease, transform .25s ease;
}

.showcase-image figcaption {
  display: none;
  color: var(--muted);
  font-weight: 800;
}

.showcase-image.is-missing img {
  display: none;
}

.showcase-image.is-missing figcaption {
  display: block;
}

.showcase-image.fading img {
  opacity: .25;
  transform: translateY(6px);
}

.demo-section {
  background: var(--soft-green);
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 44px;
  align-items: center;
}

.demo-copy .btn {
  margin-top: 26px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.onboarding {
  padding: 30px;
  border: 1px solid rgba(24, 169, 87, .18);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.onboarding h3 {
  margin: 0 0 18px;
  font-size: 24px;
}

.onboarding ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.onboarding li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  font-weight: 800;
}

.onboarding li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.onboarding span {
  color: var(--primary);
  font-size: 13px;
}

.faq-section {
  background: #fff;
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}

.faq-item+.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item button {
  width: 100%;
  padding: 20px 24px;
  border: 0;
  background: #fff;
  color: var(--text);
  text-align: left;
  font-weight: 900;
}

.faq-item button::after {
  content: "+";
  float: right;
  color: var(--primary);
}

.faq-item.open button::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 20px;
  color: var(--muted);
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 169, 87, .32);
  box-shadow: var(--shadow);
}

.blog-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.blog-card div {
  padding: 22px;
}

.blog-card span {
  color: var(--primary-hover);
  font-size: 13px;
  font-weight: 900;
}

.blog-card h3,
.blog-card h2 {
  margin: 8px 0 10px;
  font-size: 21px;
  line-height: 1.25;
}

.blog-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.blog-card small {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
}

.blog-card a {
  color: var(--primary-hover);
  font-weight: 900;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

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

.application-section {
  min-height: calc(100vh - 280px);
  padding: 142px 0 96px;
  background: linear-gradient(180deg, #fff, var(--surface));
}

.application-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.application-copy {
  position: sticky;
  top: 120px;
}

.application-copy h1 {
  margin: 14px 0 18px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.04;
}

.application-copy>p {
  color: var(--muted);
  font-size: 18px;
}

.contact-points {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-points div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.contact-points p {
  margin: 4px 0 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--text);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.contact-form .consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.contact-form .consent a {
  color: var(--primary-hover);
  text-decoration: underline;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--primary-hover);
  font-weight: 800;
}

.legal-page {
  padding: 142px 0 96px;
  background: var(--surface);
}

.legal-document {
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

.legal-document h1 {
  margin: 10px 0 8px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
}

.legal-document .updated {
  margin-bottom: 34px;
  color: var(--muted);
}

.legal-document h2 {
  margin: 30px 0 10px;
  font-size: 24px;
}

.legal-document p,
.legal-document li {
  color: #384252;
}

.legal-document a {
  color: var(--primary-hover);
  font-weight: 800;
}

.site-footer {
  padding: 50px 0 24px;
  color: #d6dde4;
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr;
  gap: 40px;
}

.footer-brand img {
  width: 184px;
}

.site-footer p {
  margin: 10px 0 0;
  color: #aeb9c4;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
  color: #d6dde4;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #aeb9c4;
  font-size: 14px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.footer-bottom a {
  margin: 0;
}


.article-hero h1,
.article h1 {
  font-size: clamp(40px, 5vw, 62px);
}

.article {
  padding: 16px 0;
}

.article-wrap {
  width: min(780px, calc(100% - 40px));
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--primary-hover);
}

.article .lead {
  margin-bottom: 30px;
}

.article-image {
  width: 100%;
  max-height: 470px;
  object-fit: cover;
  border-radius: 16px;
  margin: 30px 0 42px;
}

.article h2 {
  margin: 34px 0 12px;
  font-size: 30px;
  line-height: 1.18;
}

.article p {
  color: #384252;
  font-size: 18px;
}

.note,
.article-cta {
  margin: 34px 0;
  padding: 24px;
  border: 1px solid rgba(24, 169, 87, .2);
  border-radius: 14px;
  background: var(--soft-green);
  font-weight: 800;
}

.article-cta h2 {
  margin-top: 0;
}

.related {
  display: grid;
  gap: 10px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.related a {
  color: var(--primary-hover);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1280px) {
  .container {
    width: min(1080px, calc(100% - 40px));
  }
}

@media (max-width: 1024px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  .nav-links,
  .header-actions {
    display: none;
  }

  .header-inner {
    position: relative;
    z-index: 2;
  }

  .brand img {
    display: none;
  }

  .brand::before {
    content: "";
    display: block;
    width: 48px;
    height: 48px;
    background: url("assets/logo/fp-logo-trasparent.png") center / contain no-repeat;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .mobile-panel {
    display: flex;
    position: fixed;
    z-index: 1;
    left: 0;
    right: 0;
    top: 74px;
    height: calc(100vh - 74px);
    height: calc(100dvh - 74px);
    flex-direction: column;
    padding: clamp(30px, 6vh, 64px) clamp(24px, 7vw, 72px) 32px;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, #fff 0%, #f7faf8 100%);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-105%);
    transition: transform .46s cubic-bezier(.22, 1, .36, 1), opacity .28s ease, visibility 0s linear .46s;
  }

  .site-header.menu-open {
    backdrop-filter: none;
  }

  .site-header.menu-open .mobile-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .mobile-panel nav {
    display: grid;
  }

  .mobile-panel a:not(.btn) {
    padding: 17px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: clamp(25px, 4vw, 38px);
    font-weight: 900;
    line-height: 1.15;
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity .28s ease, transform .38s cubic-bezier(.22, 1, .36, 1);
  }

  .site-header.menu-open .mobile-panel a:not(.btn) {
    opacity: 1;
    transform: translateY(0);
  }

  .site-header.menu-open .mobile-panel a:nth-child(1) {
    transition-delay: .14s;
  }

  .site-header.menu-open .mobile-panel a:nth-child(2) {
    transition-delay: .18s;
  }

  .site-header.menu-open .mobile-panel a:nth-child(3) {
    transition-delay: .22s;
  }

  .site-header.menu-open .mobile-panel a:nth-child(4) {
    transition-delay: .26s;
  }

  .site-header.menu-open .mobile-panel a:nth-child(5) {
    transition-delay: .3s;
  }

  .mobile-actions {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 28px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .28s ease, transform .38s cubic-bezier(.22, 1, .36, 1);
  }

  .site-header.menu-open .mobile-actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .34s;
  }

  .mobile-actions .btn {
    min-height: 52px;
  }

  .hero-grid,
  .demo-grid,
  .application-grid,
  .showcase-panel {
    grid-template-columns: 1fr;
  }

  .application-copy {
    position: static;
  }

  .hero-grid {
    min-height: auto;
  }

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

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

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .platform-overview {
    padding-top: 0;
  }

  .business-marquee {
    margin-bottom: 72px;
  }

  .brand::before {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding: 54px 0 70px;
  }

  .hero-slider,
  .hero-slides {
    min-height: 380px;
  }

  .hero-slide img {
    max-height: 360px;
  }

  .hero-slide figcaption {
    min-height: 300px;
  }

  .feature-list,
  .result-cards,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .showcase-select {
    display: grid;
    gap: 7px;
    margin-bottom: 16px;
    color: var(--text);
    font-weight: 800;
  }

  .showcase-select span {
    font-size: 14px;
  }

  .showcase-select select {
    width: 100%;
    min-height: 48px;
    padding: 0 42px 0 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    color: var(--text);
    font: inherit;
  }

  .tab-list {
    display: none;
  }

  .showcase-image,
  .showcase-image img {
    min-height: 310px;
  }

  .application-section,
  .legal-page {
    padding: 112px 0 72px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom nav {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {

  .container,
  .narrow,
  .article-wrap {
    width: min(100% - 28px, 1140px);
  }

  .hero h1,
  .article-hero h1,
  .article h1 {
    font-size: 40px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-slider,
  .hero-slides {
    min-height: 320px;
  }

  .hero-slide figcaption {
    min-height: 250px;
  }

  .feature-item,
  .contact-form,
  .onboarding,
  .legal-document {
    padding: 22px;
  }

  .blog-card img {
    height: 190px;
  }
}

@media (max-width: 390px) {
  .brand::before {
    width: 40px;
    height: 40px;
  }

  .hero h1,
  .article-hero h1,
  .article h1 {
    font-size: 36px;
  }

  .hero-slider,
  .hero-slides {
    min-height: 290px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .business-marquee-track {
    animation: none;
  }
}
