/* =========================================================
   Contact page — Avaren Digital
   Editorial / tech-glass aesthetic, aligned with site.css
   ========================================================= */

:root {
  --grad: linear-gradient(120deg, #C7B8FF 0%, #B58CFF 35%, #FF7AD9 70%, #FFC8A6 100%);
  --violet-2: #C5B4FF;
}

@keyframes ctShine { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes ctRevealUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ctPulse { 0%,100% { opacity: .55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.45); } }
@keyframes ctOrbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ===== Hero ===== */
.ct-hero {
  position: relative; z-index: 2;
  padding: 130px 32px 56px;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.ct-hero-inner {
  max-width: 1320px; margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 1024px) {
  .ct-hero-inner { grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: stretch; }
}

.ct-breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--ink-mute);
  margin-bottom: 22px;
}
.ct-breadcrumb a { color: var(--ink-dim); text-decoration: none; }
.ct-breadcrumb a:hover { color: var(--ink); }

.ct-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(10px);
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--ink-dim);
  margin-bottom: 24px;
}
.ct-hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6CE3A6;
  box-shadow: 0 0 0 4px rgba(108,227,166,0.18);
  animation: ctPulse 2.4s ease-in-out infinite;
}

.ct-hero-title {
  font-family: "Geist", sans-serif;
  font-size: clamp(44px, 6.2vw, 96px);
  font-weight: 400;
  letter-spacing: -0.032em;
  line-height: 1.04;
  margin: 0 0 24px;
  text-wrap: balance;
  padding-bottom: 0.08em;
}
.ct-hero-title em {
  font-style: italic;
  font-weight: 400;
  background: var(--grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: 0.22em;
  margin-right: -0.12em;
  animation: ctShine 7s ease-in-out infinite;
  display: inline-block;
}

.ct-hero-lead {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 56ch;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.ct-hero-lead strong { color: var(--ink); font-weight: 500; }

.ct-hero-quick {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
}
.ct-quick {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.018);
  backdrop-filter: blur(8px);
  text-decoration: none;
  color: var(--ink);
  transition: border-color .25s, background .25s, transform .25s;
}
.ct-quick:hover {
  border-color: var(--line-strong);
  background: rgba(255,255,255,0.04);
  transform: translateX(2px);
}
.ct-quick .ico {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(197,180,255,0.08);
  border: 1px solid rgba(197,180,255,0.15);
  flex-shrink: 0;
}
.ct-quick .ico svg { width: 18px; height: 18px; color: var(--violet-2); }
.ct-quick .body { flex: 1; min-width: 0; }
.ct-quick .lab {
  font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-mute); display: block; margin-bottom: 3px;
}
.ct-quick .val {
  font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
}
.ct-quick .arr {
  color: var(--ink-mute);
  transition: transform .25s, color .25s;
  flex-shrink: 0;
}
.ct-quick:hover .arr { color: var(--ink); transform: translate(2px, -2px); }

/* ===== Hero — Form panel ===== */
.ct-formpanel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(181,140,255,0.08), transparent 50%),
    radial-gradient(120% 100% at 100% 100%, rgba(255,122,217,0.06), transparent 50%),
    rgba(255,255,255,0.018);
  backdrop-filter: blur(14px);
  padding: 26px 26px 22px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.ct-formpanel::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(197,180,255,0.25), transparent 40%, rgba(255,200,166,0.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
  opacity: .5;
}
.ct-formpanel-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.ct-formpanel-head .lt {
  font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-mute);
  margin-bottom: 8px;
  display: block;
}
.ct-formpanel-head h2 {
  font-family: "Geist", sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}
.ct-formpanel-head h2 em {
  font-style: italic;
  background: var(--grad);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: 0.20em;
  margin-right: -0.10em;
  animation: ctShine 7s ease-in-out infinite;
  display: inline-block;
}
.ct-formpanel-head .step {
  font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-mute);
  flex-shrink: 0;
  white-space: nowrap;
  padding-top: 4px;
}
.ct-formpanel-head .step strong {
  color: var(--ink);
  font-weight: 500;
}

/* ===== Form ===== */
.ct-form { display: flex; flex-direction: column; gap: 18px; }
.ct-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 540px) {
  .ct-form-row.two { grid-template-columns: 1fr 1fr; }
}

.ct-field { display: flex; flex-direction: column; gap: 8px; }
.ct-field label {
  font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-mute);
  display: flex; align-items: center; gap: 6px;
}
.ct-field label .req { color: #FF9DC8; }
.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  color: var(--ink);
  font-family: "Geist", sans-serif;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: border-color .25s, background .25s, box-shadow .25s;
  outline: none;
  appearance: none;
}
.ct-field textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.55;
}
.ct-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'><path d='M3 5l3 3 3-3' stroke='%239B9DA8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: var(--ink-mute); }
.ct-field input:hover,
.ct-field select:hover,
.ct-field textarea:hover { border-color: var(--line-strong); }
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: rgba(197,180,255,0.55);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 0 3px rgba(197,180,255,0.12);
}

/* Budget chips */
.ct-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.ct-chip {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.018);
  font-family: "Geist", sans-serif;
  font-size: 13px;
  color: var(--ink-dim);
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
  user-select: none;
}
.ct-chip input { position: absolute; opacity: 0; pointer-events: none; }
.ct-chip:hover { border-color: var(--line-strong); color: var(--ink); }
.ct-chip:has(input:checked) {
  border-color: rgba(197,180,255,0.5);
  background: rgba(197,180,255,0.10);
  color: var(--ink);
}
.ct-chip:has(input:checked)::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--violet-2);
}

/* Service tags multi-select */
.ct-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 540px) {
  .ct-services { grid-template-columns: repeat(3, 1fr); }
}
.ct-service {
  position: relative;
  display: flex; align-items: center; gap: 9px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.018);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  user-select: none;
}
.ct-service input { position: absolute; opacity: 0; pointer-events: none; }
.ct-service .box {
  width: 16px; height: 16px;
  border: 1.4px solid var(--line-strong);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
}
.ct-service .box svg {
  width: 10px; height: 10px;
  color: var(--bg-deep);
  opacity: 0;
  transition: opacity .2s;
}
.ct-service .lab {
  font-size: 13px;
  color: var(--ink-dim);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.ct-service:hover { border-color: var(--line-strong); }
.ct-service:has(input:checked) {
  border-color: rgba(197,180,255,0.5);
  background: rgba(197,180,255,0.06);
}
.ct-service:has(input:checked) .box {
  background: var(--violet-2);
  border-color: var(--violet-2);
}
.ct-service:has(input:checked) .box svg { opacity: 1; }
.ct-service:has(input:checked) .lab { color: var(--ink); }

/* Submit row */
.ct-form-foot {
  display: flex; flex-direction: column;
  gap: 14px;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
@media (min-width: 540px) {
  .ct-form-foot { flex-direction: row; align-items: center; justify-content: space-between; }
}
.ct-consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.5;
  cursor: pointer;
  max-width: 320px;
}
.ct-consent input { margin-top: 2px; accent-color: #B58CFF; }
.ct-consent a { color: var(--ink-dim); text-decoration: underline; text-underline-offset: 2px; }
.ct-consent a:hover { color: var(--ink); }

.ct-submit {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 13px 22px 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(120deg, #2A1F4E 0%, #4A2D6E 50%, #2A1F4E 100%);
  background-size: 200% 100%;
  color: var(--ink);
  font-family: "Geist", sans-serif;
  font-size: 14px; font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: background-position .35s, transform .25s, box-shadow .25s;
  box-shadow: 0 8px 30px -10px rgba(181, 140, 255, 0.4);
}
.ct-submit::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(197,180,255,0.6), rgba(255,122,217,0.45), rgba(255,200,166,0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.ct-submit:hover { background-position: 100% 50%; box-shadow: 0 12px 40px -10px rgba(181, 140, 255, 0.55); }
.ct-submit svg { transition: transform .25s; }
.ct-submit:hover svg { transform: translateX(3px); }

/* ===== Section base ===== */
.ct-section {
  position: relative; z-index: 2;
  padding: 80px 32px;
  max-width: 1320px;
  margin: 0 auto;
}
.ct-section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) {
  .ct-section-head { grid-template-columns: 1.4fr 1fr; align-items: end; gap: 60px; }
}
.ct-section-eyebrow {
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--ink-mute);
  display: block; margin-bottom: 16px;
}
.ct-section-head h2 {
  font-family: "Geist", sans-serif;
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin: 0 0 10px;
  text-wrap: balance;
  padding-bottom: 0.05em;
}
.ct-section-head h2 em {
  font-style: italic;
  background: var(--grad);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: 0.22em;
  margin-right: -0.12em;
  animation: ctShine 7s ease-in-out infinite;
  display: inline-block;
}
.ct-section-head .right p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 0;
  text-wrap: pretty;
}

/* ===== Channels grid ===== */
.ct-channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--line);
}
@media (min-width: 720px)  { .ct-channels { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .ct-channels { grid-template-columns: repeat(4, 1fr); } }
.ct-channel {
  position: relative;
  background: var(--bg-deep);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
  text-decoration: none;
  color: var(--ink);
  min-height: 220px;
  transition: background .3s;
  overflow: hidden;
}
.ct-channel:hover { background: rgba(255,255,255,0.022); }
.ct-channel .num {
  font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-mute);
}
.ct-channel .ico {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(197,180,255,0.08);
  border: 1px solid rgba(197,180,255,0.18);
}
.ct-channel .ico svg { width: 22px; height: 22px; color: var(--violet-2); }
.ct-channel h3 {
  font-family: "Geist", sans-serif;
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
}
.ct-channel p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-dim);
  margin: 0;
  flex: 1;
}
.ct-channel .val {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  color: var(--ink);
  display: flex; align-items: center; gap: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.ct-channel .val .arr { margin-left: auto; color: var(--ink-mute); transition: transform .25s, color .25s; }
.ct-channel:hover .val .arr { color: var(--ink); transform: translate(3px, -3px); }

/* ===== Process timeline ===== */
.ct-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}
@media (min-width: 900px) {
  .ct-timeline { grid-template-columns: repeat(4, 1fr); gap: 0; }
}
.ct-step {
  position: relative;
  padding: 26px 24px 30px;
  border-top: 1px solid var(--line);
}
@media (min-width: 900px) {
  .ct-step { border-top: none; border-left: 1px solid var(--line); padding: 0 24px 0 26px; min-height: 200px; }
  .ct-step:first-child { border-left: none; padding-left: 0; }
}
.ct-step::before {
  content: "";
  position: absolute;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--violet-2);
  box-shadow: 0 0 0 4px rgba(197,180,255,0.12);
}
.ct-step::before { top: -5px; left: 24px; }
@media (min-width: 900px) {
  .ct-step::before { top: 0; left: -5px; }
  .ct-step:first-child::before { left: -5px; }
}
.ct-step .num {
  font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-mute);
  display: block; margin-bottom: 14px;
  padding-top: 4px;
}
.ct-step h4 {
  font-family: "Geist", sans-serif;
  font-size: 19px; font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.2;
  margin: 0 0 10px;
}
.ct-step p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 0 0 14px;
}
.ct-step .when {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: 0.1em;
  color: var(--ink-dim);
}
.ct-step .when::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: #6CE3A6;
}

/* ===== FAQ ===== */
.ct-faq {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.ct-faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.ct-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: "Geist", sans-serif;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ink);
  transition: color .2s;
}
.ct-faq summary::-webkit-details-marker { display: none; }
.ct-faq summary:hover { color: var(--violet-2); }
.ct-faq summary .pl {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: border-color .25s, background .25s;
}
.ct-faq details[open] summary .pl {
  border-color: rgba(197,180,255,0.4);
  background: rgba(197,180,255,0.08);
}
.ct-faq summary .pl::before,
.ct-faq summary .pl::after {
  content: ""; position: absolute;
  background: currentColor;
  transition: transform .3s ease, opacity .3s;
}
.ct-faq summary .pl::before { width: 12px; height: 1.4px; }
.ct-faq summary .pl::after { width: 1.4px; height: 12px; }
.ct-faq details[open] summary .pl::after { transform: rotate(90deg); opacity: 0; }
.ct-faq summary .num {
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--ink-mute);
  font-weight: 400;
  margin-right: 16px;
}
.ct-faq .a {
  margin-top: 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 70ch;
  text-wrap: pretty;
  animation: ctRevealUp .35s ease both;
}
.ct-faq .a strong { color: var(--ink); font-weight: 500; }
.ct-faq .a a { color: var(--violet-2); text-decoration: underline; text-underline-offset: 3px; }

/* ===== Map / Locations ===== */
.ct-map-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.012);
}
@media (min-width: 900px) {
  .ct-map-section { grid-template-columns: 1fr 1.1fr; }
}

.ct-map-info {
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 24px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) {
  .ct-map-info { border-bottom: none; border-right: 1px solid var(--line); }
}
.ct-map-info h3 {
  font-family: "Geist", sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}
.ct-map-info h3 em {
  font-style: italic;
  background: var(--grad);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: 0.22em;
  margin-right: -0.12em;
  animation: ctShine 7s ease-in-out infinite;
  display: inline-block;
}
.ct-loc-list { display: flex; flex-direction: column; gap: 14px; }
.ct-loc {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.ct-loc:first-child { border-top: none; padding-top: 0; }
.ct-loc .pin {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(197,180,255,0.08);
  border: 1px solid rgba(197,180,255,0.2);
  flex-shrink: 0;
  margin-top: 2px;
}
.ct-loc .pin svg { width: 12px; height: 12px; color: var(--violet-2); }
.ct-loc .body { flex: 1; }
.ct-loc .city {
  font-family: "Geist", sans-serif;
  font-size: 16px; font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 3px;
  display: flex; align-items: center; gap: 8px;
}
.ct-loc .city .tag {
  font-family: "Geist Mono", monospace;
  font-size: 9px; letter-spacing: 0.14em;
  color: var(--violet-2);
  border: 1px solid rgba(197,180,255,0.3);
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 400;
}
.ct-loc .desc {
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin: 0;
  font-family: "Geist Mono", monospace;
  letter-spacing: 0;
}

/* The visual map (SVG-style abstract) */
.ct-map-visual {
  position: relative;
  min-height: 380px;
  background:
    radial-gradient(60% 60% at 30% 40%, rgba(181,140,255,0.10), transparent 60%),
    radial-gradient(50% 50% at 70% 65%, rgba(255,122,217,0.06), transparent 60%),
    rgba(0,0,0,0.20);
  overflow: hidden;
}
.ct-map-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: 36px 36px;
  background-position: -1px -1px;
  mask: radial-gradient(70% 60% at 50% 50%, #000 50%, transparent 100%);
  -webkit-mask: radial-gradient(70% 60% at 50% 50%, #000 50%, transparent 100%);
}
.ct-map-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.ct-map-pin {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  transform: translate(-50%, -100%);
}
.ct-map-pin .pulse {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--violet-2);
  box-shadow: 0 0 0 0 rgba(197,180,255,0.5);
  animation: ctMapPulse 2.4s ease-out infinite;
  position: relative;
}
.ct-map-pin .pulse::after {
  content: "";
  position: absolute; inset: -6px;
  border: 1px solid rgba(197,180,255,0.4);
  border-radius: 50%;
  animation: ctMapPulse 2.4s ease-out infinite;
  animation-delay: 0.3s;
}
.ct-map-pin .lbl {
  font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink);
  background: rgba(10,10,15,0.85);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}
/* Map iframe (OpenStreetMap embed) */
.ct-map-iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.65) brightness(0.95) contrast(0.92);
  pointer-events: none;
}
.ct-map-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 50% 50%, transparent 30%, rgba(10,10,15,0.55) 100%),
    linear-gradient(180deg, rgba(181,140,255,0.06), rgba(255,122,217,0.04));
  pointer-events: none;
  mix-blend-mode: normal;
}

@keyframes ctMapPulse {
  0%   { box-shadow: 0 0 0 0 rgba(197,180,255,0.5); }
  100% { box-shadow: 0 0 0 18px rgba(197,180,255,0); }
}

.ct-map-watermark {
  position: absolute;
  bottom: 14px; right: 18px;
  font-family: "Geist Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  display: flex; align-items: center; gap: 8px;
}
.ct-map-watermark::before {
  content: ""; width: 5px; height: 5px;
  border-radius: 50%; background: #6CE3A6;
  box-shadow: 0 0 8px rgba(108,227,166,0.6);
}

/* ===== Closing CTA band ===== */
.ct-cta-band {
  position: relative;
  margin: 60px 32px 80px;
  max-width: 1320px;
  margin-left: auto; margin-right: auto;
  padding: 56px 44px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(80% 100% at 100% 0%, rgba(197,180,255,0.10), transparent 60%),
    radial-gradient(60% 100% at 0% 100%, rgba(255,200,166,0.07), transparent 60%),
    rgba(255,255,255,0.012);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
@media (min-width: 900px) {
  .ct-cta-band { grid-template-columns: 1.4fr 1fr; gap: 56px; padding: 68px 60px; }
}
.ct-cta-band h3 {
  font-family: "Geist", sans-serif;
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 18px;
  text-wrap: balance;
  padding-bottom: 0.05em;
}
.ct-cta-band h3 em {
  font-style: italic;
  background: var(--grad);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: 0.22em;
  margin-right: -0.12em;
  animation: ctShine 7s ease-in-out infinite;
  display: inline-block;
}
.ct-cta-band p {
  font-size: 15px; line-height: 1.55;
  color: var(--ink-dim);
  max-width: 50ch;
  margin: 0;
  text-wrap: pretty;
}
.ct-cta-actions {
  display: flex; flex-direction: column; gap: 12px;
}
@media (min-width: 540px) and (max-width: 899px) {
  .ct-cta-actions { flex-direction: row; flex-wrap: wrap; }
}

/* ===== Mobile / responsive trims ===== */
@media (max-width: 1023px) {
  .ct-hero { min-height: auto; padding: 120px 22px 56px; }
  .ct-section { padding: 64px 22px; }
  .ct-cta-band { margin: 40px 22px 64px; padding: 40px 26px; }
}
@media (max-width: 720px) {
  .ct-hero { padding: 110px 22px 48px; }
  .ct-formpanel { padding: 22px 20px 18px; }
  .ct-section-head { margin-bottom: 36px; padding-bottom: 24px; }
  .ct-step { padding: 22px 20px 26px; }
}
