/* ==========================================================================
   Home "Aurora Light" design system  (hx- namespace)
   Fluid, responsive front-page styling. Scoped to front page only.
   Light-mode throughout; accent gradients provide the pop.
   ========================================================================== */

:root {
  --hx-bg: #f4f7fd;
  --hx-bg-2: #eef4ff;
  --hx-ink: #101b33;
  --hx-ink-dim: #55658a;
  --hx-light-bg: #f4f7fd;
  --hx-light-ink: #101b33;
  --hx-light-muted: #55658a;
  --hx-line: #e3e9f6;
  --hx-blue: #1f7fe0;
  --hx-blue-strong: #0b62c4;
  --hx-cyan: #12b6d8;
  --hx-amber: #ff9d3c;
  --hx-grad: linear-gradient(120deg, #2f9bff 0%, #17bfe6 55%, #46e6c4 110%);
  --hx-grad-warm: linear-gradient(120deg, #ff9d3c, #ff6f61);
  --hx-radius: 22px;
  --hx-radius-sm: 14px;
  --hx-shadow: 0 30px 80px -20px rgba(16, 27, 51, 0.22);
  --hx-shadow-soft: 0 18px 50px -18px rgba(16, 27, 51, 0.14);
  --hx-font-display: "Sora", "Poppins", sans-serif;
  --hx-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------- shells ---------- */
.hx-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hx-section {
  position: relative;
  padding: clamp(64px, 9vw, 110px) 0;
  overflow: hidden;
}

.hx-section--dark {
  background: var(--hx-bg-2);
  color: var(--hx-light-ink);
}

.hx-section--light {
  background: var(--hx-light-bg);
  color: var(--hx-light-ink);
}

.hx-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hx-blue-strong);
  background: rgba(31, 127, 224, 0.1);
  border: 1px solid rgba(31, 127, 224, 0.24);
}

.hx-head {
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 60px);
  text-align: center;
}

.hx-h2 {
  margin: 14px 0 12px;
  font-family: var(--hx-font-display);
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--hx-light-ink);
}

.hx-sub {
  margin: 0 auto;
  max-width: 640px;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.75;
  color: var(--hx-light-muted);
}

.hx-grad-text {
  background: var(--hx-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- buttons ---------- */
.hx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--hx-ease), box-shadow 0.25s var(--hx-ease);
}

.hx-btn--primary {
  color: #ffffff;
  background: var(--hx-grad);
  box-shadow: 0 16px 40px -12px rgba(23, 191, 230, 0.6);
}

.hx-btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 24px 50px -14px rgba(23, 191, 230, 0.7);
}

.hx-btn--ghost {
  color: var(--hx-light-ink);
  background: #fff;
  border: 1.5px solid var(--hx-line);
}

.hx-btn--ghost:hover {
  transform: translateY(-3px);
  border-color: var(--hx-blue);
  color: var(--hx-blue);
}

/* ---------- reveal animation ---------- */
.hx-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--hx-ease), transform 0.8s var(--hx-ease);
  transition-delay: var(--d, 0ms);
}

.hx-reveal.is-in {
  opacity: 1;
  transform: none;
}

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

/* ==========================================================================
   HERO
   ========================================================================== */
.hx-hero {
  position: relative;
  padding: clamp(70px, 10vw, 130px) 0 0;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(23, 191, 230, 0.16), transparent 60%),
    radial-gradient(700px 480px at -10% 40%, rgba(47, 155, 255, 0.14), transparent 60%),
    linear-gradient(180deg, #eaf2fd, var(--hx-bg));
  color: var(--hx-light-ink);
  overflow: hidden;
}

.hx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(70, 110, 180, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 110, 180, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, #000 30%, transparent 75%);
  pointer-events: none;
}

.hx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  animation: hx-drift 14s ease-in-out infinite alternate;
}

.hx-orb--1 { width: 380px; height: 380px; top: -120px; right: 6%; background: rgba(23, 191, 230, 0.4); }
.hx-orb--2 { width: 300px; height: 300px; bottom: 10%; left: -90px; background: rgba(47, 155, 255, 0.32); animation-delay: -5s; }
.hx-orb--3 { width: 200px; height: 200px; top: 40%; right: 30%; background: rgba(70, 230, 196, 0.24); animation-delay: -9s; }

@keyframes hx-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(40px, 30px, 0) scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
  .hx-orb { animation: none; }
}

.hx-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hx-hero__copy .hx-kicker { margin-bottom: 22px; }

.hx-display {
  margin: 0 0 20px;
  font-family: var(--hx-font-display);
  font-size: clamp(38px, 5.6vw, 66px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--hx-light-ink);
}

.hx-hero__lead {
  max-width: 540px;
  margin: 0 0 30px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.8;
  color: var(--hx-light-muted);
}

.hx-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.hx-hero__note {
  max-width: 240px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--hx-light-muted);
}

.hx-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 34px;
  font-size: 13.5px;
  color: var(--hx-light-muted);
}

.hx-stars {
  font-size: 15px;
  letter-spacing: 2px;
  background: var(--hx-grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hx-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hx-stat {
  padding: 16px 16px 14px;
  border-radius: var(--hx-radius-sm);
  background: #ffffff;
  border: 1px solid var(--hx-line);
  box-shadow: var(--hx-shadow-soft);
  transition: transform 0.3s var(--hx-ease), border-color 0.3s;
}

.hx-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 127, 224, 0.45);
}

.hx-stat i {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 10px;
  font-size: 17px;
  color: #ffffff;
  background: var(--hx-grad);
}

.hx-stat strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--hx-light-ink);
}

.hx-stat span {
  display: block;
  margin-top: 4px;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--hx-light-muted);
}

/* hero visual */
.hx-hero__visual {
  position: relative;
  perspective: 1200px;
}

.hx-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: var(--hx-shadow), 0 0 0 1px rgba(70, 110, 180, 0.1);
  transition: transform 0.4s var(--hx-ease);
}

.hx-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(23, 191, 230, 0.12), transparent 55%);
  pointer-events: none;
}

.hx-frame img {
  display: block;
  width: 100%;
  height: clamp(360px, 42vw, 540px);
  object-fit: cover;
}

.hx-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--hx-light-ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--hx-line);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px -18px rgba(16, 27, 51, 0.3);
  animation: hx-bob 6s ease-in-out infinite;
}

.hx-float i {
  font-size: 19px;
  color: var(--hx-cyan);
}

.hx-float--a { top: 8%; left: -26px; animation-delay: -1s; }
.hx-float--b { bottom: 10%; right: -18px; animation-delay: -3.5s; }

@keyframes hx-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
  .hx-float { animation: none; }
}

/* ---------- ticker ---------- */
.hx-ticker {
  margin-top: clamp(56px, 7vw, 90px);
  padding: 18px 0;
  border-top: 1px solid var(--hx-line);
  border-bottom: 1px solid var(--hx-line);
  background: rgba(255, 255, 255, 0.55);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hx-ticker__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: hx-marquee 30s linear infinite;
}

.hx-ticker span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hx-light-muted);
  white-space: nowrap;
}

.hx-ticker span i {
  color: var(--hx-cyan);
  font-size: 16px;
}

@keyframes hx-marquee {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .hx-ticker__track { animation: none; }
}

/* ==========================================================================
   SERVICES  (bento)
   ========================================================================== */
.hx-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hx-card {
  position: relative;
  padding: 28px 26px;
  border-radius: var(--hx-radius);
  background: #ffffff;
  border: 1px solid var(--hx-line);
  box-shadow: var(--hx-shadow-soft);
  transition: transform 0.35s var(--hx-ease), box-shadow 0.35s var(--hx-ease);
  overflow: hidden;
}

.hx-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--hx-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--hx-ease);
}

.hx-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -22px rgba(16, 27, 51, 0.28);
}

.hx-card:hover::before { transform: scaleX(1); }

.hx-card i.hx-card__icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  font-size: 25px;
  color: #0b62c4;
  background: linear-gradient(135deg, #e3f2ff, #d4fbff);
}

.hx-card h3 {
  margin: 0 0 6px;
  font-family: var(--hx-font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--hx-light-ink);
}

.hx-card .hx-card__sub {
  margin: 0 0 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--hx-blue);
}

.hx-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--hx-light-muted);
}

/* offers */
.hx-offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.hx-offer {
  padding: 30px 28px;
  border-radius: var(--hx-radius);
  color: var(--hx-light-ink);
  background:
    radial-gradient(420px 200px at 100% 0%, rgba(23, 191, 230, 0.12), transparent 65%),
    linear-gradient(120deg, #f0f6ff, #eefcff);
  border: 1px solid #d9e6fb;
}

.hx-offer h3 {
  margin: 0 0 8px;
  font-family: var(--hx-font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--hx-light-ink);
}

.hx-offer > p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--hx-light-muted);
}

.hx-acc__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(31, 127, 224, 0.35);
  background: rgba(31, 127, 224, 0.08);
  color: var(--hx-blue-strong);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s;
}

.hx-acc__toggle:hover { background: rgba(31, 127, 224, 0.16); }

.hx-acc__toggle .hx-acc__plus { transition: transform 0.3s var(--hx-ease); }
.hx-acc.is-open .hx-acc__plus { transform: rotate(45deg); }

.hx-acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--hx-ease);
}

.hx-acc.is-open .hx-acc__panel { grid-template-rows: 1fr; }

.hx-acc__inner { overflow: hidden; }

.hx-offer ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hx-offer ul li {
  position: relative;
  padding-left: 28px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #3f4f70;
}

.hx-offer ul li::before {
  content: "\eb7b"; /* remixicon check */
  font-family: "remixicon";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--hx-cyan);
  font-size: 15px;
}

.hx-offer__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.hx-offer__cta .hx-btn { min-height: 46px; padding: 0 22px; font-size: 13.5px; }

.hx-offer__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--hx-blue-strong);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* comparison table */
.hx-table-wrap {
  margin-top: 26px;
  border-radius: var(--hx-radius);
  border: 1px solid var(--hx-line);
  background: #fff;
  box-shadow: var(--hx-shadow-soft);
  overflow-x: auto;
}

.hx-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 13.5px;
}

.hx-table th {
  padding: 16px 20px;
  text-align: left;
  font-family: var(--hx-font-display);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hx-light-ink);
  background: var(--hx-bg-2);
}

.hx-table td {
  padding: 16px 20px;
  color: var(--hx-light-muted);
  border-top: 1px solid #edf1f9;
  line-height: 1.6;
}

.hx-table td:first-child {
  font-weight: 700;
  color: var(--hx-light-ink);
}

.hx-table tbody tr { transition: background 0.2s; }
.hx-table tbody tr:hover { background: #f6faff; }

/* ==========================================================================
   HOW IT WORKS  (timeline)
   ========================================================================== */
.hx-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  counter-reset: hxstep;
}

.hx-steps::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(31, 127, 224, 0.45), rgba(23, 191, 230, 0.45), transparent);
}

.hx-step {
  position: relative;
  padding: 30px 26px;
  border-radius: var(--hx-radius);
  background: #ffffff;
  border: 1px solid var(--hx-line);
  box-shadow: var(--hx-shadow-soft);
  transition: transform 0.35s var(--hx-ease), border-color 0.35s;
}

.hx-step:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 127, 224, 0.4);
}

.hx-step__num {
  position: absolute;
  top: 12px;
  right: 18px;
  font-family: var(--hx-font-display);
  font-size: 74px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(70, 110, 180, 0.18);
  pointer-events: none;
}

.hx-step__icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 18px;
  font-size: 26px;
  color: #ffffff;
  background: var(--hx-grad);
  box-shadow: 0 14px 34px -12px rgba(23, 191, 230, 0.6);
}

.hx-step h3 {
  margin: 0 0 10px;
  font-family: var(--hx-font-display);
  font-size: 18.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--hx-light-ink);
}

.hx-step > p {
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--hx-light-muted);
}

.hx-step ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.hx-step ul li {
  position: relative;
  padding-left: 24px;
  font-size: 12.5px;
  line-height: 1.55;
  color: #4a5a7a;
}

.hx-step ul li::before {
  content: "\ea6e"; /* remixicon arrow-right-s */
  font-family: "remixicon";
  position: absolute;
  left: 0;
  color: var(--hx-cyan);
}

.hx-how__footer {
  margin-top: clamp(36px, 5vw, 56px);
  text-align: center;
}

.hx-how__footer p {
  max-width: 620px;
  margin: 0 auto 24px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--hx-light-muted);
}

/* ==========================================================================
   REVIEWS  (offset grid)
   ========================================================================== */
.hx-reviews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.hx-review {
  position: relative;
  padding: 30px 28px;
  border-radius: var(--hx-radius);
  background: #fff;
  border: 1px solid var(--hx-line);
  box-shadow: var(--hx-shadow-soft);
  transition: transform 0.35s var(--hx-ease), box-shadow 0.35s;
}

.hx-review:nth-child(even) { transform: translateY(28px); }

.hx-review:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -22px rgba(16, 27, 51, 0.26);
}

.hx-review:nth-child(even):hover { transform: translateY(22px); }

.hx-review__quote {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 54px;
  line-height: 1;
  font-family: Georgia, serif;
  color: #dbe8fb;
  pointer-events: none;
}

.hx-review .hx-stars { font-size: 13px; }

.hx-review__source {
  display: inline-block;
  margin: 12px 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hx-blue);
}

.hx-review p {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.75;
  color: #33415e;
}

.hx-review__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hx-review__chips span {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: var(--hx-light-muted);
  background: #eef3fb;
}

/* CTA band */
.hx-band {
  position: relative;
  margin-top: clamp(52px, 6vw, 76px);
  padding: clamp(34px, 5vw, 56px);
  border-radius: 28px;
  text-align: center;
  color: var(--hx-light-ink);
  background:
    radial-gradient(600px 300px at 15% 0%, rgba(47, 155, 255, 0.16), transparent 60%),
    radial-gradient(500px 280px at 90% 100%, rgba(23, 191, 230, 0.14), transparent 60%),
    linear-gradient(120deg, #eef4ff, #e9fbff);
  border: 1px solid #d9e6fb;
  overflow: hidden;
}

.hx-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(70, 110, 180, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 110, 180, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
  pointer-events: none;
}

.hx-band h3 {
  position: relative;
  margin: 0 0 12px;
  font-family: var(--hx-font-display);
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--hx-light-ink);
}

.hx-band p {
  position: relative;
  max-width: 620px;
  margin: 0 auto 26px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--hx-light-muted);
}

.hx-band .hx-btn { position: relative; }

/* ==========================================================================
   TEAM
   ========================================================================== */
.hx-team {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.hx-member {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 28px 26px;
  border-radius: var(--hx-radius);
  background: #fff;
  border: 1px solid var(--hx-line);
  box-shadow: var(--hx-shadow-soft);
  transition: transform 0.35s var(--hx-ease), box-shadow 0.35s;
}

.hx-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -22px rgba(16, 27, 51, 0.26);
}

.hx-member__avatar {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  font-size: 27px;
  color: #fff;
  background: linear-gradient(135deg, #2f9bff, #0b3f8f);
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(47, 155, 255, 0.4);
}

.hx-member h3 {
  margin: 2px 0 4px;
  font-family: var(--hx-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--hx-light-ink);
}

.hx-member .hx-member__meta {
  display: block;
  margin-bottom: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--hx-blue);
}

.hx-member p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--hx-light-muted);
}

.hx-collab {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 20px;
  padding: 26px 28px;
  border-radius: var(--hx-radius);
  background: linear-gradient(120deg, #eaf4ff, #e8fbff);
  border: 1px solid #d4e6fb;
}

.hx-collab__left { max-width: 460px; }

.hx-collab__left strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--hx-font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--hx-light-ink);
}

.hx-collab__left p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--hx-light-muted);
}

.hx-collab__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hx-collab__pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: #0b3f8f;
  background: #fff;
  border: 1px solid #d4e6fb;
  box-shadow: 0 6px 16px -8px rgba(16, 27, 51, 0.16);
}

.hx-collab__pills i { color: var(--hx-blue); font-size: 16px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.hx-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  align-items: start;
}

.hx-faq {
  border-radius: var(--hx-radius-sm);
  background: #fff;
  border: 1px solid var(--hx-line);
  box-shadow: 0 8px 22px -14px rgba(16, 27, 51, 0.18);
  overflow: hidden;
  transition: border-color 0.25s;
}

.hx-faq.is-open { border-color: rgba(31, 127, 224, 0.5); }

.hx-faq > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--hx-light-ink);
  text-align: left;
  cursor: pointer;
}

.hx-faq > button i {
  flex: none;
  font-size: 19px;
  color: var(--hx-blue);
  transition: transform 0.3s var(--hx-ease);
}

.hx-faq.is-open > button i { transform: rotate(45deg); }

.hx-faq .hx-acc__panel p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--hx-light-muted);
}

.hx-faq__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.hx-faq__cta .hx-btn--ghost { color: var(--hx-light-ink); }

/* ==========================================================================
   TRUST  (finale)
   ========================================================================== */
.hx-trust__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.hx-trust__copy h2 { text-align: left; margin-top: 14px; }

.hx-trust__copy p {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--hx-light-muted);
}

.hx-trust__cards {
  display: grid;
  gap: 14px;
}

.hx-trust__card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-radius: var(--hx-radius-sm);
  background: #ffffff;
  border: 1px solid var(--hx-line);
  box-shadow: var(--hx-shadow-soft);
  transition: transform 0.3s var(--hx-ease), border-color 0.3s;
}

.hx-trust__card:hover {
  transform: translateX(8px);
  border-color: rgba(31, 127, 224, 0.45);
}

.hx-trust__card i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 23px;
  color: #ffffff;
  background: var(--hx-grad);
}

.hx-trust__card strong {
  display: block;
  font-family: var(--hx-font-display);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--hx-light-ink);
}

.hx-trust__card span {
  display: block;
  margin-top: 3px;
  font-size: 12.5px;
  color: var(--hx-light-muted);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .hx-hero__grid { grid-template-columns: 1fr 1fr; }
  .hx-bento { grid-template-columns: repeat(2, 1fr); }
  .hx-steps { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .hx-steps::before { display: none; }
}

@media (max-width: 860px) {
  .hx-hero__grid { grid-template-columns: 1fr; }
  .hx-hero__copy { text-align: center; }
  .hx-hero__lead { margin-inline: auto; }
  .hx-hero__cta, .hx-rating { justify-content: center; }
  .hx-hero__note { text-align: left; }
  .hx-hero__visual { max-width: 560px; margin-inline: auto; }
  .hx-float--a { left: 8px; }
  .hx-float--b { right: 8px; }
  .hx-offers { grid-template-columns: 1fr; }
  .hx-reviews { grid-template-columns: 1fr; }
  .hx-review:nth-child(even),
  .hx-review:nth-child(even):hover { transform: none; }
  .hx-review:hover { transform: translateY(-6px); }
  .hx-team { grid-template-columns: 1fr; }
  .hx-faq-grid { grid-template-columns: 1fr; }
  .hx-trust__grid { grid-template-columns: 1fr; }
  .hx-trust__copy h2 { text-align: center; }
  .hx-trust__copy { text-align: center; }
}

@media (max-width: 600px) {
  .hx-container { width: calc(100% - 32px); }
  .hx-hero__stats { grid-template-columns: 1fr; }
  .hx-bento { grid-template-columns: 1fr; }
  .hx-hero__cta { flex-direction: column; }
  .hx-hero__note { text-align: center; max-width: none; }
  .hx-btn { width: 100%; max-width: 360px; }
  .hx-offer__cta .hx-btn { width: auto; }
  .hx-member { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .hx-collab { flex-direction: column; align-items: flex-start; }
  .hx-frame img { height: 300px; }
  .hx-float { padding: 10px 12px; font-size: 11px; }
}
