:root {
  --red: #d0201a;
  --red-dark: #a8180f;
  --red-light: #fef0f0;
  --bg: #f4f6f9;
  --white: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.1);
  --r: 12px;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 80px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 8px;
  transition:
    background 0.2s,
    color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--red-light);
  color: var(--red);
  font-weight: 600;
}
.nav-links a.active i,
.nav-links a:hover i {
  color: var(--red);
}
.nav-links .nav-label {
  display: inline;
}
.nav-links .nav-icon {
  display: none;
}
.btn-nav {
  background: var(--red);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(208, 32, 26, 0.3);
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-nav:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.btn-nav.active {
  box-shadow:
    0 0 0 2px #fff,
    0 4px 14px rgba(208, 32, 26, 0.45);
}
/* HERO */
#hero {
  min-height: 100vh;
  padding: 110px 5% 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    #d0201a18 1.5px,
    transparent 1.5px
  );
  background-size: 32px 32px;
}
.hero-glow {
  position: absolute;
  right: -10%;
  top: 10%;
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(208, 32, 26, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-light);
  color: var(--red);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 20px;
}
.hero h1 span {
  color: var(--red);
}
.hero-sub {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-red {
  background: var(--red);
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(208, 32, 26, 0.35);
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--text);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-white:hover {
  border-color: var(--red);
  color: var(--red);
}
.hero-stats {
  display: flex;
  gap: 36px;
}
.hstat-val {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--red);
}
.hstat-lbl {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.hcard:nth-child(2) {
  margin-left: 0;
}
.hcard-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--red-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.hcard h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.hcard p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.hcard-badge {
  margin-left: auto;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}
.badge-green {
  background: #ecfdf5;
  color: #059669;
}
.badge-blue {
  background: #eff6ff;
  color: #2563eb;
}
.badge-red {
  background: var(--red-light);
  color: var(--red);
}
/* TICKER */
.ticker {
  background: var(--red);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: scroll 26s linear infinite;
}
.ticker-track span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  padding: 14px 28px;
}
.ticker-track span::after {
  content: " ◆ ";
  opacity: 0.45;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* SECTIONS */
section {
  padding: 88px 5%;
}
.stag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red-light);
  color: var(--red);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
h2.st {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 14px;
}
h2.st span {
  color: var(--red);
}
p.ss {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 560px;
}
/* ABOUT */
#about {
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 52px;
}
.mv-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}
.mv-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(208, 32, 26, 0.25);
}
.mv-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--red-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.mv-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mv-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feat-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.feat-list li:hover {
  border-color: rgba(208, 32, 26, 0.25);
  box-shadow: var(--shadow);
}
.fi {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 8px;
  background: var(--red-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 2px;
}
.feat-list li strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 3px;
}
.feat-list li span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
/* PRODUCTS */
#products {
  background: var(--white);
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 48px;
}
.prod-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.prod-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(208, 32, 26, 0.2);
}
.prod-card:hover::before {
  transform: scaleX(1);
}
.prod-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--red-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.prod-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.prod-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.prod-pill {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--red-light);
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
}
.prod-num-bg {
  position: absolute;
  bottom: -10px;
  right: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: rgba(208, 32, 26, 0.05);
  line-height: 1;
  pointer-events: none;
}
/* SERVICES */
#services {
  background: var(--bg);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.svc-card:hover {
  border-color: rgba(208, 32, 26, 0.3);
  box-shadow: var(--shadow-md);
}
.svc-ic {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 12px;
  background: var(--red-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.svc-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.svc-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
/* INNOVATION */
#innovation {
  background: var(--white);
}
.inno-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 52px;
}
.inno-items {
  display: flex;
  flex-direction: column;
}
.inno-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.inno-item:first-child {
  border-top: 1px solid var(--border);
}
.inno-ic {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--red-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.inno-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.inno-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.inno-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.inno-panel-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.inno-panel-title i {
  color: var(--red);
}
.pipe-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}
.pipe-step:not(:last-child) {
  border-bottom: 1px dashed var(--border);
}
.pipe-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
}
.pipe-step h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.pipe-step p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.pipe-check {
  margin-left: auto;
  color: #059669;
  font-size: 14px;
}
/* WHY */
#why {
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  text-align: center;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(208, 32, 26, 0.2);
}
.why-ic {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--red-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}
.why-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
/* CONTACT */
#contact {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.cinfo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cinfo-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px;
  transition: border-color 0.2s;
}
.cinfo-item:hover {
  border-color: rgba(208, 32, 26, 0.3);
}
.cinfo-ic {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--red-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.cinfo-item h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
  margin-bottom: 4px;
}
.cinfo-item p,
.cinfo-item a {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  line-height: 1.6;
}
.cinfo-item a:hover {
  color: var(--red);
}
.cform {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  grid-column: span 2;
}
.cform h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fgroup {
  margin-bottom: 16px;
}
.fgroup label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
  margin-bottom: 6px;
}
.fgroup input,
.fgroup textarea,
.fgroup select {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.fgroup input:focus,
.fgroup textarea:focus,
.fgroup select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(208, 32, 26, 0.08);
}
.fgroup textarea {
  resize: vertical;
  min-height: 100px;
}
.btn-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 14px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(208, 32, 26, 0.3);
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.form-status {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  min-height: 18px;
}
.form-status.success {
  color: #059669;
}
.form-status.error {
  color: var(--red);
}
/* FOOTER */
footer {
  background: var(--text);
  color: #9ca3af;
  padding: 48px 5% 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer-brand img {
  height: 90px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--red);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
}
/* ANIMATE */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.hidden {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-cards {
    display: none;
  }
  #hero {
    min-height: auto;
    padding: 100px 5% 48px;
  }
}
@media (max-width: 900px) {
  .about-grid,
  .inno-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .svc-grid,
  .why-grid,
  .frow {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links .nav-label {
    display: none;
  }
  .nav-links a {
    padding: 8px 10px;
    font-size: 16px;
  }
  .btn-nav .btn-label {
    display: none;
  }
  .btn-nav {
    padding: 8px 10px;
    min-width: auto;
  }
}
@media (max-width: 600px) {
  section {
    padding: 60px 5%;
  }
}
/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  z-index: 1001;
}
/* NAV SHRINK ON SCROLL */
nav {
  transition:
    height 0.3s ease,
    box-shadow 0.3s ease;
}
nav.scrolled {
  height: 64px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.nav-logo img {
  transition: height 0.3s ease;
}
nav.scrolled .nav-logo img {
  height: 54px;
}
/* HERO CARD FLOAT */
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.hero-cards .hcard {
  animation: floatY 5s ease-in-out infinite;
}
.hero-cards .hcard:nth-child(2) {
  animation-delay: 0.4s;
}
.hero-cards .hcard:nth-child(3) {
  animation-delay: 0.8s;
}
/* STAGGERED REVEAL */
.feat-list > .reveal:nth-child(1),
.prod-grid > .reveal:nth-child(1),
.svc-grid > .reveal:nth-child(1),
.why-grid > .reveal:nth-child(1) {
  transition-delay: 0s;
}
.feat-list > .reveal:nth-child(2),
.prod-grid > .reveal:nth-child(2),
.svc-grid > .reveal:nth-child(2),
.why-grid > .reveal:nth-child(2) {
  transition-delay: 0.07s;
}
.feat-list > .reveal:nth-child(3),
.prod-grid > .reveal:nth-child(3),
.svc-grid > .reveal:nth-child(3),
.why-grid > .reveal:nth-child(3) {
  transition-delay: 0.14s;
}
.feat-list > .reveal:nth-child(4),
.prod-grid > .reveal:nth-child(4),
.svc-grid > .reveal:nth-child(4),
.why-grid > .reveal:nth-child(4) {
  transition-delay: 0.21s;
}
.feat-list > .reveal:nth-child(5),
.prod-grid > .reveal:nth-child(5),
.why-grid > .reveal:nth-child(5) {
  transition-delay: 0.28s;
}
.why-grid > .reveal:nth-child(6) {
  transition-delay: 0.35s;
}
@media (prefers-reduced-motion: reduce) {
  .hero-cards .hcard {
    animation: none !important;
  }
  .reveal {
    transition: none !important;
  }
}
