/* =========================================================
   HomeHelp KRD — Premium landing enhancements
   Extends public.css · Official blue palette
   ========================================================= */

:root {
  --hh-container: 1180px;
  --hh-nav-h: 80px;
  --hh-section-y: clamp(4.5rem, 8vw, 7rem);
  --hh-gap: clamp(1.25rem, 2vw, 1.75rem);
}

html { scroll-behavior: smooth; }
body.hh-theme { overflow-x: clip; }

/* ---------- Navbar polish ---------- */
.hh-navbar {
  height: var(--hh-nav-h);
  background: linear-gradient(180deg, #021736 0%, #02224D 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hh-navbar.is-scrolled {
  background: rgba(2, 23, 54, 0.94);
  backdrop-filter: saturate(160%) blur(16px);
  box-shadow: 0 12px 32px rgba(2, 23, 54, 0.35);
}

.hh-navbar .hh-container {
  gap: 1.25rem;
}

.hh-brand img,
.hh-logo {
  height: 44px;
  max-width: min(210px, 48vw);
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.hh-logo-mobile { height: 36px; }

.hh-nav-menu {
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.hh-nav-menu > li > a {
  position: relative;
  padding: 0.6rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hh-nav-menu > li > a::after {
  content: "";
  position: absolute;
  inset-inline: 0.95rem;
  bottom: 0.3rem;
  height: 2px;
  border-radius: 2px;
  background: #93C5FD;
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.hh-nav-menu > li > a:hover::after,
.hh-nav-menu > li > a.is-active::after {
  transform: scaleX(1);
}

.hh-nav-actions {
  gap: 0.75rem;
}

.hh-nav-actions .hh-btn-sm {
  padding: 0.65rem 1.1rem;
  min-height: 42px;
}

/* ---------- Sections ---------- */
.hh-section {
  padding-block: var(--hh-section-y);
}

.hh-section-alt {
  background: var(--hh-surface);
  border-block: 1px solid var(--hh-border);
}

.hh-section-header {
  max-width: 680px;
  margin-bottom: clamp(2.5rem, 4vw, 3.25rem);
}

.hh-section-header h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  letter-spacing: -0.03em;
}

.hh-grid { gap: var(--hh-gap); }

.hh-card {
  border-radius: 18px;
  overflow: hidden;
}

.hh-card-body { padding: 1.75rem; }

.hh-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  font-size: 1.35rem;
}

.hh-icon-box-lg {
  width: 64px;
  height: 64px;
  font-size: 1.5rem;
}

/* ---------- Hero ---------- */
.hh-hero {
  min-height: calc(100svh - var(--hh-nav-h));
  display: flex;
  align-items: center;
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(ellipse 55% 60% at 85% 20%, rgba(4, 70, 154, 0.45), transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(6, 47, 99, 0.55), transparent 55%),
    linear-gradient(145deg, #021736 0%, #02224D 45%, #052851 100%);
}

.hh-hero::before {
  background-size: 56px 56px;
  opacity: 0.7;
}

.hh-hero-glow {
  position: absolute;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  inset-inline-end: -8%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 70, 154, 0.35), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.hh-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hh-hero-brand {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #93C5FD;
  margin: 0 0 1rem;
}

.hh-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.65rem) !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em;
  color: #fff !important;
  margin-bottom: 1.15rem !important;
  max-width: 14ch;
}

.hh-hero-subtitle {
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.hh-hero-ctas {
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.hh-hero-ctas .hh-btn-lg {
  min-height: 54px;
  padding-inline: 1.55rem;
  border-radius: 14px;
}

.hh-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hh-hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 560;
}

.hh-hero-trust i { color: #93C5FD; }

.hh-hero-visual {
  position: relative;
  min-height: 380px;
}

.hh-hero-panel {
  position: absolute;
  inset: 8% 6% 18% 12%;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(145deg, #04469A, #02224D);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 60px rgba(2, 23, 54, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
  animation: hh-float 6s ease-in-out infinite;
}

.hh-hero-panel-icon {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 2.25rem;
}

.hh-hero-panel-copy {
  display: grid;
  gap: 0.35rem;
  color: #fff;
}

.hh-hero-panel-copy strong {
  font-family: var(--hh-font-heading);
  font-size: 1.25rem;
}

.hh-hero-panel-copy span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.hh-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--hh-text);
  box-shadow: 0 16px 40px rgba(2, 23, 54, 0.22);
  min-width: 180px;
  z-index: 2;
}

.hh-float-card i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 14%, #fff);
  color: var(--accent);
}

.hh-float-card strong {
  display: block;
  font-size: 0.9rem;
  font-family: var(--hh-font-heading);
}

.hh-float-card span {
  display: block;
  font-size: 0.78rem;
  color: var(--hh-muted);
}

.hh-float-1 { top: 6%; inset-inline-start: 0; animation: hh-float 5.5s ease-in-out infinite; }
.hh-float-2 { top: 42%; inset-inline-end: 0; animation: hh-float 6.5s 0.4s ease-in-out infinite; }
.hh-float-3 { bottom: 4%; inset-inline-start: 8%; animation: hh-float 7s 0.2s ease-in-out infinite; }

@keyframes hh-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Features / services ---------- */
.hh-feature-card,
.hh-service-card {
  height: 100%;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.hh-feature-card .hh-card-body,
.hh-service-card .hh-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}

.hh-feature-card h3,
.hh-service-card h3 {
  font-size: 1.15rem;
  margin: 0;
}

.hh-feature-card p,
.hh-service-card p {
  flex: 1;
  margin: 0;
  color: var(--hh-muted);
}

.hh-service-card .hh-link {
  margin-top: auto;
  font-weight: 650;
}

.hh-feature-card:hover .hh-icon-box,
.hh-service-card:hover .hh-icon-box {
  background: var(--accent);
  color: #fff;
  transform: scale(1.04);
}

.hh-icon-box { transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease; }

.hh-service-card .hh-link {
  color: var(--accent);
}

.hh-service-card:hover .hh-link {
  gap: 0.55rem;
}

/* ---------- Stats ---------- */
.hh-stats {
  padding-block: clamp(2.75rem, 5vw, 3.75rem);
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(4, 70, 154, 0.08), transparent),
    var(--hh-surface);
  border-block: 1px solid var(--hh-border);
}

.hh-stats-grid {
  gap: clamp(1rem, 2vw, 1.5rem) !important;
}

.hh-stat-card {
  position: relative;
  text-align: center;
  padding: 1.9rem 1.35rem 1.7rem;
  border-radius: 20px;
  background:
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border: 1px solid var(--hh-border);
  box-shadow: var(--hh-shadow-sm);
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s ease;
  will-change: transform;
}

.hh-stat-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  opacity: 0.85;
}

.hh-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(2, 34, 77, 0.12);
}

.hh-stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.95rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 12%, #fff);
  color: var(--accent);
  font-size: 1.25rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.hh-stat-card:hover .hh-stat-icon {
  transform: scale(1.06);
  background: var(--accent);
  color: #fff;
}

.hh-stat-value {
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  color: var(--primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.hh-stat-label {
  margin-top: 0.35rem;
  font-weight: 600;
  color: var(--hh-muted);
}

/* ---------- Steps timeline ---------- */
.hh-steps-line {
  position: relative;
}

.hh-steps-line::before {
  content: "";
  position: absolute;
  top: 40px;
  inset-inline: 8%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--navy), transparent);
  opacity: 0.35;
}

.hh-step {
  background: #fff;
  border: 1px solid var(--hh-border);
  border-radius: 18px;
  box-shadow: var(--hh-shadow-sm);
  padding: 1.75rem 1.25rem 1.5rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hh-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--hh-shadow);
}

.hh-step-num {
  margin-inline: auto;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

/* ---------- App download ---------- */
.hh-app-band {
  min-height: 420px;
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 28px;
  display: flex;
  align-items: center;
}

.hh-app-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hh-app-copy h2 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  margin-bottom: 0.85rem;
}

.hh-app-desc { opacity: 0.85; }

.hh-store-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hh-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 168px;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  background: #0b1220;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hh-store-badge:hover {
  transform: translateY(-2px);
  background: #111827;
  color: #fff !important;
}

.hh-store-badge i { font-size: 1.55rem; }

.hh-store-badge small {
  display: block;
  font-size: 0.68rem;
  opacity: 0.75;
  line-height: 1.1;
}

.hh-store-badge strong {
  display: block;
  font-size: 1rem;
  font-family: var(--hh-font-heading);
  line-height: 1.15;
}

.hh-store-badge.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.hh-app-media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hh-app-mockup {
  width: min(200px, 42vw);
  height: auto;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
}

.hh-app-phone {
  width: 170px;
  height: 340px;
  border-radius: 32px;
  padding: 10px;
  background: linear-gradient(160deg, #1e293b, #0f172a);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hh-app-phone-screen {
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(160deg, #04469A, #02224D);
  display: grid;
  place-content: center;
  gap: 0.65rem;
  color: #fff;
  text-align: center;
  font-family: var(--hh-font-heading);
  font-weight: 700;
}

.hh-app-phone-screen i { font-size: 2rem; }

.hh-qr-card {
  display: grid;
  gap: 0.55rem;
  justify-items: center;
  padding: 1rem;
  border-radius: 18px;
  background: #fff;
  color: var(--hh-text);
}

.hh-qr-card span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--hh-muted);
}

.hh-qr-card img {
  width: 148px;
  height: 148px;
}

/* ---------- About ---------- */
.hh-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.hh-lead {
  font-size: 1.1rem;
  color: var(--hh-text);
}

.hh-about-text {
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.hh-about-values {
  display: grid;
  gap: 1rem;
}

.hh-value-card {
  padding: 1.35rem 1.5rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--hh-border);
  box-shadow: var(--hh-shadow-sm);
}

.hh-value-card .hh-icon-box { margin-bottom: 0.75rem; }
.hh-value-card h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.hh-value-card p { margin: 0; font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.hh-testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.hh-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, #fff);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.hh-quote {
  color: var(--hh-text) !important;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.25rem !important;
}

.hh-testimonial-author span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--hh-muted);
  font-size: 0.85rem;
}

.hh-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  font-weight: 700;
}

/* ---------- FAQ ---------- */
.hh-faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.hh-accordion .accordion-button {
  gap: 0.75rem;
  font-family: var(--hh-font-heading);
  font-weight: 650;
  padding: 1.15rem 1.25rem;
}

.hh-accordion .accordion-button i {
  color: var(--accent);
  font-size: 1rem;
}

.hh-accordion .accordion-item {
  border: 1px solid var(--hh-border);
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: #fff;
}

.hh-accordion .accordion-body {
  padding: 0 1.25rem 1.15rem;
  color: var(--hh-muted);
}

/* ---------- CTA ---------- */
.hh-cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 8vw, 6.5rem);
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(4, 70, 154, 0.35), transparent),
    linear-gradient(135deg, #021736, #02224D 55%, #04469A);
}

.hh-cta-glow {
  position: absolute;
  inset: auto -10% -40% auto;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 197, 253, 0.28), transparent 68%);
  pointer-events: none;
  animation: hh-pulse-glow 8s ease-in-out infinite;
}

@keyframes hh-pulse-glow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hh-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.hh-cta-trust {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 560;
}

.hh-cta-trust i { color: #93C5FD; margin-inline-end: 0.35rem; }

.hh-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ---------- Footer ---------- */
.hh-footer {
  padding-block: 4rem 1.75rem;
  background: linear-gradient(180deg, #021736, #010d1f);
}

.hh-footer h4 {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  color: #fff;
}

.hh-footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 28rem;
  line-height: 1.7;
}

.hh-footer-links a,
.hh-footer-links span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.hh-footer-links a:hover { color: #fff; }

.hh-footer-meta {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.hh-footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.hh-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hh-footer-legal a {
  color: rgba(255, 255, 255, 0.72);
}

.hh-footer-legal a:hover { color: #fff; }

.hh-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hh-social a:hover {
  background: var(--accent);
  transform: translateY(-2px);
  color: #fff;
}

.hh-newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.hh-newsletter-form input {
  flex: 1;
  min-width: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.7rem 0.9rem;
}

.hh-newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.5); }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .hh-hero-grid,
  .hh-app-grid,
  .hh-about-grid,
  .hh-faq-layout {
    grid-template-columns: 1fr;
  }

  .hh-hero-title { max-width: none; }

  .hh-hero-visual {
    min-height: 320px;
    margin-top: 0.5rem;
  }

  .hh-hero-panel { inset: 12% 10% 20% 10%; }

  .hh-steps-line::before { display: none; }

  .hh-nav-menu { justify-content: flex-start; }
}

@media (max-width: 575.98px) {
  .hh-hero {
    min-height: auto;
    padding-block: 2.5rem 3rem;
  }

  .hh-float-card { min-width: 150px; padding: 0.7rem 0.8rem; }
  .hh-float-2 { display: none; }

  .hh-app-band { min-height: 0; }
  .hh-app-phone { width: 140px; height: 280px; }

  .hh-newsletter-form { flex-direction: column; }

  .hh-footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .hh-hero-panel,
  .hh-float-card { animation: none !important; }
}

/* RTL tweaks for new layouts */
html[dir="rtl"] .hh-hero-title { max-width: none; }
html[dir="rtl"] .hh-float-1 { inset-inline-start: auto; inset-inline-end: 0; }
html[dir="rtl"] .hh-float-2 { inset-inline-end: auto; inset-inline-start: 0; }

/* ---------- Motion system ---------- */
.hh-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 0.65s cubic-bezier(.2,.8,.2,1), transform 0.65s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}

.hh-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hh-navbar {
  transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.hh-navbar.is-scrolled {
  height: 68px;
}

.hh-navbar.is-scrolled .hh-logo { height: 38px; }

.hh-btn-ripple {
  position: relative;
  overflow: hidden;
}

.hh-btn-ripple::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--rx, 50%) var(--ry, 50%), rgba(255,255,255,.35), transparent 45%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.hh-btn-ripple:hover::after { opacity: 1; }

.hh-service-card,
.hh-feature-card,
.hh-testimonial {
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s ease;
  will-change: transform;
}

.hh-service-card:hover,
.hh-feature-card:hover,
.hh-testimonial:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 40px rgba(2, 34, 77, 0.12);
}

.hh-testimonial-date {
  display: block;
  font-size: 0.78rem;
  color: var(--hh-muted);
  margin-top: 0.15rem;
}

.hh-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(4, 70, 154, 0.18) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: hh-hero-sheen 12s linear infinite;
  pointer-events: none;
  opacity: 0.55;
}

@keyframes hh-hero-sheen {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

img.is-loaded {
  animation: hh-fade-in 0.5s ease both;
}

@keyframes hh-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hh-reveal,
  .hh-service-card,
  .hh-feature-card,
  .hh-testimonial,
  .hh-stat-card,
  .hh-hero::after,
  .hh-cta-glow,
  .hh-float-card,
  .hh-hero-panel {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
