/* Hacker landing — scoped theme from design spec */

.hk-page {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  --hk-bg-top: #050b1a;
  --hk-bg-mid: #02060f;
  --hk-bg-deep: #060e1b;
  --hk-surface-card: #0b1320;
  --hk-surface-elevated: #0d1526;
  --hk-surface-input: #080f21;
  --hk-border: rgba(59, 86, 140, 0.35);
  --hk-border-subtle: rgba(255, 255, 255, 0.06);
  --hk-border-glow: rgba(37, 99, 235, 0.5);
  --hk-primary: #2563eb;
  --hk-primary-deep: #1d4ed8;
  --hk-link-blue: #3b82f6;
  --hk-text-primary: #ffffff;
  --hk-text-secondary: #c7cfdd;
  --hk-text-muted: #8b96a8;
  --hk-text-faint: #5e6b7e;
  --hk-green: #22c55e;
  --hk-green-response: #1fe093;
  --hk-gold: #fbbf24;
  --hk-whatsapp: #25d366;
  --hk-radius-card: 16px;
  --hk-radius-input: 10px;
  --hk-radius-button: 10px;
  --hk-radius-chip: 10px;
  --hk-container-max: 1280px;
  --hk-container-pad: 32px;
  --hk-gradient-primary: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
  --hk-shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
  --hk-shadow-form-glow: 0 0 60px rgba(37, 99, 235, 0.18);
  --hk-shadow-button: 0 8px 30px rgba(37, 99, 235, 0.5);
  --hk-ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --hk-ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--hk-text-primary);
  background: linear-gradient(180deg, var(--hk-bg-top) 0%, var(--hk-bg-mid) 50%, var(--hk-bg-deep) 100%);
  min-height: 100vh;
}

.hk-container {
  width: min(var(--hk-container-max), 100%);
  margin-inline: auto;
  padding-inline: var(--hk-container-pad);
  box-sizing: border-box;
}

/* Header */
.hk-page .hk-navbar > .container-fluid {
  max-width: var(--hk-container-max);
  margin-inline: auto;
  padding-inline: var(--hk-container-pad);
}

.hk-page .navbar-nav {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .hk-page .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    flex-grow: 1;
    align-items: center;
  }

  .hk-page .navbar-expand-lg .navbar-nav {
    flex-direction: row;
    align-items: center;
  }
}

.hk-page .navbar-nav .nav-link {
  color: var(--hk-text-secondary) !important;
  font-size: 15px;
  font-weight: 500;
}

.hk-page .navbar-nav .nav-link:hover {
  color: var(--hk-link-blue) !important;
}

.hk-page .navbar-btn-primary {
  background: var(--hk-primary) !important;
  border-radius: 8px;
}

.hk-page .navbar-btn-primary:hover {
  box-shadow: var(--hk-shadow-button);
}

.hk-confidential {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 12px;
  font-weight: 600;
  color: var(--hk-text-primary);
  white-space: nowrap;
}

.hk-confidential i {
  color: var(--hk-green);
}

.hk-navbar__actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

/* Hero */
.hk-page .hk-hero-section.hero-section {
  background: transparent;
  background-image: none;
  min-height: auto;
  padding: 2.5rem var(--hk-container-pad) 4rem;
  display: block;
  overflow: visible;
}

/* index.css adds a dark ::after overlay on .hero-section for mobile; hacker has no hero art */
.hk-page .hk-hero-section.hero-section::after {
  display: none;
}

.hk-page .hk-hero-container.hero-container {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 2.5rem;
  align-items: start;
  max-width: var(--hk-container-max);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--hk-container-pad);
  box-sizing: border-box;
}

.hk-hero-content.hero-content {
  max-width: none;
}

.hk-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(37, 99, 235, 0.6);
  border-radius: 9999px;
  background: transparent;
  color: var(--hk-link-blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hk-page .hk-hero-section .hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--hk-text-primary);
  margin-bottom: 1rem;
}

.hk-page .hk-hero-section .hero-title span {
  color: var(--hk-primary);
}

.hk-page .hk-hero-section .hero-description {
  color: var(--hk-text-secondary);
  font-size: 16px;
  line-height: 1.5;
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.hk-hero-features.hero-features {
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hk-feature-item.feature-item {
  align-items: flex-start;
  gap: 0.65rem;
}

.hk-feature-icon {
  font-size: 1.25rem;
  margin-top: 0.1rem;
  color: var(--hk-primary);
  flex-shrink: 0;
}

.hk-feature-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.25;
}

.hk-feature-copy strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--hk-text-primary);
}

.hk-feature-copy small {
  font-size: 12px;
  color: var(--hk-text-muted);
}

/* Hero visual: transparent asset, no image box, smooth motion */
@keyframes hk-hero-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hk-alert-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  35% {
    transform: translate3d(3px, -6px, 0) scale(1.015);
  }

  70% {
    transform: translate3d(-2px, -10px, 0) scale(1.008);
  }
}

.hk-hero__showcase {
  width: min(520px, 100%);
  margin: 0 auto 1.5rem;
}

.hk-hero__showcase .hk-hero__visual {
  margin-bottom: 0;
}

.hk-hero__visual {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-height: none;
  padding: 0;
  background: transparent;
}

.hk-hero__img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-height: min(420px, 72vw);
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
  animation: hk-hero-enter 0.85s var(--hk-ease-out-expo) both;
  animation-delay: 0.05s;
}

.hk-hero__alerts {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hk-alert {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 8.25rem;
  padding: 0.65rem 0.95rem;
  border-radius: 12px;
  font-size: 0.78rem;
  line-height: 1.25;
  backdrop-filter: blur(8px);
  animation: hk-alert-float 5.5s var(--hk-ease-out-quart) infinite;
  will-change: transform;
  pointer-events: auto;
}

.hk-alert strong {
  display: block;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.hk-alert span {
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
  opacity: 0.92;
}

.hk-alert--red {
  top: 6%;
  left: 2%;
  background: rgba(40, 8, 8, 0.78);
  border: 1px solid rgba(239, 68, 68, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  color: #f87171;
  animation-delay: 0.2s;
}

.hk-alert--yellow {
  top: 20%;
  right: 2%;
  background: rgba(40, 28, 5, 0.78);
  border: 1px solid rgba(245, 158, 11, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  color: #fbbf24;
  animation-delay: 0.9s;
}

.hk-alert--green {
  bottom: 22%;
  left: 2%;
  background: rgba(8, 30, 18, 0.78);
  border: 1px solid rgba(34, 197, 94, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  color: #4ade80;
  animation-delay: 1.6s;
}

.hk-alert--purple {
  bottom: 6%;
  right: 2%;
  background: rgba(25, 12, 54, 0.78);
  border: 1px solid rgba(168, 85, 247, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  color: #c084fc;
  animation-delay: 2.3s;
}

@media (prefers-reduced-motion: reduce) {
  .hk-hero__img,
  .hk-alert {
    animation: none;
  }

  .hk-alert {
    will-change: auto;
  }
}

.hk-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(59, 86, 140, 0.28);
  text-align: center;
}

.hk-trust__label {
  font-size: 14px;
  color: var(--hk-text-secondary);
  width: 100%;
  margin: 0;
}

.hk-trust__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  width: 100%;
}

.hk-trust__avatars {
  display: flex;
  flex-shrink: 0;
}

.hk-trust__avatars span {
  width: 32px;
  height: 32px;
  margin-left: -8px;
  border-radius: 50%;
  border: 2px solid var(--hk-bg-mid);
  background: linear-gradient(135deg, var(--hk-primary-deep), var(--hk-primary));
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 600;
}

.hk-trust__avatars span:first-child {
  margin-left: 0;
}

.hk-trust__rating {
  margin: 0;
  font-size: 14px;
  color: var(--hk-text-secondary);
}

.hk-trust__rating strong {
  color: var(--hk-text-primary);
}

.hk-stars {
  color: var(--hk-gold);
  letter-spacing: 0.05em;
}

/* Customer reviews carousel */
.hk-reviews-scroll {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--hk-container-max);
  margin: 2.5rem auto 0;
  padding: 2rem var(--hk-container-pad) 2.75rem;
  box-sizing: border-box;
  border-top: 1px solid var(--hk-border-subtle);
}

.hk-reviews-scroll__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--hk-text-primary);
  text-align: center;
}

.hk-reviews-scroll__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.85rem;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  padding: 0.25rem 0.15rem 0.85rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(37, 99, 235, 0.45) transparent;
}

.hk-reviews-scroll__track::-webkit-scrollbar {
  height: 6px;
}

.hk-reviews-scroll__track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.45);
}

.hk-review-card {
  flex: 0 0 min(300px, 82vw);
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
  padding: 1.1rem 1.15rem;
  border-radius: 12px;
  background: var(--hk-surface-card);
  border: 1px solid rgba(59, 86, 140, 0.35);
}

.hk-review-card__stars {
  margin: 0;
  color: var(--hk-gold);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.hk-review-card__text {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--hk-text-secondary);
}

.hk-review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(59, 86, 140, 0.22);
}

.hk-review-card__meta strong {
  font-size: 0.88rem;
  color: var(--hk-text-primary);
}

.hk-review-card__meta span {
  font-size: 0.75rem;
  color: var(--hk-text-muted);
}

/* Lead form card */
.hk-lead-card {
  position: sticky;
  top: calc(var(--sp-navbar-height, 88px) + 1rem);
  padding: 1.5rem 1.35rem 1.25rem;
  border-radius: var(--hk-radius-card);
  background: var(--hk-surface-card);
  border: 1px solid rgba(37, 99, 235, 0.4);
  box-shadow: var(--hk-shadow-card), var(--hk-shadow-form-glow);
}

.hk-lead-card__title {
  margin: 0 0 0.35rem;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--hk-text-primary);
}

.hk-lead-card__lead {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: var(--hk-text-muted);
}

.hk-lead-form {
  margin: 0;
}

.hk-lead-form .form-control,
.hk-lead-form .form-select {
  background-color: var(--hk-surface-input) !important;
  border: 1px solid var(--hk-border) !important;
  border-radius: var(--hk-radius-input) !important;
  color: var(--hk-text-primary) !important;
  font-size: 14px;
  padding: 0.7rem 0.85rem;
}

.hk-lead-form .form-control::placeholder {
  color: var(--hk-text-muted);
}

.hk-lead-form .form-control:focus,
.hk-lead-form .form-select:focus {
  border-color: var(--hk-primary) !important;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25) !important;
  outline: none;
}

.hk-lead-form .form-select {
  color-scheme: dark;
}

.hk-lead-form .form-select option {
  background: #0d1526;
  color: var(--hk-text-primary);
}

.hk-urgency {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.hk-urgency__title {
  float: none;
  width: 100%;
  margin: 0 0 0.5rem;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--hk-text-secondary);
}

.hk-urgency__opts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.hk-urgency__choice {
  display: block;
  margin: 0;
  cursor: pointer;
}

.hk-urgency__choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hk-urgency__opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 3.25rem;
  padding: 0.55rem 0.35rem;
  border-radius: var(--hk-radius-chip);
  border: 1px solid var(--hk-border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
  color: var(--hk-text-secondary);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hk-urgency__opt i {
  font-size: 0.85rem;
}

.hk-urgency__choice input:checked + .hk-urgency__opt {
  border-color: var(--hk-primary);
  background: rgba(37, 99, 235, 0.25);
  color: var(--hk-text-primary);
}

.hk-lead-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: var(--hk-radius-button);
  background: var(--hk-gradient-primary);
  color: var(--hk-text-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--hk-shadow-button);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.hk-lead-submit:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  color: var(--hk-text-primary);
}

.hk-form-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin-top: 1rem;
  font-size: 12px;
  color: var(--hk-text-secondary);
}

.hk-form-trust__lead {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hk-form-trust__lead i {
  color: var(--hk-green);
}

.hk-form-trust__sep {
  color: var(--hk-text-muted);
  opacity: 0.6;
}

.hk-response-time {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--hk-border-subtle);
  text-align: center;
}

.hk-response-time__label {
  display: block;
  font-size: 14px;
  color: var(--hk-text-secondary);
  margin-bottom: 0.25rem;
}

.hk-response-time__value {
  display: block;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--hk-green-response);
}

/* Toasts */
.hk-toasts {
  position: fixed;
  top: calc(var(--sp-navbar-height, 88px) + 0.5rem);
  right: 1rem;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 360px;
}

.hk-toast {
  padding: 0.75rem 1rem;
  border-radius: var(--hk-radius-chip);
  font-size: 0.85rem;
  background: var(--hk-surface-card);
  border: 1px solid var(--hk-border-subtle);
}

.hk-toast--success {
  border-color: rgba(31, 224, 147, 0.35);
  color: var(--hk-green-response);
}

.hk-toast--error {
  border-color: rgba(239, 68, 68, 0.35);
  color: #f87171;
}

/* Sections */
.hk-section {
  padding: 4rem var(--hk-container-pad);
}

.hk-section--alt {
  background: linear-gradient(180deg, transparent, rgba(37, 99, 235, 0.06), transparent);
}

.hk-section__title {
  margin: 0 0 2rem;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--hk-text-primary);
}

.hk-section__title-accent {
  color: var(--hk-primary);
}

.hk-issues {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}

.hk-issue {
  padding: 1rem 0.65rem;
  border-radius: 12px;
  background: var(--hk-surface-card);
  border: 1px solid rgba(59, 86, 140, 0.25);
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .hk-issue:hover {
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
  }
}

.hk-issue__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.65rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  color: var(--hk-primary);
  font-size: 1rem;
}

.hk-issue h3 {
  margin: 0 0 0.35rem;
  font-size: 16px;
  font-weight: 600;
  color: var(--hk-text-primary);
}

.hk-issue p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--hk-text-muted);
}

/* How it works */
.hk-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.hk-step {
  flex: 1;
  text-align: center;
  padding: 0 0.25rem;
  position: relative;
  min-width: 0;
}

.hk-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 0;
  border-top: 2px dotted rgba(37, 99, 235, 0.5);
  pointer-events: none;
}

.hk-step__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--hk-primary);
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.hk-step h3 {
  margin: 0 0 0.5rem;
  font-size: 16px;
  font-weight: 700;
  color: var(--hk-text-primary);
}

.hk-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--hk-text-muted);
}

/* Why choose */
.hk-why-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
  padding: 2rem;
  border-radius: var(--hk-radius-card);
  background: var(--hk-surface-card);
  border: 1px solid rgba(59, 86, 140, 0.25);
}

.hk-why-panel .hk-section__title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.hk-why__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hk-why__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 15px;
  line-height: 1.45;
  color: var(--hk-text-secondary);
}

.hk-why__list i {
  color: var(--hk-primary);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.hk-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  border-radius: var(--hk-radius-card);
  background: linear-gradient(135deg, var(--hk-surface-elevated) 0%, var(--hk-surface-card) 100%);
  border: 1px solid rgba(37, 99, 235, 0.3);
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.2);
  text-align: center;
  height: 100%;
}

.hk-cta-box h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hk-text-primary);
}

.hk-cta-box p {
  margin: 0 0 1.25rem;
  font-size: 15px;
  line-height: 1.5;
  color: var(--hk-text-secondary);
}

.hk-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  background: var(--hk-primary);
  color: var(--hk-text-primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hk-cta-btn:hover {
  color: var(--hk-text-primary);
  box-shadow: var(--hk-shadow-button);
  transform: translateY(-1px);
}

.hk-shield-art__glyph {
  width: 120px;
  height: 140px;
  filter: drop-shadow(0 0 28px rgba(37, 99, 235, 0.45));
}

/* Contact bar */
.hk-contact-bar {
  padding: 2.5rem var(--hk-container-pad) 4rem;
}

.hk-contact-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 2rem 1.5rem;
  border-radius: var(--hk-radius-card);
  background: var(--hk-surface-card);
  border: 1px solid rgba(59, 86, 140, 0.25);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.hk-contact-item {
  padding: 0 1.5rem;
  text-align: center;
  min-width: 0;
}

.hk-contact-item:not(:last-child) {
  border-right: 1px solid var(--hk-border-subtle);
}

.hk-contact-item__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--hk-primary);
  color: var(--hk-text-primary);
  font-size: 1.15rem;
}

.hk-contact-item__icon--whatsapp {
  background: var(--hk-whatsapp);
}

.hk-contact-item h3 {
  margin: 0 0 0.5rem;
  font-size: 16px;
  font-weight: 600;
  color: var(--hk-text-primary);
}

.hk-contact-item p {
  margin: 0 0 0.5rem;
  font-size: 14px;
  color: var(--hk-text-muted);
}

.hk-contact-item__highlight {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--hk-text-primary);
  text-decoration: none;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.35;
}

.hk-contact-item__highlight + .hk-contact-item__highlight {
  margin-top: 0.5rem;
}

.hk-contact-item__link {
  font-size: 14px;
  color: var(--hk-text-primary);
  text-decoration: underline;
}

.hk-contact-item__link:hover {
  color: var(--hk-link-blue);
}

/* FAQs */
.hk-faqs {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.hk-faqs__lead {
  margin: 0 0 1.5rem;
  font-size: 14px;
  color: var(--hk-text-muted);
}

.hk-faqs__list {
  text-align: left;
  display: grid;
  gap: 1rem;
}

.hk-faq-item {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: var(--hk-surface-card);
  border: 1px solid rgba(59, 86, 140, 0.25);
}

.hk-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--hk-text-primary);
  list-style: none;
}

.hk-faq-item summary::-webkit-details-marker {
  display: none;
}

.hk-faq-item p {
  margin: 0.75rem 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--hk-text-muted);
}

/* Footer */
.hk-footer {
  padding: 1.5rem var(--hk-container-pad) 2rem;
}

.hk-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: var(--hk-container-max);
  margin-inline: auto;
  padding-inline: var(--hk-container-pad);
  font-size: 13px;
  color: var(--hk-text-faint);
}

.hk-footer__brand.navbar-brand {
  margin: 0;
}

.hk-footer__brand .logo {
  height: 52px;
}

.hk-footer__domain {
  letter-spacing: 0.04em;
  color: var(--hk-text-faint);
}

/* Responsive */
@media (max-width: 1200px) {
  .hk-issues {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .hk-page .hk-hero-container.hero-container {
    grid-template-columns: 1fr;
  }

  .hk-lead-card {
    position: static;
  }

  .hk-issues {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .hk-why-panel {
    grid-template-columns: 1fr;
  }

  .hk-steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .hk-step {
    flex: 0 1 calc(50% - 1rem);
    min-width: 140px;
  }

  .hk-step:not(:last-child)::after {
    display: none;
  }
}

/* Reviews carousel: phones + tablets (not desktop multi-column layout) */
@media (max-width: 1024px) {
  .hk-reviews-scroll {
    width: 100%;
    max-width: none;
    margin: 2rem 0 0;
    padding: 1.75rem 0 2.25rem;
  }

  .hk-reviews-scroll__title {
    text-align: left;
    margin-bottom: 1rem;
    padding-inline: var(--hk-container-pad);
    font-size: clamp(1.1rem, 3.5vw, 1.25rem);
    line-height: 1.3;
  }

  .hk-reviews-scroll__track {
    --hk-review-card-size: clamp(
      16.5rem,
      calc((100vw - (var(--hk-container-pad) * 2)) * 0.86),
      21rem
    );
    gap: 0.75rem;
    padding: 0.2rem var(--hk-container-pad) 0.75rem;
    scroll-padding-inline: var(--hk-container-pad);
    scrollbar-width: none;
  }

  .hk-reviews-scroll__track::-webkit-scrollbar {
    display: none;
  }

  .hk-review-card {
    flex: 0 0 var(--hk-review-card-size);
    width: var(--hk-review-card-size);
    max-width: none;
    min-height: 11.5rem;
    padding: 1rem 1.05rem 1.1rem;
    scroll-snap-stop: always;
    background: var(--hk-surface-card);
    border-color: rgba(59, 86, 140, 0.45);
  }

  .hk-review-card__text {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

/* Tablet / large phone: stacked hero, corner alerts on visual */
@media (max-width: 768px) {
  .hk-page {
    --hk-container-pad: 20px;
  }

  .hk-page .hk-hero-section.hero-section {
    padding: 2rem var(--hk-container-pad) 1.5rem;
  }

  .hk-page .hk-hero-container.hero-container {
    padding-inline: var(--hk-container-pad);
    gap: 1.75rem;
  }

  .hk-page .hk-hero-section .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .hk-hero-features.hero-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hk-hero__showcase {
    width: 100%;
    max-width: min(420px, 100%);
    margin-inline: auto;
    margin-bottom: 1.25rem;
  }

  .hk-hero__showcase .hk-trust {
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .hk-hero__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 0.5rem;
    width: 100%;
    aspect-ratio: auto;
    max-height: none;
    margin-inline: auto;
    margin-bottom: 0;
  }

  .hk-hero__img {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    height: auto;
    max-height: min(360px, 68vw);
  }

  .hk-hero__alerts {
    display: contents;
  }

  .hk-alert {
    position: static;
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0.65rem 0.5rem;
    justify-content: center;
    text-align: center;
  }

  .hk-alert--red {
    grid-column: 1;
    grid-row: 1;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    animation-delay: 0.15s;
  }

  .hk-alert--yellow {
    grid-column: 2;
    grid-row: 1;
    top: auto;
    right: auto;
    bottom: auto;
    animation-delay: 0.45s;
  }

  .hk-alert--green {
    grid-column: 1;
    grid-row: 3;
    top: auto;
    left: auto;
    bottom: auto;
    animation-delay: 0.75s;
  }

  .hk-alert--purple {
    grid-column: 2;
    grid-row: 3;
    top: auto;
    right: auto;
    bottom: auto;
    animation-delay: 1.05s;
  }

  .hk-alert strong {
    font-size: 0.8rem;
  }

  .hk-alert span {
    font-size: 0.7rem;
  }

  .hk-lead-card {
    padding: 1.25rem 1.1rem;
  }

  .hk-lead-card__title {
    font-size: 1.5rem;
  }

  .hk-lead-form .form-control,
  .hk-lead-form .form-select {
    font-size: 16px;
    min-height: 44px;
  }

  .hk-urgency__opt {
    min-height: 44px;
    font-size: 12px;
  }

  .hk-lead-submit {
    min-height: 48px;
    font-size: 15px;
  }

  .hk-section {
    padding: 3rem var(--hk-container-pad);
  }

  .hk-urgency__opts {
    grid-template-columns: 1fr;
  }

  .hk-section__title {
    margin-bottom: 1.5rem;
    padding-inline: 0.25rem;
  }

  .hk-issues {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hk-issue {
    display: grid;
    grid-template-columns: 3rem 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    row-gap: 0.25rem;
    align-items: start;
    text-align: left;
    padding: 1rem 1.125rem;
    -webkit-tap-highlight-color: transparent;
  }

  .hk-issue__icon {
    grid-column: 1;
    grid-row: 1;
    width: 48px;
    height: 48px;
    margin: 0;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .hk-issue h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
    min-width: 0;
    font-size: 1rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .hk-issue p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
    min-width: 0;
    padding-top: 0.35rem;
    font-size: 0.875rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .hk-steps {
    flex-direction: column;
    align-items: center;
  }

  .hk-step {
    flex: 1 1 auto;
    width: 100%;
    max-width: 280px;
  }

  .hk-contact-bar {
    padding-inline: var(--hk-container-pad);
  }

  .hk-contact-card {
    grid-template-columns: 1fr;
    padding: 1.25rem 1rem;
  }

  .hk-contact-item {
    padding: 1.25rem 0.75rem;
  }

  .hk-contact-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--hk-border-subtle);
  }

  .hk-contact-item:last-child {
    border-bottom: none;
  }

  .hk-contact-item__highlight {
    font-size: clamp(1rem, 4.8vw, 1.25rem);
    padding-block: 0.15rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hk-contact-item__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding-inline: 0.5rem;
  }

  .hk-navbar__actions {
    width: 100%;
    justify-content: center;
    padding-top: 0.5rem;
  }

  .hk-page .navbar-btn-primary {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .hk-confidential {
    display: none;
  }

  .hk-footer__inner {
    flex-direction: column;
    text-align: center;
    padding-inline: var(--hk-container-pad);
  }
}

@media (max-width: 520px) {
  .hk-page {
    --hk-container-pad: 16px;
  }

  .hk-reviews-scroll {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
  }

  .hk-reviews-scroll__track {
    --hk-review-card-size: clamp(
      15.75rem,
      calc((100vw - (var(--hk-container-pad) * 2)) * 0.88),
      19.5rem
    );
  }

  .hk-review-card {
    min-height: 10.75rem;
  }

  .hk-hero__showcase .hk-trust {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
  }

  .hk-hero__visual {
    max-width: 100%;
    gap: 0.45rem;
  }

  .hk-alert {
    padding: 0.6rem 0.4rem;
  }

  .hk-alert strong {
    font-size: 0.78rem;
  }

  .hk-alert span {
    font-size: 0.68rem;
  }

  .hk-hero__showcase {
    max-width: 100%;
  }

  .hk-why-panel {
    padding: 1.25rem;
  }

  .hk-cta-box {
    padding: 1.5rem 1rem;
  }

  .hk-faqs {
    padding-inline: 0;
  }

  .hk-contact-bar {
    padding-bottom: 3rem;
  }

  .hk-contact-card {
    padding: 1rem 0.75rem;
  }

  .hk-contact-item {
    padding: 1rem 0.5rem;
  }

  .hk-contact-item__highlight {
    font-size: 1.0625rem;
  }
}
