/* Request-a-Demo page — two-column hero with form card */

.request-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 80px;
}
.request-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(1100px 460px at 78% -8%, rgba(31,111,235,.10), transparent 60%),
    radial-gradient(720px 360px at 8% 18%, rgba(22,184,166,.09), transparent 55%);
}
.request-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 980px) { .request-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ----- Left column ----- */
.lead-col h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 20px 0 18px;
}
.lead-col h1 em { font-style: italic; color: var(--brand); }
.lead-col .sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 30em;
  line-height: 1.55;
}

.expect { margin: 34px 0 0; display: grid; gap: 14px; }
.expect-row { display: flex; gap: 14px; align-items: flex-start; }
.check {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--brand-tint);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.check svg { width: 14px; height: 14px; stroke: var(--brand); stroke-width: 2.5; fill: none; }
.expect-row p { font-size: 15.5px; color: var(--ink); margin: 0; }
.expect-row p b { font-weight: 600; }

.support-note {
  margin-top: 26px;
  font-size: 14.5px;
  color: var(--ink-faint);
}
.support-note a { color: var(--brand); font-weight: 600; }
.support-note a:hover { text-decoration: underline; }

/* Testimonial carousel */
.quote-card {
  margin-top: 38px;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 26px 22px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.quote-card::before {
  content: "\201C";
  position: absolute;
  top: -18px;
  right: 18px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 120px;
  color: var(--brand-tint);
  line-height: 1;
  z-index: 0;
}
.quote-track { position: relative; z-index: 1; }
.quote { display: none; }
.quote.active { display: block; animation: fadein .5s ease; }
@keyframes fadein {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.stars { color: #f5a623; font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.quote p { font-size: 15.5px; color: var(--ink); font-weight: 500; line-height: 1.55; margin: 0; }
.who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.who .name { font-size: 14px; font-weight: 700; color: var(--ink); }
.who .org { font-size: 13px; color: var(--ink-faint); }
.qdots { display: flex; gap: 7px; margin-top: 18px; }
.qdots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: .25s;
}
.qdots button.on { background: var(--brand); width: 22px; border-radius: 99px; }

/* ----- Right column / form card ----- */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.form-head {
  padding: 26px 30px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fbfdff, #fff);
}
.form-head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 23px;
  letter-spacing: -.01em;
  margin: 0;
}
.form-head p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 6px;
}

.req-form { padding: 26px 30px 30px; }
.field { margin-bottom: 17px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
@media (max-width: 540px) {
  .field-row, .field-row-3 { grid-template-columns: 1fr; }
}
.req-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.req-form label .req { color: var(--brand); margin-right: 4px; }
.req-form input[type=text],
.req-form input[type=tel],
.req-form input[type=email],
.req-form input[type=date],
.req-form select,
.req-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: #fbfdff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color .18s, box-shadow .18s, background .18s;
  -webkit-appearance: none;
  appearance: none;
}
.req-form input::placeholder,
.req-form textarea::placeholder { color: #aab8c6; }
.req-form input:focus,
.req-form select:focus,
.req-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(31,111,235,.12);
}
.req-form textarea { resize: vertical; min-height: 84px; }
.req-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8ca0' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.submit-btn {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  border: 0;
  border-radius: var(--r-sm);
  background: var(--brand);
  color: #fff;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px -8px rgba(31,111,235,.6);
  transition: background .2s, transform .2s, box-shadow .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
}
.submit-btn:hover {
  background: var(--brand-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -8px rgba(31,111,235,.7);
}
.submit-btn svg { width: 17px; height: 17px; stroke: #fff; stroke-width: 2.2; fill: none; }
.fineprint { text-align: center; font-size: 12.5px; color: var(--ink-faint); margin-top: 14px; }
.secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-faint);
}
.secure svg { width: 13px; height: 13px; stroke: var(--accent); stroke-width: 2; fill: none; }

.form-error {
  margin: 12px 0;
  padding: 10px 14px;
  background: #fff4f4;
  border: 1px solid #f6c8c8;
  color: #b13a3a;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  display: none;
}
.form-error.show { display: block; }

/* Trust band */
.trust-band {
  padding: 60px 0 80px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.trust-band .label {
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 32px;
}
