/* B-Techspires home — layout inspired by modern SaaS landing; colors from site :root */

.page-home {
  font-family: "Poppins", system-ui, sans-serif;
  --hl-radius: 20px;
  --hl-radius-sm: 14px;
  --hl-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  --hl-shadow-sm: 0 4px 20px rgba(15, 23, 42, 0.06);
  --hl-wash: #eff6ff;
  --hl-wash-2: #dbeafe;
}

.page-home .container {
  max-width: 1160px;
}

/* ——— Header ——— */
.page-home header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.page-home nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
}

.page-home .logo-mark {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5px;
  box-sizing: border-box;
}

.page-home .logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.page-home nav ul {
  gap: 1.75rem;
}

.page-home .nav-right {
  gap: 14px;
  align-items: center;
}

.page-home .nav-right .sign-btn {
  background: transparent !important;
  color: var(--text) !important;
  padding: 10px 14px;
  box-shadow: none;
  border: none;
}

.page-home .nav-right .sign-btn:hover {
  color: var(--accent) !important;
  transform: none;
}

.page-home .nav-right .cta-btn {
  border-radius: 999px;
  padding: 11px 22px;
}

.page-home .mobile-cta .cta-btn,
.page-home .mobile-signin-cta .sign-btn {
  border-radius: 999px;
}

/* ——— Hero (split + Gemini mockup, floating tiles, orbit) ——— */
.page-home .hero.hl-hero-v2 {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(0.75rem, 4vw, 1.5rem) 0;
  margin-top: 0;
  background: linear-gradient(165deg, #f8fafc 0%, #f1f5f9 38%, #eef2ff 100%);
  color: var(--text);
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}

.page-home .hero.hl-hero-v2::before {
  content: "";
  position: absolute;
  inset: -35% -15% auto -15%;
  height: 75%;
  background: radial-gradient(ellipse 70% 50% at 75% 15%, rgba(37, 99, 235, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 45% at 12% 55%, rgba(56, 189, 248, 0.12), transparent 50%);
  pointer-events: none;
}

.page-home .hl-hero-v2-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(min(260px, 100%), 1.05fr);
  gap: clamp(1.25rem, 3.5vw, 3rem);
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.page-home .hl-hero-v2-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 2.8vw + 1.1rem, 2.75rem);
  line-height: 1.12;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.025em;
}

.page-home .hl-hero-v2-title-line {
  display: block;
}

.page-home .hl-hero-v2-title-accent {
  background: linear-gradient(90deg, #2563eb, #4f46e5, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-home .hl-hero-v2-copy .tagline {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  text-transform: none;
  letter-spacing: 0;
}

.page-home .hl-hero-v2-copy .desc {
  font-size: clamp(0.94rem, 0.35vw + 0.88rem, 1.05rem);
  line-height: 1.65;
  color: #475569;
  max-width: 36rem;
  margin-bottom: 1.35rem;
}

.page-home .hl-hero-v2-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}

.page-home .hl-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.page-home .hl-hero-btn--primary {
  background: #0f172a;
  color: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.22);
}

.page-home .hl-hero-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.28);
}

.page-home .hl-hero-btn--ghost {
  background: #fff;
  color: #0f172a;
  border: 2px solid #0f172a;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.page-home .hl-hero-btn--ghost:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.page-home .hl-hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1.75rem;
}

.page-home .hl-hero-trust-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-home .hl-hero-trust-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-home .hl-hero-trust-icon {
  font-size: 1.4rem;
  color: #475569;
  opacity: 0.88;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.page-home .hl-hero-trust-icon:hover {
  color: var(--accent);
  opacity: 1;
}

.page-home .hl-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 520px;
}

.page-home .hl-stat-pill {
  background: var(--card-bg);
  border-radius: var(--hl-radius-sm);
  padding: 14px 16px;
  box-shadow: var(--hl-shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
}

.page-home .hl-stat-pill strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}

.page-home .hl-stat-pill span {
  font-size: 0.8rem;
  color: var(--muted);
}

.page-home .hl-hero-v2-visual {
  position: relative;
  min-height: max(300px, min(440px, 52vw));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding-inline: clamp(0, 2vw, 0.75rem);
}

.page-home .hl-hero-v2-visual-bg {
  position: absolute;
  inset: -4% -8% 8% -4%;
  background-image: url("../images/Gemini_Generated_Image_bjj2y7bjj2y7bjj2.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  filter: saturate(0.9);
  border-radius: 1.25rem;
  pointer-events: none;
}

.page-home .hl-hero-v2-orbit {
  position: absolute;
  left: 50%;
  top: 54%;
  width: min(108%, 500px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(56, 189, 248, 0.38);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) inset, 0 0 48px rgba(37, 99, 235, 0.1);
}

.page-home .hl-hero-v2-glow {
  position: absolute;
  left: 48%;
  bottom: 6%;
  width: 65%;
  height: 30%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.4), transparent 72%);
  filter: blur(22px);
  pointer-events: none;
  z-index: 1;
}

.page-home .hl-hero-v2-devices {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(580px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(15, 23, 42, 0.18));
}

.page-home .hl-hero-v2-floats {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.page-home .hl-hero-tile {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  width: 4.7rem;
  padding: 0.4rem 0.3rem;
  border-radius: 0.65rem;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(148, 163, 184, 0.28);
  font-size: 0.58rem;
  font-weight: 800;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  animation: hl-hero-tile-float 4.8s ease-in-out infinite;
}

.page-home .hl-hero-tile i {
  font-size: 1.05rem;
  color: var(--accent);
}

.page-home .hl-hero-tile--1 {
  left: 0;
  top: 4%;
  animation-delay: 0s;
}

.page-home .hl-hero-tile--2 {
  left: 6%;
  top: 40%;
  animation-delay: 0.35s;
}

.page-home .hl-hero-tile--3 {
  left: -2%;
  bottom: 16%;
  animation-delay: 0.7s;
}

.page-home .hl-hero-tile--4 {
  right: 0;
  top: 8%;
  animation-delay: 0.2s;
}

.page-home .hl-hero-tile--5 {
  right: -2%;
  top: 42%;
  animation-delay: 0.55s;
}

.page-home .hl-hero-tile--6 {
  right: 4%;
  bottom: 12%;
  animation-delay: 0.9s;
}

@keyframes hl-hero-tile-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hl-hero-tile {
    animation: none;
  }
}

@media (max-width: 1200px) {
  .page-home .hl-hero-v2-grid {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 0.92fr);
    gap: clamp(1rem, 3vw, 2rem);
  }

  .page-home .hl-hero-v2-visual {
    min-height: max(280px, min(400px, 48vw));
  }

  .page-home .hl-hero-tile {
    width: 4.25rem;
    font-size: 0.52rem;
    padding: 0.35rem 0.25rem;
  }

  .page-home .hl-hero-tile i {
    font-size: 0.95rem;
  }
}

/* Hero: stack before full 992px layout break (avoids squeezed two-column tablet) */
@media (max-width: 900px) {
  .page-home .hl-hero-v2-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-home .hl-hero-v2-visual {
    order: -1;
    min-height: clamp(200px, 48vw, 320px);
    max-width: min(26rem, 100%);
    margin: 0 auto;
    padding-inline: 0;
  }

  .page-home .hl-hero-v2-floats {
    display: none;
  }

  .page-home .hl-hero-v2-copy {
    max-width: 32rem;
    margin: 0 auto;
    width: 100%;
  }

  .page-home .hl-hero-v2-ctas {
    flex-direction: column;
    align-items: stretch;
    max-width: 22rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .page-home .hl-hero-btn {
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
  }

  .page-home .hl-hero-trust {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .page-home .hl-hero-trust-label {
    display: block;
    width: 100%;
  }

  .page-home .hero-text .desc,
  .page-home .hl-hero-v2-desc {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Logo / trust strip — infinite marquee */
.page-home .hl-strip {
  margin-top: 3rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
}

.page-home .hl-strip-mask {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.page-home .hl-strip-track {
  display: flex;
  width: max-content;
  animation: hl-strip-marquee 28s linear infinite;
}

.page-home .hl-strip:hover .hl-strip-track {
  animation-play-state: paused;
}

.page-home .hl-strip-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2rem;
  padding-right: 2.5rem;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.page-home .hl-strip-inner > span:not(.hl-strip-sep) {
  opacity: 0.55;
  filter: grayscale(1);
  white-space: nowrap;
}

.page-home .hl-strip-sep {
  opacity: 0.35;
  user-select: none;
}

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

@media (prefers-reduced-motion: reduce) {
  .page-home .hl-strip-track {
    animation: none;
    margin: 0 auto;
    width: max-content;
  }

  .page-home .hl-strip-inner[aria-hidden="true"] {
    display: none;
  }

  .page-home .hl-strip-mask {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* ——— Section shell ——— */
.page-home .hl-section {
  padding: 4.5rem 0;
}

.page-home .hl-section.hl-alt {
  background: linear-gradient(180deg, var(--hl-wash) 0%, #fff 100%);
}

.page-home .hl-section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
  text-align: center;
}

.page-home .hl-section-title.hl-left {
  text-align: left;
}

.page-home .hl-section-lead {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

.page-home .hl-section-lead.hl-left {
  text-align: left;
  margin-left: 0;
}

/* ——— Process v2 (diagram + blue path) ——— */
.page-home .hl-section.hl-process-section {
  background: linear-gradient(165deg, #f0f7ff 0%, #fafbff 42%, #fff 100%);
  padding-top: 0;
}

.page-home .hl-process-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 560px);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding-top: clamp(1rem, 2.5vw, 1.75rem);
}

.page-home .hl-process-v2-intro {
  max-width: 34rem;
}

.page-home .hl-process-v2-title {
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.page-home .hl-process-v2-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.page-home .hl-process-v2-extra {
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}

.page-home .hl-process-v2-extra strong {
  color: var(--accent);
}

.page-home .hl-process-v2-cta {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 26px;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
}

.page-home .hl-process-v2-cta i {
  font-size: 0.82em;
  opacity: 0.95;
}

.page-home .hl-process-v2-canvas {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 460 / 400;
  margin-left: auto;
  justify-self: end;
  isolation: isolate;
}

.page-home .hl-process-v2-rings {
  position: absolute;
  inset: 2% 2% 4% 2%;
  pointer-events: none;
  z-index: 0;
}

.page-home .hl-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  aspect-ratio: 1;
  border: 1px solid rgba(37, 99, 235, 0.14);
  width: 96%;
  transform: translate(-50%, -50%);
  animation: hl-ring-breathe 5s ease-in-out infinite;
}

.page-home .hl-ring--2 {
  width: 78%;
  opacity: 0.9;
  animation-delay: -1.6s;
}

.page-home .hl-ring--3 {
  width: 60%;
  opacity: 0.86;
  animation-delay: -3.2s;
}

.page-home .hl-ring--4 {
  width: 42%;
  opacity: 0.8;
  animation-delay: -4.8s;
}

@keyframes hl-ring-breathe {
  0%,
  100% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1.02);
  }
}

.page-home .hl-process-v2-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.page-home .hl-process-v2-path {
  stroke: url(#hlProcessPathGrad);
  stroke-width: 13;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 32 40;
  animation: hl-process-path-flow 2.8s linear infinite;
}

.page-home .hl-process-v2-path--glow {
  stroke: rgba(37, 99, 235, 0.32);
  stroke-width: 24;
  stroke-dasharray: 32 40;
  animation: hl-process-path-flow 2.8s linear infinite;
  filter: blur(6px);
}

@keyframes hl-process-path-flow {
  to {
    stroke-dashoffset: -80;
  }
}

.page-home .hl-process-v2-badges {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.page-home .hl-p-badge {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(37, 99, 235, 0.35);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--accent);
  transform: translate(-50%, -50%);
}

.page-home .hl-p-badge .fa-html5 {
  color: #e34f26;
}
.page-home .hl-p-badge .fa-css3-alt {
  color: #1572b6;
}
.page-home .hl-p-badge .fa-js {
  color: #f7df1e;
}
.page-home .hl-p-badge .fa-react {
  color: #61dafb;
}

.page-home .hl-p-badge--1 {
  left: 74%;
  top: 22%;
}

.page-home .hl-p-badge--2 {
  left: 91%;
  top: 52%;
}

.page-home .hl-p-badge--3 {
  left: 48%;
  top: 78%;
}

.page-home .hl-p-badge--4 {
  left: 20%;
  top: 46%;
  width: 40px;
  height: 40px;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.25);
  border-color: rgba(37, 99, 235, 0.45);
}

.page-home .hl-p-card {
  position: absolute;
  z-index: 4;
  width: min(204px, 42%);
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 55%, #f1f5f9 100%);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 20px;
  padding: 1rem 1.1rem 1.15rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.85) inset;
  text-align: center;
}

.page-home .hl-p-card-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.65rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #38bdf8, var(--accent));
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.page-home .hl-p-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.page-home .hl-p-card-desc {
  font-size: 0.78rem;
  line-height: 1.45;
  margin: 0;
  text-align: center;
}

.page-home .hl-p-card--top {
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
}

.page-home .hl-p-card--right {
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.page-home .hl-p-card--bottom {
  left: 8%;
  bottom: 10%;
}

.page-home .hl-path-node {
  filter: drop-shadow(0 2px 6px rgba(37, 99, 235, 0.25));
}

.page-home .hl-path-node--accent {
  filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.35));
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hl-process-v2-path,
  .page-home .hl-process-v2-path--glow {
    animation: none;
    stroke-dasharray: 2000;
    stroke-dashoffset: 0;
  }

  .page-home .hl-ring {
    animation: none;
  }
}

/* ——— Services (reseller-style: hero row + staggered step cards) ——— */
.page-home #services.hl-sv2-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 38%, #eef4ff 100%);
}

.page-home .hl-sv2-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.95fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.page-home .hl-sv2-title {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.page-home .hl-sv2-brand {
  display: inline;
  font-weight: 800;
  background: linear-gradient(105deg, #1d4ed8 0%, #2563eb 35%, #38bdf8 70%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-home .hl-sv2-subtitle {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.page-home .hl-sv2-lead {
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.page-home .hl-sv2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.page-home .hl-sv2-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.page-home .hl-sv2-btn--primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid transparent;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.35);
}

.page-home .hl-sv2-btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.page-home .hl-sv2-btn--outline {
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.page-home .hl-sv2-btn--outline:hover {
  background: var(--hl-wash);
  transform: translateY(-2px);
}

.page-home .hl-sv2-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 18px 36px rgba(37, 99, 235, 0.18));
}

.page-home .hl-sv2-svg {
  width: 100%;
  max-width: 340px;
  height: auto;
}

.page-home .hl-sv2-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 1.15rem;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.page-home .hl-sv2-step {
  position: relative;
  background: linear-gradient(165deg, #fbfdff 0%, #f0f7ff 55%, #e8f1fc 100%);
  border: 2px solid rgba(37, 99, 235, 0.45);
  border-radius: 14px;
  padding: 1.35rem 1.25rem 1.5rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .hl-sv2-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.14), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.page-home .hl-sv2-step:nth-child(1) {
  margin-top: 0;
}

.page-home .hl-sv2-step:nth-child(2) {
  margin-top: 1.35rem;
}

.page-home .hl-sv2-step:nth-child(3) {
  margin-top: 2.7rem;
}

.page-home .hl-sv2-step:nth-child(4) {
  margin-top: 4.05rem;
}

.page-home .hl-sv2-tape {
  position: absolute;
  top: -5px;
  right: 18px;
  width: 46px;
  height: 15px;
  border-radius: 2px;
  background: linear-gradient(90deg, #93c5fd, #3b82f6, #2563eb);
  transform: rotate(-12deg);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.18);
  z-index: 2;
  pointer-events: none;
}

.page-home .hl-sv2-curl {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34px;
  height: 34px;
  border-bottom-right-radius: 12px;
  background: linear-gradient(140deg, transparent 42%, rgba(255, 255, 255, 0.95) 45%, #dbeafe 52%, rgba(148, 163, 184, 0.35) 100%);
  box-shadow: -2px -2px 6px rgba(15, 23, 42, 0.06) inset;
  pointer-events: none;
  z-index: 1;
}

.page-home .hl-sv2-step-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.page-home .hl-sv2-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.55rem;
}

.page-home .hl-sv2-step h3 i {
  margin-right: 0.35rem;
  color: var(--accent);
  font-size: 0.95em;
  opacity: 0.9;
}

.page-home .hl-sv2-step .muted {
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .page-home .hl-sv2-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .hl-sv2-step:nth-child(2) {
    margin-top: 1rem;
  }

  .page-home .hl-sv2-step:nth-child(3) {
    margin-top: 0;
  }

  .page-home .hl-sv2-step:nth-child(4) {
    margin-top: 1rem;
    grid-column: 1 / -1;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 900px) {
  .page-home .hl-sv2-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-home .hl-sv2-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .page-home .hl-sv2-actions {
    justify-content: center;
  }

  .page-home .hl-sv2-visual {
    order: -1;
  }
}

@media (max-width: 560px) {
  .page-home .hl-sv2-steps {
    grid-template-columns: 1fr;
  }

  .page-home .hl-sv2-step:nth-child(2),
  .page-home .hl-sv2-step:nth-child(3),
  .page-home .hl-sv2-step:nth-child(4) {
    margin-top: 0;
    grid-column: auto;
    max-width: none;
  }
}

/* ——— Portfolio / Our Craft — 3D carousel ——— */
.page-home #portfolio.hl-craft-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 40%, #ffffff 100%);
}

.page-home .hl-craft-heading {
  text-align: center;
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.65rem;
  -webkit-text-fill-color: currentColor;
  background: none;
}

.page-home .hl-craft-heading .hl-accent {
  background: linear-gradient(90deg, #38bdf8, var(--accent), #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-home .hl-craft-lead {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  color: var(--muted);
  -webkit-text-fill-color: currentColor;
}

.page-home #portfolio.hl-craft-section .container > p.muted {
  color: var(--muted);
  -webkit-text-fill-color: currentColor;
}

.page-home .hl-craft-showcase {
  max-width: 1100px;
  margin: 0 auto;
}

.page-home .hl-craft-stage {
  width: 100%;
  perspective: 1100px;
  perspective-origin: 50% 48%;
  padding: 2.75rem 0 3.25rem;
}

.page-home .hl-craft-track {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(0.15rem, 0.8vw, 0.55rem);
  transform-style: preserve-3d;
}

.page-home .hl-craft-card {
  flex: 0 1 clamp(230px, 26vw, 300px);
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, filter 0.45s ease;
  transform-origin: center center;
  will-change: transform;
}

/* Convex outward fan: left rotateY(-), right rotateY(+); Z + slight X offset for wing bulge */
.page-home .hl-craft-card[data-pos="left"] {
  transform: rotateY(-28deg) translateZ(28px) translateX(4px) scale(0.9);
  opacity: 0.95;
  filter: brightness(0.98);
  z-index: 2;
}

.page-home .hl-craft-card[data-pos="center"] {
  transform: rotateY(0deg) translateZ(76px) scale(1.09);
  opacity: 1;
  z-index: 4;
}

.page-home .hl-craft-card[data-pos="right"] {
  transform: rotateY(28deg) translateZ(28px) translateX(-4px) scale(0.9);
  opacity: 0.95;
  filter: brightness(0.98);
  z-index: 2;
}

.page-home .hl-craft-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  text-align: left;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: #f1f5fb;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 24px;
  overflow: hidden;
  padding: 0.7rem 0.7rem 1.35rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.page-home .hl-craft-card-link:hover {
  box-shadow: 0 22px 48px rgba(37, 99, 235, 0.12), 0 0 0 1px rgba(255, 255, 255, 1) inset;
  border-color: rgba(37, 99, 235, 0.28);
}

.page-home .hl-craft-card[data-pos="center"] .hl-craft-card-link:hover {
  transform: translateY(-3px);
}

.page-home .hl-craft-img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
  border-radius: 16px;
  margin-bottom: 1.05rem;
}

.page-home .hl-craft-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.page-home .hl-craft-card-link:hover .hl-craft-img-wrap img {
  transform: scale(1.04);
}

.page-home .hl-craft-card-link h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0.35rem 0.45rem;
}

.page-home .hl-craft-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0.35rem 0.85rem;
  flex: 1;
}

.page-home .hl-craft-cta {
  display: inline-block;
  margin: 0 0.35rem 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}

.page-home .hl-craft-card-link:hover .hl-craft-cta {
  text-decoration: underline;
}

.page-home .hl-craft-section .port-btn button {
  border-radius: 999px;
}

@media (max-width: 860px) {
  .page-home .hl-craft-stage {
    perspective: none;
    padding: 0.5rem 0 1rem;
  }

  .page-home .hl-craft-track {
    flex-direction: column;
    align-items: center;
    transform-style: flat;
    gap: 1.25rem;
  }

  .page-home .hl-craft-card {
    flex: 1 1 auto;
    width: 100%;
    max-width: 400px;
  }

  .page-home .hl-craft-card[data-pos="left"],
  .page-home .hl-craft-card[data-pos="center"],
  .page-home .hl-craft-card[data-pos="right"] {
    transform: none;
    opacity: 1;
    filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hl-craft-stage {
    perspective: none;
  }

  .page-home .hl-craft-card {
    transition: none;
  }

  .page-home .hl-craft-card[data-pos="left"],
  .page-home .hl-craft-card[data-pos="center"],
  .page-home .hl-craft-card[data-pos="right"] {
    transform: none;
    opacity: 1;
    filter: none;
  }
}

/* ——— Pricing (split header / body cards, site blue theme) ——— */
.page-home #pricing.hl-pricing-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--hl-wash) 100%);
}

.page-home #pricing.hl-pricing-section h2 {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 2rem;
}

.page-home .hl-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  justify-items: center;
}

.page-home .hl-price-card {
  width: 100%;
  max-width: 20rem;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1), 0 2px 8px rgba(15, 23, 42, 0.06);
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .hl-price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(37, 99, 235, 0.15), 0 4px 12px rgba(15, 23, 42, 0.08);
}

.page-home .hl-price-card--featured {
  border: 2px solid rgba(37, 99, 235, 0.55);
  box-shadow: 0 14px 48px rgba(37, 99, 235, 0.22), 0 4px 14px rgba(15, 23, 42, 0.08);
  transform: scale(1.03);
}

.page-home .hl-price-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.page-home .hl-price-card-head {
  padding: 1.5rem;
  color: #fff;
  background: linear-gradient(120deg, #38bdf8 0%, #2563eb 45%, #4f46e5 100%);
}

.page-home .hl-price-name {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-home .hl-price-amount {
  margin-top: 1rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.15rem 0.35rem;
}

.page-home .hl-price-sum {
  font-size: clamp(1.85rem, 3.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.1;
}

.page-home .hl-price-period {
  margin-left: 0.15rem;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.88;
}

.page-home .hl-price-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: #fff;
}

.page-home .hl-price-blurb {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.page-home .hl-price-features {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  flex: 1;
}

.page-home .hl-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--muted);
}

.page-home .hl-price-features li:last-child {
  margin-bottom: 0;
}

.page-home .hl-price-check {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.12rem;
  color: var(--accent);
}

.page-home .hl-price-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  border: none;
  cursor: pointer;
  background: linear-gradient(120deg, #38bdf8 0%, #2563eb 50%, #4f46e5 100%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.page-home .hl-price-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* ——— Trust row — infinite marquee (mirrors hl-strip) ——— */
.page-home .hl-trust {
  padding: 3rem 0 2.25rem;
  text-align: center;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.page-home .hl-trust-intro {
  margin-bottom: 1.25rem;
}

.page-home .hl-trust h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--muted);
  margin: 0;
}

.page-home .hl-trust-mask {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.page-home .hl-trust-track {
  display: flex;
  width: max-content;
  animation: hl-trust-marquee 36s linear infinite;
}

.page-home .hl-trust:hover .hl-trust-track {
  animation-play-state: paused;
}

.page-home .hl-trust-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2.25rem;
  padding-right: 2.25rem;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: #94a3b8;
}

.page-home .hl-trust-inner > span:not(.hl-trust-sep) {
  white-space: nowrap;
}

.page-home .hl-trust-sep {
  opacity: 0.4;
  user-select: none;
}

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

@media (prefers-reduced-motion: reduce) {
  .page-home .hl-trust-track {
    animation: none;
    margin: 0 auto;
    width: max-content;
  }

  .page-home .hl-trust-inner[aria-hidden="true"] {
    display: none;
  }

  .page-home .hl-trust-mask {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* ——— About (light band, centered card) ——— */
.page-home #about {
  padding: 0;
  background: linear-gradient(180deg, #fff 0%, var(--hl-wash) 100%);
  color: var(--text);
  border-bottom: none;
}

.page-home #about .about-grid {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.page-home #about .about-text {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

/* About card: centered column */
.page-home #about .hl-about-card-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 1px;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.28), rgba(37, 99, 235, 0.22));
  box-shadow: 0 24px 48px rgba(37, 99, 235, 0.1);
}

.page-home #about .hl-about-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(2rem, 5vw, 2.75rem) clamp(1.25rem, 4vw, 2rem);
  border-radius: calc(1rem - 1px);
  background: linear-gradient(165deg, #f8fafc 0%, var(--hl-wash) 40%, #eff6ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.page-home #about .hl-about-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  font-size: 0.6875rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.page-home #about .hl-about-pill svg {
  flex-shrink: 0;
}

.page-home #about .hl-about-pill-text {
  font-weight: 600;
  background: linear-gradient(90deg, #38bdf8, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-home #about .hl-about-card-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 1rem 0 0;
  max-width: 100%;
  font-size: clamp(1.25rem, 2.4vw, 1.875rem);
  font-weight: 600;
  line-height: 1.25;
  color: #0f172a;
}

@media (min-width: 768px) {
  .page-home #about .hl-about-card-title {
    max-width: 100%;
  }
}

.page-home #about .hl-about-card-title-line {
  display: block;
}

.page-home #about .hl-about-card-title-accent {
  background: linear-gradient(90deg, #38bdf8, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-home #about .hl-about-card-title-rest {
  color: #334155;
  font-weight: 600;
  -webkit-text-fill-color: #334155;
}

.page-home #about .hl-about-card-lead {
  color: #64748b;
  margin: 1rem 0 0;
  max-width: 62ch;
  font-size: 0.875rem;
  line-height: 1.6;
}

.page-home #about .hl-about-card-lead strong {
  color: #475569;
  font-weight: 600;
}

/* Stats: small grid tiles (avoids global .stat / huge .counter clash) */
.page-home #about .hl-about-card-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  width: 100%;
  max-width: 100%;
  margin: 1.5rem 0 0;
  padding: 0;
}

@media (min-width: 480px) {
  .page-home #about .hl-about-card-stats {
    max-width: 100%;
    gap: 0.75rem;
  }
}

.page-home #about .hl-about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-width: 0;
  padding: 0.65rem 0.35rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.page-home #about .hl-about-stat-num.counter {
  display: block;
  margin: 0;
  padding: 0;
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--accent-dark);
  letter-spacing: -0.02em;
}

.page-home #about .hl-about-stat-label {
  font-size: 0.65rem;
  line-height: 1.25;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  max-width: 100%;
}

.page-home #about .hl-about-card-stats .plus {
  font-weight: 700;
}

.page-home #about .hl-about-card-btn {
  display: inline-block;
  margin-top: 1.35rem;
  padding: 0.65rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(120deg, #38bdf8 0%, var(--accent) 45%, var(--accent-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.28);
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.page-home #about .hl-about-card-btn:hover {
  opacity: 0.96;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.page-home #about .hl-about-card-btn:active {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .page-home #about .hl-about-card-btn {
    transition: opacity 0.2s ease;
  }

  .page-home #about .hl-about-card-btn:hover,
  .page-home #about .hl-about-card-btn:active {
    transform: none;
  }
}

/* ——— FAQ (flush under About: no stacked padding / border seam) ——— */
.page-home .hl-faq {
  padding: clamp(1.25rem, 3vw, 2rem) 0 4rem;
  background: linear-gradient(180deg, var(--hl-wash) 0%, #fff 45%);
  border-top: none;
}

.page-home .hl-faq-layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.page-home .hl-faq-image {
  width: min(100%, 22rem);
  border-radius: 0.9rem;
  height: auto;
  object-fit: cover;
  box-shadow: var(--hl-shadow-sm);
}

.page-home .hl-faq-content {
  flex: 1;
  min-width: 0;
  max-width: 40rem;
}

.page-home .hl-faq-kicker {
  color: #4f46e5;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
}

.page-home .hl-faq-title {
  margin: 0.35rem 0 0;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
}

.page-home .hl-faq-lead {
  margin: 0.65rem 0 1.2rem;
  color: #64748b;
  font-size: 0.92rem;
  max-width: 40ch;
}

.page-home .hl-faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0;
}

.page-home .hl-faq-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 0;
  color: var(--text);
  text-align: left;
}

.page-home .hl-faq-question {
  font-size: 1rem;
  font-weight: 500;
}

.page-home .hl-faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.page-home .hl-faq-answer {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 36rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.35s ease, padding-top 0.35s ease;
  padding-top: 0;
  margin: 0;
}

.page-home .hl-faq-item.is-open .hl-faq-answer {
  max-height: 16rem;
  opacity: 1;
  transform: translateY(0);
  padding-top: 0.85rem;
}

.page-home .hl-faq-item.is-open .hl-faq-icon {
  transform: rotate(180deg);
}

@media (max-width: 900px) {
  .page-home .hl-faq-layout {
    flex-direction: column;
    align-items: center;
  }

  .page-home .hl-faq-content {
    width: 100%;
    max-width: 42rem;
  }

  .page-home .hl-faq-lead {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hl-faq-icon,
  .page-home .hl-faq-answer {
    transition: none;
  }
}

/* ——— Testimonials (centered headline + card row) ——— */
.page-home #testimonials.hl-testi {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #fff 0%, var(--hl-wash) 100%);
}

.page-home #testimonials .container {
  max-width: 1160px;
}

.page-home .hl-testi-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-home .hl-testi-heading {
  max-width: 46.25rem;
  margin: 0 0 clamp(2.5rem, 6vw, 4.5rem);
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}

.page-home .hl-testi-heading-accent {
  color: #2563eb;
}

.page-home .hl-testi-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.page-home .hl-testi-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 17rem;
  width: 100%;
  padding: 2rem 0.75rem;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid rgba(203, 213, 225, 0.8);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  text-align: center;
}

.page-home .hl-testi-avatar-wrap {
  position: relative;
  margin-bottom: 1rem;
}

.page-home .hl-testi-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  object-fit: cover;
  display: block;
}

.page-home .hl-testi-badge {
  position: absolute;
  top: 0;
  right: -0.5rem;
}

.page-home .hl-testi-quote {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #64748b;
}

.page-home .hl-testi-quote p {
  margin: 0;
}

.page-home .hl-testi-name {
  margin: 1.25rem 0 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.page-home .hl-testi-role {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
}

/* ——— Brand marquee (below testimonials) ——— */
.page-home .hl-brand {
  padding: clamp(2rem, 4vw, 2.75rem) 1rem;
  background: #fff;
  border-top: 1px solid var(--border);
}

.page-home .hl-brand-shell {
  position: relative;
  overflow: hidden;
  max-width: 64rem;
  margin: 0 auto;
  user-select: none;
}

.page-home .hl-brand-mask {
  overflow: hidden;
  width: 100%;
}

.page-home .hl-brand-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: hl-brand-marquee 28s linear infinite;
}

.page-home .hl-brand:hover .hl-brand-track {
  animation-play-state: paused;
}

.page-home .hl-brand-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  flex-shrink: 0;
}

.page-home .hl-brand-logo {
  height: 1.75rem;
  width: auto;
  max-width: 6.5rem;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0 clamp(1rem, 2.4vw, 1.5rem);
  opacity: 0.88;
  filter: grayscale(0.15);
}

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

.page-home .hl-brand-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 5rem;
  pointer-events: none;
}

.page-home .hl-brand-fade--left {
  left: 0;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

.page-home .hl-brand-fade--right {
  right: 0;
  width: 5rem;
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}

@media (min-width: 768px) {
  .page-home .hl-brand-fade--right {
    width: 10rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hl-brand-track {
    animation: none;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  .page-home .hl-brand-row:nth-child(2) {
    display: none;
  }

  .page-home .hl-brand-logo {
    margin: 0.5rem clamp(0.75rem, 2vw, 1.25rem);
  }
}

/* ——— Subscription (edge-to-edge full width on home) ——— */
.page-home .subscription {
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: none;
  min-height: 0;
  display: block;
  background: var(--card-bg);
}

.page-home .subscription .container.subscription-container {
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
  border-radius: 0;
  border-left: none;
  border-right: none;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 3rem);
  background: linear-gradient(135deg, var(--hl-wash) 0%, #fff 50%, var(--hl-wash-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.page-home .subscription-container::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%232563eb' fill-opacity='0.07' d='M0 0h50v50H0zm50 50h50v50H50z'/%3E%3C/svg%3E");
  pointer-events: none;
}

.page-home .subscription-form {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-home .subscription-form h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
}

.page-home .newsletter-form {
  justify-content: center;
  flex-wrap: wrap;
}

.page-home .newsletter-form .cta {
  border-radius: 999px;
}

/* ——— Contact (split: form + full-height map, home only) ——— */
.page-home #contact.contact.hl-contact {
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: none;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
}

.page-home #contact .hl-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 1fr);
  align-items: stretch;
  min-height: min(720px, 88vh);
  width: 100%;
}

.page-home #contact .hl-contact-panel {
  padding: clamp(2.25rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 6vw, 4.5rem);
  max-width: 40rem;
}

.page-home #contact .hl-contact-title {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.15;
}

.page-home #contact .hl-contact-lead {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #64748b;
  max-width: 38rem;
}

.page-home #contact .hl-contact-quick {
  list-style: none;
  margin: 1.75rem 0 2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
}

.page-home #contact .hl-contact-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.page-home #contact .hl-contact-quick-link:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.page-home #contact .hl-contact-quick-link i {
  font-size: 1rem;
  opacity: 0.9;
}

.page-home #contact .hl-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.page-home #contact .hl-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.page-home #contact .hl-contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.page-home #contact .hl-contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
}

.page-home #contact .hl-contact-optional {
  font-weight: 500;
  color: #94a3b8;
}

.page-home #contact .hl-contact-form input,
.page-home #contact .hl-contact-form textarea,
.page-home #contact .hl-contact-form select {
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.85rem;
  font-size: 0.9375rem;
  font-family: inherit;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #fff;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-home #contact .hl-contact-form input::placeholder,
.page-home #contact .hl-contact-form textarea::placeholder {
  color: #94a3b8;
}

.page-home #contact .hl-contact-form input:focus,
.page-home #contact .hl-contact-form textarea:focus,
.page-home #contact .hl-contact-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.page-home #contact .hl-contact-phone {
  display: flex;
  gap: 0;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #fff;
}

.page-home #contact .hl-contact-phone:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.page-home #contact .hl-contact-phone-cc {
  flex: 0 0 auto;
  min-width: 7.5rem;
  max-width: 9.5rem;
  border: none;
  border-right: 1px solid #e2e8f0;
  border-radius: 0;
  padding: 0.7rem 0.5rem;
  font-size: 0.8125rem;
  background: #f8fafc;
  cursor: pointer;
}

.page-home #contact .hl-contact-phone input {
  border: none;
  border-radius: 0;
  flex: 1;
  min-width: 0;
  box-shadow: none;
}

.page-home #contact .hl-contact-phone input:focus {
  box-shadow: none;
}

.page-home #contact .hl-contact-services {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.page-home #contact .hl-contact-services legend {
  padding: 0;
  margin-bottom: 0.5rem;
}

.page-home #contact .hl-contact-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.page-home #contact .hl-contact-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
  cursor: pointer;
  user-select: none;
}

.page-home #contact .hl-contact-check input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--accent);
  cursor: pointer;
}

.page-home #contact .hl-contact-submit {
  margin-top: 0.35rem;
  width: 100%;
  padding: 0.95rem 1.25rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(120deg, #6366f1 0%, var(--accent) 45%, var(--accent-dark) 100%);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.page-home #contact .hl-contact-submit:hover {
  opacity: 0.96;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(79, 70, 229, 0.25);
}

.page-home #contact .hl-contact-map {
  position: relative;
  min-height: 360px;
  background: #e2e8f0;
}

.page-home #contact .hl-contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(0.94) saturate(0.85);
}

.page-home #contact .hl-contact-map-pin {
  position: absolute;
  left: 52%;
  top: 46%;
  transform: translate(-50%, -100%);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(15, 23, 42, 0.25));
}

@media (max-width: 900px) {
  .page-home #contact .hl-contact-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .page-home #contact .hl-contact-panel {
    max-width: none;
    padding-bottom: 2.5rem;
  }

  .page-home #contact .hl-contact-map {
    min-height: 240px;
    order: 1;
  }

  .page-home #contact .hl-contact-row {
    grid-template-columns: 1fr;
  }

  .page-home #contact .hl-contact-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home #contact .hl-contact-submit {
    transition: opacity 0.2s ease;
  }

  .page-home #contact .hl-contact-submit:hover {
    transform: none;
  }
}

/* ——— Footer ——— */
.page-home .footer {
  background: #0f172a;
  color: #94a3b8;
  padding-top: 3.5rem;
}

.page-home .footer-brand h2 {
  background: linear-gradient(90deg, #38bdf8, #60a5fa, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-home .footer-brand p {
  color: #94a3b8;
}

.page-home .footer-links h4,
.page-home .footer-newsletter h4 {
  color: #e2e8f0;
}

.page-home .footer-links ul li a {
  color: #94a3b8;
}

.page-home .footer-links ul li a:hover {
  color: #60a5fa;
}

.page-home .footer-form-inner input {
  background: #1e293b;
  border-color: #334155;
  color: #e2e8f0;
}

.page-home .footer-form-inner button {
  border-radius: 999px;
  background: var(--accent);
}

.page-home .footer-bottom {
  border-color: #1e293b;
}

.page-home .footer-bottom p {
  color: #64748b;
}

/* ——— Responsive ——— */
@media (max-width: 992px) {
  .page-home .hl-process-v2 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-home .hl-process-v2-intro {
    margin: 0 auto;
    max-width: 36rem;
  }

  .page-home .hl-process-v2-title,
  .page-home .hl-process-v2-lead {
    text-align: center;
  }

  .page-home .hl-process-v2-canvas {
    margin: 0 auto;
    justify-self: center;
    min-height: 0;
    order: -1;
    max-width: 400px;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 0.5rem;
  }

  .page-home .hl-process-v2-svg,
  .page-home .hl-process-v2-rings,
  .page-home .hl-process-v2-badges {
    display: none;
  }

  .page-home .hl-p-card {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-home .hl-process-v2-cta {
    margin-left: auto;
    margin-right: auto;
  }

  .page-home .hero-grid,
  .page-home .hl-hero-v2-grid {
    gap: clamp(1.25rem, 4vw, 2rem);
  }

  .page-home .hero.hl-hero-v2 {
    padding-top: clamp(1.5rem, 4vw, 2.75rem);
    padding-inline: clamp(0.5rem, 3vw, 1rem);
  }

  .page-home .hl-hero-v2-visual {
    min-height: clamp(220px, 52vw, 340px);
    max-width: min(28rem, 100%);
  }

  .page-home .hl-hero-v2-devices {
    max-width: min(100%, 26rem);
  }

  .page-home .hl-hero-v2-orbit {
    opacity: 0.45;
    width: min(96%, 360px);
  }

  .page-home .hl-hero-v2-visual-bg {
    border-radius: 1rem;
    inset: -2% -4% 4% -4%;
  }

  .page-home .hl-hero-stats {
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
  }

  .page-home .hl-strip {
    margin-top: clamp(1.5rem, 4vw, 2.5rem);
  }

  .page-home .hl-pricing-grid {
    grid-template-columns: 1fr;
  }

  .page-home .hl-price-card {
    max-width: 24rem;
  }

  .page-home .hl-price-card--featured {
    transform: none;
  }

  .page-home .hl-price-card--featured:hover {
    transform: translateY(-4px);
  }

}

@media (max-width: 600px) {
  .page-home .hl-hero-stats {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .page-home .hl-hero-v2-title {
    font-size: clamp(1.4rem, 6.5vw, 2.1rem);
  }

  .page-home .hl-stat-pill {
    padding: 12px 14px;
  }
}

@media (max-width: 380px) {
  .page-home .hl-hero-trust-logos {
    gap: 0.75rem;
  }

  .page-home .hl-hero-trust-icon {
    font-size: 1.25rem;
  }
}
