/**
 * Book a Demo page styles — extracted from the standalone HTML bundle.
 *
 * Source: html_source/Servme - Book a Demo _standalone_ (2).html
 *
 * This contains ONLY the page-specific styles. Shared nav/footer/typography
 * styles (hp-* prefix) are identical to the homepage/guest-journey and are
 * already in the theme's main stylesheet.
 *
 * Sections covered:
 *   - Brand tokens / CSS custom properties
 *   - Type scale (eyebrow, hp-h1..h4, paragraph scale)
 *   - Buttons (sm-btn, sm-btn-primary, sm-btn-ghost, sm-btn-accent)
 *   - Hero section
 *   - Form card (form-card, form-field, form-row, phone-combo)
 *   - Trust strip + logo marquee
 *   - What to Expect section (expect, step)
 *   - Testimonials (tt)
 */

/* === Brand tokens (from Servme design system) === */
:root {
  --servme-primary: #1d4044;
  --servme-primary-mid: #396465;
  --servme-primary-deep: #071d1e;
  --servme-accent: #dbac6b;
  --servme-accent-deep: #b6853f;
  --servme-bg: #fafaf9;
  --servme-bg-warm: #f1eadd;
  --servme-ink-100: #fafaf9;
  --servme-ink-200: #f1eadd;
  --servme-ink-300: #f1eadd;
  --servme-ink-400: #dbac6b;
  --servme-ink-500: #396465;
  --servme-ink-700: #396465;
  --servme-ink-900: #1d4044;
  --fg-1: var(--servme-ink-900);
  --fg-2: var(--servme-ink-700);
  --fg-3: var(--servme-ink-500);
  --border-1: #e9e3d4;
  --border-2: #d8d2c2;
  --font-display: 'Cormorant Garamond', 'Garamond', 'Times New Roman', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-1: 0 1px 2px rgba(7,29,30,.06), 0 1px 1px rgba(7,29,30,.04);
  --shadow-2: 0 4px 14px rgba(7,29,30,.08), 0 1px 3px rgba(7,29,30,.05);
  --shadow-3: 0 12px 32px rgba(7,29,30,.12), 0 2px 6px rgba(7,29,30,.06);
}

/* === Reset / base === */
*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--fg-1);
  background: var(--servme-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video, svg, picture { max-width: 100%; height: auto; }
a { color: var(--servme-accent-deep); text-decoration: none; }
a:hover { color: var(--servme-primary); }
button { font-family: inherit; }

/* === Type scale === */
/* Mobile: H1 44/49, H2 36/41, H3 28/33, H4 24/29
   Web (>=1024px): H1 76/81, H2 64/69, H3 56/61, H4 48/53
   Semibold (600), letter-spacing 0. */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--servme-accent-deep);
  margin: 0 0 20px;
}
.hp-h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44px;
  line-height: 49px;
  letter-spacing: 0;
  color: var(--servme-primary);
  margin: 0 0 20px;
  text-wrap: pretty;
}
.hp-h1 em { font-style: italic; color: var(--servme-accent-deep); font-weight: 600; }
.hp-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  line-height: 41px;
  letter-spacing: 0;
  color: var(--servme-primary);
  margin: 0 0 16px;
  text-wrap: pretty;
}
.hp-h2 em { font-style: italic; color: var(--servme-accent-deep); font-weight: 600; }
.hp-h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  line-height: 33px;
  letter-spacing: 0;
  color: var(--servme-primary);
  margin: 0 0 12px;
}
.hp-h3 em { font-style: italic; color: var(--servme-accent-deep); font-weight: 600; }
.hp-h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0;
  color: var(--servme-primary);
  margin: 0 0 10px;
}
/* Paragraph scale — P1 18, P2 16, P3 14, P4 12 */
p, .p2 { font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 1.6; letter-spacing: 0; margin: 0 0 12px; color: var(--fg-2); }
.p1, .hp-lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--fg-2);
  margin: 0 0 24px;
  max-width: 56ch;
  text-wrap: pretty;
}
.p3 { font-size: 14px; line-height: 1.55; }
.p4 { font-size: 12px; line-height: 1.5; }

@media (min-width: 1024px) {
  .hp-h1 { font-size: 76px; line-height: 81px; }
  .hp-h2 { font-size: 64px; line-height: 69px; }
  .hp-h3 { font-size: 56px; line-height: 61px; }
  .hp-h4 { font-size: 48px; line-height: 53px; }
}

/* === Buttons === */
.sm-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 16px; font-weight: 500; line-height: 1; letter-spacing: 0;
  height: 48px; padding: 0 24px; border-radius: 8px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; transition: background .18s, color .18s, border-color .18s, transform .18s;
  white-space: nowrap;
}
.sm-btn-primary { background: var(--servme-primary); color: var(--servme-bg); }
.sm-btn-primary:hover { background: var(--servme-primary-mid); color: var(--servme-bg); }
.sm-btn-ghost { background: transparent; color: var(--servme-primary); border-color: var(--servme-primary); }
.sm-btn-ghost:hover { background: var(--servme-primary); color: var(--servme-bg); }
.sm-btn-accent { background: var(--servme-accent); color: var(--servme-primary); }
.sm-btn-accent:hover { background: var(--servme-accent-deep); color: var(--servme-bg); }
@media (min-width: 768px) {
  .sm-btn { height: 51px; padding: 0 32px; font-size: 18px; }
}

/* === Layout containers === */
.container { max-width: 1320px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* === Hero === */
.hero {
  background: var(--servme-bg-warm);
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--border-1);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.hero-copy { max-width: 640px; }
@media (min-width: 768px) {
  .hero { padding: 88px 0 96px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (min-width: 1200px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

/* === Form card === */
.form-card {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  padding: 24px 20px;
}
.form-card-h {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.15;
  color: var(--servme-primary);
  margin: 0 0 6px;
  text-wrap: pretty;
}
.form-card-h em { font-style: italic; color: var(--servme-accent-deep); }
.form-card-sub {
  color: var(--fg-2);
  font-size: 14px;
  margin: 0 0 20px;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 12px; font-weight: 500; letter-spacing: .04em;
  color: var(--fg-2);
}
.form-field input {
  appearance: none; -webkit-appearance: none;
  background: var(--servme-bg);
  border: 1px solid var(--border-1);
  border-radius: 8px;
  padding: 0 14px;
  height: 48px;
  font-family: var(--font-body); font-size: 15px;
  color: var(--fg-1);
  outline: none;
  transition: border-color .15s, background .15s;
  width: 100%;
}
.form-field input::placeholder { color: rgba(29,64,68,0.35); }
.form-field input:focus { border-color: var(--servme-accent-deep); background: #fff; }
.form-disclaimer {
  font-size: 12px; line-height: 1.55;
  color: var(--fg-3);
  margin: 12px 0 16px;
}
.form-disclaimer a { color: var(--servme-accent-deep); border-bottom: 1px solid currentColor; }
.form-submit { width: 100%; }
.form-success {
  display: none;
  text-align: center; padding: 24px 8px;
}
.form-success.is-on { display: block; }
.form-success p { color: var(--fg-2); }
.form-card.is-submitted .form-card-h,
.form-card.is-submitted .form-card-sub,
.form-card.is-submitted .wpforms-container { display: none; }
@media (min-width: 480px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .form-card { padding: 32px; }
  .form-card-h { font-size: 32px; }
}

/* === WPForms — full custom styling (default WPForms CSS is dequeued) === */
.form-card .wpforms-container,
.form-card .wpforms-container-full {
  margin: 0; padding: 0; max-width: none;
}
.form-card .wpforms-form {
  margin: 0; padding: 0;
}

/* Field container — wrapping row so half-width fields sit side by side */
.form-card .wpforms-field-container {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.form-card .wpforms-field {
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
  width: 100%;
}

/* Labels */
.form-card .wpforms-field-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--fg-2);
  margin: 0;
  padding: 0;
  line-height: 1.4;
}
.form-card .wpforms-required-label {
  color: var(--servme-accent-deep);
  font-weight: 500;
}
.form-card .wpforms-field-sublabel { display: none; }
.form-card .wpforms-field-description { display: none; }

/* Text, email, tel inputs */
.form-card .wpforms-field input[type="text"],
.form-card .wpforms-field input[type="email"],
.form-card .wpforms-field input[type="tel"],
.form-card .wpforms-field input[type="url"],
.form-card .wpforms-field input[type="number"],
.form-card .wpforms-field textarea {
  appearance: none; -webkit-appearance: none;
  background: var(--servme-bg);
  border: 1px solid var(--border-1);
  border-radius: 8px;
  padding: 0 14px;
  height: 48px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg-1);
  outline: none;
  transition: border-color .15s, background .15s;
  width: 100%;
  box-sizing: border-box;
  box-shadow: none;
}
.form-card .wpforms-field input::placeholder { color: rgba(29,64,68,0.35); }
.form-card .wpforms-field input:focus,
.form-card .wpforms-field textarea:focus {
  border-color: var(--servme-accent-deep);
  background: #fff;
  box-shadow: none;
  outline: none;
}

/* Select / dropdown */
.form-card .wpforms-field select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background: var(--servme-bg);
  background-image: linear-gradient(45deg, transparent 50%, var(--servme-primary) 50%),
                    linear-gradient(135deg, var(--servme-primary) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 13px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  border: 1px solid var(--border-1);
  border-radius: 8px;
  padding: 0 36px 0 14px;
  height: 48px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg-1);
  outline: none;
  transition: border-color .15s, background-color .15s;
  width: 100%;
  cursor: pointer;
  line-height: 1.2;
  box-sizing: border-box;
  box-shadow: none;
}
.form-card .wpforms-field select:focus {
  border-color: var(--servme-accent-deep);
  background-color: #fff;
  box-shadow: none;
  outline: none;
}
.form-card .wpforms-field select option { color: var(--fg-1); background: #fff; }
.form-card .wpforms-field select option[disabled],
.form-card .wpforms-field select option.placeholder { color: rgba(29,64,68,0.4); }

/* Side-by-side: First Name + Last Name */
.form-card .wpforms-field.wpforms-one-half {
  width: calc(50% - 7px);
}
@media (max-width: 479px) {
  .form-card .wpforms-field.wpforms-one-half {
    width: 100%;
  }
}

/* Submit button */
.form-card .wpforms-submit-container {
  margin: 0;
  padding: 16px 0 0;
  text-align: center;
}
.form-card .wpforms-submit-container .wpforms-submit-spinner { display: none; }
.form-card .wpforms-submit-container .wpforms-submit-spinner[style*="display: inline"] { display: inline-block !important; vertical-align: middle; margin-left: 8px; }
.form-card button.wpforms-submit,
.form-card .wpforms-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s, color .18s, transform .18s;
  white-space: nowrap;
  background: var(--servme-primary);
  color: var(--servme-bg);
  width: 100%;
  box-shadow: none;
  -webkit-appearance: none;
}
.form-card button.wpforms-submit:hover,
.form-card .wpforms-submit:hover {
  background: var(--servme-primary-mid);
  color: var(--servme-bg);
}
@media (min-width: 768px) {
  .form-card button.wpforms-submit,
  .form-card .wpforms-submit { height: 51px; font-size: 18px; }
}

/* Honeypot */
.form-card .wpforms-field-hp { position: absolute; left: -9999px; }

/* Noscript warning */
.form-card .wpforms-error-noscript { display: none; }

/* Confirmation message */
.form-card .wpforms-confirmation-container-full,
.form-card .wpforms-confirmation-container {
  text-align: center;
  padding: 24px 8px;
  font-size: 15px;
}
.form-card .wpforms-confirmation-container-full p,
.form-card .wpforms-confirmation-container p {
  color: var(--fg-2);
  margin: 0;
}

/* Validation error states */
.form-card .wpforms-field input.wpforms-error,
.form-card .wpforms-field select.wpforms-error {
  border-color: #c0392b;
}
.form-card label.wpforms-error {
  font-family: var(--font-body);
  font-size: 12px;
  color: #c0392b;
  font-weight: 400;
  margin: 4px 0 0;
  padding: 0;
  display: block;
  border: none;
  background: none;
}

/* Hidden fields */
.form-card input[type="hidden"] { display: none; }

/* === HubSpot form overrides === */
#hubspot-form,
#hubspot-form .hbspt-form,
#hubspot-form form {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

/* Hide HubSpot-injected title & description */
#hubspot-form .hs-richtext:first-child,
#hubspot-form form > .hs-richtext:first-child,
#hubspot-form .hs-richtext h3,
#hubspot-form .hs-richtext p {
  display: none !important;
}

/* Fieldsets */
#hubspot-form fieldset {
  margin: 0 0 14px !important;
  padding: 0 !important;
  border: none !important;
  max-width: 100% !important;
  width: 100% !important;
}
#hubspot-form fieldset.form-columns-2 {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
#hubspot-form fieldset.form-columns-1 {
  display: block !important;
}

/* Fields */
#hubspot-form .hs-form-field {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  float: none !important;
}
#hubspot-form .input {
  margin: 0 !important;
}

/* Labels — hide them (placeholders are visible) */
#hubspot-form label.hs-form-field__label,
#hubspot-form .hs-form-field > label {
  display: none !important;
}

/* All text inputs */
#hubspot-form input[type="text"],
#hubspot-form input[type="email"],
#hubspot-form input[type="tel"],
#hubspot-form input[type="number"],
#hubspot-form input[type="url"],
#hubspot-form textarea,
#hubspot-form .hs-input[type="text"],
#hubspot-form .hs-input[type="email"],
#hubspot-form .hs-input[type="tel"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  background: var(--servme-bg) !important;
  border: 1px solid var(--border-1) !important;
  border-radius: 8px !important;
  padding: 0 14px !important;
  height: 48px !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  color: var(--fg-1) !important;
  outline: none !important;
  transition: border-color .15s, background .15s;
  width: 100% !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
}
#hubspot-form input::placeholder { color: rgba(29,64,68,0.35) !important; }
#hubspot-form input:focus,
#hubspot-form textarea:focus {
  border-color: var(--servme-accent-deep) !important;
  background: #fff !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Selects */
#hubspot-form select,
#hubspot-form .hs-input[type="select"],
#hubspot-form select.hs-input {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background: var(--servme-bg) !important;
  background-image: linear-gradient(45deg, transparent 50%, var(--servme-primary) 50%),
                    linear-gradient(135deg, var(--servme-primary) 50%, transparent 50%) !important;
  background-position: calc(100% - 18px) center, calc(100% - 13px) center !important;
  background-size: 5px 5px, 5px 5px !important;
  background-repeat: no-repeat !important;
  border: 1px solid var(--border-1) !important;
  border-radius: 8px !important;
  padding: 0 36px 0 14px !important;
  height: 48px !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  color: var(--fg-1) !important;
  outline: none !important;
  width: 100% !important;
  cursor: pointer;
  box-sizing: border-box !important;
  box-shadow: none !important;
}
#hubspot-form select:focus {
  border-color: var(--servme-accent-deep) !important;
  background-color: #fff !important;
}

/* Phone field: country code + number side by side */
#hubspot-form .hs-fieldtype-intl-phone {
  display: flex !important;
  gap: 8px;
}
#hubspot-form .hs-fieldtype-intl-phone select {
  flex: 0 0 120px !important;
  width: 120px !important;
}
#hubspot-form .hs-fieldtype-intl-phone input {
  flex: 1 !important;
  min-width: 0 !important;
}

/* Submit button */
#hubspot-form .hs-submit,
#hubspot-form .hs_submit {
  margin: 16px 0 0 !important;
  padding: 0 !important;
}
#hubspot-form .hs-button,
#hubspot-form input[type="submit"],
#hubspot-form button[type="submit"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  height: 48px !important;
  padding: 0 24px !important;
  border-radius: 8px !important;
  border: 1px solid transparent !important;
  cursor: pointer !important;
  transition: background .18s, color .18s;
  background: var(--servme-primary) !important;
  color: var(--servme-bg) !important;
  width: 100% !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
#hubspot-form .hs-button:hover,
#hubspot-form input[type="submit"]:hover,
#hubspot-form button[type="submit"]:hover {
  background: var(--servme-primary-mid) !important;
  color: var(--servme-bg) !important;
}
@media (min-width: 768px) {
  #hubspot-form .hs-button,
  #hubspot-form input[type="submit"],
  #hubspot-form button[type="submit"] { height: 51px !important; font-size: 18px !important; }
}

/* Legal / disclaimer */
#hubspot-form .legal-consent-container {
  font-size: 12px !important;
  line-height: 1.55 !important;
  color: var(--fg-3) !important;
  margin: 12px 0 0 !important;
}
#hubspot-form .legal-consent-container a { color: var(--servme-accent-deep) !important; }
#hubspot-form .legal-consent-container p { font-size: 12px !important; color: var(--fg-3) !important; }

/* Error messages */
#hubspot-form .hs-error-msgs {
  list-style: none !important;
  margin: 4px 0 0 !important;
  padding: 0 !important;
}
#hubspot-form .hs-error-msgs li,
#hubspot-form .hs-error-msgs label {
  font-size: 12px !important;
  color: #c0392b !important;
  font-weight: 400 !important;
}
#hubspot-form .hs-input.error,
#hubspot-form .error {
  border-color: #c0392b !important;
}

/* Hide HubSpot branding */
#hubspot-form .hs-form__virality-link,
#hubspot-form .hubspot-link__container { display: none !important; }

@media (max-width: 479px) {
  #hubspot-form fieldset.form-columns-2 {
    grid-template-columns: 1fr !important;
  }
}

/* === Trust strip === */
.trust {
  padding: 56px 0;
  background: var(--servme-bg);
}
.trust-label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.35;
  color: var(--servme-primary);
  text-align: center;
  max-width: 36ch;
  margin: 0 auto 32px;
  text-wrap: pretty;
}
.lm-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.lm-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 56px;
  list-style: none;
  margin: 0;
  padding: 0;
  animation: lm-scroll 60s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .lm-track { animation: none; }
}
.lm-marquee:hover .lm-track { animation-play-state: paused; }
.lm-item {
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.lm-item img {
  display: block;
  height: 36px;
  width: auto;
  max-width: none;
  object-fit: contain;
  opacity: 0.62;
  filter: grayscale(100%);
  transition: opacity .2s;
}
.lm-item:hover img { opacity: 0.9; }
@keyframes lm-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (min-width: 640px) {
  .lm-track { gap: 64px; }
  .lm-item img { height: 44px; }
}
@media (min-width: 960px) {
  .trust { padding: 80px 0; }
  .trust-label { font-size: 28px; margin-bottom: 48px; max-width: none; }
  .trust-label .desk-only { display: inline; }
  .desk-only { display: inline; }
  .lm-track { gap: 80px; }
  .lm-item img { height: 52px; }
}
.desk-only { display: none; }

/* === Expect section === */
.expect {
  background: var(--servme-primary);
  color: var(--servme-bg);
  padding: 64px 0;
}
.expect-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.expect-head .eyebrow { color: var(--servme-accent); }
.expect-head .hp-h2 { color: var(--servme-bg); }
.expect-head .hp-h2 em { color: var(--servme-accent); }
.expect-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.step {
  border: 1px solid rgba(250,250,249,0.14);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  background: rgba(255,255,255,0.02);
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.step:hover {
  background: rgba(219,172,107,0.10);
  border-color: var(--servme-accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(7,29,30,0.25), 0 2px 6px rgba(7,29,30,0.18);
}
.step:hover .step-num { color: var(--servme-bg); }
.step:hover .step-h { color: var(--servme-accent); }
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 48px; line-height: 1;
  color: var(--servme-accent);
  margin-bottom: 16px;
  display: block;
  transition: color .2s ease;
}
.step-h {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  color: var(--servme-bg);
  margin: 0 0 10px;
  text-wrap: pretty;
  transition: color .2s ease;
}
.step-p {
  color: rgba(250,250,249,0.78);
  font-size: 15px; line-height: 1.6;
  margin: 0;
}
.expect-reassure {
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--servme-accent);
  line-height: 1.4;
  text-wrap: pretty;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .expect { padding: 88px 0; }
  .expect-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .step { padding: 32px 28px; }
  .step-num { font-size: 56px; margin-bottom: 20px; }
  .step-h { font-size: 26px; }
  .expect-reassure { font-size: 22px; margin-top: 48px; }
}
@media (min-width: 1100px) {
  .expect-reassure { max-width: none; white-space: nowrap; }
}

/* === Testimonials === */
.tt {
  background: var(--servme-bg);
  padding: 64px 0;
}
.tt-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
@media (min-width: 1024px) {
  .tt-head { max-width: 1100px; }
}
.tt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.tt-card {
  background: var(--servme-bg-warm);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.tt-card:hover {
  background: var(--servme-primary);
  border-color: var(--servme-primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(7,29,30,0.12), 0 2px 6px rgba(7,29,30,0.06);
}
.tt-card:hover .tt-quote { color: var(--servme-bg); }
.tt-card:hover .tt-name { color: var(--servme-accent); }
.tt-card:hover .tt-role,
.tt-card:hover .tt-since { color: rgba(250,250,249,0.7); }
.tt-card:hover .tt-meta { border-top-color: rgba(250,250,249,0.18); }
.tt-stars {
  color: var(--servme-accent-deep);
  letter-spacing: 3px; font-size: 14px;
  margin: 0 0 16px;
  line-height: 1;
}
.tt-card:hover .tt-stars { color: var(--servme-accent); }
.tt-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.45;
  color: var(--servme-primary);
  margin: 0 0 24px;
  text-wrap: pretty;
  flex: 1;
  transition: color .2s ease;
}
.tt-meta { border-top: 1px solid var(--border-1); padding-top: 16px; transition: border-color .2s ease; }
.tt-name { font-weight: 600; color: var(--servme-primary); font-size: 14px; transition: color .2s ease; }
.tt-role { color: var(--fg-3); font-size: 13px; margin-top: 2px; transition: color .2s ease; }
.tt-since { color: var(--fg-3); font-size: 12px; margin-top: 6px; font-style: italic; transition: color .2s ease; }
@media (min-width: 768px) {
  .tt { padding: 88px 0; }
  .tt-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .tt-quote { font-size: 21px; }
}
@media (min-width: 1080px) {
  .tt-grid { grid-template-columns: repeat(4, 1fr); }
}
