/* ==========================================================================
   PPCTrace - Book A Demo Page Styles
   (Loads alongside common.css)

   Like login, this is a focused conversion page â€” uses common navbar
   but no footer. Imports Inter + Syne for accent typography.
   ========================================================================== */

/* ==========================================================================
   Page-specific font setup
   ========================================================================== */
.demo-page {
  /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; */
  background: #fff;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

/* On desktop, keep page locked viewport-height with internal scroll on the left side */
@media (min-width: 992px) {
  html.demo-html, body.demo-page {
    height: 100%;
    overflow: hidden;
  }
}

/* ==========================================================================
   Page Layout â€” split screen below the navbar
   ========================================================================== */
.demo-shell {
  min-height: calc(100vh - 62px); /* offset for sticky navbar */
}

/* ==========================================================================
   LEFT â€” Info / Trust Panel
   ========================================================================== */
.demo-left {
  padding: 40px 52px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-right: 1px solid var(--border);
  background: #fff;
}

@media (min-width: 992px) {
  .demo-left {
    height: calc(100vh - 62px);
    overflow-y: auto;
  }
}

.page-heading {
  /* font-family: 'Syne', sans-serif; */
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin: 0;
}
.page-heading span {
  color: var(--blue);
  display: block;
}
.page-sub {
  /* font-size: 14px; */
  color: var(--muted);
  line-height: 1.65;
  max-width: 460px;
  margin-top: 10px;
  margin-bottom: 0;
}

/* Stats */
.demo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  /* overflow: hidden; */
  height: 82px;
}
.demo-stat {
  background: #fff;
  padding: 16px 14px;
  text-align: center;
}
.demo-stat-n {
  /* font-family: 'Syne', sans-serif; */
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}
.demo-stat-t {
  font-size: 10.5px;
  color: var(--muted2);
  line-height: 1.4;
}

/* Section labels (used by demo pointers + networks) */
.checks-label {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted2);
  margin-bottom: 8px;
}
.checks-label.tight { margin-bottom: 10px; }

/* Checks list */
.checks { display: flex; flex-direction: column; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.check-item:last-child { border-bottom: none; }
.check-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(24, 71, 194, .08);
  border: 1px solid var(--ba15);
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-family: 'Syne', sans-serif; */
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}
.check-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.check-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* Networks pills */
.networks-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.net-pill {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(24, 71, 194, .08);
  border: 1px solid var(--ba15);
  border-radius: 100px;
  padding: 4px 12px;
  white-space: nowrap;
}

/* Quote (kept as a fallback if used) */
.demo-quote {
  border-left: 2px solid rgba(24, 71, 194, .2);
  padding-left: 14px;
}
.quote-text {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 9px;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 9px;
}
.quote-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(24, 71, 194, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
}
.quote-name { font-size: 12px; font-weight: 600; color: var(--text); }
.quote-role { font-size: 11px; color: var(--muted2); }

/* ==========================================================================
   RIGHT â€” Booking Form
   ========================================================================== */
.demo-right {
  padding: 36px 36px;
  background: var(--bluelt);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 992px) {
  .demo-right {
    height: calc(100vh - 62px);
    overflow-y: auto;
  }
}

.form-title {
  /* font-family: 'Syne', sans-serif; */
  font-size: 30px;
  margin-top:1.5rem !important;
  font-weight: 800;
  letter-spacing: -.4px;
  margin-bottom: 3px;
  color: var(--text);
}
.form-sub {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
}

.form-row { margin-bottom: 11px; }
.form-row label {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted2);
  margin-bottom: 4px;
}

.demo-input,
.demo-select,
.demo-textarea {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(24, 71, 194, .16);
  border-radius: 7px;
  padding: 9px 11px;
  font-size: 12.5px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .15s, box-shadow .15s;
}
.demo-input:focus,
.demo-select:focus,
.demo-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24, 71, 194, .08);
}
.demo-input::placeholder,
.demo-textarea::placeholder { color: var(--muted2); }

.demo-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 5 5-5' stroke='%239098b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  padding-right: 28px;
  cursor: pointer;
  background-color: #fff;
}
.demo-select option { background: #fff; color: var(--text); }

.demo-textarea {
  height: 58px;
  resize: none;
  line-height: 1.5;
}

.btn-submit-demo {
  width: 100%;
  background: var(--blue);
  color: #fff;
  /* font-family: 'Syne', sans-serif; */
  font-size: 15px;
  font-weight: 800;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  letter-spacing: -.2px;
  transition: background .15s, box-shadow .15s, transform .1s;
}
.btn-submit-demo:hover {
  background: var(--blue2);
  box-shadow: 0 4px 20px rgba(24, 71, 194, .3);
  transform: translateY(-1px);
}

.form-note {
  text-align: center;
  font-size: 11px;
  color: var(--muted2);
  margin-top: 8px;
}
.form-note a { color: var(--muted); }

/* Trusted-by row inside form panel */
.demo-logos {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.logos-label {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted2);
  text-align: center;
  margin-bottom: 10px;
}
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(15, 23, 41, .22);
  letter-spacing: -.2px;
  height: 23px;
  object-fit: contain;
  /* justify-content: space-between; */
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet â€” tighten the split */
@media (max-width: 1199px) {
  .demo-left  { padding: 36px 36px; }
  .demo-right { padding: 32px 28px; }
}

/* Below lg â€” stack columns: info first, then form */
@media (max-width: 991px) {
  .demo-shell { min-height: auto; }

  .demo-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 36px 24px;
  }
  .demo-right {
    border-left: none;
    padding: 32px 24px;
  }
}

/* Phone tweaks */
@media (max-width: 575px) {
  .demo-left,
  .demo-right { padding: 28px 16px; }

  .demo-stats { grid-template-columns: 1fr; }
  .demo-stat {
    padding: 14px;
    text-align: left;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
  }
  .demo-stat-n {
    margin-bottom: 0;
    font-size: 22px;
  }
  .demo-stat-t { text-align: right; }

  .form-2col-mobile-stack { grid-template-columns: 1fr !important; }

}



@media screen and (max-width: 1366px) {
  .form-title {
    font-size: 24px; 
    letter-spacing: -.2px;
    margin-top: 3.5rem;
  }

  .form-sub {
    font-size: 11.5px;
    margin-bottom: 14px; 
  }

  .form-row {
    margin-bottom: 8px;
  }
}


@media screen and (max-width: 1080px) {
  .form-title {
    font-size: 24px; 
    letter-spacing: -.2px;
    margin-top: 3.5rem;
  }

  .form-sub {
    font-size: 11.5px;
    margin-bottom: 14px; 
  }

  .form-row {
    margin-bottom: 8px;
  }
}




