﻿/* =============================================
   FREE KIT PREMIUM - Swiper, glass modal, AOS
   Extends funnel.css / custom.css
   ============================================= */

/* ── Hero parallax hint ── */
.kit-landing-hero {
  position: relative;
  overflow: hidden;
}
.kit-hero-parallax-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,201,167,.18) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  pointer-events: none;
  animation: kitFloatGlow 8s ease-in-out infinite;
}
@keyframes kitFloatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-24px, 16px) scale(1.06); }
}
.kit-hero-visual {
  will-change: transform;
  transition: transform 0.4s ease-out;
}

/* ── Swiper product slider ── */
.kit-slider-section {
  padding: 0 0 72px;
  overflow: hidden;
}
.kit-swiper-wrap {
  position: relative;
  padding: 12px 48px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.kit-product-swiper {
  overflow: visible !important;
  padding: 24px 0 8px;
}
.kit-product-swiper .swiper-slide {
  width: min(94%, 960px);
  height: auto;
  transition:
    transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1),
    filter 0.55s ease,
    opacity 0.55s ease;
  transform: scale(0.88);
  filter: blur(3px);
  opacity: 0.5;
}
.kit-product-swiper .swiper-slide-active {
  transform: scale(1.05);
  filter: blur(0);
  opacity: 1;
  z-index: 2;
}
.kit-product-swiper .swiper-slide-prev,
.kit-product-swiper .swiper-slide-next {
  transform: scale(0.92);
  filter: blur(2px);
  opacity: 0.65;
}
.kit-slide-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,201,167,.25);
  background: rgba(255,255,255,.04);
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.swiper-slide-active .kit-slide-card {
  border-color: rgba(0,201,167,.5);
  box-shadow: 0 32px 80px rgba(0,0,0,.55), 0 0 40px rgba(0,201,167,.12);
}
.kit-slide-media {
  position: relative;
  background: rgba(0,0,0,.25);
  overflow: hidden;
}
.kit-slide-media--full {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 8px;
  background: rgba(0,0,0,.35);
}
.kit-slide-media img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.kit-slide-media--full img {
  width: 100%;
  height: auto;
  max-height: min(72vh, 820px);
  object-fit: contain;
  object-position: center center;
}
.kit-hero-frame {
  overflow: visible;
}
.kit-hero-frame .kit-slide-media--full {
  min-height: 0;
  padding: 10px;
  background: rgba(0,0,0,.2);
  border-radius: 12px;
}
.kit-hero-frame .kit-slide-media--full img {
  max-height: min(68vh, 540px);
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}
.kit-slide-media.is-loaded img {
  opacity: 1;
}
.kit-slide-shimmer {
  position: absolute;
  inset: 0;
  min-height: 280px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.04) 0%,
    rgba(255,255,255,.12) 50%,
    rgba(255,255,255,.04) 100%
  );
  background-size: 220% 100%;
  animation: kitShimmerSlide 1.35s ease-in-out infinite;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.kit-slide-media.is-loaded .kit-slide-shimmer {
  opacity: 0;
  pointer-events: none;
}
@keyframes kitShimmerSlide {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}
.kit-slide-caption {
  padding: 16px 20px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.35));
}
.kit-slide-caption strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.kit-slide-caption span {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.45;
}
.kit-product-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,.25);
  opacity: 1;
  transition: transform 0.25s, background 0.25s;
}
.kit-product-swiper .swiper-pagination-bullet-active {
  background: var(--teal);
  transform: scale(1.25);
}
.kit-swiper-btn {
  color: var(--teal) !important;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,201,167,.1) !important;
  border: 1px solid rgba(0,201,167,.3);
  transition: background 0.2s, transform 0.2s;
}
.kit-swiper-btn::after {
  font-size: 16px !important;
  font-weight: 700;
}
.kit-swiper-btn:hover {
  background: rgba(0,201,167,.2) !important;
  transform: scale(1.06);
}
.kit-slide-media.is-error img {
  opacity: 0.35;
}

/* ── Benefit cards hover lift ── */
.kit-benefit-card {
  transform: translateY(0);
  transition:
    border-color 0.3s,
    transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.35s ease;
}
.kit-benefit-card:hover {
  transform: translateY(-8px);
}

/* ── Glass download modal ── */
#kitDownloadModal.kit-glass-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 999;
  padding: 20px;
  background: rgba(4, 10, 18, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s;
}
#kitDownloadModal.kit-glass-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#kitDownloadModal .kit-glass-modal {
  background: rgba(12, 24, 39, 0.82);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 201, 167, 0.08) inset;
  border-radius: 20px;
  transform: scale(0.9) translateY(12px);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1),
    opacity 0.35s ease;
}
#kitDownloadModal.active .kit-glass-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.kit-lead-success.is-visible {
  display: flex !important;
  animation: kitSuccessPop 0.5s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}
@keyframes kitSuccessPop {
  0% { opacity: 0; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1); }
}
.kit-lead-success .ec-success-icon {
  animation: kitCheckBounce 0.6s cubic-bezier(0.34, 1.5, 0.64, 1) 0.15s both;
}
@keyframes kitCheckBounce {
  0% { transform: scale(0); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.kit-cta-band-inner {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.kit-cta-band-inner:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(0, 201, 167, 0.08);
}

/* Loading button text */
.js-kit-lead-submit.is-loading .btn-kit-loading span:last-child {
  min-width: 9.5em;
}

@media (max-width: 768px) {
  .kit-swiper-wrap {
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 40px;
  }
  .kit-product-swiper .swiper-slide {
    width: 92%;
  }
  .kit-swiper-btn {
    display: none;
  }
}

/* ── Hero grid: enforce equal 50/50 columns, prevent child overflow ── */
.kit-landing-hero .kit-hero-grid {
  grid-template-columns: 1fr 1fr;
}
.kit-landing-hero .kit-hero-copy,
.kit-landing-hero .kit-hero-visual {
  min-width: 0;
}

/* ── Kit about / description section (full-width col-12) ── */
.kit-about-section {
  padding: 0 0 72px;
}

/* ── Two-column description ── */
.kit-about-desc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: start;
}
.kit-about-left,
.kit-about-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Column heading */
.kit-about-col-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

/* Intro paragraph */
.kit-about-intro {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.78;
  margin: 0;
}

/* Feature list */
.kit-feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kit-feat-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 13px 15px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  transition: border-color .2s, background .2s;
}
.kit-feat-list li:hover {
  border-color: rgba(0,201,167,.3);
  background: rgba(0,201,167,.04);
}
.kit-feat-list li strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.kit-feat-list li span {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.6;
}

/* Security block */
.kit-sec-block {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 20px 22px;
}
.kit-sec-block h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.kit-sec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kit-sec-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.kit-sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
}
.kit-sec-list li > span:last-child {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.55;
}
.kit-sec-list code {
  font-size: 11px;
  color: var(--teal);
  background: rgba(0,201,167,.1);
  padding: 1px 5px;
  border-radius: 3px;
  font-family: 'IBM Plex Sans', monospace;
}

.kit-about-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

/* Full-width includes grid */
.kit-about-features-full {
  margin-top: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.kit-about-features-full h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.kit-about-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* Architecture block */
.kit-arch-block {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 20px 22px;
}
.kit-arch-block h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.kit-arch-block > p {
  font-size: 12px;
  color: var(--grey);
  margin-bottom: 14px;
  line-height: 1.55;
}
.kit-arch-steps {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kit-arch-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(0,201,167,.06);
  border: 1px solid rgba(0,201,167,.15);
  border-radius: 8px;
  padding: 9px 12px;
}
.kit-arch-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  min-width: 72px;
  flex-shrink: 0;
  letter-spacing: .02em;
  padding-top: 1px;
}
.kit-arch-desc {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.5;
}
.kit-arch-arrow {
  font-size: 14px;
  color: rgba(0,201,167,.4);
  text-align: center;
  line-height: 1;
  padding: 2px 0 2px 10px;
}

/* Key differentiator cards */
.kit-diff-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kit-diff-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .2s, background .2s;
}
.kit-diff-card:hover {
  border-color: rgba(0,201,167,.3);
  background: rgba(0,201,167,.04);
}
.kit-diff-icon {
  font-size: 20px;
  line-height: 1.3;
  flex-shrink: 0;
}
.kit-diff-card div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.kit-diff-card strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.kit-diff-card span {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.5;
}

/* Right: what's included */
.kit-about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-content: start;
}
.kit-about-features-head {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}
.kit-about-features-head h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.kit-about-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .2s, background .2s;
}
.kit-about-item:hover {
  border-color: rgba(0,201,167,.28);
  background: rgba(0,201,167,.04);
}
.kit-about-icon {
  font-size: 15px;
  line-height: 1.4;
  flex-shrink: 0;
}
.kit-about-item span:last-child {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.5;
}

/* ── Screenshot gallery slider (hero right side) ── */

/* frame is the relative anchor for the custom nav buttons */
.kit-gal-frame {
  position: relative;
  padding: 0 22px; /* creates space for the nav buttons to sit in */
}

/* clip wrapper - slides are contained here, never overflow */
.kit-gal-clip {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--teal-border);
  box-shadow: 0 20px 56px rgba(0,0,0,.45), 0 0 0 1px rgba(0,201,167,.08);
}

/* custom prev / next buttons - live inside .kit-gal-frame outside clip */
.kit-gal-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10,20,36,.88);
  border: 1px solid rgba(0,201,167,.45);
  color: var(--teal);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.45);
  padding: 0;
  font-family: inherit;
}
.kit-gal-prev { left: 0; }
.kit-gal-next { right: 0; }
.kit-gal-btn:hover {
  background: rgba(0,201,167,.18);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0,201,167,.2);
}

/* Dots */
.kit-gallery-owl .owl-dots {
  text-align: center;
  margin-top: 12px;
}
.kit-gallery-owl .owl-dot span {
  width: 7px !important;
  height: 7px !important;
  background: rgba(255,255,255,.18) !important;
  transition: background .22s, transform .22s !important;
}
.kit-gallery-owl .owl-dot.active span,
.kit-gallery-owl .owl-dot:hover span {
  background: var(--teal) !important;
  transform: scale(1.4) !important;
}

/* Slide content */
.kit-gal-slide {
  display: flex;
  flex-direction: column;
}
.kit-gal-link {
  display: block;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
}
.kit-gal-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--teal-border);
  background: rgba(0,0,0,.3);
  box-shadow: 0 20px 56px rgba(0,0,0,.45), 0 0 0 1px rgba(0,201,167,.08);
  transition: border-color .25s, box-shadow .25s;
  /* fixed height - every slide same size regardless of image aspect ratio */
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kit-gal-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform .4s ease;
}
.kit-gal-link:hover .kit-gal-img-wrap {
  border-color: rgba(0,201,167,.55);
  box-shadow: 0 24px 64px rgba(0,0,0,.55), 0 0 0 1px rgba(0,201,167,.2);
}
.kit-gal-link:hover .kit-gal-img-wrap img {
  transform: scale(1.02);
}

/* Zoom overlay */
.kit-gal-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .25s ease;
}
.kit-gal-link:hover .kit-gal-zoom {
  opacity: 1;
}
.kit-gal-zoom span {
  font-size: 12px;
  font-weight: 700;
  color: #052118;
  background: var(--teal);
  padding: 8px 18px;
  border-radius: 999px;
  letter-spacing: .02em;
  white-space: nowrap;
}

/* Caption */
.kit-gal-caption {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 18px 6px;
}
.kit-gal-caption strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.kit-gal-caption span {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.5;
}

/* Counter hint */
.kit-gal-hint {
  font-size: 11px;
  color: var(--grey);
  text-align: center;
  margin-top: 14px;
  opacity: .55;
  letter-spacing: .02em;
}

/* ── Inline download form section ── */
.kit-form-inline-section {
  padding: 0 0 80px;
  scroll-margin-top: 88px;
}
.kit-form-inline-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
  background: linear-gradient(135deg, rgba(0,201,167,.09) 0%, rgba(0,80,200,.06) 100%);
  border: 1px solid var(--teal-border);
  border-radius: 20px;
  padding: clamp(32px, 5vw, 56px);
  backdrop-filter: blur(12px);
}
.kit-form-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #b8f5e8;
  background: rgba(0,201,167,.12);
  border: 1px solid rgba(0,201,167,.3);
  border-radius: 999px;
  padding: 6px 14px;
  letter-spacing: .02em;
  width: fit-content;
}
.kit-form-inline-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.kit-form-inline-head h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
.kit-form-inline-head p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.68;
  margin: 0;
}
.kit-form-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.kit-form-checklist li {
  font-size: 13px;
  color: var(--grey);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
}
.kit-form-checklist li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.kit-form-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 4px;
}
.kit-form-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #00a8ff);
  color: #052118;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kit-form-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kit-form-author-info strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.kit-form-author-info span {
  font-size: 11px;
  color: var(--grey);
}
.kit-form-inline-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.kit-form-card {
  background: rgba(12,24,39,.7);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 28px 26px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 48px rgba(0,0,0,.35);
}
.kit-form-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  text-align: center;
}
.kit-form-card .ec-wrap {
  max-width: none;
}
.kit-form-demo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--grey);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: border-color .2s, color .2s, background .2s;
}
.kit-form-demo-btn:hover {
  border-color: rgba(0,201,167,.4);
  color: var(--teal);
  background: rgba(0,201,167,.05);
}

/* ── Stats bar ── */
.kit-stats-bar {
  padding: 0 0 56px;
}
.kit-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  overflow: hidden;
}
.kit-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 28px 16px;
  background: var(--card-bg);
  text-align: center;
  transition: background .25s;
}
.kit-stat-item:hover {
  background: rgba(0,201,167,.07);
}
.kit-stat-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
}
.kit-stat-label {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.4;
}

/* ── Steps section ── */
.kit-steps-section {
  padding: 0 0 64px;
}
.kit-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.kit-steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(33.33% - 10px);
  right: calc(33.33% - 10px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,201,167,.3) 30%, rgba(0,201,167,.3) 70%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.kit-step-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: border-color .25s, transform .3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow .3s ease;
}
.kit-step-card:hover {
  border-color: rgba(0,201,167,.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.4), 0 0 0 1px rgba(0,201,167,.12);
}
.kit-step-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--teal);
  opacity: .65;
  margin-bottom: 14px;
  display: block;
}
.kit-step-icon {
  font-size: 34px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.kit-step-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.kit-step-card p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.68;
  margin: 0;
}

/* ── Tech stack section ── */
.kit-stack-section {
  padding: 0 0 64px;
}
.kit-stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
}
.kit-stack-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.1);
  transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
  cursor: default;
}
.kit-stack-badge:hover {
  border-color: rgba(0,201,167,.4);
  background: rgba(0,201,167,.07);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

/* ── FAQ section ── */
.kit-faq-section {
  padding: 0 0 64px;
}
.kit-faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kit-faq-item {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.kit-faq-item[open] {
  border-color: rgba(0,201,167,.3);
  box-shadow: 0 0 0 1px rgba(0,201,167,.08);
}
.kit-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color .2s, background .2s;
}
.kit-faq-q::-webkit-details-marker { display: none; }
.kit-faq-q:hover {
  background: rgba(255,255,255,.025);
}
.kit-faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform .28s cubic-bezier(0.34, 1.4, 0.64, 1);
  line-height: 1;
  width: 22px;
  text-align: center;
}
.kit-faq-item[open] .kit-faq-q::after {
  transform: rotate(45deg);
}
.kit-faq-a {
  padding: 0 22px 20px;
  border-top: 1px solid rgba(255,255,255,.05);
  margin-top: -1px;
}
.kit-faq-a p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.75;
  margin: 14px 0 0;
}

@media (max-width: 1024px) {
  .kit-about-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Responsive: new sections ── */
@media (max-width: 768px) {
  .kit-hero-owl .kit-slide-media--full img {
    max-height: min(55vw, 280px);
  }
  .kit-about-desc {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .kit-about-features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .kit-gal-frame {
    padding: 0 16px;
  }
  .kit-gal-btn {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
  .kit-gal-img-wrap {
    height: 220px;
  }
  .kit-form-inline-box {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 20px;
  }
  .kit-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kit-steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .kit-steps-grid::before {
    display: none;
  }
  .kit-step-card {
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: start;
    padding: 20px;
  }
  .kit-step-num {
    grid-column: 1 / -1;
    margin-bottom: 6px;
  }
  .kit-step-icon {
    font-size: 28px;
    margin-bottom: 0;
    margin-top: 4px;
  }
  .kit-step-card h3, .kit-step-card p {
    text-align: left;
  }
  .kit-stack-grid {
    gap: 8px;
  }
  .kit-faq-q {
    padding: 16px 18px;
    font-size: 13px;
  }
  .kit-faq-a {
    padding: 0 18px 16px;
  }
}

/* ============================================================
   HERO SECTION — Responsive Polish
   1280–1399 | 1024–1279 | 768–1023 | <768
   ============================================================ */

/* ── 1280–1399px: slightly tighter gap, same 2-col ── */
@media (min-width: 1280px) and (max-width: 1399px) {
  .kit-landing-hero .kit-hero-grid {
    gap: clamp(28px, 3vw, 44px);
  }
}

/* ── 1024–1279px: narrower viewport — scale heading down, tighten gap ── */
@media (min-width: 1024px) and (max-width: 1279px) {
  .kit-landing-hero {
    padding: 64px 0 48px;
  }
  .kit-landing-hero .kit-hero-grid {
    grid-template-columns: 52% 48%;
    gap: clamp(20px, 2.4vw, 32px);
    align-items: center;
  }
  .kit-landing-hero .kit-hero-copy h1 {
    font-size: clamp(26px, 3.2vw, 40px);
    margin-bottom: 12px;
    line-height: 1.1;
  }
  .kit-landing-hero .kit-hero-lead {
    font-size: 15px;
    margin-bottom: 22px;
  }
  .kit-gal-img-wrap {
    height: 250px;
  }
}

/* ── 768–1023px: tablet — stack vertically, center-align copy ── */
@media (min-width: 768px) and (max-width: 1023px) {
  .kit-landing-hero {
    padding: 56px 0 40px;
  }
  .kit-landing-hero .kit-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .kit-landing-hero .kit-hero-copy {
    text-align: center;
  }
  .kit-landing-hero .kit-hero-lead {
    margin-left: auto;
    margin-right: auto;
    max-width: 540px;
  }
  .kit-landing-hero .kit-hero-cta {
    justify-content: center;
  }
  .kit-landing-hero .kit-hero-badges {
    justify-content: center;
  }
  .kit-landing-hero .kit-hero-visual {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }
  .kit-gal-img-wrap {
    height: 280px;
  }
  .kit-landing-hero .kit-eyebrow {
    margin-bottom: 20px;
  }
}

/* ── <768px: mobile — single column, compact spacing, stacked CTAs ── */
@media (max-width: 767px) {
  /* CRITICAL: override the non-media 1fr 1fr rule — same specificity, later source wins */
  .kit-landing-hero .kit-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
    text-align: center;
  }
  .kit-landing-hero .kit-hero-copy {
    text-align: center;
  }
  .kit-landing-hero .kit-hero-visual {
    width: 100%;
    max-width: 100%;
  }
  .kit-landing-hero .kit-hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .kit-landing-hero {
    padding: 40px 0 32px;
  }
  .kit-landing-hero .kit-eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }
  .kit-landing-hero .kit-hero-copy h1 {
    font-size: clamp(24px, 7vw, 36px);
    line-height: 1.12;
    margin-bottom: 12px;
  }
  .kit-landing-hero .kit-hero-lead {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 420px;
  }
  /* Stack CTAs full-width */
  .kit-landing-hero .kit-hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .kit-landing-hero .kit-hero-cta .btn-kit,
  .kit-landing-hero .kit-hero-cta .btn-hire-ghost {
    width: 100% !important;
    justify-content: center;
    text-align: center;
    font-size: 14px !important;
    padding: 13px 20px !important;
  }
  .kit-landing-hero .kit-hero-badges {
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
  }
  /* Gallery */
  .kit-gal-frame {
    padding: 0 14px;
  }
  .kit-gal-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .kit-gal-img-wrap {
    height: auto !important;
    aspect-ratio: 16 / 10;
  }
  .kit-gal-hint {
    font-size: 11px;
    margin-top: 8px;
  }
}
