/* ============================================================
   Let's Talk / Contact page — themed to match site visual system
   (bordered grid panels · cyan accents · mono labels)
   ============================================================ */

/* -------- HERO -------- */
.ct-hero {
  position: relative; padding: 120px 0 90px;
  background:
    radial-gradient(60% 80% at 50% -10%, rgba(0,85,255,0.18), transparent 60%),
    radial-gradient(50% 60% at 100% 0%, rgba(79,200,255,0.08), transparent 70%),
    var(--site-bg, #05070F);
  overflow: hidden; border-bottom: 1px solid var(--site-line);
}
.ct-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 80% at 50% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(70% 80% at 50% 30%, #000 0%, transparent 75%);
  pointer-events: none;
}
.ct-hero-glow {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 1100px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(0,85,255,0.16) 0%, transparent 60%);
  filter: blur(60px); pointer-events: none; opacity: 0.7;
}
.ct-hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 64px; align-items: center;
}
.ct-hero-left { max-width: 580px; }
.ct-hero-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(44px, 5.4vw, 76px); line-height: 1.02;
  letter-spacing: -0.03em; color: #fff;
  margin: 22px 0 26px;
}
.ct-hero-accent {
  background: linear-gradient(90deg, var(--site-cyan), #2D7BFF);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ct-hero-chips { display: flex; flex-direction: column; gap: 10px; }
.ct-hero-chip {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13.5px; color: var(--site-text);
}
.ct-hero-chip i {
  width: 6px; height: 6px; background: var(--site-cyan);
  display: inline-block; flex-shrink: 0;
}

/* hero visual — live inbound console */
.ct-hv {
  position: relative;
  border: 1px solid var(--site-line);
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.005) 100%);
  font-family: var(--font-mono);
  display: flex; flex-direction: column;
  min-height: 360px;
}
.ct-hv-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 16px; border-bottom: 1px solid var(--site-line);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--site-text-3);
}
.ct-hv-dots { display: inline-flex; gap: 5px; }
.ct-hv-dots i { width: 7px; height: 7px; border: 1px solid var(--site-line); display: block; }
.ct-hv-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); }
.ct-hv-stat-cell {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 18px;
  border-right: 1px solid var(--site-line);
  border-bottom: 1px solid var(--site-line);
}
.ct-hv-stat-cell:last-child { border-right: 0; }
.ct-hv-stat-cell .lbl {
  font-size: 9.5px; letter-spacing: 0.2em; color: var(--site-text-3);
}
.ct-hv-stat-cell .val {
  font-family: var(--font-display); font-size: 22px; color: #fff;
  font-weight: 400; letter-spacing: -0.02em;
}
.ct-hv-stat-cell .val.ok {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em;
  color: var(--site-mint); display: inline-flex; align-items: center; gap: 8px;
}
.ct-hv-stat-cell .val.ok .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--site-mint);
  box-shadow: 0 0 0 3px rgba(94,255,164,0.18);
  animation: ct-pulse 1.6s ease-in-out infinite;
}
@keyframes ct-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(94,255,164,0.18); }
  50% { box-shadow: 0 0 0 6px rgba(94,255,164,0.04); }
}

/* event stream */
.ct-hv-stream {
  flex: 1; display: flex; flex-direction: column;
  padding: 8px 0;
}
.ct-hv-event {
  display: grid; grid-template-columns: 80px 70px 1fr;
  gap: 14px; align-items: center;
  padding: 10px 18px;
  font-size: 12px; line-height: 1.3;
  border-bottom: 1px solid var(--site-line);
  opacity: 0; transform: translateY(-4px);
  animation: ct-evt 320ms ease-out forwards;
}
.ct-hv-event:last-child { border-bottom: 0; }
@keyframes ct-evt {
  to { opacity: 1; transform: translateY(0); }
}
.ct-hv-time { color: var(--site-text-3); letter-spacing: 0.06em; }
.ct-hv-kind {
  font-size: 10px; letter-spacing: 0.18em; color: var(--site-cyan);
  padding: 2px 6px; border: 1px solid var(--site-line); justify-self: start;
}
.ct-hv-msg { color: var(--site-text); font-family: var(--font-mono); font-size: 12px; }

.ct-hv-foot {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 18px; border-top: 1px solid var(--site-line);
  background: rgba(0,85,255,0.04);
}
.ct-hv-wave { display: inline-flex; gap: 3px; align-items: center; height: 18px; flex: 1; }
.ct-hv-wave span {
  display: block; width: 3px; background: linear-gradient(180deg, var(--site-cyan), var(--site-blue));
  animation: ct-wave 1.2s infinite ease-in-out;
}
@keyframes ct-wave {
  0%, 100% { height: 4px; opacity: 0.4; }
  50% { height: 16px; opacity: 1; }
}
.ct-hv-foot-lbl {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--site-cyan); white-space: nowrap;
}

/* -------- CONTACT BLOCK -------- */
.ct-block { padding: 80px 0 96px; }
.ct-block-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 0;
  border: 1px solid var(--site-line);
  background: rgba(255,255,255,0.012);
}

/* left info pane */
.ct-block-left {
  padding: 36px 36px;
  border-right: 1px solid var(--site-line);
  display: flex; flex-direction: column; gap: 28px;
  background:
    radial-gradient(70% 60% at 0% 0%, rgba(0,85,255,0.08), transparent 60%),
    transparent;
}
.ct-info { display: flex; flex-direction: column; gap: 8px; }
.ct-info-lbl {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--site-cyan);
}
.ct-info-val {
  font-family: var(--font-display); font-size: clamp(20px, 1.8vw, 24px);
  color: #fff; font-weight: 400; letter-spacing: -0.01em;
  text-decoration: none;
  transition: color 200ms;
  word-break: break-word;
}
.ct-info-val:hover { color: var(--site-cyan); }

.ct-block-divider {
  height: 1px; background: var(--site-line); margin: 4px 0;
}
.ct-block-tag {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 24px; border-top: 1px solid var(--site-line);
}
.ct-block-tag-lbl {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--site-text-3);
}
.ct-block-tag-val {
  font-size: 13px; line-height: 1.55; color: var(--site-text-2);
}

/* right form pane */
.ct-block-right { padding: 36px 36px; }

/* ============================================================
   /lets-talk FORM — SOTA refresh (2026-06)
   Dark + cyan, generous touch targets, soft 8px radius, clean focus
   ring, live blur validation, inline check, helper text + counter.
   ============================================================ */
.ct-form {
  position: relative;
  --ct-bg: rgba(255,255,255,0.025);
  --ct-bg-h: rgba(255,255,255,0.04);
  --ct-bg-f: rgba(79,200,255,0.045);
  --ct-line: rgba(255,255,255,0.12);
  --ct-line-h: rgba(255,255,255,0.22);
  --ct-line-f: rgba(79,200,255,0.95);
  --ct-ring: rgba(79,200,255,0.16);
  --ct-mint: var(--site-mint, #5BE3A8);
  --ct-red:  var(--site-red,  #FF6B6B);
}

.ct-form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px 18px;
}

.ct-field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.ct-field.span-2 { grid-column: 1 / -1; }

.ct-field > label {
  display: flex; align-items: baseline; gap: 8px;
  font-family: inherit;
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.01em;
  color: rgba(255,255,255,0.86);
  text-transform: none;
  line-height: 1;
}
.ct-field-req,
.ct-field-opt {
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 999px;
  line-height: 1;
}
.ct-field-req {
  color: var(--site-cyan); background: rgba(79,200,255,0.10);
  border: 1px solid rgba(79,200,255,0.25);
}
.ct-field-opt {
  color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.ct-field-wrap {
  position: relative;
  isolation: isolate;
}

.ct-field input,
.ct-field textarea,
.ct-field select {
  width: 100%; box-sizing: border-box;
  font-family: inherit;
  font-size: 14.5px; line-height: 1.5;
  color: #fff;
  background: var(--ct-bg);
  border: 1px solid var(--ct-line);
  border-radius: 8px;
  padding: 14px 16px;
  outline: none;
  appearance: none; -webkit-appearance: none;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
  caret-color: var(--site-cyan);
}
.ct-field input,
.ct-field textarea {
  min-height: 50px;
}
.ct-field textarea {
  min-height: 144px;
  resize: vertical;
  line-height: 1.55;
  padding-bottom: 36px; /* room for counter */
}
.ct-field input:hover,
.ct-field textarea:hover,
.ct-field select:hover {
  border-color: var(--ct-line-h);
  background-color: var(--ct-bg-h);
}
.ct-field input:focus,
.ct-field textarea:focus,
.ct-field select:focus {
  border-color: var(--ct-line-f);
  background-color: var(--ct-bg-f);
  box-shadow: 0 0 0 4px var(--ct-ring);
}
.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: rgba(255,255,255,0.30);
}
.ct-field input:-webkit-autofill,
.ct-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 1000px rgba(15,22,40,0.92) inset;
  caret-color: var(--site-cyan);
  transition: background-color 5000s ease;
}

/* select chevron */
.ct-field select {
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.55) 50%),
    linear-gradient(-45deg, transparent 50%, rgba(255,255,255,0.55) 50%);
  background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}
.ct-field select:focus {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--site-cyan) 50%),
    linear-gradient(-45deg, transparent 50%, var(--site-cyan) 50%);
}
.ct-field select option { background: #0A0E1F; color: #fff; }

/* live-valid check (only for required text/email/tel after a successful blur) */
.ct-field-check {
  position: absolute; top: 50%; right: 14px;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(91,227,168,0.16);
  color: var(--ct-mint);
  pointer-events: none;
  animation: ctCheckPop 220ms cubic-bezier(.34,1.56,.64,1);
}
.ct-field input + .ct-field-check ~ * { /* placeholder so check sits over input */ }
.ct-field.is-valid input,
.ct-field.is-valid input:hover {
  padding-right: 44px;
  border-color: rgba(91,227,168,0.45);
}
@keyframes ctCheckPop {
  0%   { transform: translateY(-50%) scale(0.4); opacity: 0; }
  100% { transform: translateY(-50%) scale(1);   opacity: 1; }
}

/* error state */
.ct-field.has-err input,
.ct-field.has-err select,
.ct-field.has-err textarea {
  border-color: var(--ct-red);
  background-color: rgba(255,107,107,0.06);
}
.ct-field.has-err input:focus,
.ct-field.has-err select:focus,
.ct-field.has-err textarea:focus {
  box-shadow: 0 0 0 4px rgba(255,107,107,0.16);
}
.ct-field-err {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: inherit; font-size: 12px; line-height: 1.3;
  color: var(--ct-red);
  margin-top: 2px;
  animation: ctErrSlide 220ms ease;
}
.ct-field-err::before {
  content: '!';
  display: grid; place-items: center;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ct-red);
  color: #fff;
  font-size: 9px; font-weight: 700; line-height: 1;
}
@keyframes ctErrSlide {
  from { opacity: 0; transform: translateY(-3px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* helper text + char counter */
.ct-field-hint {
  font-size: 12px; line-height: 1.4;
  color: rgba(255,255,255,0.42);
  margin-top: 2px;
}
.ct-field-count {
  position: absolute;
  right: 12px; bottom: 10px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  background: rgba(10,14,31,0.6);
  padding: 2px 6px;
  border-radius: 4px;
  pointer-events: none;
}
.ct-field.is-textarea { position: relative; }

/* footer + submit */
.ct-form-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px; flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ct-form-meta {
  display: flex; align-items: center; gap: 10px;
  font-family: inherit; font-size: 12px; line-height: 1.4;
  color: rgba(255,255,255,0.48);
  max-width: 380px;
}
.ct-form-meta a {
  color: rgba(255,255,255,0.72); text-decoration: underline;
  text-underline-offset: 2px; text-decoration-thickness: 1px;
  text-decoration-color: rgba(79,200,255,0.45);
}
.ct-form-meta a:hover { color: #fff; text-decoration-color: var(--site-cyan); }
.ct-form-meta-dot {
  flex: 0 0 7px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ct-mint);
  box-shadow: 0 0 8px var(--ct-mint);
  animation: ctMetaPulse 1.8s ease-in-out infinite;
}
@keyframes ctMetaPulse {
  0%,100% { opacity: 0.55; transform: scale(1); }
  50%     { opacity: 1;    transform: scale(1.25); }
}
.ct-form-spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.28);
  border-top-color: #fff;
  border-radius: 50%;
  margin-right: 8px;
  animation: ctSpin 0.7s linear infinite;
  vertical-align: middle;
}
@keyframes ctSpin { to { transform: rotate(360deg); } }

/* --- Futuristic CTA --- */
.ct-cta {
  position: relative;
  isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 220px; padding: 14px 26px;
  font-family: inherit; font-size: 13.5px; font-weight: 500; letter-spacing: 0.04em;
  color: #fff;
  background: transparent;
  border: 1px solid var(--site-cyan);
  cursor: pointer;
  overflow: hidden;
  transition: color 220ms ease, transform 200ms ease, box-shadow 280ms ease, letter-spacing 280ms ease;
  --rx: 50%; --ry: 50%;
}
.ct-cta:disabled { cursor: not-allowed; opacity: 0.7; }
.ct-cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, #0066FF 0%, #4FC8FF 50%, #0066FF 100%);
  background-size: 220% 100%;
  background-position: 0% 50%;
  z-index: -1;
  transition: background-position 600ms cubic-bezier(.4,.1,.4,1), opacity 280ms ease;
}
.ct-cta-corner {
  position: absolute; width: 10px; height: 10px;
  border: 1.5px solid #fff;
  opacity: 0;
  transition: opacity 240ms ease, transform 240ms ease;
  z-index: 1; pointer-events: none;
}
.ct-cta-corner.tl { left: -2px;  top: -2px;    border-right: 0; border-bottom: 0; transform: translate(6px, 6px); }
.ct-cta-corner.tr { right: -2px; top: -2px;    border-left: 0;  border-bottom: 0; transform: translate(-6px, 6px); }
.ct-cta-corner.bl { left: -2px;  bottom: -2px; border-right: 0; border-top: 0;    transform: translate(6px, -6px); }
.ct-cta-corner.br { right: -2px; bottom: -2px; border-left: 0;  border-top: 0;    transform: translate(-6px, -6px); }
.ct-cta:hover:not(:disabled) {
  letter-spacing: 0.08em;
  box-shadow: 0 10px 36px rgba(0,102,255,0.45), 0 0 0 1px rgba(79,200,255,0.6);
}
.ct-cta:hover:not(:disabled) .ct-cta-bg { background-position: 100% 50%; }
.ct-cta:hover:not(:disabled) .ct-cta-corner { opacity: 1; transform: translate(0,0); }
.ct-cta:active:not(:disabled) { transform: translateY(1px) scale(0.99); }
.ct-cta-ripple {
  position: absolute;
  left: var(--rx); top: var(--ry);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  z-index: 1;
}
.ct-cta:active:not(:disabled) .ct-cta-ripple {
  animation: ctRipple 600ms ease-out forwards;
}
@keyframes ctRipple {
  0%   { transform: translate(-50%, -50%) scale(0);   opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(60);  opacity: 0; }
}
.ct-cta-label {
  display: inline-flex; align-items: center; gap: 10px;
  position: relative; z-index: 2;
}
.ct-cta-spin {
  width: 12px; height: 12px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ctSpin 0.8s linear infinite;
}
@keyframes ctSpin { to { transform: rotate(360deg); } }
.ct-cta.is-sending { letter-spacing: 0.06em; }

.ct-form-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 26px; min-width: 200px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  border-radius: 8px;
  border: 1px solid var(--site-cyan);
  color: #fff;
  background: linear-gradient(135deg, #0066FF 0%, #4FC8FF 100%);
  box-shadow: 0 6px 24px -10px rgba(0,102,255,0.55), 0 0 0 1px rgba(79,200,255,0.18);
  transition: transform 160ms ease, box-shadow 220ms ease, filter 160ms ease;
  cursor: pointer;
}
.ct-form-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 12px 32px -10px rgba(0,102,255,0.65), 0 0 0 1px rgba(79,200,255,0.32);
}
.ct-form-submit:active:not(:disabled) { transform: translateY(0); }
.ct-form-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
  color: rgba(255,255,255,0.5);
}
.ct-form-submit:disabled .ct-form-spinner {
  opacity: 1;
}

/* success */
.ct-form-success {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 16px 0;
}
.ct-form-success-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--site-mint);
  background: rgba(94,255,164,0.08);
  color: var(--site-mint);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.ct-form-success-title {
  font-family: var(--font-display); font-size: 28px; color: #fff;
  font-weight: 500; letter-spacing: -0.02em; margin-bottom: 10px;
}
.ct-form-success-desc {
  font-size: 14px; line-height: 1.6; color: var(--site-text-2);
  margin: 0 0 22px; max-width: 480px;
}
.ct-form-success-desc strong { color: #fff; font-weight: 500; }

/* -------- OFFICES -------- */
.ct-offices { padding: 0 0 96px; }
.ct-offices-title {
  margin-top: 18px; margin-bottom: 40px;
  font-size: clamp(32px, 3.6vw, 48px);
}
.ct-off-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1px solid var(--site-line);
}
.ct-off-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 24px 22px 26px;
  background: rgba(255,255,255,0.012);
  min-height: 150px;
  border-right: 1px solid var(--site-line);
  border-bottom: 1px solid var(--site-line);
  transition: background 200ms;
}
.ct-off-card:hover { background: rgba(0,85,255,0.05); }
.ct-off-card:nth-child(4n) { border-right: 0; }
/* with 7 cards in 4 cols: row 1 = 4 cards, row 2 = 3 cards.
   removing bottom border on the last row (cards 5,6,7) */
.ct-off-card:nth-child(n+5) { border-bottom: 0; }
.ct-off-card.is-hq {
  background: linear-gradient(180deg, rgba(0,85,255,0.10) 0%, rgba(0,85,255,0.02) 100%);
}
.ct-off-tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--site-cyan);
}
.ct-off-card.is-hq .ct-off-tag { color: var(--site-mint); }
.ct-off-city {
  font-family: var(--font-display); font-size: 21px; color: #fff;
  font-weight: 500; letter-spacing: -0.02em;
}
.ct-off-addr {
  font-size: 13px; line-height: 1.55; color: var(--site-text-2);
}

/* -------- RESPONSIVE -------- */
@media (max-width: 1180px) {
  .ct-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .ct-hv { min-height: 320px; }
  .ct-block-grid { grid-template-columns: 1fr; }
  .ct-block-left { border-right: 0; border-bottom: 1px solid var(--site-line); }
  .ct-off-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-off-card { border-right: 1px solid var(--site-line); border-bottom: 1px solid var(--site-line); }
  .ct-off-card:nth-child(4n) { border-right: 1px solid var(--site-line); }
  .ct-off-card:nth-child(2n) { border-right: 0; }
  .ct-off-card:nth-child(n+5) { border-bottom: 1px solid var(--site-line); }
  .ct-off-card:last-child { border-bottom: 0; }
  .ct-off-card:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
}

@media (max-width: 720px) {
  .ct-hero { padding: 100px 0 56px; }
  .ct-hero-title { margin-bottom: 22px; }
  .ct-hv-event { grid-template-columns: 70px 60px 1fr; gap: 10px; padding: 9px 14px; }
  .ct-hv-stat-cell { padding: 14px 14px; }
  .ct-block { padding: 48px 0 56px; }
  .ct-block-left, .ct-block-right { padding: 26px 22px; }
  .ct-form-grid { grid-template-columns: 1fr; gap: 16px; }
  .ct-field.span-2 { grid-column: auto; }
  .ct-form-submit { width: 100%; }
  .ct-off-grid { grid-template-columns: 1fr; }
  .ct-off-card { border-right: 0 !important; border-bottom: 1px solid var(--site-line) !important; }
  .ct-off-card:last-child { border-bottom: 0 !important; }
  .ct-offices { padding: 0 0 64px; }
}
