/**
 * WhatsRay Homepage v2 — fully bespoke layout, independent of the shared
 * template section system (see resources/views/templates/basic/partials/home_v2).
 * Palette matches the auth login/register screens (soft white + teal/green
 * ambient glows) so the marketing site and app feel like one product.
 */

.hp {
  --hp-primary: #007a6d;
  --hp-accent: #25d366;
  --hp-accent-2: #00c2a8;
  --hp-ink: #1f2933;
  --hp-ink-dim: #5c6e69;
  --hp-bg: #f7faf9;
  --hp-bg-2: #f2f5f4;
  --hp-card: rgba(255, 255, 255, 0.92);
  --hp-card-solid: #ffffff;
  --hp-border: rgba(0, 122, 109, 0.10);
  --hp-radius: 22px;
  --hp-radius-sm: 14px;
  --hp-radius-pill: 999px;
  --hp-shadow: 0 10px 26px rgba(31, 41, 51, 0.06);
  --hp-shadow-lg: 0 28px 60px rgba(31, 41, 51, 0.10);
  --hp-ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--hp-bg);
}

.hp h1, .hp h2, .hp h3, .hp h4 {
  font-family: 'Manrope', 'Inter', sans-serif !important;
  letter-spacing: -0.02em;
}

.hp p {
  font-family: 'Inter', sans-serif !important;
}

.hp .container {
  max-width: 1180px;
}

/* ---------- Buttons ---------- */
.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.3s var(--hp-ease), box-shadow 0.3s var(--hp-ease), background 0.3s var(--hp-ease);
  border: none;
  cursor: pointer;
}

.hp-btn--solid {
  background: #000000;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.hp-btn--solid:hover {
  background: #2e2e2e;
  color: #ffffff !important;
  transform: translateY(-3px);
}

.hp-btn--ghost,
.hp-btn--ghost-light {
  background: rgba(0, 122, 109, 0.06);
  color: var(--hp-ink) !important;
  border: 1px solid var(--hp-border);
}

.hp-btn--ghost:hover,
.hp-btn--ghost-light:hover {
  background: rgba(0, 122, 109, 0.12);
  color: var(--hp-ink) !important;
  transform: translateY(-3px);
}

.hp-btn--outline-light {
  background: transparent;
  color: var(--hp-ink) !important;
  border: 1px solid rgba(0, 122, 109, 0.22);
}

.hp-btn--outline-light:hover {
  background: rgba(0, 122, 109, 0.08);
  color: var(--hp-ink) !important;
  transform: translateY(-3px);
}

.hp-btn--lg {
  padding: 18px 36px;
  font-size: 16px;
}

/* ---------- Section shells ---------- */
.hp-section {
  padding: 110px 0;
  background: var(--hp-bg);
  position: relative;
}

@media screen and (max-width: 767px) {
  .hp-section {
    padding: 70px 0;
  }
}

.hp-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.hp-head h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--hp-ink) !important;
  margin: 14px 0 14px;
  line-height: 1.18;
}

.hp-head p {
  color: var(--hp-ink-dim) !important;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.hp-head--left {
  text-align: left;
  margin: 0 0 56px;
  max-width: 560px;
}

@media screen and (max-width: 767px) {
  .hp-head h2 {
    font-size: 28px;
  }
}

.hp-kicker,
.hp-kicker--light {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: var(--hp-radius-pill);
  background: rgba(0, 122, 109, 0.08);
  color: var(--hp-primary) !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Reveal-on-scroll (self-contained, no wow.js dependency) ---------- */
.hp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--hp-ease), transform 0.7s var(--hp-ease);
}

.hp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ==========================================================================
   Hero — bold color-block layout, real product screenshot, no soft glow
   ========================================================================== */
.hp-hero {
  position: relative;
  background: var(--hp-bg);
  padding: 100px 0 50px;
}

@media screen and (max-width: 991px) {
  .hp-hero {
    padding: 110px 0 50px;
  }
}

.hp-hero__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .hp-hero__row {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hp-hero__copy {
    text-align: center;
  }

  .hp-hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hp-hero__actions,
  .hp-hero__proof {
    justify-content: center;
  }
}

.hp-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border-radius: 8px;
  background: #eaf3f0;
  border: 1px solid rgba(0, 122, 109, 0.18);
  color: var(--hp-primary) !important;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hp-tag__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hp-accent);
}

.hp-hero__title {
  font-size: 50px;
  font-weight: 800;
  color: var(--hp-ink) !important;
  -webkit-text-fill-color: var(--hp-ink) !important;
  line-height: 1.08;
  margin-bottom: 16px;
}

.hp-hero__title span {
  display: block;
  color: var(--hp-primary) !important;
  -webkit-text-fill-color: var(--hp-primary) !important;
}

@media screen and (max-width: 767px) {
  .hp-hero__title {
    font-size: 36px;
  }
}

.hp-hero__desc {
  font-size: 17px;
  line-height: 1.55;
  color: var(--hp-ink-dim) !important;
  max-width: 480px;
  margin-bottom: 22px;
}

.hp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hp-hero__actions .btn-hero-glow {
  border-radius: 999px !important;
  font-weight: 700;
}

.hp-hero__proof {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hp-hero__proof-divider {
  width: 1px;
  height: 34px;
  background: var(--hp-border);
}

.hp-hero__proof-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.hp-hero__proof-text strong {
  color: var(--hp-ink);
  font-size: 16px;
  font-weight: 800;
}

.hp-hero__proof-text span {
  color: var(--hp-ink-dim) !important;
  font-size: 13px;
}

.hp-meta-badge {
  display: inline-flex;
  align-items: center;
  width: 152px;
  max-width: 42vw;
}

.hp-meta-badge img {
  display: block;
  width: 100%;
  height: auto;
}

/* Visual: real product image on a solid color slab, no blur/glass */
.hp-hero__visual {
  position: relative;
}

.hp-hero__slab {
  position: absolute;
  inset: 6% -8% -8% 8%;
  background: var(--hp-accent);
  border-radius: 18px;
  transform: rotate(3deg);
  z-index: 0;
}

.hp-hero__frame {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--hp-ink);
  transform: rotate(-1.5deg);
  box-shadow: 14px 16px 0 rgba(0, 0, 0, 0.08);
}

.hp-hero__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.hp-hero__badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  background: #fff;
  border: 2px solid var(--hp-ink);
  border-radius: 12px;
  color: var(--hp-ink) !important;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 5px 6px 0 rgba(0, 0, 0, 0.08);
}

.hp-hero__badge i {
  color: var(--hp-primary);
  font-size: 16px;
}

.hp-hero__badge strong {
  color: var(--hp-primary);
}

.hp-hero__badge--a {
  top: -6%;
  left: -8%;
}

.hp-hero__badge--b {
  bottom: -6%;
  right: -10%;
}

@media screen and (max-width: 767px) {
  .hp-hero__badge {
    display: none;
  }

  .hp-hero__slab {
    inset: 4% -4% -4% 4%;
  }
}

/* ---------- Hero entrance + idle motion ---------- */
@keyframes hpFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hpFadeScale {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

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

@keyframes hpPulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
}

.hp-hero__copy > * {
  opacity: 0;
  animation: hpFadeUp 0.7s var(--hp-ease) forwards;
}

.hp-hero__copy > .hp-tag { animation-delay: 0.05s; }
.hp-hero__copy > .hp-hero__title { animation-delay: 0.15s; }
.hp-hero__copy > .hp-hero__desc { animation-delay: 0.28s; }
.hp-hero__copy > .hp-hero__actions { animation-delay: 0.4s; }
.hp-hero__copy > .hp-hero__proof { animation-delay: 0.52s; }

.hp-hero__visual {
  opacity: 0;
  animation: hpFadeScale 0.8s var(--hp-ease) forwards;
  animation-delay: 0.3s;
}

.hp-tag__dot {
  animation: hpPulseDot 2s ease-out infinite;
}

.hp-hero__badge--a {
  animation: hpBob 4.5s ease-in-out infinite;
}

.hp-hero__badge--b {
  animation: hpBob 5.2s ease-in-out infinite;
  animation-delay: -2s;
}

@media (prefers-reduced-motion: reduce) {
  .hp-hero__copy > *,
  .hp-hero__visual {
    opacity: 1;
    animation: none;
  }

  .hp-tag__dot,
  .hp-hero__badge--a,
  .hp-hero__badge--b {
    animation: none;
  }
}

/* ==========================================================================
   Trust bar — static row, no auto-scroll
   ========================================================================== */
.hp-trustbar {
  background: var(--hp-ink);
  padding: 18px 0;
}

.hp-trustbar__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.hp-trustbar__row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hp-trustbar__row span:last-child {
  border-right: none;
}

.hp-trustbar__row i {
  color: var(--hp-accent);
}

@media screen and (max-width: 767px) {
  .hp-trustbar__row span {
    border-right: none;
    padding: 4px 14px;
  }
}

/* ==========================================================================
   Bento features
   ========================================================================== */
.hp-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.hp-bento__item--lg {
  grid-column: span 2;
  grid-row: span 2;
}

.hp-bento__item--wide {
  grid-column: span 2;
}

@media screen and (max-width: 991px) {
  .hp-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-bento__item--lg,
  .hp-bento__item--wide {
    grid-column: span 2;
  }
}

@media screen and (max-width: 600px) {
  .hp-bento {
    grid-template-columns: 1fr;
  }

  .hp-bento__item--lg,
  .hp-bento__item--wide {
    grid-column: span 1;
  }
}

.hp-bento__item {
  background: var(--hp-card-solid);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius);
  padding: 32px;
  box-shadow: var(--hp-shadow);
  transition: transform 0.4s var(--hp-ease), box-shadow 0.4s var(--hp-ease);
  display: flex;
  flex-direction: column;
}

.hp-bento__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--hp-shadow-lg);
}

.hp-bento__item--lg {
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(0, 122, 109, 0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(37, 211, 102, 0.08), transparent 26%),
    var(--hp-card-solid);
  border-color: rgba(0, 122, 109, 0.16);
}

.hp-bento__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(0, 122, 109, 0.10);
  color: var(--hp-primary);
  font-size: 20px;
  margin-bottom: 18px;
}

.hp-bento__item h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--hp-ink) !important;
  margin-bottom: 10px;
}

.hp-bento__item p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--hp-ink-dim) !important;
  margin: 0;
}

/* ==========================================================================
   Editorial feature list — flat numerals, no cards/shadows
   ========================================================================== */
.hp-featlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--hp-border);
}

@media screen and (max-width: 767px) {
  .hp-featlist {
    grid-template-columns: 1fr;
  }
}

.hp-featlist__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 30px 28px 30px 0;
  border-bottom: 1px solid var(--hp-border);
}

.hp-featlist__item:nth-child(odd) {
  border-right: 1px solid var(--hp-border);
  padding-left: 0;
}

.hp-featlist__item:nth-child(even) {
  padding-left: 28px;
}

@media screen and (max-width: 767px) {
  .hp-featlist__item:nth-child(odd) {
    border-right: none;
  }

  .hp-featlist__item:nth-child(even) {
    padding-left: 0;
  }
}

.hp-featlist__num {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--hp-accent);
  flex-shrink: 0;
  padding-top: 4px;
}

.hp-featlist__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--hp-ink);
  color: #fff;
  font-size: 18px;
}

.hp-featlist__body h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--hp-ink) !important;
  margin-bottom: 8px;
}

.hp-featlist__body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--hp-ink-dim) !important;
  margin: 0;
}

/* ==========================================================================
   Official API Benefits callout
   ========================================================================== */
.hp-apibenefits-wrap {
  padding-top: 0;
  padding-bottom: 60px;
}

.hp-apibenefits {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #ffffff 0%, #ffffff 55%, #eefaf1 100%);
  border: 1px solid var(--hp-border);
  border-radius: 28px;
  padding: 56px 60px;
  box-shadow: var(--hp-shadow);
}

@media screen and (max-width: 767px) {
  .hp-apibenefits {
    padding: 38px 26px;
  }
}

.hp-apibenefits__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.16), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hp-apibenefits__icon {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #dcf5e4;
  color: var(--hp-primary);
  font-size: 34px;
  margin-bottom: 26px;
}

.hp-apibenefits h2 {
  position: relative;
  z-index: 1;
  font-size: 38px;
  font-weight: 800;
  color: var(--hp-ink) !important;
  -webkit-text-fill-color: var(--hp-ink) !important;
  margin-bottom: 30px;
}

.hp-apibenefits__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  max-width: 640px;
}

@media screen and (max-width: 600px) {
  .hp-apibenefits__list {
    grid-template-columns: 1fr;
  }
}

.hp-apibenefits__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--hp-ink) !important;
}

.hp-apibenefits__item i {
  color: var(--hp-primary);
  font-size: 20px;
  flex-shrink: 0;
}

/* ==========================================================================
   Stats band
   ========================================================================== */
.hp-stats {
  background: #ffffff;
  padding: 70px 0;
  border-top: 1px solid var(--hp-border);
  border-bottom: 1px solid var(--hp-border);
}

.hp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .hp-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hp-stat__num {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--hp-accent) !important;
  -webkit-text-fill-color: var(--hp-accent) !important;
}

.hp-stat__label {
  display: block;
  margin-top: 8px;
  color: var(--hp-ink-dim) !important;
  font-size: 14px;
  font-weight: 500;
}

/* ==========================================================================
   Workflow timeline
   ========================================================================== */
.hp-timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.hp-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 27px;
  width: 2px;
  background: var(--hp-border);
}

.hp-timeline__item {
  position: relative;
  display: flex;
  gap: 28px;
  padding-bottom: 48px;
}

.hp-timeline__item:last-child {
  padding-bottom: 0;
}

.hp-timeline__marker {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hp-card-solid);
  border: 2px solid var(--hp-border);
  color: var(--hp-primary);
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  box-shadow: var(--hp-shadow);
  position: relative;
  z-index: 1;
}

.hp-timeline__content {
  padding-top: 8px;
}

.hp-timeline__content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--hp-ink) !important;
  margin-bottom: 8px;
}

.hp-timeline__content p {
  color: var(--hp-ink-dim) !important;
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

/* ==========================================================================
   Product tour
   ========================================================================== */
.hp-tour {
  position: relative;
  background: var(--hp-bg-2);
  padding: 130px 0;
  overflow: hidden;
}

.hp-tour__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 70% at 85% 20%, rgba(0, 122, 109, 0.08), transparent 60%);
}

.hp-tour__row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .hp-tour__row {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hp-tour {
    padding: 80px 0;
  }
}

.hp-tour__copy h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--hp-ink) !important;
  -webkit-text-fill-color: var(--hp-ink) !important;
  margin: 14px 0 16px;
  line-height: 1.2;
}

.hp-tour__copy p {
  color: var(--hp-ink-dim) !important;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.hp-tour__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hp-tour__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--hp-ink);
  font-size: 15px;
  font-weight: 500;
}

.hp-tour__list i {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0, 122, 109, 0.12);
  color: var(--hp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.hp-tour__visual {
  position: relative;
}

.hp-tour__logocard {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-height: 360px;
  padding: 50px 40px;
  background: linear-gradient(150deg, #ffffff 0%, #ffffff 55%, #eefaf1 100%);
  border: 1px solid var(--hp-border);
  border-radius: 24px;
  box-shadow: var(--hp-shadow-lg);
}

.hp-tour__logocard-glow {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hp-tour__logocard-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 300px;
  height: auto;
}

.hp-tour__logocard-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hp-tour__logocard-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hp-tour__logocard-stats strong {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--hp-primary) !important;
}

.hp-tour__logocard-stats span {
  font-size: 12.5px;
  color: var(--hp-ink-dim) !important;
  font-weight: 600;
}

.hp-tour__logocard-divider {
  width: 1px;
  height: 30px;
  background: var(--hp-border);
}

.hp-tour__frame {
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--hp-ink);
  box-shadow: 14px 16px 0 rgba(0, 0, 0, 0.08);
  transform: rotate(-2deg);
  background: var(--hp-card-solid);
}

.hp-tour__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.hp-tour__callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border: 2px solid var(--hp-ink);
  border-radius: 12px;
  color: var(--hp-ink) !important;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 5px 6px 0 rgba(0, 0, 0, 0.08);
}

.hp-tour__callout i {
  color: var(--hp-primary);
}

.hp-tour__callout--a {
  top: 8%;
  left: -8%;
}

.hp-tour__callout--b {
  bottom: 10%;
  right: -6%;
}

@media screen and (max-width: 767px) {
  .hp-tour__callout {
    display: none;
  }
}

/* ==========================================================================
   Testimonial wall — static grid, no auto-scroll
   ========================================================================== */
.hp-wall {
  background: var(--hp-bg);
}

.hp-wall__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media screen and (max-width: 991px) {
  .hp-wall__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .hp-wall__grid {
    grid-template-columns: 1fr;
  }
}

.hp-quote {
  background: var(--hp-card-solid);
  border: 1px solid var(--hp-border);
  border-radius: 14px;
  padding: 26px;
}

.hp-quote__mark {
  color: rgba(0, 122, 109, 0.22);
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
}

.hp-quote p {
  color: var(--hp-ink) !important;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 96px;
}

.hp-quote__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hp-quote__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hp-primary), var(--hp-accent));
  object-fit: cover;
  flex-shrink: 0;
}

.hp-quote__author strong {
  display: block;
  font-size: 13.5px;
  color: var(--hp-ink);
}

.hp-quote__author small {
  color: var(--hp-ink-dim) !important;
  font-size: 12px;
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.hp-pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  color: var(--hp-ink) !important;
  font-weight: 600;
  font-size: 14px;
}

.hp-pricing__toggle em {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: var(--hp-primary) !important;
  font-weight: 700;
}

.hp-pricing .pricing-card {
  position: relative;
  background: var(--hp-card-solid) !important;
  border: 1px solid var(--hp-border) !important;
  border-radius: 24px !important;
  box-shadow: var(--hp-shadow) !important;
  padding: 8px !important;
  transition: transform 0.4s var(--hp-ease), box-shadow 0.4s var(--hp-ease) !important;
}

.hp-pricing .pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hp-shadow-lg) !important;
}

.hp-pricing .pricing-card.popular {
  background:
    linear-gradient(150deg, #ffffff 0%, #ffffff 60%, #eefaf1 100%) !important;
  border: 2px solid var(--hp-primary) !important;
  box-shadow: var(--hp-shadow-lg) !important;
  transform: scale(1.03);
}

.hp-pricing .pricing-card.popular:hover {
  transform: scale(1.03) translateY(-6px);
}

.hp-pricing .pricing-card.popular::before {
  content: "Most Popular";
  position: absolute;
  inset: auto auto auto 50%;
  top: -13px;
  right: auto;
  bottom: auto;
  left: 50%;
  width: max-content;
  height: auto;
  transform: translateX(-50%);
  background: var(--hp-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 1;
  animation: none;
  z-index: 2;
}

.hp-pricing .pricing-card__top {
  padding: 20px 20px 0 !important;
}

.hp-pricing .pricing-card__title {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: var(--hp-ink) !important;
}

.hp-pricing .pricing-card__desc {
  color: var(--hp-ink-dim) !important;
  font-size: 13.5px !important;
}

.hp-pricing .pricing-card__number {
  padding: 4px 20px 20px !important;
  font-weight: 800 !important;
  color: var(--hp-ink) !important;
}

.hp-pricing .pricing-list {
  background: #fafcfb;
  border-radius: 18px;
  margin: 0 8px 8px !important;
  padding: 6px 14px !important;
}

.hp-pricing .pricing-card.popular .pricing-list {
  background: rgba(255, 255, 255, 0.6);
}

.hp-pricing .pricing-list__item {
  border-bottom-color: var(--hp-border) !important;
  color: var(--hp-ink) !important;
  font-size: 13.5px !important;
}

.hp-pricing .pricing-list__item-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #dcf5e4 !important;
  color: var(--hp-primary) !important;
}

.hp-pricing .pricing-card.popular .pricing-list__item-icon {
  background: #dcf5e4 !important;
  color: var(--hp-primary) !important;
}

.hp-pricing .pricing-card.popular .pricing-list__item-icon i {
  color: var(--hp-primary) !important;
}

.hp-pricing .pricing-card__btn {
  padding: 8px 12px 16px !important;
}

.hp-pricing .pricing-card__btn .btn {
  border-radius: 12px !important;
  font-weight: 700 !important;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.hp-faq {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

@media screen and (max-width: 767px) {
  .hp-faq {
    grid-template-columns: 1fr;
  }
}

.hp-faq__item {
  background: var(--hp-card-solid);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-sm);
  overflow: hidden;
  align-self: start;
}

.hp-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  color: var(--hp-ink) !important;
  cursor: pointer;
}

.hp-faq__q i {
  flex-shrink: 0;
  transition: transform 0.3s var(--hp-ease);
  color: var(--hp-primary);
}

.hp-faq__item.is-open .hp-faq__q i {
  transform: rotate(45deg);
}

.hp-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--hp-ease);
}

.hp-faq__a p {
  padding: 0 20px 18px;
  color: var(--hp-ink-dim) !important;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Tabbed FAQ (category pills + panels) */
.hp-faq-tabs__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hp-faq-tabs__btn {
  padding: 10px 22px;
  border-radius: var(--hp-radius-pill);
  border: 1px solid var(--hp-border);
  background: var(--hp-card-solid);
  color: var(--hp-ink-dim) !important;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s var(--hp-ease), color 0.3s var(--hp-ease), border-color 0.3s var(--hp-ease);
}

.hp-faq-tabs__btn:hover {
  border-color: rgba(0, 122, 109, 0.3);
}

.hp-faq-tabs__btn.is-active {
  background: var(--hp-primary);
  border-color: var(--hp-primary);
  color: #fff !important;
}

.hp-faq-tabs__panel {
  display: none;
}

.hp-faq-tabs__panel.is-active {
  display: grid;
}

/* ==========================================================================
   Features page — alternating showcase rows
   ========================================================================== */
.hp-feat-rows {
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.hp-feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hp-feat-row.is-reverse .hp-feat-row__visual {
  order: -1;
}

@media screen and (max-width: 900px) {
  .hp-feat-row {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hp-feat-row.is-reverse .hp-feat-row__visual {
    order: 0;
  }
}

.hp-feat-row__copy h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--hp-ink) !important;
  margin: 16px 0 14px;
  line-height: 1.25;
}

.hp-feat-row__copy > p {
  color: var(--hp-ink-dim) !important;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 22px;
}

.hp-feat-row__visual .hp-tour__frame {
  transform: rotate(-1.5deg);
}

.hp-feat-row.is-reverse .hp-tour__frame {
  transform: rotate(1.5deg);
}

/* ==========================================================================
   Closing CTA
   ========================================================================== */
.hp-cta {
  position: relative;
  background: var(--hp-bg-2);
  padding: 110px 0;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--hp-border);
}

.hp-cta__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.14), transparent 65%);
  filter: blur(40px);
}

.hp-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.hp-cta h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--hp-ink) !important;
  -webkit-text-fill-color: var(--hp-ink) !important;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hp-cta p {
  color: var(--hp-ink-dim) !important;
  font-size: 17px;
  margin-bottom: 36px;
}

.hp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
