/* ===================== SCROLL REVEAL ===================== */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== HERO ===================== */
.home-hero {
  position: relative;
  background: linear-gradient(135deg, #f0f6fb 0%, #e8f2ff 100%);
  overflow: hidden;
  padding-bottom: 80px;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
}

/* Animated background orbs */
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(29,93,154,0.18) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orbDrift1 12s ease-in-out infinite alternate;
}
.orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(0,180,255,0.14) 0%, transparent 70%);
  bottom: -60px; left: 0;
  animation: orbDrift2 15s ease-in-out infinite alternate;
}
@keyframes orbDrift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-40px, 30px) scale(1.1); }
}
@keyframes orbDrift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -20px) scale(1.15); }
}

/* Subtle dot grid overlay */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, #c9d8ea 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse 70% 80% at 60% 50%, black 30%, transparent 100%);
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  padding-top: 72px;
  flex: 1;
}
@media (max-width: 1060px) {
  .home-hero-inner { grid-template-columns: 1fr; gap: 48px; padding-top: 52px; }
}

/* Eyebrow */
.hero-eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,93,154,0.08);
  border: 1px solid rgba(29,93,154,0.2);
  border-radius: 99px;
  padding: 5px 14px 5px 8px;
  margin-bottom: 24px;
  animation: heroFadeUp 0.8s cubic-bezier(0.25,0.46,0.45,0.94) both;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #00d9ff;
  box-shadow: 0 0 8px #00d9ff;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}
.hero-eyebrow-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1d5d9a;
}

/* Hero title */
.home-hero-title {
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 400;
  color: #0d1117;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 22px;
  animation: heroFadeUp 0.8s cubic-bezier(0.25,0.46,0.45,0.94) 0.1s both;
}
.home-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #1d5d9a 0%, #0fa8d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero-desc {
  font-size: 16px;
  color: #5a6474;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
  animation: heroFadeUp 0.8s cubic-bezier(0.25,0.46,0.45,0.94) 0.2s both;
}

/* CTA Buttons */
.home-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: heroFadeUp 0.8s cubic-bezier(0.25,0.46,0.45,0.94) 0.3s both;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1d5d9a;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 28px rgba(29,93,154,0.5);
  text-decoration: none;
}
.hero-cta-primary:hover {
  background: #154a7a;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(29,93,154,0.7);
}
.cta-arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.hero-cta-primary:hover .cta-arrow { transform: translateX(4px); }

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid #d8e2ee;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.hero-cta-secondary:hover {
  background: #f4f7fb;
  border-color: #b4c8dd;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
}
.hero-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hero-cta-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

/* Trust row */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 10px;
  animation: heroFadeUp 0.8s cubic-bezier(0.25,0.46,0.45,0.94) 0.4s both;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7b8f;
  font-weight: 500;
  padding: 0 18px;
}
.hero-trust-item:first-child { padding-left: 0; }
.hti-icon { font-size: 15px; }
.hero-trust-sep {
  width: 1px; height: 18px;
  background: #d0dae6;
  flex-shrink: 0;
}

/* Hero visual */
.home-hero-visual {
  position: relative;
  animation: heroVisualIn 1s cubic-bezier(0.25,0.46,0.45,0.94) 0.15s both;
}
@media (max-width: 1060px) {
  .home-hero-visual { max-width: 400px; margin: 0 auto; }
}

.hero-glow-ring {
  position: absolute;
  inset: -20px;
  border-radius: 30px;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,217,255,0.12) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #e8eef6;
  border: 1px solid rgba(29,93,154,0.1);
  box-shadow: 0 24px 64px rgba(29,93,154,0.12);
  animation: heroFloat 7s ease-in-out infinite;
}
.hero-product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.hero-img-wrap:hover .hero-product-img { transform: scale(1.03); }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

/* Floating badges */
.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid #e0e9f4;
  border-radius: 14px;
  padding: 10px 16px;
  color: #1a1a1a;
  min-width: 140px;
  box-shadow: 0 8px 28px rgba(29,93,154,0.1);
}
.badge-fp {
  top: 14%;
  right: -20px;
  animation: badgeFloat 4s ease-in-out infinite;
}
.badge-sos {
  top: 50%;
  left: -20px;
  animation: badgeFloat 5s ease-in-out infinite 0.8s;
}
.badge-app {
  bottom: 14%;
  right: -20px;
  animation: badgeFloat 4.5s ease-in-out infinite 0.4s;
}
@media (max-width: 1060px) {
  .badge-fp { right: 8px; }
  .badge-sos { left: 8px; }
  .badge-app { right: 8px; }
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hb-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #00d9ff;
  flex-shrink: 0;
  position: relative;
}
.hb-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(0,217,255,0.25);
  animation: hbPulse 2s ease-in-out infinite;
}
.hb-pulse.sos { background: #ff4d6a; }
.hb-pulse.sos::after { background: rgba(255,77,106,0.25); }
.hb-pulse.app { background: #4ade80; }
.hb-pulse.app::after { background: rgba(74,222,128,0.25); }
@keyframes hbPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.8); opacity: 0; }
}
.hb-num {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #0d1117;
}
.hb-label {
  font-size: 11px;
  color: #7a8fa8;
  line-height: 1.3;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.5;
  animation: heroFadeUp 1s ease 1s both;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid #a0b4c8;
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: #7a9ab8;
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* Hero entrance animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroVisualIn {
  from { opacity: 0; transform: translateX(32px) scale(0.96); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

/* ===================== STATS BAND ===================== */
/* Modern Features Band */
.home-features-band {
  background: transparent;
  padding: 72px 0;
  position: relative;
}
.features-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 640px) {
  .features-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Feature Card */
.feature-card {
  position: relative;
  padding: 36px 28px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f4fa;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1d5d9a, #00d9ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.feature-card:hover {
  border-color: #e8f2ff;
  box-shadow: 0 16px 40px rgba(29, 93, 154, 0.12);
  transform: translateY(-8px);
}
.feature-card:hover::before {
  transform: scaleX(1);
}

/* Icon Box */
.feature-icon-box {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(29, 93, 154, 0.08), rgba(0, 217, 255, 0.08));
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.feature-card:hover .feature-icon-box {
  background: linear-gradient(135deg, rgba(29, 93, 154, 0.15), rgba(0, 217, 255, 0.15));
  transform: scale(1.1) rotate(-5deg);
}

/* Icon */
.feature-icon {
  width: 32px;
  height: 32px;
  color: #1d5d9a;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color 0.35s ease;
}
.feature-card:hover .feature-icon {
  color: #0fa8d6;
}

/* Feature Title */
.feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #0d1117;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

/* Feature Description */
.feature-desc {
  font-size: 13px;
  color: #5a6474;
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
}

/* Legacy stats band compatibility */
.stats-grid {
  display: none;
}
.stat-item {
  display: none;
}
.stat-sep {
  display: none;
}
.stat-val {
  display: none;
}
.stat-icon {
  display: none;
}
.stat-number {
  display: none;
}
.stat-suffix {
  display: none;
}
.stat-label {
  display: none;
}

/* ===================== PRODUCTS ===================== */
.home-products { padding: 6px 0; background: #fff; }
.home-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .home-products-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .home-products-grid { grid-template-columns: 1fr; } }
.home-products-grid--single { grid-template-columns: repeat(3,1fr); }
@media (max-width: 900px) { .home-products-grid--single { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .home-products-grid--single { grid-template-columns: 1fr; } }

.home-product-card {
  background: #f9fafb;
  border: 1px solid #e8edf4;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.home-product-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  transform: translateY(-5px);
  border-color: #c8d9ed;
}
.home-product-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.home-product-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.home-product-card:hover .home-product-img img { transform: scale(1.05); }
.home-product-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: #fef2f2;
  color: #c0392b;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.3px;
}
.home-product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home-product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.home-product-features img {
  width: 26px; height: 26px;
  object-fit: contain; display: inline-block;
  transition: transform 0.2s;
}
.home-product-features img:hover { transform: scale(1.2); }
.home-product-name {
  font-size: 17px; font-weight: 600;
  margin-bottom: 6px;
  color: #1a1a1a; line-height: 1.3;
}
.home-product-desc {
  font-size: 13px; color: #757575;
  line-height: 1.6; flex: 1;
  margin-bottom: 16px;
}
.home-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.home-product-price {
  font-family: "DM Serif Display", serif;
  font-size: 22px; color: #1a1a1a; line-height: 1.1;
}
.home-product-mrp {
  font-size: 12px; color: #aaa;
  text-decoration: line-through;
}
.home-product-link {
  background: #1d5d9a;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 9px;
  font-size: 13px; font-weight: 600;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  display: inline-block;
}
.home-product-link:hover {
  background: #154a7a;
  transform: translateY(-1px);
}
.home-section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e4e9f0, transparent);
  margin: 64px 0;
}

/* ===================== TESTIMONIALS ===================== */
.home-testimonials {
  background: #f5f7fa;
  padding: 96px 0 72px;
  overflow: hidden;
}
.home-testimonials-scroll { overflow: hidden; margin-top: 40px; }
.home-tscroll-row {
  display: flex;
  gap: 16px;
  animation: hscrollLeft 38s linear infinite;
  width: max-content;
  padding-bottom: 16px;
}
.home-tscroll-row.rev { animation-direction: reverse; }
.home-tscroll-row:hover { animation-play-state: paused; }
@keyframes hscrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.home-rc {
  background: #fff;
  border: 1px solid #e4e9f0;
  border-radius: 18px;
  padding: 22px 26px;
  width: 300px; flex-shrink: 0;
  transition: box-shadow 0.25s, transform 0.25s;
}
.home-rc:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.home-rc-head {
  display: flex; align-items: center;
  gap: 12px; margin-bottom: 12px;
}
.home-rc-av {
  width: 40px; height: 40px;
  border-radius: 50%; overflow: hidden;
  flex-shrink: 0; background: #e8f0fb;
}
.home-rc-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-rc-name { font-size: 14px; font-weight: 600; color: #1a1a1a; line-height: 1.3; }
.home-rc-meta { font-size: 12px; color: #999; }
.home-rc-stars { color: #1d5d9a; font-size: 13px; letter-spacing: 1px; margin-bottom: 10px; }
.home-rc-body { font-size: 13px; color: #444; line-height: 1.7; }

/* ===================== AWARDS ===================== */
.home-awards { padding: 96px 0; background: #fff; }
.home-awards-body {
  font-size: 15px; color: #555;
  max-width: 560px; margin-top: 12px; line-height: 1.7;
}
.awards-track-wrap { overflow: hidden; margin-top: 48px; }
.awards-track {
  display: flex; gap: 64px;
  align-items: center;
  animation: hscrollLeft 20s linear infinite;
  width: max-content;
}
.awards-track:hover { animation-play-state: paused; }
.award-logo {
  height: 60px; width: auto;
  object-fit: contain; opacity: 0.65;
  flex-shrink: 0; display: block;
  transition: opacity 0.2s;
}
.award-logo:hover { opacity: 1; }

/* ===================== CTA ===================== */
.home-cta {
  background: #080c14;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(29,93,154,0.3) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}
.home-cta-title {
  font-size: clamp(30px, 4.5vw, 52px);
  color: #fff;
  margin: 14px 0 18px;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.1;
}
.home-cta-title em {
  font-style: normal;
  background: linear-gradient(135deg, #4a9fe0, #00d9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home-cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}
.home-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== VIDEOS ===================== */
.home-videos {
  padding: 100px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}


.home-videos .section-header {
  margin-bottom: 60px;
}

.home-videos-desc {
  font-size: 16px;
  color: #666;
  margin-top: 16px;
  max-width: 600px;
}

.home-videos-carousel { position: relative; }

.home-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.videos-carousel-dots { display: none; }

.home-video-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.home-video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===================== RESPONSIVE ADJUSTMENTS ===================== */
@media (max-width: 768px) {
  .home-hero { min-height: auto; padding-bottom: 60px; }
  .hero-trust-row { gap: 0; }
  .hero-trust-item { font-size: 12px; padding: 0 12px; }
  .badge-fp, .badge-sos, .badge-app { display: none; }
  .hero-scroll-cue { display: none; }
  .home-stats-band { padding: 40px 0; }
  .home-experience, .home-products, .home-testimonials, .home-awards { padding: 72px 0; }
  .home-cta { padding: 72px 0; }
  .home-videos { padding: 60px 0; }
  .videos-carousel-dots { display: flex; }
  .home-videos-carousel { position: relative; }
  .home-videos-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .home-videos-grid::-webkit-scrollbar { display: none; }
  .home-video-card {
    flex: 0 0 82vw;
    max-width: 340px;
    scroll-snap-align: center;
  }
  .videos-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  .vc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
  }
  .vc-dot.active {
    background: #1a1a2e;
    transform: scale(1.35);
  }
}
@media (max-width: 500px) {
  .home-hero-ctas { flex-direction: column; }
  .hero-cta-primary, .hero-cta-secondary { width: 100%; justify-content: center; }
  .hero-trust-row { gap: 10px; }
  .hero-trust-sep { display: none; }
  .hero-trust-item { padding: 0; }
}
