/* ══════════════════════════════════════
   DEMO KSA PAGE — FONTS
══════════════════════════════════════ */
@font-face {
  font-family: 'ThmanyahSerifDisplay';
  src: url('../fonts/thmanyah-serif/thmanyahserifdisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ThmanyahSerifDisplay';
  src: url('../fonts/thmanyah-serif/thmanyahserifdisplay-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ThmanyahSerifDisplay';
  src: url('../fonts/thmanyah-serif/thmanyahserifdisplay-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ThmanyahSerifDisplay';
  src: url('../fonts/thmanyah-serif/thmanyahserifdisplay-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NotoKufiArabic';
  src: url('../fonts/noto-kufi/NotoKufiArabic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ══════════════════════════════════════
   DEMO KSA — RESET & VARIABLES
══════════════════════════════════════ */
.ksa-demo,
.ksa-demo *,
.ksa-demo *::before,
.ksa-demo *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ksa-demo {
  padding-top: 0 !important;
  --p: #1d4044;
  --a: #396465;
  --lime: #dbac6b;
  --lime2: #b6853f;
  --lime3: #e8c896;
  --font-display: 'ThmanyahSerifDisplay', 'NotoKufiArabic', sans-serif;
  --font-body: 'NotoKufiArabic', sans-serif;
  --bg: #fafaf9;
  --bg2: #f1eadd;

  direction: rtl;
  font-family: 'NotoKufiArabic', sans-serif;
  background: var(--bg);
  color: #1d4044;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.ksa-demo .kd-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(250,250,249,0.92);
  backdrop-filter: blur(10px) saturate(180%);
  border-bottom: 1px solid rgba(29,64,68,0.06);
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .3s;
}
.ksa-demo .logo {
  font-size: 22px;
  font-weight: 800;
  color: #1d4044;
  text-decoration: none;
  letter-spacing: -.5px;
}
.ksa-demo .nav-links { display: flex; gap: 24px; list-style: none; }
.ksa-demo .nav-links a { text-decoration: none; font-size: 14.5px; font-weight: 400; color: #396465; transition: color .2s; }
.ksa-demo .nav-links a:hover { color: #1d4044; }
.ksa-demo .btn-nav {
  background: #1d4044;
  color: #fafaf9;
  border: none;
  padding: 11px 20px;
  border-radius: 8px;
  font-family: 'NotoKufiArabic', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.ksa-demo .btn-nav:hover { background: #396465; transform: translateY(-1px); }

/* ══════════════════════════════════════
   MOBILE BURGER + DRAWER
══════════════════════════════════════ */
.ksa-demo .nav-burger {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
}
.ksa-demo .nav-burger span {
  display: block; width: 22px; height: 2px;
  background: #1d4044; border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.ksa-demo .nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ksa-demo .nav-burger.is-open span:nth-child(2) { opacity: 0; }
.ksa-demo .nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.ksa-demo .kd-mobile-cta { display: none; }

/* ══════════════════════════════════════
   MAIN LAYOUT
══════════════════════════════════════ */
.ksa-demo .demo-page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: 50px;
  max-width: 1240px;
  margin: 0 auto;
  gap: 32px;
  padding-left: 1%;
  padding-right: 1%;
}

/* ══════════════════════════════════════
   LEFT SIDE: info
══════════════════════════════════════ */
.ksa-demo .demo-left {
  flex: 1.5;
  padding: 80px 20px 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}
.ksa-demo .demo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  color: var(--lime2);
  padding: 0;
  font-family: 'NotoKufiArabic', sans-serif;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 28px;
  width: fit-content;
  animation: kdFadeUp .8s both;
}

@keyframes kdFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.ksa-demo .demo-left h1 {
  font-family: 'ThmanyahSerifDisplay', 'NotoKufiArabic', sans-serif;
  font-size: 50px;
  font-weight: 400;
  color: #1d4044;
  line-height: 1.3;
  margin-bottom: 20px;
  animation: kdFadeUp .9s .1s both;
}
.ksa-demo .demo-left h1 em {
  color: var(--lime2);
  font-style: normal;
}

.ksa-demo .demo-desc {
  font-size: 15px;
  color: #396465;
  max-width: 440px;
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.85;
  animation: kdFadeUp .9s .2s both;
}

/* Hero dashboard image */
.ksa-demo .demo-hero-image {
  position: relative;
  margin-bottom: 32px;
  width: 80%;
  animation: kdFadeUp .9s .25s both;
}
.ksa-demo .demo-hero-image > img {
  width: 100%;
  display: block;
  border-radius: 16px;
}
.ksa-demo .demo-hero-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
}
.ksa-demo .demo-hero-badge img {
  width: 90px;
  height: auto;
}

/* Trust points */
.ksa-demo .trust-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-bottom: 48px;
  animation: kdFadeUp .9s .3s both;
}
.ksa-demo .tp-item {
  display: inline-flex;
  align-items: center;
  background: rgba(219,172,107,0.1);
  border: 1px solid rgba(219,172,107,0.25);
  border-radius: 100px;
  padding: 10px 20px;
}
.ksa-demo .tp-text {
  font-size: 13px;
  font-weight: 600;
  color: #1d4044;
  white-space: nowrap;
}

/* ══════════════════════════════════════
   STATS
══════════════════════════════════════ */
.ksa-demo .demo-stats {
  display: flex;
  gap: 192px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 2% 48px;
  background: #f1eadd;
}
.ksa-demo .ds-item {
  background: none;
  border: none;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ksa-demo .ds-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 78px;
  font-weight: 600;
  color: #1d4044;
  line-height: 1;
  margin-bottom: 12px;
}
.ksa-demo .ds-lbl {
  font-size: 15px;
  color: #396465;
  font-weight: 500;
  font-family: 'NotoKufiArabic', sans-serif;
}

/* ══════════════════════════════════════
   RIGHT SIDE: form
══════════════════════════════════════ */
.ksa-demo .demo-right {
  flex: 0 0 520px;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-left: 0;
}
.ksa-demo .form-card {
  width: 520px;
  background: #fff;
  backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(29,64,68,0.1);
  border-radius: 28px;
  padding: 44px 40px;
  animation: kdFadeUp 1s .15s both;
}
.ksa-demo .form-title {
  font-family: 'ThmanyahSerifDisplay', 'NotoKufiArabic', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #1d4044;
  margin-bottom: 8px;
}
.ksa-demo .form-subtitle {
  font-size: 13px;
  color: #396465;
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.7;
}
.ksa-demo .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.ksa-demo .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.ksa-demo .form-group label {
  font-size: 12px;
  font-weight: 600;
  color: #396465;
  letter-spacing: .5px;
}
.ksa-demo .form-input,
.ksa-demo .form-select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(29,64,68,0.03);
  border: 1px solid rgba(29,64,68,0.15);
  border-radius: 8px;
  color: #1d4044;
  font-family: 'NotoKufiArabic', sans-serif;
  font-size: 14px;
  transition: all .2s;
  outline: none;
  -webkit-appearance: none;
}
.ksa-demo .form-input::placeholder { color: #396465; }
.ksa-demo .form-input:focus,
.ksa-demo .form-select:focus {
  border-color: rgba(219,172,107,0.5);
  background: rgba(219,172,107,0.07);
  box-shadow: 0 0 0 3px rgba(219,172,107,0.1);
}
.ksa-demo .form-select option { background: #fafaf9; color: #1d4044; }

/* Phone row */
.ksa-demo .phone-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: stretch;
}
.ksa-demo .country-select {
  padding: 13px 8px;
  background: rgba(29,64,68,0.03);
  border: 1px solid rgba(29,64,68,0.15);
  border-radius: 8px;
  color: #1d4044;
  font-family: 'NotoKufiArabic', sans-serif;
  font-size: 13px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  width: 110px;
  flex-shrink: 0;
  text-align: center;
  order: 1;
}
.ksa-demo .country-select:focus { border-color: rgba(219,172,107,0.5); }

.ksa-demo .form-legal {
  font-size: 11px;
  color: #396465;
  margin: 16px 0 24px;
  line-height: 1.7;
}
.ksa-demo .form-legal a { color: var(--lime2); text-decoration: underline; }

.ksa-demo .btn-submit {
  width: 100%;
  padding: 0;
  height: 50px;
  border: none;
  background: #1d4044;
  color: #fafaf9;
  border-radius: 8px;
  font-family: 'NotoKufiArabic', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ksa-demo .btn-submit:hover {
  background: #396465;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(57,100,101,0.30);
}
.ksa-demo .btn-submit:active { transform: translateY(0); }

/* Success state */
.ksa-demo .form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.ksa-demo .success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #396465, #dbac6b);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 40px rgba(219,172,107,0.3);
}
.ksa-demo .success-icon svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ksa-demo .success-title {
  font-size: 22px;
  font-weight: 800;
  color: #1d4044;
  margin-bottom: 10px;
}
.ksa-demo .success-desc {
  font-size: 14px;
  color: #396465;
  font-weight: 400;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   BRANDS SECTION
══════════════════════════════════════ */
.ksa-demo .brands-section {
  padding: 70px 6%;
}
.ksa-demo .brands-title-text {
  text-align: center;
  font-family: 'ThmanyahSerifDisplay', 'NotoKufiArabic', sans-serif;
  font-size: 25px;
  font-weight: 400;
  color: #396465;
  margin-bottom: 40px;
  line-height: 1.3;
}
.ksa-demo .ksa-marquee {
  overflow: hidden;
  direction: ltr;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
          mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.ksa-demo .ksa-marquee-track {
  display: flex;
  align-items: center;
  direction: ltr;
  width: max-content;
}
.ksa-demo .ksa-marquee-track img {
  height: 40px;
  width: auto;
  max-width: none !important;
  object-fit: contain;
  opacity: 0.28;
  filter: brightness(0);
  flex-shrink: 0;
  margin-right: 72px;
}

/* ══════════════════════════════════════
   REVIEWS SECTION
══════════════════════════════════════ */
.ksa-demo .reviews-section {
  padding: 80px 6% 120px;
  border-top: 1px solid rgba(29,64,68,0.08);
}
.ksa-demo .reviews-header {
  text-align: center;
  margin-bottom: 56px;
}
.ksa-demo .reviews-header h2 {
  font-family: 'ThmanyahSerifDisplay', 'NotoKufiArabic', sans-serif;
  font-size: 45px;
  font-weight: 400;
  color: #1d4044;
  margin-bottom: 10px;
  line-height: 1.3;
}
.ksa-demo .reviews-header h2 em { color: var(--lime2); font-style: normal; }
.ksa-demo .reviews-header p {
  font-size: 15px;
  color: #396465;
  font-weight: 400;
}

/* Review platform badges */
.ksa-demo .review-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 20px;
  flex-wrap: nowrap;
}
.ksa-demo .review-badges > img {
  width: auto !important;
  object-fit: contain;
}
.ksa-demo .review-badges > img:nth-child(1) { height: 40px !important; }
.ksa-demo .review-badges > img:nth-child(3) { height: 60px !important; }
.ksa-demo .review-badges > img:nth-child(5) { height: 88px !important; }
.ksa-demo .review-badge-divider {
  display: inline-block;
  width: 1px;
  height: 56px;
  background: #f1eadd;
}
.ksa-demo .review-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.ksa-demo .rbi-left {
  background: #1d4044;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ksa-demo .rbi-name {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .5px;
}
.ksa-demo .rbi-stars {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}
.ksa-demo .rbi-stars span {
  color: #dbac6b;
  font-size: 11px;
}
.ksa-demo .rbi-score {
  background: #f1eadd;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #1d4044;
}

/* Review cards */
.ksa-demo .reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px;
}
.ksa-demo .review-card {
  background: #f1eadd;
  border: 1px solid rgba(29,64,68,0.10);
  border-radius: 16px;
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.ksa-demo .review-card:hover {
  background: #1d4044;
  border-color: #1d4044;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(7,29,30,0.12), 0 2px 6px rgba(7,29,30,0.06);
}
.ksa-demo .review-card:hover .review-text { color: #fafaf9; }
.ksa-demo .review-card:hover .author-name { color: #dbac6b; }
.ksa-demo .review-card:hover .author-role { color: rgba(250,250,249,0.7); }
.ksa-demo .review-card:hover .review-author { border-top-color: rgba(250,250,249,0.18); }
.ksa-demo .review-card:hover .review-badge { background: rgba(219,172,107,0.15); color: #dbac6b; }
.ksa-demo .review-card:hover .review-quote { color: rgba(219,172,107,0.25); }

.ksa-demo .review-text {
  font-family: 'ThmanyahSerifDisplay', 'NotoKufiArabic', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.45;
  color: #1d4044;
  margin: 0 0 24px;
  text-wrap: pretty;
  flex: 1;
  transition: color .2s ease;
}
.ksa-demo .review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(29,64,68,0.10);
  padding-top: 16px;
  transition: border-color .2s ease;
}
.ksa-demo .author-name { font-size: 14px; font-weight: 600; color: #1d4044; transition: color .2s ease; }
.ksa-demo .author-role { font-size: 13px; color: #396465; font-weight: 400; margin-top: 2px; transition: color .2s ease; }
.ksa-demo .review-badge {
  align-self: flex-start;
  background: rgba(219,172,107,0.1);
  border: 1px solid rgba(219,172,107,0.2);
  color: var(--lime2);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  margin-bottom: 12px;
  border-radius: 100px;
  transition: background .2s ease, color .2s ease;
}
.ksa-demo .review-quote {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 48px;
  color: rgba(219,172,107,0.15);
  line-height: 1;
  font-family: Georgia, serif;
  transition: color .2s ease;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
/* ── FOOTER ── */
.ksa-demo .hp-footer {
  background: #1d4044;
  color: #fafaf9;
  padding: 80px 0 32px;
}
.ksa-demo .hp-footer-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.ksa-demo .hp-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  font-family: 'NotoKufiArabic', sans-serif;
  font-size: 13px;
}
.ksa-demo .hp-footer-brand-col { display: flex; flex-direction: column; grid-column: 1 / -1; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(250,250,249,0.08); }
.ksa-demo .hp-footer-logo { height: 36px; width: auto; display: block; filter: brightness(0) invert(1); margin-bottom: 16px; object-fit: contain; }
.ksa-demo .hp-footer-brand-desc { font-family: 'ThmanyahSerifDisplay', sans-serif; font-size: 15px; color: #9caaad; line-height: 1.7; margin: 0; }
.ksa-demo .hp-footer-cols > div b {
  display: block;
  color: #fafaf9;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 13px;
}
.ksa-demo .hp-footer-cols > div a {
  display: block;
  color: #9caaad;
  text-decoration: none;
  font-size: 13px;
  padding: 5px 0;
  cursor: pointer;
  transition: color .15s;
}
.ksa-demo .hp-footer-cols > div a:hover { color: #dbac6b; }
.ksa-demo .hp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  margin-top: 48px;
  border-top: 1px solid rgba(250,250,249,0.08);
}
.ksa-demo .hp-footer-fine { font-size: 12px; color: #748d90; margin: 0; font-family: 'NotoKufiArabic', sans-serif; }
@media (max-width: 768px) {
  .ksa-demo .hp-footer { padding: 56px 20px 32px; }
  .ksa-demo .hp-footer-inner { padding: 0 16px; }
  .ksa-demo .hp-footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .ksa-demo .hp-footer-brand-col { margin-bottom: 8px; }
  .ksa-demo .hp-footer-bottom { flex-direction: column; align-items: center; gap: 8px; text-align: center; }
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
.ksa-demo .reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.ksa-demo .reveal.in { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .ksa-demo .nav-burger { display: inline-flex !important; }
  .ksa-demo .kd-nav > .btn-nav { display: none; }
  .ksa-demo .kd-nav .logo img { height: 30px !important; width: auto !important; }
  .ksa-demo .kd-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: #fafaf9; }

  .ksa-demo .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fafaf9;
    border-top: 1px solid rgba(29,64,68,0.10);
    border-bottom: 1px solid rgba(29,64,68,0.10);
    flex-direction: column !important;
    gap: 0 !important;
    padding: 8px 20px 20px !important;
    list-style: none;
    margin: 0;
  }
  .ksa-demo .nav-links.is-open { display: flex !important; }
  .ksa-demo .nav-links a {
    display: block;
    padding: 14px 0 !important;
    font-size: 16px !important;
    color: #1d4044 !important;
    text-align: right;
    border-bottom: 1px solid rgba(29,64,68,0.06) !important;
    font-family: 'NotoKufiArabic', sans-serif;
    font-weight: 400;
  }
  .ksa-demo .nav-links li:last-child a { border-bottom: 0 !important; }
  .ksa-demo .kd-mobile-cta {
    display: block;
    padding-top: 12px !important;
    margin-top: 4px;
    border-top: 1px solid rgba(29,64,68,0.10);
  }
  .ksa-demo .kd-mobile-cta .btn-nav {
    display: flex !important;
    width: 100%;
    height: 44px;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border-bottom: 0 !important;
    padding: 0 16px !important;
    color: #fafaf9 !important;
  }
  .ksa-demo .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .ksa-demo .demo-page { flex-direction: column; padding-top: 76px; gap: 0; }
  .ksa-demo .demo-left { padding: 40px 5% 30px; flex: none; }
  .ksa-demo .demo-right { flex: none; width: 100%; padding: 20px 5% 40px; margin-left: 0; }
  .ksa-demo .form-card { width: 100%; max-width: 100%; }
  .ksa-demo .demo-stats { gap: 48px; padding: 32px 5% 40px; }
  .ksa-demo .demo-left h1 { font-size: 38px; }
  .ksa-demo .reviews-grid { grid-template-columns: 1fr; }
  .ksa-demo .reviews-section { padding: 40px 5%; }
}

@media (max-width: 480px) {
  .ksa-demo .form-row { grid-template-columns: 1fr; }
  .ksa-demo .form-card { padding: 28px 22px; border-radius: 20px; }
  .ksa-demo .demo-left h1 { font-size: 32px; }
  .ksa-demo .demo-left h1 br { display: none; }
  .ksa-demo .demo-eyebrow { justify-content: center; text-align: center; width: 100%; margin-left: auto; margin-right: auto; }
  .ksa-demo .demo-left .trust-points { justify-items: center; }
  .ksa-demo .demo-stats { gap: 24px; padding: 24px 5% 32px; flex-direction: column; align-items: center; }
  .ksa-demo .ds-num { font-size: 40px !important; }
  .ksa-demo .ds-lbl { font-size: 13px; }
  .ksa-demo .trust-points { grid-template-columns: 1fr; gap: 10px; }
  .ksa-demo .demo-left { padding: 15px 5% 20px; text-align: center; align-items: center; }
  .ksa-demo .demo-right { align-items: center; justify-content: center; }
  .ksa-demo .demo-hero-image { width: 100%; }
  .ksa-demo .review-badges { gap: 16px; }
  .ksa-demo .review-badges > img:nth-child(1) { height: 28px !important; }
  .ksa-demo .review-badges > img:nth-child(3) { height: 42px !important; }
  .ksa-demo .review-badges > img:nth-child(5) { height: 60px !important; }
  .ksa-demo .review-badge-divider { height: 40px; }
  .ksa-demo .reviews-grid { grid-template-columns: 1fr !important; padding: 20px 0; }
  .ksa-demo .review-card { padding: 28px 22px; }
  .ksa-demo .reviews-header h2 { font-size: 28px !important; }
  .ksa-demo .brands-section { padding: 40px 5%; }
  .ksa-demo .ksa-marquee-track img { height: 30px; margin-right: 48px; }
  .ksa-demo .kd-nav { padding: 0 4%; height: 56px; }
  .ksa-demo .kd-nav .logo img { height: 28px !important; width: auto !important; }
  .ksa-demo .btn-nav { padding: 8px 16px; font-size: 12px; }
}
