/* ==========================================================================
   Home — Fintech Premium (solo index.html)
   ========================================================================== */

.hp-body {
  --hp-primary: #0A5BFF;
  --hp-primary-hover: #0848cc;
  --hp-secondary: #2563EB;
  --hp-dark: #0F172A;
  --hp-text: #111827;
  --hp-muted: #6B7280;
  --hp-bg: #FAFBFC;
  --hp-card: #FFFFFF;
  --hp-border: #E5E7EB;
  --hp-radius: 22px;
  --hp-radius-sm: 14px;
  --hp-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 32px rgba(15, 23, 42, 0.06);
  --hp-shadow-lg: 0 24px 64px rgba(10, 91, 255, 0.08);
  --hp-font: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  --hp-ease: cubic-bezier(0.22, 1, 0.36, 1);

  font-family: var(--hp-font);
  background: var(--hp-bg);
  color: var(--hp-text);
  -webkit-font-smoothing: antialiased;
}

.hp-body .header {
  background: rgba(250, 251, 252, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.hp-body .logo-text {
  color: var(--hp-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hp-body .nav-links a {
  color: var(--hp-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.hp-body .nav-links a.active,
.hp-body .nav-links a:hover {
  color: var(--hp-primary);
}

/* Nav home */
.hp-nav {
  gap: 0.75rem;
}

.hp-nav-cta {
  flex-shrink: 0;
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  gap: 0.4rem;
  box-shadow: 0 1px 2px rgba(10, 91, 255, 0.12), 0 4px 14px rgba(10, 91, 255, 0.18);
}

.hp-nav-cta:hover {
  transform: none;
  box-shadow: 0 2px 4px rgba(10, 91, 255, 0.14), 0 8px 20px rgba(10, 91, 255, 0.22);
}

.hp-nav-cta svg {
  flex-shrink: 0;
  opacity: 0.92;
}

.hp-body .nav-actions {
  gap: 0.2rem;
  margin-left: 0.5rem;
  padding-left: 0.65rem;
  border-left: 1px solid rgba(229, 231, 235, 0.9);
}

.hp-body .nav-cart {
  color: var(--hp-muted);
}

.hp-body .nav-cart:hover {
  color: var(--hp-primary);
  background: rgba(10, 91, 255, 0.08);
}

.hp-body .nav-account {
  color: var(--hp-dark);
}

.hp-body .nav-account__avatar {
  background: rgba(15, 23, 42, 0.05);
  color: var(--hp-muted);
}

.hp-body .nav-account--signed-in {
  border-color: rgba(10, 91, 255, 0.14);
  background: rgba(10, 91, 255, 0.05);
}

.hp-body .nav-account--signed-in .nav-account__avatar {
  background: var(--hp-primary);
  color: #fff;
}

@media (max-width: 1024px) {
  .hp-nav-cta {
    display: none;
  }
}

@media (min-width: 1025px) {
  .hp-nav .nav-links {
    flex: 1;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.5rem 1rem;
  }

  .hp-body .nav-links a,
  .hp-body .nav-dropdown-toggle {
    font-size: 0.875rem;
  }
}

@media (min-width: 1281px) {
  .nav-main .nav-links {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.5rem 1rem;
  }

  .nav-links a,
  .nav-dropdown-toggle {
    font-size: 0.875rem;
  }
}

.hp-container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.hp-main {
  overflow-x: clip;
}

/* Reveal */
.hp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--hp-ease), transform 0.7s var(--hp-ease);
}

.hp-reveal--visible {
  opacity: 1;
  transform: none;
}

/* Typography */
.hp-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1.25rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--hp-primary);
  background: rgba(10, 91, 255, 0.08);
  border: 1px solid rgba(10, 91, 255, 0.12);
  border-radius: 999px;
}

.hp-badge--light {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.hp-cta-link {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hp-cta-link:hover {
  opacity: 0.9;
}

.hp-title-accent {
  color: var(--hp-primary);
}

.hp-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hp-primary);
}

.hp-section-head--center {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.hp-section-head--center .hp-section-sub {
  margin-inline: auto;
}

.hp-section--center .hp-section-head {
  margin-bottom: 3.5rem;
}

.hp-section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.hp-section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--hp-dark);
}

.hp-section-sub {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--hp-muted);
}

.hp-muted {
  color: var(--hp-muted);
  text-align: center;
}

/* Buttons */
.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--hp-ease), box-shadow 0.2s var(--hp-ease), background 0.2s, border-color 0.2s;
}

.hp-btn:hover {
  transform: translateY(-1px);
}

.hp-btn--primary {
  background: var(--hp-primary);
  color: #fff;
  box-shadow: 0 1px 2px rgba(10, 91, 255, 0.12), 0 4px 14px rgba(10, 91, 255, 0.2);
}

.hp-btn--primary:hover {
  background: var(--hp-primary-hover);
  box-shadow: 0 2px 4px rgba(10, 91, 255, 0.14), 0 8px 22px rgba(10, 91, 255, 0.24);
}

.hp-btn--ghost {
  background: var(--hp-card);
  color: var(--hp-dark);
  border-color: var(--hp-border);
}

.hp-btn--ghost:hover {
  border-color: rgba(10, 91, 255, 0.35);
  box-shadow: var(--hp-shadow);
}

/* Botón descargar app — estilo premium */
.hp-btn--app {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.15rem 0.65rem 0.85rem;
  background: #fff;
  color: var(--hp-dark);
  border: 1px solid var(--hp-border);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 6px 20px rgba(15, 23, 42, 0.06);
  text-align: left;
  min-height: 52px;
}

.hp-btn--app:hover {
  border-color: rgba(10, 91, 255, 0.25);
  box-shadow: 0 8px 28px rgba(10, 91, 255, 0.12);
  transform: translateY(-1px);
}

.hp-btn-app-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(10, 91, 255, 0.08);
  color: var(--hp-primary);
  flex-shrink: 0;
}

.hp-btn-app-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.2;
}

.hp-btn-app-copy small {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--hp-muted);
  letter-spacing: 0.01em;
}

.hp-btn-app-copy strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--hp-dark);
  letter-spacing: -0.01em;
}

.hp-btn--light.hp-btn--primary {
  background: #fff;
  color: var(--hp-primary);
}

.hp-btn--light.hp-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.hp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hp-primary);
  text-decoration: none;
  transition: gap 0.2s;
}

.hp-link:hover {
  gap: 0.45rem;
}

/* Hero */
.hp-hero {
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.hp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hp-hero-copy h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.125rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--hp-dark);
}

.hp-lead {
  margin: 0 0 2rem;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: var(--hp-muted);
  max-width: 520px;
}

.hp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.hp-trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hp-trust-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hp-muted);
}

.hp-trust-list svg {
  flex-shrink: 0;
  color: var(--hp-primary);
}

.hp-trust-list--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

/* Hero visual */
.hp-hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-visual-glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(ellipse at center, rgba(10, 91, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hp-phone--real {
  width: min(260px, 72vw);
  padding: 10px;
  border-radius: 40px;
  background: linear-gradient(160deg, #1a1f2e 0%, #0f172a 100%);
  box-shadow: 0 32px 80px rgba(10, 91, 255, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  animation: hp-float 6s ease-in-out infinite;
}

.hp-phone--tilt {
  transform: rotate(-6deg);
  animation: hp-float-tilt 6s ease-in-out infinite;
}

.hp-phone-frame {
  overflow: hidden;
  border-radius: 32px;
  background: #000;
  line-height: 0;
}

.hp-phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 390 / 844;
  object-fit: cover;
  object-position: top center;
}

.hp-phone {
  position: relative;
  z-index: 2;
  width: min(280px, 78vw);
  padding: 12px;
  border-radius: 36px;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  box-shadow: var(--hp-shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  animation: hp-float 6s ease-in-out infinite;
}

.hp-phone--sm {
  width: 180px;
  animation-delay: -2s;
}

.hp-phone-notch {
  width: 80px;
  height: 22px;
  margin: 0 auto 8px;
  border-radius: 0 0 14px 14px;
  background: #0f172a;
}

.hp-phone-screen {
  padding: 1.25rem;
  border-radius: 26px;
  background: var(--hp-card);
  min-height: 340px;
}

.hp-phone--sm .hp-phone-screen {
  min-height: 200px;
}

.hp-phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--hp-dark);
}

.hp-phone-pill {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(10, 91, 255, 0.1);
  color: var(--hp-primary);
  font-size: 0.6875rem;
  font-weight: 700;
}

.hp-phone-card {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: var(--hp-radius-sm);
  background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-secondary) 100%);
  color: #fff;
}

.hp-phone-card small {
  display: block;
  opacity: 0.85;
  font-size: 0.75rem;
}

.hp-phone-card strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.15rem 0;
}

.hp-phone-card span {
  font-size: 0.75rem;
  opacity: 0.9;
}

.hp-phone-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hp-phone-mini {
  padding: 0.65rem 0.35rem;
  border-radius: 10px;
  background: var(--hp-bg);
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--hp-muted);
}

.hp-phone-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 72px;
  padding-top: 0.5rem;
}

.hp-phone-chart span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(10, 91, 255, 0.2);
}

.hp-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--hp-radius-sm);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--hp-border);
  box-shadow: var(--hp-shadow);
  animation: hp-float 5s ease-in-out infinite;
}

.hp-float-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
}

.hp-float-icon-wrap--success {
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
}

.hp-float-icon-wrap--primary {
  background: rgba(10, 91, 255, 0.1);
  color: var(--hp-primary);
}

.hp-float-icon-wrap--warm {
  background: rgba(245, 158, 11, 0.12);
  color: #F59E0B;
}

.hp-float--1 { top: 8%; left: 0; animation-delay: 0s; }
.hp-float--2 { bottom: 18%; right: -2%; animation-delay: -1.5s; }
.hp-float--3 { top: 22%; right: 4%; animation-delay: -3s; }

.hp-float-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--hp-muted);
  margin-bottom: 0.15rem;
}

.hp-float strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--hp-dark);
}

.hp-float small {
  font-size: 0.75rem;
  color: var(--hp-muted);
}

.hp-float-icon {
  display: block;
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

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

@keyframes hp-float-tilt {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-10px); }
}

/* Trust band */
.hp-trust-band {
  padding: 2rem 0;
  border-block: 1px solid var(--hp-border);
  background: var(--hp-card);
}

.hp-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.hp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s var(--hp-ease);
}

a.hp-trust-item:hover {
  transform: translateY(-2px);
}

.hp-trust-stars {
  color: #f59e0b;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.hp-trust-item strong {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--hp-dark);
}

.hp-trust-meta {
  font-size: 0.8125rem;
  color: var(--hp-muted);
}

.hp-trust-icon {
  color: var(--hp-primary);
  margin-bottom: 0.25rem;
}

/* Sections */
.hp-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.hp-section--muted {
  background: var(--hp-card);
  border-block: 1px solid var(--hp-border);
}

/* Services */
.hp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.hp-service {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-radius: var(--hp-radius);
  background: var(--hp-card);
  border: 1px solid var(--hp-border);
  box-shadow: var(--hp-shadow);
  transition: transform 0.25s var(--hp-ease), box-shadow 0.25s var(--hp-ease), border-color 0.25s;
}

.hp-service:hover {
  transform: translateY(-4px);
  box-shadow: var(--hp-shadow-lg);
  border-color: rgba(10, 91, 255, 0.2);
}

.hp-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  border-radius: 14px;
  background: rgba(10, 91, 255, 0.08);
  color: var(--hp-primary);
}

.hp-service-icon--blue {
  background: rgba(10, 91, 255, 0.1);
  color: var(--hp-primary);
}

.hp-service-icon--green {
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
}

.hp-service-icon--purple {
  background: rgba(139, 92, 246, 0.12);
  color: #8B5CF6;
}

.hp-service-icon--orange {
  background: rgba(245, 158, 11, 0.12);
  color: #F59E0B;
}

.hp-service h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--hp-dark);
}

.hp-service p {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--hp-muted);
  flex: 1;
}

/* Features */
.hp-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.hp-feature {
  padding: 1.5rem 0;
}

.hp-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--hp-bg);
  border: 1px solid var(--hp-border);
  color: var(--hp-primary);
}

.hp-feature h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--hp-dark);
}

.hp-feature p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--hp-muted);
}

/* Steps */
.hp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
  position: relative;
}

.hp-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--hp-primary), rgba(10, 91, 255, 0.15));
  z-index: 0;
}

.hp-step {
  position: relative;
  z-index: 1;
  padding: 0 1.25rem;
  text-align: center;
}

.hp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: var(--hp-primary);
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(10, 91, 255, 0.3);
}

.hp-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: rgba(10, 91, 255, 0.08);
  color: var(--hp-primary);
}

.hp-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--hp-dark);
}

.hp-step p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--hp-muted);
}

/* Stats band */
.hp-stats-band {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-secondary) 100%);
  color: #fff;
}

.hp-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.hp-stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.hp-stat span {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Reviews — override google-reviews cards */
.hp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hp-body .review-card {
  padding: 1.5rem;
  border-radius: var(--hp-radius);
  background: var(--hp-bg);
  border: 1px solid var(--hp-border);
  transition: transform 0.2s var(--hp-ease), box-shadow 0.2s;
}

.hp-body .review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--hp-shadow);
}

.hp-body .review-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.hp-body .review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.hp-body .review-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 91, 255, 0.12);
  color: var(--hp-primary);
  font-weight: 700;
}

.hp-body .review-author {
  display: block;
  font-size: 0.9375rem;
  color: var(--hp-dark);
}

.hp-body .review-meta {
  font-size: 0.8125rem;
  color: var(--hp-muted);
}

.hp-body .review-stars {
  margin-left: auto;
  color: #f59e0b;
  font-size: 0.875rem;
}

.hp-body .review-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--hp-muted);
}

.hp-reviews-footer {
  margin-top: 2rem;
  text-align: center;
}

.hp-reviews-footer a {
  font-weight: 600;
  color: var(--hp-primary);
  text-decoration: none;
}

/* App section */
.hp-app--download {
  background: linear-gradient(180deg, rgba(10, 91, 255, 0.06) 0%, rgba(10, 91, 255, 0.02) 100%);
  border-block: 1px solid rgba(10, 91, 255, 0.08);
}

.hp-app--download .hp-app-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.hp-app-visual--phone {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.hp-app--download .hp-app-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hp-app--download .hp-qr-card {
  margin-top: 1.25rem;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.hp-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hp-app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0.75rem;
}

.hp-body .app-badge {
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--hp-border);
  background: var(--hp-card);
  color: var(--hp-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hp-body .app-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--hp-shadow);
}

.hp-app-web a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hp-primary);
}

.hp-app-visual {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.hp-qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: var(--hp-radius);
  background: var(--hp-card);
  border: 1px solid var(--hp-border);
  box-shadow: var(--hp-shadow);
}

.hp-qr-placeholder {
  display: block;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-qr-placeholder:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(10, 91, 255, 0.12);
}

.hp-qr-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.hp-qr-card span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--hp-muted);
}

/* CTA */
.hp-cta {
  padding: clamp(4rem, 8vw, 5.5rem) 0;
  background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-secondary) 100%);
  color: #fff;
  text-align: center;
}

.hp-cta-inner h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hp-cta-inner > p {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  opacity: 0.9;
  max-width: 480px;
  margin-inline: auto;
}

.hp-cta-inner .hp-hero-actions {
  justify-content: center;
}

.hp-cta-meta {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  opacity: 0.85;
}

.hp-cta-meta a {
  color: #fff;
}

/* Footer */
.hp-footer {
  padding: 3.5rem 0 0;
  background: var(--hp-dark);
  color: rgba(255, 255, 255, 0.75);
}

.hp-footer--light {
  background: var(--hp-bg);
  color: var(--hp-muted);
  border-top: 1px solid var(--hp-border);
}

.hp-footer--light .hp-footer-brand .logo-text,
.hp-footer--light .hp-footer-col h3 {
  color: var(--hp-dark);
}

.hp-footer--light .hp-footer-brand p {
  color: var(--hp-muted);
}

.hp-footer--light .hp-footer-col a {
  color: var(--hp-muted);
}

.hp-footer--light .hp-footer-col a:hover {
  color: var(--hp-primary);
}

.hp-footer--light .hp-footer-bottom {
  color: var(--hp-muted);
}

.hp-footer--light .hp-footer-grid {
  border-bottom-color: var(--hp-border);
}

.hp-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1rem;
}

.hp-footer-social a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--hp-primary);
}

.hp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hp-footer-brand .logo-text {
  color: #fff;
}

.hp-footer-brand p {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 320px;
}

.hp-footer-col h3 {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
}

.hp-footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hp-footer-col li {
  margin-bottom: 0.5rem;
}

.hp-footer-col a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.15s;
}

.hp-footer-col a:hover {
  color: #fff;
}

.hp-footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.hp-footer-bottom p {
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .hp-app--download .hp-app-grid {
    grid-template-columns: 1fr;
  }

  .hp-app-visual--phone {
    order: -1;
    min-height: 320px;
  }

  .hp-hero-grid,
  .hp-app-grid {
    grid-template-columns: 1fr;
  }

  .hp-hero-visual {
    order: -1;
    min-height: 360px;
  }

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

  .hp-trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hp-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .hp-steps::before {
    display: none;
  }

  .hp-reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hp-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-services-grid,
  .hp-features-grid,
  .hp-stats-grid,
  .hp-reviews-grid {
    grid-template-columns: 1fr;
  }

  .hp-steps {
    grid-template-columns: 1fr;
  }

  .hp-step {
    text-align: left;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .hp-step-num {
    flex-shrink: 0;
    margin-bottom: 0;
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .hp-trust-list {
    grid-template-columns: 1fr;
  }

  .hp-btn--app {
    width: 100%;
    justify-content: flex-start;
  }

  .hp-float--2 {
    right: 0;
  }

  .hp-footer-grid {
    grid-template-columns: 1fr;
  }

  .hp-app-visual {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hp-phone,
  .hp-float {
    animation: none;
  }
}
