﻿/* =============================================
   FUNNEL ADDITIONS - extends custom.css
   ============================================= */

/* NAV LINKS (in header) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 7px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-link-kit {
  color: #b8f5e8;
  border: 1px solid rgba(0,201,167,.3);
  background: rgba(0,201,167,.08);
  font-weight: 600;
}
.nav-link-kit:hover { color: var(--teal); background: rgba(0,201,167,.14); border-color: rgba(0,201,167,.5); }

/* PRIMARY KIT BUTTON */
.btn-kit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-sans);
  padding: 13px 26px;
  border-radius: 10px;
  background: linear-gradient(135deg, #00e0ba, #00c9a7);
  color: #052118;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 14px 34px rgba(0,201,167,.35), 0 0 0 1px rgba(255,255,255,.08) inset;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  animation: ctaGlow 2.4s ease-in-out infinite;
  white-space: nowrap;
}
.btn-kit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0,201,167,.45), 0 0 30px rgba(0,201,167,.25);
}
button.btn-kit {
  appearance: none;
  -webkit-appearance: none;
}

/* GHOST HIRE BUTTON */
.btn-hire-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-sans);
  padding: 12px 24px;
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  text-decoration: none;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
  white-space: nowrap;
}
.btn-hire-ghost:hover {
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}

/* TRUST BADGES */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.trust-badge {
  font-size: 12px;
  font-weight: 600;
  color: #9ef1ba;
  background: rgba(0,201,167,.08);
  border: 1px solid rgba(0,201,167,.22);
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .01em;
  white-space: nowrap;
}

/* LEAD MAGNET STRIP */
.lead-strip {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0,201,167,.12), rgba(0,168,255,.08));
  border-top: 1px solid var(--teal-border);
  border-bottom: 1px solid var(--teal-border);
  padding: 20px 0;
  margin-bottom: 0;
}
.ls-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.ls-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ls-text strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.ls-text span {
  font-size: 13px;
  color: var(--grey);
}
.ls-btn {
  font-size: 13px;
  padding: 10px 22px;
  flex-shrink: 0;
}

/* CASE STUDIES */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 24px;
  margin-bottom: 80px;
  animation: fadeUp .7s .1s ease both;
}
.case-study-card {
  background: var(--card-bg);
  border: 1px solid var(--teal-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.case-study-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,201,167,.5);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(0,201,167,.15);
}
.case-study-card.purple:hover { border-color: rgba(167,139,250,.5); box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(167,139,250,.15); }
.case-study-card.orange:hover { border-color: rgba(255,107,53,.5);  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(255,107,53,.15); }

.cs-bar        { height: 4px; background: linear-gradient(90deg, var(--teal), #00a8ff); }
.cs-bar.purple { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.cs-bar.orange { background: linear-gradient(90deg, #ff6b35, #f7c59f); }

.cs-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 24px 0;
}
.cs-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-glow);
  border: 1px solid var(--teal-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.case-study-card.purple .cs-icon { background: rgba(124,58,237,.1); border-color: rgba(124,58,237,.25); }
.case-study-card.orange .cs-icon { background: rgba(255,107,53,.1);  border-color: rgba(255,107,53,.25); }

.cs-client-type {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 4px;
}
.case-study-card.purple .cs-client-type { color: #a78bfa; }
.case-study-card.orange .cs-client-type { color: #ff6b35; }

.cs-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--white);
}
.cs-body { padding: 20px 24px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.cs-section h4 {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 6px;
}
.case-study-card.purple .cs-section h4 { color: #a78bfa; }
.case-study-card.orange .cs-section h4 { color: #ff6b35; }
.cs-section p { font-size: 13px; color: var(--grey); line-height: 1.7; }

.cs-result {
  background: rgba(0,201,167,.07);
  border: 1px solid rgba(0,201,167,.18);
  border-radius: 8px;
  padding: 12px 14px;
}
.case-study-card.purple .cs-result { background: rgba(167,139,250,.07); border-color: rgba(167,139,250,.2); }
.case-study-card.orange .cs-result { background: rgba(255,107,53,.07);  border-color: rgba(255,107,53,.2); }
.cs-result h4 {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 6px;
}
.case-study-card.purple .cs-result h4 { color: #a78bfa; }
.case-study-card.orange .cs-result h4 { color: #ff6b35; }
.cs-result p { font-size: 13px; color: var(--white); line-height: 1.65; font-weight: 500; }

.cs-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--teal-border);
  background: rgba(0,0,0,.15);
}

/* EMAIL CAPTURE SECTION */
.email-capture-section {
  position: relative;
  z-index: 1;
  padding: 0 0 80px;
}
.ec-box {
  background: linear-gradient(135deg, rgba(0,201,167,.09) 0%, rgba(0,80,200,.07) 100%);
  border: 1px solid var(--teal-border);
  border-radius: 18px;
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  backdrop-filter: blur(12px);
}
.ec-box h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.ec-box > p {
  font-size: 15px;
  color: var(--grey);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* EMAIL CAPTURE FORM (component) */
.ec-wrap { max-width: 440px; margin: 0 auto; }
.ec-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ec-input {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9px;
  padding: 13px 16px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color .2s;
}
.ec-input::placeholder { color: var(--grey); }
.ec-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,201,167,.12); }
.ec-input-error { border-color: rgba(255,100,100,.5) !important; }
.ec-submit { width: 100%; font-size: 15px; padding: 14px; }
.ec-note {
  font-size: 11px;
  color: var(--grey);
  text-align: center;
  margin-top: -2px;
  opacity: .75;
}
.ec-error-msg {
  font-size: 12px;
  color: #ff7f7f;
  margin-top: -4px;
}
.ec-success-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0,201,167,.12);
  border: 1px solid rgba(0,201,167,.35);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #b8f5e8;
  text-align: center;
  line-height: 1.5;
}
.ec-success-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--teal);
  color: #052118;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

/* FREE KIT PAGE */
.kit-page-hero {
  padding: 80px 0 64px;
  text-align: center;
}
.kit-eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}
.kit-page-hero h1 {
  font-size: clamp(30px, 5vw, 48px);
  margin-bottom: 18px;
}
.kit-page-hero > .wrap > p {
  font-size: 16px;
  color: var(--grey);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.72;
}
.kit-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
}
.kit-features li {
  font-size: 13px;
  color: var(--grey);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  padding: 12px 14px;
  line-height: 1.5;
}
.kit-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.kit-form-section {
  padding: 64px 0;
  background: linear-gradient(180deg, rgba(0,201,167,.06) 0%, transparent 100%);
}
.kit-form-section h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.kit-form-section > .wrap > p {
  font-size: 14px;
  color: var(--grey);
  text-align: center;
  margin-bottom: 32px;
}

/* KIT LANDING PAGE */
.kit-landing-hero {
  padding: 72px 0 56px;
  text-align: left;
}
.kit-landing-hero .kit-eyebrow {
  text-align: center;
  margin-bottom: 28px;
}
.kit-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
.kit-hero-copy h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.kit-hero-lead {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.72;
  max-width: 520px;
  margin: 0 0 28px;
}
.kit-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.kit-hero-badges {
  margin-top: 0;
}
.kit-hero-visual {
  position: relative;
}
.kit-hero-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--teal-border);
  background: rgba(255,255,255,.03);
  box-shadow: 0 24px 64px rgba(0,0,0,.45), 0 0 0 1px rgba(0,201,167,.12);
}
.kit-hero-frame .kit-img-wrap {
  aspect-ratio: 16 / 10;
}
.kit-hero-img-wrap {
  min-height: 200px;
}
.kit-benefits-section {
  padding: 0 0 64px;
}
.kit-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.kit-benefit-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 24px 22px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.kit-benefit-card:hover {
  border-color: rgba(0,201,167,.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.kit-benefit-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 14px;
}
.kit-benefit-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}
.kit-benefit-card p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
}
.kit-showcase-section {
  padding: 0 0 64px;
}
.kit-showcase-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.kit-showcase-card {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.kit-showcase-card:hover {
  border-color: rgba(0,201,167,.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.kit-showcase-img-wrap {
  aspect-ratio: 16 / 10;
}
.kit-showcase-img-wrap .kit-img-fade {
  object-fit: cover;
  object-position: top center;
  height: 100%;
}
.kit-showcase-label {
  display: block;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: rgba(0,0,0,.25);
}
.kit-gallery-section {
  padding: 0 0 64px;
}
.kit-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  .kit-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .kit-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1280px) {
  .kit-gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.kit-gallery-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.kit-gallery-item:hover {
  border-color: rgba(0,201,167,.4);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,.38);
}
.kit-gallery-thumb {
  display: block;
  overflow: hidden;
  background: rgba(0,0,0,.2);
}
.kit-gallery-thumb .kit-img-wrap {
  aspect-ratio: 16 / 10;
}
.kit-gallery-thumb .kit-img-fade {
  object-fit: cover;
  object-position: top center;
  height: 100%;
  transition: transform .35s ease;
}
.kit-gallery-item:hover .kit-gallery-thumb .kit-img-fade {
  transform: scale(1.03);
}
.kit-gallery-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
}
.kit-gallery-meta strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.kit-gallery-meta span {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.5;
}
.kit-cta-band {
  padding: 0 0 64px;
}
.kit-cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 16px;
  border: 1px solid var(--teal-border);
  background: linear-gradient(135deg, rgba(0,201,167,.1), rgba(0,80,200,.06));
}
.kit-cta-band-text h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  margin-bottom: 8px;
}
.kit-cta-band-text p {
  font-size: 14px;
  color: var(--grey);
  margin: 0;
  max-width: 420px;
  line-height: 1.6;
}
.kit-cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}
.kit-includes-section {
  padding: 0 0 64px;
}
.kit-includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.kit-include-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color .2s, background .2s;
}
.kit-include-item:hover {
  border-color: rgba(0,201,167,.3);
  background: rgba(0,201,167,.05);
}
.kit-include-icon {
  font-size: 18px;
  line-height: 1.4;
  flex-shrink: 0;
}
.kit-include-text {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.5;
}
.modal-kit-download {
  max-width: 460px;
  width: 92%;
}
.modal-kit-download .ec-wrap {
  max-width: none;
}
.kit-modal-form-area {
  position: relative;
  transition: opacity .2s;
}
.kit-modal-form-area.is-processing {
  opacity: .92;
}
.kit-lead-toast {
  font-size: 13px;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 9px;
  margin-bottom: 14px;
  text-align: center;
  line-height: 1.45;
}
.kit-lead-toast-success {
  background: rgba(0,201,167,.14);
  border: 1px solid rgba(0,201,167,.35);
  color: #b8f5e8;
}
.kit-lead-toast-error {
  background: rgba(255,80,80,.1);
  border: 1px solid rgba(255,100,100,.35);
  color: #ffb3b3;
}
.kit-lead-success {
  margin-bottom: 28px;
  margin-top: 4px;
}
.kit-lead-success[hidden],
.kit-lead-toast[hidden],
#kitLeadError[hidden] {
  display: none !important;
}
/* Image skeleton shimmer */
.kit-img-wrap {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  width: 100%;
}
.kit-img-skeleton {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.04) 0%,
    rgba(255,255,255,.12) 45%,
    rgba(255,255,255,.04) 90%
  );
  background-size: 220% 100%;
  animation: kitShimmer 1.35s ease-in-out infinite;
  transition: opacity .35s ease;
}
.kit-img-wrap.is-loaded .kit-img-skeleton {
  opacity: 0;
  pointer-events: none;
}
.kit-img-fade {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity .45s ease;
  position: relative;
  z-index: 2;
}
.kit-img-wrap.is-loaded .kit-img-fade {
  opacity: 1;
}
@keyframes kitShimmer {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}
/* Submit button loader */
.btn-kit.js-kit-lead-submit {
  min-width: 200px;
}
.btn-kit-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 1.25em;
}
.btn-kit-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.js-kit-lead-submit.is-loading .btn-kit-label {
  display: none;
}
.js-kit-lead-submit.is-loading .btn-kit-loading {
  display: inline-flex;
}
.btn-kit-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(5,33,24,.25);
  border-top-color: #052118;
  border-radius: 50%;
  animation: kitSpin .65s linear infinite;
  flex-shrink: 0;
}
@keyframes kitSpin {
  to { transform: rotate(360deg); }
}
.kit-lightbox-img-wrap {
  position: relative;
  min-height: 200px;
}
.kit-lightbox-img-wrap img {
  opacity: 0;
  transition: opacity .4s ease;
}
.kit-lightbox-img-wrap img.is-visible {
  opacity: 1;
}
.kit-lightbox-skeleton {
  min-height: 280px;
  border-radius: 12px;
}
.kit-lightbox-skeleton.is-loaded {
  opacity: 0;
}
.ec-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.kit-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.kit-lightbox.active {
  display: flex;
}
.kit-lightbox-dialog {
  position: relative;
  max-width: min(1100px, 96vw);
  width: 100%;
  max-height: 92vh;
  overflow: auto;
}
.kit-lightbox-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(12,24,39,.85);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
}
.kit-lightbox-close:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.kit-lightbox-figure {
  margin: 0;
}
.kit-lightbox-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}
.kit-lightbox-figure figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--grey);
  text-align: center;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .ls-inner { flex-direction: column; text-align: center; }
  .ls-btn { width: 100%; }
  .trust-badges { justify-content: center; }
  .btn-kit, .btn-hire-ghost { width: 100%; justify-content: center; }
  .kit-features { grid-template-columns: 1fr; }
  .kit-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .kit-hero-lead { margin-left: auto; margin-right: auto; }
  .kit-hero-cta,
  .kit-cta-band-actions,
  .ec-cta-actions { justify-content: center; }
  .kit-hero-badges { justify-content: center; }
  .kit-cta-band-inner { flex-direction: column; text-align: center; }
  .kit-cta-band-text p { margin-left: auto; margin-right: auto; }
  .kit-showcase-featured { grid-template-columns: 1fr; }
  .kit-includes-grid { grid-template-columns: 1fr; }
  .btn-kit, .btn-hire-ghost { width: 100%; justify-content: center; }
  .kit-hero-cta .btn-kit,
  .kit-hero-cta .btn-hire-ghost,
  .kit-cta-band-actions .btn-kit,
  .kit-cta-band-actions .btn-hire-ghost { width: 100%; }
}
