﻿/* =====================================================
   CONTACT PAGE
   ===================================================== */

/* ===== CONTACT PAGE ===== */

.ct-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(5rem, 6vw, 7rem);
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 40%, #0c1e38 100%);
  overflow: hidden;
  text-align: center;
}

.ct-hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 70, 148, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 50% 60% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 50% 60% at 50% 50%, black 0%, transparent 70%);
}

.ct-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--ma-metadata);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8cb4e6;
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(140, 180, 230, 0.1);
  border: 1px solid rgba(140, 180, 230, 0.2);
  border-radius: 40px;
}

.ct-hero__eyebrow i {
  color: #8cb4e6;
  font-size: var(--ma-metadata);
}

.ct-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  color: #e8eef6;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.ct-hero p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  max-width: 48ch;
  margin: 0 auto;
}

/* --- Intent Cards --- */
.ct-intents {
  padding: clamp(3rem, 5vw, 4rem) 0;
  background: var(--surface);
  position: relative;
  z-index: 2;
}

.ct-intents__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ct-intent {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  text-decoration: none;
  transition: transform 300ms var(--ease-quart), box-shadow 300ms var(--ease-quart), border-color 200ms;
  cursor: pointer;
}

.ct-intent:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
}

.ct-intent--active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}

.ct-intent__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-dim);
  color: var(--primary);
  border-radius: 12px;
  margin-bottom: 16px;
}

.ct-intent h3 {
  font-size: var(--ma-header);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 6px;
}

.ct-intent p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 14px;
}

.ct-intent__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-body-text);
  font-weight: 700;
  color: var(--primary);
  transition: gap 300ms var(--ease-quart);
}

.ct-intent:hover .ct-intent__cta {
  gap: 10px;
}

/* --- Quick Connect Bar --- */
.ct-quick {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--surface);
}

.ct-quick__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 32px;
  background: var(--surface-alt);
  border-radius: 16px;
  flex-wrap: wrap;
}

.ct-quick__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  color: var(--ink-900);
}

.ct-quick__item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.ct-quick__label {
  display: block;
  font-size: var(--ma-metadata);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.ct-quick__item a {
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.ct-quick__value {
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
}

.ct-quick__divider {
  width: 1px;
  height: 32px;
  background: var(--ink-100);
}


/* Form */
.ct-form-header {
  margin-bottom: 28px;
}

.ct-form-header h2 {
  font-size: var(--ma-section-title);
  color: var(--ink-900);
  font-weight: 700;
  margin-bottom: 6px;
}

.ct-form-header p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
}

.ct-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.ct-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-form__field--full {
  margin-bottom: 16px;
}

.ct-req {
  color: #dc2626;
}

.ct-form__field label {
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
}

.ct-form__field input,
.ct-form__field select,
.ct-form__field textarea {
  padding: 12px 16px;
  border: 1px solid var(--ink-100);
  border-radius: 10px;
  font-size: var(--ma-body-text);
  color: var(--ink-900);
  background: #fff;
  outline: none;
  transition: border-color 200ms, box-shadow 200ms;
  font-family: inherit;
}

.ct-form__field input:focus,
.ct-form__field select:focus,
.ct-form__field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}

.ct-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.ct-form__field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.ct-form__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ct-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ct-form__privacy {
  font-size: var(--ma-metadata);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

.ct-form__privacy a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.ct-form__success {
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 18px;
  background: #d1fae5;
  color: #047857;
  border-radius: 10px;
  font-size: var(--ma-body-text);
  font-weight: 600;
}

/* --- Sidebar: Map, Offices, Trust --- */
.ct-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ct-map-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--ink-100);
}

.ct-map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 285px;
  border: 0;
  display: block;
}

.ct-offices {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
}

.ct-offices h4 {
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.ct-office {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.ct-office:not(:last-child) {
  border-bottom: 1px solid var(--ink-50);
}

.ct-office__badge {
  font-size: var(--ma-metadata-limited);
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-dim);
  padding: 4px 8px;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.ct-office h2,
.ct-office h5 {
  font-size: var(--ma-header);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 4px;
}

.ct-office p {
  font-size: var(--ma-metadata);
  color: var(--text-secondary);
  line-height: 1.5;
}

.ct-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ct-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-metadata);
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface-alt);
  padding: 8px 14px;
  border-radius: 8px;
}

.ct-trust__item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.ct-sidebar-intents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ct-sidebar-intents .ct-intent {
  padding: 24px 20px;
  border-radius: var(--radius-lg);
}

.ct-sidebar-intents .ct-intent__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
}

@media (min-width: 1025px) {
  .ct-sidebar-intents {
    flex: 1;
  }
}

@media (max-width: 576px) {
  .ct-sidebar-intents {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* --- FAQ Section --- */
.ct-faq__header {
  text-align: center;
  margin-bottom: 40px;
}

.ct-faq__header h2 {
  font-size: var(--ma-greeting-title);
  color: var(--ink-900);
  font-weight: 700;
  margin-bottom: 8px;
}

.ct-faq__header p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
}

.ct-faq__header a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.ct-faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.ct-faq__item {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 300ms var(--ease-quart);
}

.ct-faq__item[open] {
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.06);
}

.ct-faq__item summary {
  padding: 18px 24px;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ct-faq__item summary::-webkit-details-marker {
  display: none;
}

.ct-faq__item summary::after {
  content: '+';
  font-size: var(--ma-pane-header);
  font-weight: 400;
  color: var(--text-secondary);
  transition: transform 200ms;
}

.ct-faq__item[open] summary::after {
  content: 'ÃƒÂ¢Ã‹â€ Ã¢â‚¬â„¢';
}

.ct-faq__item p {
  padding: 16px 24px 18px;
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Contact Responsive --- */
@media (max-width: 1024px) {
  .ct-intents__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .ct-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ct-form__row {
    grid-template-columns: 1fr;
  }

  .ct-quick__bar {
    flex-direction: column;
    gap: 8px;
    padding: 20px 24px;
  }

  .ct-quick__divider {
    width: 100%;
    height: 1px;
  }

  .ct-quick__item {
    padding: 8px 0;
  }
}

@media (max-width: 640px) {
  .ct-hero {
    padding: 130px 0 56px;
  }

  .ct-hero h1 {
    font-size: var(--ma-greeting-title);
  }

  .ct-intents__grid {
    grid-template-columns: 1fr;
  }

  .ct-form__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* ── Contact V2 (additional styles) ── */
/* ===== CONTACT PAGE ===== */

/* --- Contact Hero --- */
.ct-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8rem, 10vw, 11rem) 0 clamp(5rem, 6vw, 7rem);
  background: linear-gradient(170deg, #050c18 0%, var(--ink-900) 40%, #0c1e38 100%);
  text-align: center;
  overflow: hidden;
}

.ct-hero .hero-network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

.ct-hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(3, 70, 148, 0.06) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 70%);
  pointer-events: none;
}


.ct-hero h1 {
  font-size: var(--ma-hero-title);
  font-weight: 800;
  color: #e8eef6;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.ct-hero p {
  font-size: var(--ma-body-text);
  color: var(--text-on-dark-muted);
  max-width: 48ch;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* --- Intent Cards --- */
.ct-intents {
  padding: 0 0 clamp(3rem, 6vw, 5rem);
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.ct-intents__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.ct-intent {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  transition: all 400ms var(--ease-quart);
  text-decoration: none;
  cursor: pointer;
}

.ct-intent:hover,
.ct-intent--active {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(3, 70, 148, 0.10);
  transform: translateY(-4px);
}

.ct-intent--active {
  border-color: var(--primary);
  background: var(--primary-dim);
}

.ct-intent__icon {
  width: 48px;
  height: 48px;
  background: var(--primary-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 300ms;
}

.ct-intent:hover .ct-intent__icon,
.ct-intent--active .ct-intent__icon {
  background: var(--primary-muted);
}

.ct-intent__icon svg {
  stroke: var(--primary);
}

.ct-intent h3 {
  font-size: var(--ma-header);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.ct-intent p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.ct-intent__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
  transition: gap 300ms var(--ease-quart);
}

.ct-intent:hover .ct-intent__cta {
  gap: 10px;
}

/* --- Quick Connect Bar --- */
.ct-quick {
  padding: 48px 0;
}

.ct-quick__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: var(--shadow-sm);
}

.ct-quick__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  flex: 1;
  justify-content: center;
}

.ct-quick__item svg {
  stroke: var(--primary);
  flex-shrink: 0;
}

.ct-quick__label {
  display: block;
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.ct-quick__item a,
.ct-quick__value {
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
}

.ct-quick__item a:hover {
  color: var(--primary);
}

.ct-quick__divider {
  width: 1px;
  height: 40px;
  background: var(--ink-100);
  flex-shrink: 0;
}

/* --- Main Grid (Form + Sidebar) --- */
.ct-main {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

/* --- Contact Form --- */
.ct-form-wrap {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 20px;
  margin-top: 0;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.ct-form-header {
  margin-bottom: 32px;
}

.ct-form-header h2 {
  font-size: var(--ma-section-title);
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 6px;
}

.ct-form-header p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
}

.ct-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.ct-form__field {
  display: flex;
  flex-direction: column;
}

.ct-form__field--full {
  grid-column: 1 / -1;
  margin-bottom: 16px;
}

.ct-form__field label {
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 6px;
}

.ct-req {
  color: #e53e3e;
}

.ct-form__field input,
.ct-form__field select,
.ct-form__field textarea {
  font-family: var(--font);
  font-size: var(--ma-body-text);
  color: var(--ink-900);
  padding: 12px 16px;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color 200ms, box-shadow 200ms;
  outline: none;
  width: 100%;
}

.ct-form__field input:focus,
.ct-form__field select:focus,
.ct-form__field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}

.ct-form__field input::placeholder,
.ct-form__field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.ct-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.ct-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

.ct-form__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ct-form__submit {
  padding: 14px 32px;
}


.ct-form__privacy a {
  color: var(--primary);
  text-decoration: underline;
}

.ct-form__success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 16px 20px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm);
  font-size: var(--ma-body-text);
  font-weight: 500;
  color: #065f46;
}

.ct-form__success svg {
  stroke: #059669;
  flex-shrink: 0;
}

/* --- Sidebar --- */
.ct-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ct-map-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-sm);
}

.ct-map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 285px;
  border: 0;
  display: block;
}

/* --- Offices --- */
.ct-offices {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.ct-offices h4 {
  font-size: var(--ma-metadata);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 20px;
}

.ct-office {
  display: flex;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--ink-50);
}

.ct-office:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ct-office__badge {
  width: 40px;
  height: 40px;
  background: var(--primary-dim);
  color: var(--primary);
  font-size: var(--ma-metadata-limited);
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-office h2,
.ct-office h5 {
  font-size: var(--ma-header);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 4px;
  line-height: 1.3;
}

.ct-office p {
  font-size: var(--ma-metadata);
  color: var(--text-secondary);
  line-height: 1.55;
}

/* --- Trust Badges --- */
.ct-trust {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

.ct-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
}

.ct-trust__item svg {
  stroke: #059669;
  flex-shrink: 0;
}

/* --- FAQ --- */
.ct-faq {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--surface-alt);
}

.ct-faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.ct-faq__header h2 {
  font-size: var(--ma-greeting-title);
  color: var(--ink-900);
  font-weight: 700;
  margin-bottom: 10px;
}

.ct-faq__header p {
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  margin: 0 auto;
}

.ct-faq__header a {
  color: var(--primary);
  font-weight: 600;
}

.ct-faq__list {
  max-width: 780px;
  margin: 0 auto;
}

.ct-faq__item {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 300ms;
}

.ct-faq__item:hover {
  box-shadow: var(--shadow-sm);
}

.ct-faq__item summary {
  padding: 20px 24px;
  font-size: var(--ma-body-text);
  font-weight: 600;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 200ms;
}

.ct-faq__item summary::-webkit-details-marker {
  display: none;
}

.ct-faq__item summary::after {
  content: '+';
  font-size: var(--ma-pane-header);
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 300ms var(--ease-quart);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink-50);
}

.ct-faq__item[open] summary::after {
  content: '\2212';
  background: var(--primary-dim);
  color: var(--primary);
}

.ct-faq__item summary:hover {
  color: var(--primary);
}

.ct-faq__item[open] summary {
  border-bottom: 1px solid var(--ink-100);
}

.ct-faq__item p {
  padding: 20px 24px 20px;
  font-size: var(--ma-body-text);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Contact Responsive --- */
@media (max-width: 1024px) {
  .ct-intents__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ct-grid {
    grid-template-columns: 1fr;
  }

  .ct-quick__bar {
    flex-wrap: wrap;
    gap: 16px;
  }

  .ct-quick__divider {
    display: none;
  }

  .ct-quick__item {
    flex: 0 0 calc(50% - 8px);
    padding: 12px 0;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .ct-hero {
    min-height: 60vh;
    padding: clamp(6rem, 8vw, 9rem) 0 clamp(3rem, 4vw, 5rem);
  }

  .ct-hero h1 {
    font-size: var(--ma-greeting-title);
  }

  .ct-intents__grid {
    grid-template-columns: 1fr;
  }

  .ct-intents {
    margin-top: -24px;
  }

  .ct-form-wrap {
    padding: 24px;
  }

  .ct-form__row {
    grid-template-columns: 1fr;
  }

  .ct-quick__item {
    flex: 0 0 100%;
  }

  .ct-quick__bar {
    padding: 20px;
  }
}





/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE — MISSING / STRENGTHENED RESPONSIVE RULES
   Tablet (1024px → 768px → 640px) complete coverage
   ══════════════════════════════════════════════════════════════ */

/* ── Intent cards: 4-col → 2-col → 1-col ── */
@media (max-width: 1100px) {
  .ct-intents__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .ct-intents__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Main form + sidebar grid: 2-col → 1-col ── */
@media (max-width: 1024px) {
  .ct-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── Form row: 2-col → 1-col ── */
@media (max-width: 768px) {
  .ct-form__row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ct-form-wrap {
    padding: 1.5rem;
  }
}

/* ── Quick connect bar: horizontal → stacked ── */
@media (max-width: 900px) {
  .ct-quick__bar {
    flex-wrap: wrap;
    gap: 0;
    padding: 20px 24px;
  }

  .ct-quick__divider {
    width: 100%;
    height: 1px;
  }

  .ct-quick__item {
    flex: 0 0 calc(50% - 8px);
    padding: 12px 0;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .ct-quick__item {
    flex: 0 0 100%;
  }

  .ct-quick__bar {
    padding: 16px;
  }
}

/* ── Sidebar intents: 2-col → 1-col ── */
@media (max-width: 768px) {
  .ct-sidebar-intents {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ── Hero sizing ── */
@media (max-width: 768px) {
  .ct-hero {
    min-height: 55vh;
    padding: clamp(5.5rem, 9vw, 8rem) 0 clamp(2.5rem, 5vw, 4rem);
  }

  .ct-hero h1 {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }
}

/* ── FAQ list ── */
@media (max-width: 640px) {
  .ct-faq__item summary {
    padding: 14px 18px;
    font-size: var(--ma-body-text);
    align-items: flex-start;
  }

  .ct-faq__item p {
    padding: 14px 18px 16px;
  }
}

/* ── Form actions: wrap gracefully ── */
@media (max-width: 640px) {
  .ct-form__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .ct-form__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Map wrap height on mobile ── */
@media (max-width: 480px) {
  .ct-map-wrap {
    height: 200px;
  }
}
