/* CSProfile contact page — matched to the clean category pages */
:root {
  --page: #07090d;
  --panel: #0b0f16;
  --panel-2: #0e131c;
  --text: #f4f6fa;
  --muted: #929baa;
  --muted-2: #697383;
  --line: rgba(255,255,255,.085);
  --line-strong: rgba(255,255,255,.14);
  --accent: #f59e0b;
  --content: 1450px;
}

* { box-sizing: border-box; }
html { color-scheme: dark; background: var(--page); }
body.csprofile-clean-contact-page {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 47% 5%, rgba(48,91,158,.12), transparent 34%),
    linear-gradient(180deg, #07101f, #050b15);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.csprofile-clean-contact-page a { color: inherit; text-decoration: none; }

.contact-shell {
  width: min(calc(100% - 64px), var(--content));
  min-height: 620px;
  margin: 0 auto;
  padding: 28px 0 72px;
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 26px 2px;
  color: #7f8999;
  font-size: 13px;
}
.crumbs svg { width: 12px; height: 12px; stroke-width: 2; }
.crumbs a:hover { color: #dfe4ec; }
.crumbs strong { color: #d9dee7; font-weight: 600; }

.contact-heading { max-width: 850px; margin: 0 0 34px 2px; }
.eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.contact-heading h1 {
  margin: 0;
  font-size: clamp(48px, 4vw, 64px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 780;
}
.contact-heading p {
  max-width: 720px;
  margin: 16px 0 0;
  color: #a4adba;
  font-size: 16px;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(245,158,11,.075), transparent 42%),
    linear-gradient(180deg, rgba(18,21,29,.96), rgba(9,13,19,.99));
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.018);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.contact-card:not(.contact-card-static):hover {
  transform: translateY(-5px);
  border-color: rgba(245,158,11,.38);
  box-shadow: 0 20px 42px rgba(0,0,0,.42), 0 0 24px rgba(245,158,11,.055);
}
.contact-card:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,158,11,.17);
}

.contact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #f8b632;
  background: rgba(245,158,11,.105);
  border: 1px solid rgba(245,158,11,.22);
  border-radius: 11px;
}
.contact-icon svg { width: 21px; height: 21px; }
.contact-icon-x { font-size: 20px; font-weight: 700; }

.contact-card-copy { display: block; margin-top: 28px; }
.contact-card-copy small {
  display: block;
  margin-bottom: 6px;
  color: #7e8796;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.contact-card-copy strong {
  display: block;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 18px;
  font-weight: 730;
  line-height: 1.35;
}
.contact-card-copy > span {
  display: block;
  margin-top: 8px;
  color: #8993a2;
  font-size: 13px;
  line-height: 1.55;
}
.contact-arrow {
  position: absolute;
  top: 26px;
  right: 24px;
  width: 18px;
  height: 18px;
  color: #798291;
  transition: color .16s ease, transform .16s ease;
}
.contact-card:hover .contact-arrow { color: var(--accent); transform: translateX(3px); }

.contact-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
  padding: 28px 30px;
  background: #0a0e15;
  border: 1px solid var(--line);
  border-radius: 13px;
}
.contact-note-label {
  display: block;
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-note h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(21px, 2vw, 28px);
  letter-spacing: -.035em;
}
.contact-note p {
  max-width: 790px;
  margin: 9px 0 0;
  color: #8e98a7;
  font-size: 14px;
  line-height: 1.6;
}
.contact-button {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  color: #111318 !important;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 760;
  transition: transform .16s ease, filter .16s ease;
}
.contact-button:hover { transform: translateY(-1px); filter: brightness(1.06); }
.contact-button:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(245,158,11,.19); }
.contact-button svg { width: 16px; height: 16px; }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: 190px; }
}

@media (max-width: 650px) {
  .contact-shell { width: min(calc(100% - 24px), var(--content)); padding-top: 22px; }
  .crumbs { margin-bottom: 22px; }
  .contact-heading { margin-bottom: 26px; }
  .contact-heading h1 { font-size: 40px; }
  .contact-heading p { font-size: 14px; }
  .contact-card { min-height: 180px; padding: 20px; }
  .contact-arrow { top: 22px; right: 20px; }
  .contact-note { align-items: flex-start; flex-direction: column; padding: 23px 21px; }
  .contact-button { width: 100%; }
}
