/* ═══════════════════════════════════════════════════════════════
   WERQLABS - CONTACT PAGE CSS  (contact-v2.css)
   Inherits: uberheal-v2.css design tokens & animation system
   New components: contact hero, form, method cards, map band,
                   FAQ accordion, trust strip
   ═══════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════
   01  CONTACT HERO
   Full-bleed split: left copy panel / right full-height form panel
   ═══════════════════════════════════════════════════════════════ */
.ct-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 5fr 7fr;
  overflow: hidden;
  background: #060A13;
}

.uh2-reveal {
  animation: uh2-revealFallback 0s 2s forwards;
}

@keyframes uh2-revealFallback {
  to {
    opacity: 1;
    transform: none;
  }
}

/* subtle dot-grid texture */
.ct-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(59, 99, 207, 0.13) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 60% 80% at 20% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 20% 50%, black 20%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* glow orb */
.ct-hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(59, 99, 207, 0.09) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── LEFT PANEL ── */
.ct-hero__left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 100px 40px;
}

/* vertical separator line */
.ct-hero__left::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
      transparent,
      var(--prod-accent-border) 25%,
      var(--prod-accent-border) 75%,
      transparent);
  z-index: 3;
}

.ct-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 6px;
  background: rgba(59, 99, 207, 0.1);
  border: 1px solid var(--prod-accent-border);
  border-radius: 4px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--prod-accent-light);
  margin-bottom: 32px;
  width: fit-content;
  opacity: 0;
  animation: uh2-slideRight 0.7s ease 0.1s forwards;
}

.ct-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--prod-accent);
  animation: uh2-pulse 2.2s ease infinite;
}

.ct-hero__title {
  font-family: var(--font-head, 'Space Grotesk', sans-serif);
  font-size: clamp(2.8rem, 3.8vw, 4.4rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--prod-text-primary);
  margin-bottom: 24px;
  opacity: 0;
  animation: uh2-fadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.ct-hero__title em {
  font-style: normal;
  position: relative;
  display: inline-block;
  color: var(--prod-accent-light);
}

.ct-hero__sub {
  font-size: 1.05rem;
  color: var(--prod-text-secondary);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 52px;
  opacity: 0;
  animation: uh2-fadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* Contact method quick-links */
.ct-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  animation: uh2-fadeUp 0.75s ease 0.55s forwards;
}

.ct-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid var(--prod-border);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  cursor: pointer;
}

.ct-method:hover {
  border-color: var(--prod-accent-border);
  background: rgba(59, 99, 207, 0.05);
  transform: translateX(4px);
}

.ct-method__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(59, 99, 207, 0.1);
  border: 1px solid var(--prod-accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--prod-accent-light);
  flex-shrink: 0;
  transition: background 0.25s;
}

.ct-method:hover .ct-method__icon {
  background: rgba(59, 99, 207, 0.18);
}

.ct-method__body {
  flex: 1;
}

.ct-method__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--prod-text-muted);
  margin-bottom: 2px;
  font-family: var(--font-mono, monospace);
}

.ct-method__value {
  font-size: 14px;
  font-weight: 600;
  color: var(--prod-text-primary);
}

.ct-method__arrow {
  color: var(--prod-text-muted);
  transition: color 0.25s, transform 0.25s;
}

.ct-method:hover .ct-method__arrow {
  color: var(--prod-accent-light);
  transform: translateX(3px);
}

/* Response time badge */
.ct-response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 8px 14px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 100px;
  font-size: 12px;
  color: #86EFAC;
  font-weight: 500;
  opacity: 0;
  animation: uh2-fadeUp 0.6s ease 0.7s forwards;
}

.ct-response-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
  animation: uh2-pulse 2s ease infinite;
}

/* ── RIGHT PANEL - FORM ── */
.ct-hero__right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 56px 80px 72px;
  background: rgba(10, 15, 28, 0.5);
}

.ct-form-wrap {
  width: 100%;
  max-width: 560px;
  opacity: 0;
  animation: uh2-scaleIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.ct-form-header {
  margin-bottom: 36px;
}

.ct-form-header__title {
  font-family: var(--font-head, 'Space Grotesk', sans-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--prod-text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.ct-form-header__sub {
  font-size: 0.875rem;
  color: var(--prod-text-muted);
}

/* Tab switcher */
.ct-tabs {
  display: flex;
  gap: 0;
  background: rgba(6, 10, 19, 0.6);
  border: 1px solid var(--prod-border);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 32px;
}

.ct-tab {
  flex: 1;
  padding: 9px 16px;
  border-radius: 6px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--prod-text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}

.ct-tab.active {
  background: var(--prod-accent);
  color: #fff;
}

.ct-tab:not(.active):hover {
  color: var(--prod-text-secondary);
}

/* Form fields */
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ct-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--prod-text-secondary);
  font-family: var(--font-mono, monospace);
  text-transform: uppercase;
}

.ct-label span {
  color: var(--prod-accent-light);
}

.ct-input,
.ct-select,
.ct-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(6, 10, 19, 0.7);
  border: 1px solid var(--prod-border-mid);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--prod-text-primary);
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.ct-input::placeholder,
.ct-textarea::placeholder {
  color: var(--prod-text-muted);
}

.ct-input:focus,
.ct-select:focus,
.ct-textarea:focus {
  border-color: var(--prod-accent);
  background: rgba(59, 99, 207, 0.04);
  box-shadow: 0 0 0 3px rgba(59, 99, 207, 0.12);
}

.ct-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  color: var(--prod-text-secondary);
}

.ct-select option {
  background: #111827;
  color: #fff;
}

.ct-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.65;
}

/* Character counter */
.ct-field__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

.ct-char-count {
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  color: var(--prod-text-muted);
}

/* Checkbox row */
.ct-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ct-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--prod-border-mid);
  background: rgba(6, 10, 19, 0.7);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--prod-accent);
}

.ct-checkbox-label {
  font-size: 12px;
  color: var(--prod-text-muted);
  line-height: 1.6;
}

.ct-checkbox-label a {
  color: var(--prod-accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Submit button */
.ct-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 28px;
  background: var(--prod-accent);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}

.ct-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      transparent 30%,
      rgba(255, 255, 255, 0.07) 50%,
      transparent 70%);
  background-size: 300px 100%;
  background-position: -300px 0;
  transition: background-position 0.5s ease;
}

.ct-submit:hover::before {
  background-position: 300px 0;
}

.ct-submit:hover {
  background: var(--prod-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(59, 99, 207, 0.4);
}

.ct-submit:active {
  transform: translateY(0);
}

/* Success state */
.ct-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  gap: 20px;
}

.ct-success.show {
  display: flex;
}

.ct-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22C55E;
  animation: uh2-scaleIn 0.5s ease forwards;
}

.ct-success__title {
  font-family: var(--font-head, 'Space Grotesk', sans-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--prod-text-primary);
}

.ct-success__sub {
  font-size: 0.9rem;
  color: var(--prod-text-muted);
  line-height: 1.7;
  max-width: 320px;
}


/* ═══════════════════════════════════════════════════════════════
   02  STATS STRIP
   ═══════════════════════════════════════════════════════════════ */
.ct-stats-strip {
  background: rgba(10, 15, 28, 0.8);
  border-top: 1px solid var(--prod-border);
  border-bottom: 1px solid var(--prod-border);
}

.ct-stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--prod-border);
}

.ct-stat-item {
  padding: 32px 40px;
  border-right: 1px solid var(--prod-border);
  position: relative;
  transition: background 0.25s;
}

.ct-stat-item:last-child {
  border-right: none;
}

.ct-stat-item:hover {
  background: rgba(59, 99, 207, 0.03);
}

.ct-stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--prod-accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.ct-stat-item:hover::before {
  transform: scaleX(1);
}

.ct-stat-item__val {
  font-family: var(--font-head, 'Space Grotesk', sans-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--prod-text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.ct-stat-item__val em {
  font-style: normal;
  color: var(--prod-accent-light);
  font-size: 1.4rem;
}

.ct-stat-item__key {
  font-size: 12px;
  color: var(--prod-text-muted);
  font-family: var(--font-mono, monospace);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════════════════════════
   03  OFFICES / LOCATIONS SECTION
   ═══════════════════════════════════════════════════════════════ */
.ct-offices {
  padding: var(--section-v) 0;
  background: #060A13;
  position: relative;
  overflow: hidden;
}

.ct-offices::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--prod-accent-border), transparent);
}

/* Big ghost word */
.ct-offices__bg-word {
  position: absolute;
  bottom: -40px;
  right: -40px;
  font-family: var(--font-head, 'Space Grotesk', sans-serif);
  font-size: 200px;
  font-weight: 900;
  color: rgba(59, 99, 207, 0.025);
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.05em;
  line-height: 1;
}

.ct-offices__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--prod-border);
  border: 1px solid var(--prod-border);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 64px;
}

.ct-office-card {
  background: #060A13;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}

.ct-office-card:hover {
  background: #0A0F1C;
}

/* animated top accent */
.ct-office-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--prod-accent), var(--prod-accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.ct-office-card:hover::before {
  transform: scaleX(1);
}

/* map pin icon area */
.ct-office-card__pin {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(59, 99, 207, 0.08);
  border: 1px solid var(--prod-accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--prod-accent-light);
  margin-bottom: 20px;
  transition: background 0.3s;
}

.ct-office-card:hover .ct-office-card__pin {
  background: rgba(59, 99, 207, 0.15);
}

.ct-office-card__region {
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--prod-accent);
  margin-bottom: 8px;
}

.ct-office-card__city {
  font-family: var(--font-head, 'Space Grotesk', sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--prod-text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.ct-office-card__detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.ct-office-card__detail svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--prod-text-muted);
}

.ct-office-card__detail-text {
  font-size: 13px;
  color: var(--prod-text-muted);
  line-height: 1.6;
}

/* HQ badge */
.ct-hq-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  background: rgba(59, 99, 207, 0.12);
  border: 1px solid var(--prod-accent-border);
  border-radius: 100px;
  font-family: var(--font-mono, monospace);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--prod-accent-light);
  margin-bottom: 20px;
}


/* ═══════════════════════════════════════════════════════════════
   04  FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */
.ct-faq {
  padding: var(--section-v) 0;
  background: #0A0F1C;
  position: relative;
}

.ct-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--prod-accent-border), transparent);
}

.ct-faq__layout {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 100px;
  align-items: start;
}

.ct-faq__sticky {
  position: sticky;
  top: 100px;
}

.ct-faq__head-sub {
  font-size: 0.95rem;
  color: var(--prod-text-muted);
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 36px;
}

.ct-faq__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--prod-accent-light);
  border-bottom: 1px solid var(--prod-accent-border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.ct-faq__cta:hover {
  color: var(--prod-text-primary);
  border-color: var(--prod-text-muted);
}

/* Accordion items */
.ct-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--prod-border);
  border-radius: 16px;
  overflow: hidden;
}

.ct-accordion-item {
  border-bottom: 1px solid var(--prod-border);
  background: rgba(17, 24, 39, 0.4);
  transition: background 0.25s;
}

.ct-accordion-item:last-child {
  border-bottom: none;
}

.ct-accordion-item.open {
  background: rgba(59, 99, 207, 0.04);
}

.ct-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--prod-text-primary);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.ct-accordion-trigger:hover {
  color: var(--prod-accent-light);
}

.ct-accordion-item.open .ct-accordion-trigger {
  color: var(--prod-accent-light);
}

.ct-accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--prod-border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--prod-text-muted);
  transition: border-color 0.2s, color 0.2s, transform 0.3s, background 0.2s;
}

.ct-accordion-item.open .ct-accordion-icon {
  border-color: var(--prod-accent);
  color: var(--prod-accent-light);
  background: rgba(59, 99, 207, 0.1);
  transform: rotate(45deg);
}

.ct-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ct-accordion-item.open .ct-accordion-body {
  max-height: 300px;
}

.ct-accordion-content {
  padding: 0 28px 24px;
  font-size: 14px;
  color: var(--prod-text-muted);
  line-height: 1.85;
}


/* ═══════════════════════════════════════════════════════════════
   05  TRUST STRIP - bottom social-proof bar
   ═══════════════════════════════════════════════════════════════ */
.ct-trust-strip {
  padding: 64px 0;
  background: #060A13;
  position: relative;
}

.ct-trust-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--prod-accent-border), transparent);
}

.ct-trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}

.ct-trust-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-trust-block__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(59, 99, 207, 0.08);
  border: 1px solid var(--prod-accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--prod-accent-light);
  margin-bottom: 4px;
}

.ct-trust-block__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--prod-text-primary);
}

.ct-trust-block__text {
  font-size: 12px;
  color: var(--prod-text-muted);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .ct-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ct-hero__left {
    padding: 120px 32px 60px;
  }

  .ct-hero__left::after {
    display: none;
  }

  .ct-hero__right {
    padding: 48px 32px 80px;
  }

  .ct-stats-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .ct-stat-item:nth-child(2) {
    border-right: none;
  }

  .ct-offices__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ct-faq__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ct-faq__sticky {
    position: static;
  }

  .ct-trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ct-row {
    grid-template-columns: 1fr;
  }

  .ct-offices__grid {
    grid-template-columns: 1fr;
  }

  .ct-stats-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .ct-stat-item {
    padding: 24px 28px;
  }
}

@media (max-width: 640px) {
  .ct-hero__left {
    padding: 110px 24px 48px;
  }

  .ct-hero__right {
    padding: 40px 24px 64px;
  }

  .ct-form-wrap {
    max-width: 100%;
  }

  .ct-stats-strip__inner {
    grid-template-columns: 1fr 1fr;
  }

  .ct-stat-item__val {
    font-size: 1.8rem;
  }

  .ct-offices__grid {
    border-radius: 12px;
  }

  .ct-office-card {
    padding: 32px 28px;
  }

  .ct-trust-strip__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .ct-accordion-trigger {
    font-size: 14px;
    padding: 20px 20px;
  }

  .ct-accordion-content {
    padding: 0 20px 20px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   PHONE COUNTRY-CODE PICKER
   ═══════════════════════════════════════════════════════════════ */

/* Remove tab styles (tabs removed from page) */
.ct-tabs {
  display: none !important;
}

/* Phone field wrapper - flag button + input side by side */
.ct-phone-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* Flag + dial code trigger button */
.ct-phone-flag-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: rgba(6, 10, 19, 0.7);
  border: 1px solid var(--prod-border-mid);
  border-right: none;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  color: var(--prod-text-primary);
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
  height: 100%;
  min-height: 46px;
}

.ct-phone-flag-btn:hover {
  background: rgba(59, 99, 207, 0.08);
  border-color: var(--prod-accent-border);
}

.ct-phone-flag-btn[aria-expanded="true"] {
  background: rgba(59, 99, 207, 0.08);
  border-color: var(--prod-accent);
}

.ct-phone-flag {
  font-size: 18px;
  line-height: 1;
}

.ct-phone-dial {
  font-size: 13px;
  font-weight: 600;
  color: var(--prod-text-secondary);
  min-width: 36px;
}

.ct-phone-chevron {
  color: var(--prod-text-muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

/* The number input - fills remaining space */
.ct-phone-input {
  border-radius: 0 8px 8px 0 !important;
  border-left: 1px solid var(--prod-border-mid) !important;
  flex: 1;
  min-width: 0;
}

/* Focus sync: when input is focused, highlight the whole row */
.ct-phone-wrap:focus-within .ct-phone-flag-btn {
  border-color: var(--prod-accent);
  background: rgba(59, 99, 207, 0.04);
}

.ct-phone-wrap:focus-within .ct-phone-input {
  border-color: var(--prod-accent) !important;
  background: rgba(59, 99, 207, 0.04);
  box-shadow: 0 0 0 3px rgba(59, 99, 207, 0.12);
}

/* Dropdown panel */
.ct-phone-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 320px;
  max-height: 340px;
  background: #111827;
  border: 1px solid var(--prod-accent-border);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(59, 99, 207, 0.08);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: ct-phone-drop 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes ct-phone-drop {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Search bar inside dropdown */
.ct-phone-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.ct-phone-search-wrap svg {
  color: var(--prod-text-muted);
  flex-shrink: 0;
}

.ct-phone-search {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 13px;
  color: var(--prod-text-primary);
}

.ct-phone-search::placeholder {
  color: var(--prod-text-muted);
}

/* Scrollable country list */
.ct-phone-list {
  list-style: none;
  overflow-y: auto;
  flex: 1;
  padding: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(59, 99, 207, 0.3) transparent;
}

.ct-phone-list::-webkit-scrollbar {
  width: 4px;
}

.ct-phone-list::-webkit-scrollbar-track {
  background: transparent;
}

.ct-phone-list::-webkit-scrollbar-thumb {
  background: rgba(59, 99, 207, 0.3);
  border-radius: 4px;
}

/* Each country row */
.ct-phone-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
  outline: none;
}

.ct-phone-list li:hover,
.ct-phone-list li:focus {
  background: rgba(59, 99, 207, 0.1);
}

.ct-phone-list li.active {
  background: rgba(59, 99, 207, 0.14);
}

.ct-phone-list-flag {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.ct-phone-list-name {
  font-size: 13px;
  color: var(--prod-text-secondary);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ct-phone-list-dial {
  font-size: 12px;
  font-weight: 600;
  color: var(--prod-accent-light);
  font-family: var(--font-mono, monospace);
  flex-shrink: 0;
}

.ct-input--error {
  border-color: #EF4444 !important;
  background: rgba(239, 68, 68, 0.04) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
}

/* Responsive */
@media (max-width: 480px) {
  .ct-phone-dropdown {
    width: calc(100vw - 48px);
    max-width: 320px;
  }
}