/* TripWyre for business — additions to styles.css.
   The business page reuses the consumer design system wholesale; this file only
   adds what the consumer page has no equivalent of: a three-up pricing row and
   the demo-request form. */

.brand-sub {
  margin-left: 8px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .04em;
}

/* ---- three-up pricing --------------------------------------------------- */
.pricing-grid-three { grid-template-columns: repeat(3, 1fr); gap: 34px; }
.pricing-grid-three .price-card { min-height: 330px; padding: 32px 34px 31px; }
.pricing-grid-three .price-button { left: 34px; right: 34px; bottom: 31px; min-height: 58px; }
.pricing-grid-three .price { font-size: 48px; }
.price-card-enterprise { border: 1px solid rgba(138, 160, 192, .38); }
.price-button-quiet {
  color: #dce4f0;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(138, 160, 192, .46);
}
.price-button-quiet:hover { background: rgba(255, 255, 255, .09); }

/* ---- demo request ------------------------------------------------------- */
.demo-form { background: radial-gradient(circle at 30% 40%, rgba(16, 40, 80, .16), transparent 46%); }
.demo-inner {
  display: grid;
  grid-template-columns: minmax(320px, 430px) 1fr;
  gap: 68px;
  align-items: start;
  padding-top: 50px;
}
.demo-copy h2 { margin-bottom: 20px; font-size: 46px; font-weight: 500; letter-spacing: -.04em; line-height: 1.08; }
.demo-copy p { margin: 0 0 14px; color: #aab3c1; font-size: 18px; line-height: 1.5; }
.demo-note { color: var(--soft); font-size: 16px; }

.demo-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  padding: 34px 36px 36px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(9,15,25,.83), rgba(3,8,15,.68));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025), 0 22px 70px rgba(0,0,0,.14);
  text-align: left;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-wide { grid-column: 1 / -1; }
.field label { color: #ccd3df; font-size: 15px; }
.field .opt { color: var(--soft); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(2, 6, 12, .72);
  color: var(--text);
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.35;
}
.field textarea { resize: vertical; }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible { outline: 2px solid var(--blue); outline-offset: 1px; border-color: transparent; }
.field input::placeholder { color: #5c6675; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #7f8998 50%), linear-gradient(135deg, #7f8998 50%, transparent 50%); background-position: right 18px center, right 12px center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }

/* Honeypot: a field only an automated submitter fills in. */
.field-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 6px; }
.form-actions .button { min-width: 220px; }
.form-status { margin: 0; flex: 1 1 240px; color: var(--soft); font-size: 16px; line-height: 1.4; }
.form-status.is-ok { color: #8fd3a4; }
.form-status.is-error { color: #ff8f87; }
.form-status a { color: #8aa9e8; }

/* ---- straight talk -------------------------------------------------------
   Rendered on any specialist page for a market the engine does not yet reach
   end to end. Deliberately sits directly above the form: nobody should book a
   call on an assumption we already know is wrong. */
.straight-talk .straight-talk-inner {
  max-width: 940px;
  padding: 34px 38px 30px;
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--blue);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(9, 15, 25, .83), rgba(3, 8, 15, .68));
  text-align: left;
}
.straight-talk h2 {
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -.02em;
}
.straight-talk p { margin: 0 0 12px; color: #aab3c1; font-size: 17px; line-height: 1.55; }
.straight-talk p:last-child { margin-bottom: 0; }

/* ---- front-door directory (/for) ---------------------------------------- */
.doors-inner { padding-top: 168px; text-align: left; }
.doors-inner h1 { margin-bottom: 26px; font-size: 56px; font-weight: 500; letter-spacing: -.043em; line-height: 1.12; }
.door-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-bottom: 20px; }
.door-card {
  display: block;
  padding: 28px 30px 26px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(9, 15, 25, .83), rgba(3, 8, 15, .68));
  color: var(--text);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}
.door-card:hover { border-color: rgba(93, 140, 255, .55); transform: translateY(-2px); }
.door-card h2 { margin-bottom: 10px; font-size: 24px; font-weight: 500; letter-spacing: -.02em; }
.door-card p { margin: 0 0 16px; color: #aab3c1; font-size: 16px; line-height: 1.5; }
.door-link { color: #8aa9e8; font-size: 15px; }

@media (max-width: 1180px) {
  .pricing-grid-three { gap: 26px; }
  .door-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .demo-inner { grid-template-columns: 1fr; gap: 34px; }
  .pricing-grid-three { grid-template-columns: 1fr; gap: 26px; max-width: 520px; }
  .pricing-grid-three .price-card { min-height: 300px; }
}

@media (max-width: 640px) {
  .demo-fields { grid-template-columns: 1fr; padding: 26px 22px 28px; }
  .demo-copy h2 { font-size: 36px; }
  .form-actions .button { width: 100%; }
  .straight-talk .straight-talk-inner { padding: 26px 22px 24px; }
  .straight-talk h2 { font-size: 22px; }
  .door-grid { grid-template-columns: 1fr; }
  .doors-inner h1 { font-size: 40px; }
}
