/* =============================================
   HOME PAGE — SpinesTech
   Pure vanilla CSS, no frameworks
   Compacted ~20% against the previous version and
   tied to the shared spacing scale in main.css
   ============================================= */

/* ─── HERO ─── */
.home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  padding-block: clamp(5.5rem, 10vw, 7rem) clamp(3rem, 6vw, 4.5rem);
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(160deg, #071a2c 0%, #0a2e1a 40%, #071a2c 100%);
  z-index: 0;
}

/* CSS grid overlay */
.home-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.home-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  will-change: transform;
}
.home-hero__glow--1 {
  width: 340px; height: 340px;
  background: rgba(3, 109, 54, 0.25);
  top: 40px; right: 40px;
  animation: heroGlowFloat 8s ease-in-out infinite;
}
.home-hero__glow--2 {
  width: 240px; height: 240px;
  background: rgba(0, 133, 255, 0.12);
  bottom: 40px; left: 10%;
  animation: heroGlowFloat 10s ease-in-out infinite reverse;
}
@keyframes heroGlowFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,26,44,0.3) 0%, rgba(7,26,44,0.55) 60%, rgba(7,26,44,0.85) 100%);
  z-index: 1;
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.home-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(3, 109, 54, 0.2);
  border: 1px solid rgba(3, 109, 54, 0.35);
  color: #80d996;
  font-size: 0.8rem;
  font-weight: 700;
  margin-block-end: 1.5rem;
}
.home-hero__badge .material-symbols-outlined { font-size: 1rem; }

.home-hero__title {
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-block-end: 1.25rem;
}

.home-hero__subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  max-width: 640px;
  margin-inline: auto;
  margin-block-end: 1rem;
}

.home-hero__quote {
  position: relative;
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 560px;
  margin-inline: auto;
  margin-block-end: 2rem;
  padding-block-start: 1.1rem;
}
.home-hero__quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2px;
  background: #036d36;
  border-radius: 2px;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-block-end: 2.25rem;
}

.home-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.home-hero__btn--primary {
  background: #036d36;
  color: #fff;
}
.home-hero__btn--primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(3,109,54,0.4);
}
.home-hero__btn--ghost {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}
.home-hero__btn--ghost:hover {
  background: rgba(255,255,255,0.12);
}

.home-hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.home-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 0.65rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: #80d996;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease;
  cursor: default;
}
.home-hero__chip:hover { background: rgba(255,255,255,0.1); }
.home-hero__chip .material-symbols-outlined { font-size: 1rem; }

/* ─── SHARED SECTION HELPERS ───
   Uses main.css's --space-xl (clamp(3.5rem,7vw,6rem)) instead of a
   locally hardcoded clamp so this page stays in sync with the rest
   of the site's rhythm automatically. */
.hs-section {
  padding-block: var(--space-xl, clamp(3rem, 6vw, 5rem));
}
.hs-section--white   { background: #fff; }
.hs-section--light   { background: #f3f4f8; }
.hs-section--muted   { background: #e8ecf5; }
.hs-section--dark    {
  position: relative;
  overflow: hidden;
  background: #0b1c30;
  color: #fff;
}
.hs-section--dark__glow {
  position: absolute;
  top: 0; right: 0;
  width: 33%;
  height: 100%;
  background: rgba(3,109,54,0.05);
  filter: blur(120px);
  pointer-events: none;
}

.hs-header {
  margin-block-end: var(--space-lg, clamp(2rem, 4vw, 3rem));
}
.hs-header--center {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  margin-block-end: var(--space-lg, clamp(2rem, 4vw, 3rem));
}

.hs-title {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 800;
  color: #0b1c30;
  line-height: 1.2;
  margin-block-end: 0.65rem;
}
.hs-title--light { color: #fff; }

.hs-subtitle {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: #44474c;
  line-height: 1.75;
  max-width: 38rem;
}
.hs-subtitle--light { color: rgba(255,255,255,0.65); }
.hs-header--center .hs-subtitle { margin-inline: auto; }

/* ─── GRID LAYOUTS ─── */
.hs-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .hs-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .hs-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .hs-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .hs-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ─── CAPABILITIES CARDS ─── */
.hs-cap-card {
  padding: 1.5rem;
  background: #f3f4f8;
  border-radius: 1.25rem;
  border: 1px solid rgba(196,198,205,0.15);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.hs-cap-card:hover {
  background: #fff;
  box-shadow: 0 12px 32px rgba(11,28,48,0.09);
  transform: translateY(-3px);
}
.hs-cap-card__icon {
  font-size: 2rem;
  color: #036d36;
  display: block;
  margin-block-end: 1rem;
}
.hs-cap-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: #0b1c30;
  margin-block-end: 0.5rem;
}
.hs-cap-card__desc {
  font-size: 0.83rem;
  color: #44474c;
  line-height: 1.65;
}

/* ─── CASE STUDIES ───
   نسخة مبسطة/بريميوم: بدون ألوان مختلفة لكل كارد (لا علاقة للون
   بهوية الصفحة اللي بيفتحها)، حجم أصغر ومتناسق مع باقي كروت
   الصفحة (hs-cap-card / hs-industry-card). لون واحد ثابت من
   البراند (#036d36) بدل var(--accent) اللي كانت بتتغير لكل كارد.
   - رقم صغير أنيق فوق الصورة بدل الرقم الشبحي الكبير القديم
   - تاجز محايدة رمادية بدل تاجز ملونة لكل كارد
   - هدوء أكتر في الهوفر: رفعة بسيطة + شادو، من غير جلو ملون
   - scroll-reveal لسه شغال زي ما هو عبر .hs-reveal (JS في sections.php)
*/
.hs-cases {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.hs-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hs-reveal.is-visible { opacity: 1; transform: none; }
.hs-cases .hs-reveal:nth-child(1) { transition-delay: 0s; }
.hs-cases .hs-reveal:nth-child(2) { transition-delay: 0.1s; }
.hs-cases .hs-reveal:nth-child(3) { transition-delay: 0.2s; }

.hs-case {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(196,198,205,0.16);
  box-shadow: 0 1px 2px rgba(11,28,48,0.04);
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}
.hs-case:hover {
  box-shadow: 0 20px 44px rgba(11,28,48,0.12);
  transform: translateY(-4px);
  border-color: rgba(3,109,54,0.28);
}

@media (min-width: 960px) {
  .hs-case {
    grid-template-columns: 0.95fr 1fr;
    align-items: stretch;
  }
  .hs-case--end .hs-case__media { order: 2; }
  .hs-case--end .hs-case__body  { order: 1; }
}

.hs-case__media {
  position: relative;
  aspect-ratio: 16 / 11;
  min-height: 200px;
  max-height: 320px;
  overflow: hidden;
  background: #0b1c30;
}
.hs-case__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hs-case:hover .hs-case__media img { transform: scale(1.04); }

.hs-case__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,15,26,0.5) 0%, rgba(7,15,26,0.04) 40%, transparent 60%);
  z-index: 1;
}

/* رقم صغير أنيق فوق الصورة بدل الرقم الشبحي الكبير القديم */
.hs-case__index {
  position: absolute;
  z-index: 2;
  top: 1rem;
  inset-inline-start: 1rem;
  padding: 0.32rem 0.7rem;
  border-radius: 9999px;
  background: rgba(11,28,48,0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hs-case__media-badge {
  position: absolute;
  bottom: 1rem;
  inset-inline-start: 1rem;
  z-index: 2;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.94);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #0b1c30;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.hs-case__body {
  position: relative;
  z-index: 1;
  padding: clamp(1.4rem, 2.4vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
}
.hs-case__sector {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #036d36;
}
.hs-case__sector::before {
  content: '';
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #036d36;
  flex-shrink: 0;
}
.hs-case__title {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 800;
  color: #0b1c30;
  line-height: 1.3;
}
.hs-case__desc {
  font-size: 0.86rem;
  color: #44474c;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hs-case__tags-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #9a9da3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-block-start: 0.1rem;
}
.hs-case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.hs-case__tag {
  padding: 0.32rem 0.7rem;
  background: #f3f4f8;
  border: 1px solid rgba(196,198,205,0.35);
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #44474c;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.hs-case:hover .hs-case__tag {
  border-color: rgba(3,109,54,0.3);
  color: #036d36;
}

.hs-case__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  margin-block-start: 0.3rem;
  font-size: 0.86rem;
  font-weight: 800;
  color: #0b1c30;
  text-decoration: none;
}
.hs-case__btn-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #036d36;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hs-case__btn-circle .material-symbols-outlined { font-size: 1.05rem; }
.hs-case__btn:hover .hs-case__btn-circle { transform: translateX(4px); }
[dir="rtl"] .hs-case__btn:hover .hs-case__btn-circle { transform: translateX(-4px); }

/* ─── MOBILE APP CARDS ─── */
.hs-app-card {
  padding: 1.5rem;
  background: #f3f4f8;
  border-radius: 1.5rem;
  border: 1px solid rgba(196,198,205,0.12);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 6px 20px rgba(11,28,48,0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.hs-app-card:hover {
  box-shadow: 0 14px 34px rgba(11,28,48,0.09);
  transform: translateY(-3px);
}

.hs-app-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-block-end: 0.4rem;
}
.hs-app-card__icon-wrap {
  width: 3rem; height: 3rem;
  background: #fff;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(11,28,48,0.08);
}
.hs-app-card__icon-wrap .material-symbols-outlined {
  font-size: 1.5rem;
  color: #036d36;
}
.hs-app-card__badge {
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.6rem;
  font-weight: 800;
}
.badge--green  { background: #dcfce7; color: #166534; }
.badge--orange { background: #ffedd5; color: #9a3412; }
.badge--gray   { background: #e2e8f0; color: #475569; }

.hs-app-card__title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0b1c30;
}
.hs-app-card__role {
  font-size: 0.72rem;
  font-weight: 700;
  color: #036d36;
}
.hs-app-card__desc {
  font-size: 0.78rem;
  color: #44474c;
  line-height: 1.65;
  flex: 1;
}
.hs-app-card__footer {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #74777d;
  margin-block-start: auto;
}
.hs-app-card__footer .material-symbols-outlined { font-size: 0.95rem; color: #036d36; }

/* ─── INDUSTRY CARDS ─── */
.hs-industry-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(196,198,205,0.12);
  box-shadow: 0 6px 20px rgba(11,28,48,0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.hs-industry-card:hover {
  box-shadow: 0 16px 40px rgba(11,28,48,0.1);
  transform: translateY(-3px);
}
.hs-industry-card__icon-wrap {
  width: 2.6rem; height: 2.6rem;
  background: #99f3ae22;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-end: 1rem;
}
.hs-industry-card__icon-wrap .material-symbols-outlined {
  font-size: 1.3rem;
  color: #036d36;
}
.hs-industry-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: #0b1c30;
  margin-block-end: 0.4rem;
}
.hs-industry-card__desc {
  font-size: 0.83rem;
  color: #44474c;
  line-height: 1.65;
}

/* ─── WHY CARDS ─── */
.hs-why-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .hs-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hs-why-grid { grid-template-columns: repeat(4, 1fr); } }

.hs-why-card {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: #f3f4f8;
  border: 1px solid rgba(196,198,205,0.2);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.hs-why-card:hover {
  border-color: rgba(3,109,54,0.4);
  box-shadow: 0 8px 22px rgba(3,109,54,0.07);
}
@media (min-width: 1024px) {
  .hs-why-card--wide { grid-column: span 2; }
}

.hs-why-card__icon {
  font-size: 1.9rem;
  color: #036d36;
  display: block;
  margin-block-end: 0.85rem;
}
.hs-why-card__title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0b1c30;
  margin-block-end: 0.4rem;
}
.hs-why-card__desc {
  font-size: 0.83rem;
  color: #44474c;
  line-height: 1.65;
}

/* ─── ENGINEERING CARDS ─── */
.hs-eng-card {
  padding: 1.75rem;
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s ease;
}
.hs-eng-card:hover { background: rgba(255,255,255,0.09); }
.hs-eng-card__num {
  font-size: 0.98rem;
  font-weight: 800;
  color: #80d996;
  margin-block-end: 0.6rem;
}
.hs-eng-card__desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ─── PROCESS STEPS ─── */
.hs-process {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  position: relative;
}

@media (min-width: 640px) { .hs-process { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) {
  .hs-process {
    grid-template-columns: repeat(6, 1fr);
  }
  .hs-process::before {
    content: '';
    position: absolute;
    top: 1.25rem;
    inset-inline-start: 8%;
    inset-inline-end: 8%;
    height: 2px;
    background: repeating-linear-gradient(to right, #c4c6cd 0, #c4c6cd 10px, transparent 10px, transparent 20px);
    z-index: 0;
  }
}

.hs-process__step {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hs-process__num {
  width: 2.6rem; height: 2.6rem;
  background: #036d36;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.92rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.hs-process__title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0b1c30;
}
.hs-process__desc {
  font-size: 0.74rem;
  color: #44474c;
  line-height: 1.55;
}

/* ─── PARTNERSHIP CARDS ─── */
.hs-partners {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .hs-partners { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .hs-partners { grid-template-columns: repeat(5, 1fr); } }

.hs-partner-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 4px 14px rgba(11,28,48,0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.hs-partner-card:hover {
  box-shadow: 0 10px 24px rgba(11,28,48,0.09);
  transform: translateY(-2px);
}
.hs-partner-card .material-symbols-outlined {
  font-size: 1.75rem;
  color: #036d36;
}
.hs-partner-card__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0b1c30;
  line-height: 1.35;
}

/* ─── DISCLAIMER ─── */
.hs-disclaimer {
  padding-block: 1.5rem;
  background: #f3f4f8;
  border-top: 1px solid rgba(196,198,205,0.2);
}
.hs-disclaimer p {
  font-size: 0.75rem;
  color: rgba(11,28,48,0.5);
  text-align: center;
  line-height: 1.65;
  max-width: 52rem;
  margin-inline: auto;
}

/* ─── FINAL CTA ─── */
.hs-cta {
  position: relative;
  overflow: hidden;
  background: #036d36;
  padding-block: var(--space-2xl, clamp(4rem, 8vw, 6.5rem));
}
.hs-cta__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hs-cta__glow--1 {
  width: 420px; height: 420px;
  background: rgba(255,255,255,0.12);
  top: -100px; right: -100px;
}
.hs-cta__glow--2 {
  width: 420px; height: 420px;
  background: rgba(153,243,174,0.1);
  bottom: -100px; left: -100px;
}

.hs-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}
.hs-cta__title {
  font-size: clamp(1.5rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  max-width: 40rem;
}
.hs-cta__desc {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  color: #9cf6b0;
  line-height: 1.75;
  max-width: 44rem;
  font-weight: 500;
}
.hs-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}
.hs-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.1rem;
  border-radius: 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.hs-cta__btn--primary {
  background: #99f3ae;
  color: #003d1c;
}
.hs-cta__btn--primary:hover { transform: scale(1.04); }
.hs-cta__btn--ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}
.hs-cta__btn--ghost:hover { background: rgba(255,255,255,0.18); }

.hs-cta__proof {
  margin-block-start: 2.25rem;
  padding-block-start: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  gap: 1rem;
  justify-items: center;
  width: 100%;
}
.hs-cta__proof-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}
.hs-cta__proof-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.hs-cta__proof-item {
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(6px);
}

/* ─── RESPONSIVE TWEAKS ─── */
@media (max-width: 639px) {
  .home-hero__actions { flex-direction: column; }
  .home-hero__btn { justify-content: center; }
  .hs-cta__actions { flex-direction: column; align-items: center; }
  .hs-cta__btn { width: 100%; justify-content: center; }
}