/* ============================================================
   /connect - Contact page
   Visual language: bold, modern, Inter-only, no serif, no large radii
   ============================================================ */

:root {
  --cn-ink: #0d0f12;
  --cn-ink-2: #2a2d33;
  --cn-muted: #6a6f78;
  --cn-line: #e6e8ec;
  --cn-card: #ffffff;
  --cn-bg: #f5f6f8;
  --cn-accent: #ff6b00;
  --cn-accent-2: #1a73e8;
  --cn-success: #1e9e5e;
}

.cn-wrap {
  background: var(--cn-bg);
  color: var(--cn-ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}

.cn-section {
  padding: 80px 0;
}
.cn-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   1. HERO
   ============================================================ */
.cn-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f0f3f7 100%);
  border-bottom: 1px solid var(--cn-line);
  padding: 96px 0 64px;
  position: relative;
  overflow: hidden;
}
.cn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 85% 10%, rgba(255, 107, 0, 0.08), transparent 60%),
    radial-gradient(600px 300px at 10% 90%, rgba(26, 115, 232, 0.06), transparent 60%);
  pointer-events: none;
}
.cn-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.cn-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--cn-accent);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 999px;
  font: 700 0.78rem/1 'Inter', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.cn-hero h1 {
  font: 800 clamp(2.2rem, 4.5vw, 3.6rem)/1.05 'Inter', sans-serif;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--cn-ink);
}
.cn-hero h1 strong {
  background: linear-gradient(120deg, var(--cn-accent), #ff9442);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cn-hero p.cn-lede {
  font: 400 1.18rem/1.55 'Inter', sans-serif;
  color: var(--cn-ink-2);
  max-width: 620px;
  margin: 0 0 28px;
}
.cn-hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.cn-hero-stat {
  border-left: 3px solid var(--cn-accent);
  padding: 4px 0 4px 14px;
}
.cn-hero-stat-num {
  font: 800 1.6rem/1 'Inter', sans-serif;
  color: var(--cn-ink);
}
.cn-hero-stat-lbl {
  font: 500 0.82rem/1.2 'Inter', sans-serif;
  color: var(--cn-muted);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.cn-hero-card {
  background: var(--cn-card);
  border: 1px solid var(--cn-line);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 20px 40px -20px rgba(15, 23, 42, 0.12);
}
.cn-hero-card h2 {
  font: 700 1.15rem/1.2 'Inter', sans-serif;
  margin: 0 0 14px;
}
.cn-hero-card-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--cn-line);
}
.cn-hero-card-row:last-child {
  border-bottom: 0;
}
.cn-hero-card-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 107, 0, 0.1);
  color: var(--cn-accent);
  border-radius: 8px;
  flex-shrink: 0;
}
.cn-hero-card-icon svg {
  width: 18px;
  height: 18px;
}
.cn-hero-card-text {
  flex: 1;
  min-width: 0;
}
.cn-hero-card-lbl {
  font: 600 0.78rem/1 'Inter', sans-serif;
  color: var(--cn-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.cn-hero-card-val {
  font: 700 1.02rem/1.3 'Inter', sans-serif;
  color: var(--cn-ink);
}
.cn-hero-card-val a {
  color: var(--cn-ink);
  text-decoration: none;
}
.cn-hero-card-val a:hover {
  color: var(--cn-accent);
}

/* ============================================================
   2. CONTACT GRID (form + sidebar)
   ============================================================ */
.cn-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.cn-form-card,
.cn-side-card {
  background: var(--cn-card);
  border: 1px solid var(--cn-line);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 8px 24px -16px rgba(15, 23, 42, 0.1);
}
.cn-form-card h2,
.cn-side-card h2 {
  font: 700 1.4rem/1.2 'Inter', sans-serif;
  margin: 0 0 8px;
}
.cn-form-card .cn-sub,
.cn-side-card .cn-sub {
  font: 400 0.96rem/1.5 'Inter', sans-serif;
  color: var(--cn-muted);
  margin: 0 0 24px;
}

.cn-field {
  margin-bottom: 16px;
}
.cn-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cn-field label {
  display: block;
  font: 600 0.82rem/1 'Inter', sans-serif;
  color: var(--cn-ink-2);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.cn-field label .cn-req {
  color: var(--cn-accent);
  margin-left: 2px;
}
.cn-field input,
.cn-field select,
.cn-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: #fbfbfc;
  border: 1px solid var(--cn-line);
  border-radius: 8px;
  font: 500 1rem/1.4 'Inter', sans-serif;
  color: var(--cn-ink);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.cn-field textarea {
  resize: vertical;
  min-height: 140px;
}
.cn-field input:focus,
.cn-field select:focus,
.cn-field textarea:focus {
  outline: 0;
  border-color: var(--cn-accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.12);
}
.cn-field-hint {
  font: 400 0.82rem/1.4 'Inter', sans-serif;
  color: var(--cn-muted);
  margin-top: 6px;
}

.cn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  background: var(--cn-accent);
  color: #fff;
  border: 0;
  border-radius: 8px;
  font: 700 1.02rem/1 'Inter', sans-serif;
  letter-spacing: 0.01em;
  cursor: pointer;
  margin-top: 8px;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.cn-submit:hover {
  background: #e95f00;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(255, 107, 0, 0.4);
}
.cn-submit:focus-visible {
  outline: 3px solid rgba(255, 107, 0, 0.4);
  outline-offset: 2px;
}
.cn-legal {
  font: 400 0.82rem/1.5 'Inter', sans-serif;
  color: var(--cn-muted);
  margin-top: 12px;
  text-align: center;
}
.cn-legal a {
  color: var(--cn-ink-2);
}

/* Honeypot (hidden) */
.cn-hp {
  position: absolute !important;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}

/* Sidebar */
.cn-side-card + .cn-side-card {
  margin-top: 24px;
}
.cn-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cn-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--cn-line);
}
.cn-list li:last-child {
  border-bottom: 0;
}
.cn-list-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(26, 115, 232, 0.1);
  color: var(--cn-accent-2);
  border-radius: 8px;
}
.cn-list-icon svg {
  width: 16px;
  height: 16px;
}
.cn-list-text {
  flex: 1;
  min-width: 0;
}
.cn-list-lbl {
  font: 700 0.92rem/1.2 'Inter', sans-serif;
  color: var(--cn-ink);
  margin-bottom: 2px;
}
.cn-list-val {
  font: 500 0.92rem/1.4 'Inter', sans-serif;
  color: var(--cn-muted);
}
.cn-list-val a {
  color: var(--cn-muted);
  text-decoration: none;
}
.cn-list-val a:hover {
  color: var(--cn-accent);
}

/* Hours table */
.cn-hours {
  width: 100%;
  border-collapse: collapse;
}
.cn-hours td {
  padding: 8px 0;
  font: 500 0.92rem/1 'Inter', sans-serif;
  color: var(--cn-ink-2);
  border-bottom: 1px solid var(--cn-line);
}
.cn-hours tr:last-child td {
  border-bottom: 0;
}
.cn-hours td:last-child {
  text-align: right;
  color: var(--cn-ink);
  font-weight: 700;
}

/* Pill */
.cn-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(30, 158, 94, 0.1);
  color: var(--cn-success);
  border: 1px solid rgba(30, 158, 94, 0.25);
  border-radius: 999px;
  font: 700 0.74rem/1 'Inter', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: 10px;
}
.cn-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cn-success);
}

/* ============================================================
   3. PROMISE BAND (full bleed)
   ============================================================ */
.cn-promise {
  background: #0d0f12;
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cn-promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 80% 30%, rgba(255, 107, 0, 0.18), transparent 60%),
    radial-gradient(700px 400px at 15% 80%, rgba(26, 115, 232, 0.14), transparent 60%);
  pointer-events: none;
}
.cn-promise-inner {
  position: relative;
}
.cn-promise h2 {
  font: 800 clamp(1.8rem, 3.5vw, 2.6rem)/1.1 'Inter', sans-serif;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  max-width: 760px;
}
.cn-promise p {
  font: 400 1.08rem/1.5 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  margin: 0 0 36px;
}
.cn-promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.cn-promise-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
}
.cn-promise-item-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255, 107, 0, 0.18);
  color: var(--cn-accent);
  border-radius: 8px;
  margin-bottom: 16px;
}
.cn-promise-item-icon svg {
  width: 20px;
  height: 20px;
}
.cn-promise-item h3 {
  font: 700 1.04rem/1.2 'Inter', sans-serif;
  margin: 0 0 6px;
  color: #fff;
}
.cn-promise-item p {
  font: 400 0.92rem/1.5 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ============================================================
   4. FAQ
   ============================================================ */
.cn-faq {
  background: #ffffff;
  border-top: 1px solid var(--cn-line);
}
.cn-faq h2 {
  font: 800 clamp(1.8rem, 3.5vw, 2.6rem)/1.1 'Inter', sans-serif;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  text-align: center;
}
.cn-faq-lede {
  text-align: center;
  font: 400 1.04rem/1.5 'Inter', sans-serif;
  color: var(--cn-muted);
  margin: 0 auto 44px;
  max-width: 580px;
}
.cn-faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.cn-faq-item {
  border: 1px solid var(--cn-line);
  border-radius: 10px;
  padding: 0;
  margin-bottom: 12px;
  background: #fbfbfc;
  transition: border-color 160ms ease, background 160ms ease;
}
.cn-faq-item[open] {
  border-color: rgba(255, 107, 0, 0.4);
  background: #fff;
}
.cn-faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font: 700 1.02rem/1.3 'Inter', sans-serif;
  color: var(--cn-ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.cn-faq-item summary::-webkit-details-marker {
  display: none;
}
.cn-faq-item summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: var(--cn-line);
  color: var(--cn-ink);
  border-radius: 6px;
  font: 700 1.1rem/1 'Inter', sans-serif;
  flex-shrink: 0;
  transition: transform 160ms ease, background 160ms ease;
}
.cn-faq-item[open] summary::after {
  content: "-";
  background: var(--cn-accent);
  color: #fff;
}
.cn-faq-item-body {
  padding: 0 22px 18px;
  font: 400 0.96rem/1.55 'Inter', sans-serif;
  color: var(--cn-ink-2);
}
.cn-faq-item-body a {
  color: var(--cn-accent);
}

/* ============================================================
   5. CTA bottom
   ============================================================ */
.cn-cta {
  background: linear-gradient(135deg, #ff6b00 0%, #ff9442 100%);
  color: #fff;
  text-align: center;
  padding: 72px 0;
}
.cn-cta h2 {
  font: 800 clamp(1.8rem, 3.5vw, 2.4rem)/1.15 'Inter', sans-serif;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}
.cn-cta p {
  font: 400 1.08rem/1.5 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.92);
  max-width: 580px;
  margin: 0 auto 28px;
}
.cn-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cn-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: #fff;
  color: var(--cn-accent);
  border-radius: 8px;
  font: 700 1rem/1 'Inter', sans-serif;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.cn-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -12px rgba(0, 0, 0, 0.3);
}
.cn-cta-btn--ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.cn-cta-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ============================================================
   Submission status
   ============================================================ */
.cn-status {
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 8px;
  font: 600 0.96rem/1.4 'Inter', sans-serif;
  display: none;
}
.cn-status--ok {
  display: block;
  background: rgba(30, 158, 94, 0.1);
  color: var(--cn-success);
  border: 1px solid rgba(30, 158, 94, 0.3);
}
.cn-status--err {
  display: block;
  background: rgba(220, 38, 38, 0.08);
  color: #b91c1c;
  border: 1px solid rgba(220, 38, 38, 0.25);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .cn-hero-inner,
  .cn-grid {
    grid-template-columns: 1fr;
  }
  .cn-promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .cn-section { padding: 56px 0; }
  .cn-hero { padding: 64px 0 48px; }
  .cn-inner { padding: 0 20px; }
  .cn-form-card,
  .cn-side-card,
  .cn-hero-card { padding: 22px; }
  .cn-field-row { grid-template-columns: 1fr; }
  .cn-promise-grid { grid-template-columns: 1fr; }
  .cn-hero-stats { gap: 18px; }
  .cn-hero h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
}
