
.tier-premium{background:rgba(245,158,11,.25);border:1px solid rgba(245,158,11,.5);color:#FCD34D !important;}

/* ─────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────── */
:root {
  --black:   #03010A;
  --navy:    #07041A;
  --card:    #0D0925;
  --purple:  #7C3AED;
  --purpleL: #A78BFA;
  --purpleX: #C084FC;
  --white:   #F1EFFE;
  --muted:   rgba(241,239,254,.45);
  --border:  rgba(124,58,237,.18);
  --borderH: rgba(124,58,237,.48);
  --amber:   #F59E0B;
  --amberL:  #FCD34D;
  --green:   #10B981;
  --spotCard:#110D2E;
}

/* ─────────────────────────────────────────────
   RESET + BASE
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth }
body {
  font-family:'DM Sans', sans-serif;
  background:var(--black);
  color:var(--white);
  overflow-x:hidden;
  line-height:1.5;
}

/* Film-grain overlay */
body::after {
  content:'';
  position:fixed; inset:0; z-index:9999; pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity:.032;
  background-size:256px 256px;
}

/* ─────────────────────────────────────────────
   NAV — exact ConceptA2 match
───────────────────────────────────────────── */
nav {
  position:sticky;
  top:0;
  z-index:800;
  height:62px;
  display:flex;
  align-items:center;
  padding:0 48px;
  gap:32px;
  background:rgba(3,1,10,.88);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
  transition:background .3s, border-color .3s;
}
nav.scrolled {
  background:rgba(3,1,10,.97);
  border-bottom-color:rgba(124,58,237,.3);
}
.nav-logo { flex-shrink:0; cursor:pointer; margin-right:20px }
.nav-logo img { height:28px; display:block }
.nav-links { display:flex; align-items:center; gap:2px; flex:1 }
.nl {
  font-size:13.5px; font-weight:500; color:var(--muted);
  padding:7px 14px; border-radius:7px; cursor:pointer;
  transition:all .2s; text-decoration:none; letter-spacing:.01em;
}
.nl:hover { color:var(--white); background:rgba(124,58,237,.1) }
.nl-spotlight {
  display:flex; align-items:center; gap:7px;
  color:var(--purpleL); background:rgba(124,58,237,.1);
  border:1px solid rgba(124,58,237,.25); padding:7px 14px;
  border-radius:7px; font-size:13.5px; font-weight:600;
  letter-spacing:.01em; cursor:pointer; transition:all .25s;
}
.nl-spotlight:hover {
  background:rgba(124,58,237,.22);
  border-color:rgba(124,58,237,.5);
  color:var(--white);
}
.spot-dot {
  width:7px; height:7px; border-radius:50%;
  background:var(--purple); box-shadow:0 0 6px var(--purple);
  animation:spotNavPulse 2s ease-in-out infinite; flex-shrink:0;
}
@keyframes spotNavPulse {
  0%,100% { box-shadow:0 0 6px var(--purple); opacity:1 }
  50%      { box-shadow:0 0 14px var(--purpleX), 0 0 24px rgba(192,132,252,.3); opacity:.75 }
}
.nav-right { display:flex; align-items:center; gap:10px; flex-shrink:0; margin-left:auto }
.nav-signin {
  font-size:13.5px; font-weight:500; color:var(--muted);
  cursor:pointer; padding:8px 12px; transition:color .2s;
}
.nav-signin:hover { color:var(--white) }
.nav-cta {
  background:var(--purple); color:var(--white); border:none;
  border-radius:8px; font-family:'DM Sans',sans-serif;
  font-size:13.5px; font-weight:600; padding:9px 20px;
  cursor:pointer; transition:all .25s;
}
.nav-cta:hover { background:#6D28D9; box-shadow:0 0 20px rgba(124,58,237,.4); transform:translateY(-1px) }
.nav-hamburger {
  display:none; background:none; border:none;
  cursor:pointer; padding:8px; color:var(--white);
}
.mobile-menu {
  display:none; position:fixed; inset:62px 0 0;
  background:rgba(3,1,10,.98); z-index:799;
  padding:24px; flex-direction:column; gap:4px;
}
.mobile-menu.open { display:flex }
.mm-item {
  padding:14px 16px; border-radius:8px; font-size:15px;
  font-weight:500; color:var(--muted); cursor:pointer; transition:all .2s;
}
.mm-item:hover { background:rgba(124,58,237,.1); color:var(--white) }
.mm-spot {
  color:var(--purpleL); background:rgba(124,58,237,.08);
  border:1px solid rgba(124,58,237,.2);
}
.mm-cta {
  margin-top:12px; background:var(--purple); color:var(--white);
  text-align:center; padding:14px; border-radius:8px;
  font-size:15px; font-weight:600; cursor:pointer;
}

/* ─────────────────────────────────────────────
   PAGE HEADER — slim, left-aligned
───────────────────────────────────────────── */
.page-header {
  background:var(--navy);
  border-bottom:1px solid rgba(124,58,237,.2);
  padding:44px 48px 40px;
  position:relative;
  overflow:hidden;
}
/* Subtle glow */
.page-header::before {
  content:'';
  position:absolute; top:-40px; left:-60px;
  width:500px; height:300px; pointer-events:none;
  background:radial-gradient(ellipse 60% 70% at 20% 50%,
    rgba(124,58,237,.1) 0%, transparent 70%);
}
.ph-title {
  font-family:'Bebas Neue', cursive;
  font-size:clamp(48px, 6vw, 68px);
  letter-spacing:.03em;
  line-height:1;
  color:var(--white);
  margin-bottom:14px;
  position:relative; z-index:2;
}
.ph-meta {
  font-family:'Space Mono', monospace;
  font-size:10px;
  letter-spacing:.12em;
  color:rgba(241,239,254,.3);
  position:relative; z-index:2;
}



/* ─────────────────────────────────────────────
   CONTENT AREA
───────────────────────────────────────────── */
.content-area {
  background:var(--black);
  padding:52px 40px 80px;
  max-width:720px;
  margin:0 auto;
}

/* ─────────────────────────────────────────────
   SECTION STRUCTURE
───────────────────────────────────────────── */
.doc-section {
  margin-bottom:0;
  padding-bottom:0;
  /* Offset anchor so heading clears the sticky nav */
  scroll-margin-top:80px;
}

.section-divider {
  height:1px;
  background:rgba(124,58,237,.12);
  margin:40px 0;
}

.section-num {
  font-family:'Space Mono', monospace;
  font-size:9px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--purpleL);
  margin-bottom:8px;
  display:block;
}

.section-heading {
  font-family:'DM Sans', sans-serif;
  font-size:18px;
  font-weight:700;
  color:var(--white);
  margin-bottom:16px;
  line-height:1.3;
}

.section-body {
  font-family:'DM Sans', sans-serif;
  font-size:15px;
  line-height:1.8;
  color:rgba(241,239,254,.7);
}
.section-body p {
  margin-bottom:16px;
}
.section-body p:last-child {
  margin-bottom:0;
}

/* Custom bullet list — left border, no dot */
.doc-list {
  list-style:none;
  padding-left:0;
  margin:12px 0 16px;
  border-left:2px solid rgba(124,58,237,.4);
  padding-left:16px;
}
.doc-list li {
  font-family:'DM Sans', sans-serif;
  font-size:14px;
  line-height:1.7;
  color:rgba(241,239,254,.6);
  margin-bottom:8px;
  padding-left:2px;
}
.doc-list li:last-child { margin-bottom:0 }

/* Inline amber links */
.inline-link {
  color:var(--amber);
  text-decoration:none;
  font-weight:500;
  transition:text-decoration .15s;
}
.inline-link:hover { text-decoration:underline }



/* ─────────────────────────────────────────────
   BACK TO TOP BUTTON
───────────────────────────────────────────── */
.back-to-top {
  position:fixed;
  bottom:28px;
  right:28px;
  z-index:700;
  background:var(--purple);
  color:var(--white);
  border:none;
  border-radius:24px;
  padding:9px 16px;
  font-family:'Space Mono', monospace;
  font-size:10px;
  letter-spacing:.1em;
  text-transform:uppercase;
  cursor:pointer;
  opacity:0;
  transform:translateY(12px);
  transition:opacity .25s ease, transform .25s ease, background .2s;
  pointer-events:none;
  box-shadow:0 4px 20px rgba(124,58,237,.35);
}
.back-to-top.visible {
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.back-to-top:hover { background:#6D28D9 }

/* ─────────────────────────────────────────────
   FOOTER — exact ConceptA2 match
───────────────────────────────────────────── */
footer {
  background:var(--navy);
  border-top:1px solid var(--border);
  padding:60px 48px 28px;
}
.footer-grid {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:48px;
  margin-bottom:48px;
}
.fg-brand img { height:26px; margin-bottom:16px; display:block }
.fg-brand p { font-size:13.5px; color:var(--muted); line-height:1.75; max-width:260px }
.fg-social { display:flex; gap:10px; margin-top:20px }
.fg-sicon {
  width:34px; height:34px; border-radius:7px;
  border:1px solid var(--border); display:flex;
  align-items:center; justify-content:center;
  font-size:13px; cursor:pointer; color:var(--muted);
  transition:all .2s; font-family:'DM Sans',sans-serif;
  font-weight:700; text-decoration:none;
}
.fg-sicon:hover { border-color:rgba(124,58,237,.4); background:rgba(124,58,237,.1); color:var(--white) }
.fg-col h5 {
  font-family:'Space Mono', monospace; font-size:10px;
  letter-spacing:.16em; text-transform:uppercase;
  color:var(--purpleL); margin-bottom:16px;
}
.fg-col a {
  display:block; font-size:13.5px; color:var(--muted);
  text-decoration:none; margin-bottom:10px;
  cursor:pointer; transition:color .2s;
}
.fg-col a:hover { color:var(--white) }
.footer-bottom {
  display:flex; align-items:center; justify-content:space-between;
  padding-top:24px; border-top:1px solid var(--border);
}
.fb-copy {
  font-family:'Space Mono', monospace; font-size:10px;
  letter-spacing:.08em; color:rgba(241,239,254,.25);
}
.fb-links { display:flex; gap:20px }
.fb-links a {
  font-size:11.5px; color:rgba(241,239,254,.3);
  text-decoration:none; cursor:pointer; transition:color .2s;
}
.fb-links a:hover { color:rgba(241,239,254,.6) }

/* ─────────────────────────────────────────────
   RESPONSIVE — 768–1023px (tablet)
───────────────────────────────────────────── */

  .content-area { padding:44px 36px 72px 36px }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — ≤767px (mobile)
───────────────────────────────────────────── */
@media (max-width:767px) {
  nav { padding:0 20px }
  .nav-links, .nav-right { display:none }
  .nav-hamburger { display:flex; margin-left:auto }

  .page-header { padding:32px 20px 28px }



  /* Content goes full width */
  .page-body { flex-direction:column }
  .content-area {
    padding:28px 20px 60px;
  }

  .section-body { font-size:14px; line-height:1.9 }

  footer { padding:44px 20px 24px }
  .footer-grid { grid-template-columns:1fr 1fr; gap:28px }
  .back-to-top { bottom:20px; right:16px }
}

@media (max-width:479px) {
  .footer-grid { grid-template-columns:1fr }
  .ph-title { font-size:46px }
}
/* ── Hero ── */
.contact-hero {
    background: var(--navy);
    padding: 56px 40px 48px;
    position: relative; overflow: hidden;
  }
  .contact-hero::before {
    content: ''; position: absolute;
    top: -100px; left: -80px;
    width: 500px; height: 400px;
    background: radial-gradient(ellipse at 30% 40%,
      rgba(124,58,237,.22) 0%, transparent 65%);
    pointer-events: none;
  }
  .ch-inner {
    position: relative; z-index: 1;
    max-width: 960px; margin: 0 auto;
  }
  .ch-kicker {
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: .18em;
    text-transform: uppercase; color: var(--purpleL);
    margin-bottom: 12px;
  }
  .ch-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 7vw, 84px);
    color: var(--white); line-height: 1;
    letter-spacing: .01em; margin: 0 0 10px;
  }
  .ch-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; color: var(--muted);
    line-height: 1.6;
  }
  
  /* ── Tab bar ── */
  .tab-bar-wrap {
    background: var(--black);
    border-bottom: 1px solid rgba(124,58,237,.12);
    position: sticky; top: 64px; z-index: 50;
  }
  .tab-bar {
    max-width: 960px; margin: 0 auto;
    display: flex;
  }
  .tab-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 500;
    color: var(--muted);
    padding: 14px 28px;
    cursor: pointer;
    position: relative;
    transition: color .2s;
    white-space: nowrap; user-select: none;
  }
  .tab-btn:hover { color: var(--white); }
  .tab-btn.active { color: var(--white); }
  .tab-btn.active::after {
    content: ''; position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 2px; background: var(--amber);
    border-radius: 2px 2px 0 0;
  }
  
  /* ── Content area ── */
  .contact-content {
    background: var(--black);
    padding: 56px 40px 80px;
  }
  .tab-panel {
    max-width: 960px; margin: 0 auto;
    display: none;
    animation: fadeTab .15s ease;
  }
  .tab-panel.active { display: block; }
  @keyframes fadeTab {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  
  /* ══════════════════════════════════════
     TAB 1 — GET IN TOUCH
  ══════════════════════════════════════ */
  .touch-grid {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 48px;
  }
  
  /* Detail cards */
  .detail-card {
    background: var(--card);
    border: 1px solid rgba(124,58,237,.15);
    border-radius: 12px; padding: 18px 20px;
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 12px;
    transition: border-color .2s;
  }
  .detail-card:hover { border-color: rgba(124,58,237,.38); }
  .dc-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(124,58,237,.12);
    border: 1px solid rgba(124,58,237,.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
  }
  .dc-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px; letter-spacing: .14em;
    text-transform: uppercase; color: var(--purpleL);
    margin-bottom: 3px;
  }
  .dc-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; color: var(--white);
    font-weight: 500;
  }
  .dc-value a {
    color: var(--white); text-decoration: none;
    transition: color .15s;
  }
  .dc-value a:hover { color: var(--amber); }
  .dc-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; color: var(--muted);
    margin-top: 2px;
  }
  
  /* Social */
  .social-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px; letter-spacing: .14em;
    text-transform: uppercase; color: var(--purpleL);
    margin-bottom: 10px; margin-top: 20px;
  }
  .social-row { display: flex; gap: 10px; margin-bottom: 18px; }
  .social-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(124,58,237,.08);
    border: 1px solid rgba(124,58,237,.2);
    border-radius: 10px; padding: 10px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; color: var(--muted);
    text-decoration: none;
    transition: border-color .18s, background .18s, color .18s;
  }
  .social-btn:hover {
    border-color: rgba(124,58,237,.5);
    background: rgba(124,58,237,.15);
    color: var(--white);
  }
  .social-btn svg { flex-shrink: 0; }
  
  /* Response pill */
  .resp-pill {
    display: inline-flex; align-items: center;
    background: rgba(245,158,11,.06);
    border: 1px solid rgba(245,158,11,.2);
    border-radius: 100px; padding: 8px 16px;
    font-family: 'Space Mono', monospace;
    font-size: 9px; letter-spacing: .08em;
    text-transform: uppercase; color: var(--amber);
  }
  
  /* ══ Contact form ══ */
  .form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px; color: var(--white);
    letter-spacing: .02em; margin-bottom: 22px;
  }
  
  /* Shared field styles — all 3 tabs */
  .f-group { margin-bottom: 18px; }
  .f-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px; letter-spacing: .14em;
    text-transform: uppercase; color: var(--purpleL);
    display: block; margin-bottom: 7px;
  }
  .f-input, .f-select, .f-textarea {
    width: 100%;
    background: var(--navy);
    border: 1px solid rgba(124,58,237,.2);
    border-radius: 10px; padding: 13px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; color: var(--white);
    outline: none; box-sizing: border-box;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
  }
  .f-input::placeholder,
  .f-textarea::placeholder { color: rgba(241,239,254,.3); }
  .f-input:focus,
  .f-select:focus,
  .f-textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(124,58,237,.12);
  }
  .f-input.error, .f-select.error, .f-textarea.error {
    border-color: var(--amber);
  }
  .f-error {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; color: var(--amber);
    margin-top: 5px; display: none;
  }
  .f-error.show { display: block; }
  .f-textarea {
    min-height: 130px; resize: vertical; line-height: 1.6;
  }
  /* Custom select wrapper */
  .select-wrap { position: relative; }
  .select-wrap::after {
    content: '';
    position: absolute; right: 16px; top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--purpleL);
    pointer-events: none;
  }
  .f-select { padding-right: 40px; cursor: pointer; }
  .f-select option { background: var(--navy); color: var(--white); }
  
  /* Submit button */
  .submit-btn {
    width: 100%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px; letter-spacing: .06em;
    padding: 15px 24px; border-radius: 10px;
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    gap: 10px; transition: all .2s;
  }
  .submit-btn.purple-cta {
    background: var(--purple); color: var(--white);
  }
  .submit-btn.purple-cta:hover {
    background: #6D28D9; transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124,58,237,.35);
  }
  .submit-btn.amber-cta {
    background: var(--amber); color: #03010A;
  }
  .submit-btn.amber-cta:hover {
    background: #e8900a; transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,158,11,.3);
  }
  .submit-btn.loading {
    opacity: .5; pointer-events: none; transform: none !important;
    box-shadow: none !important;
  }
  .btn-spinner {
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,.25);
    border-top-color: white;
    border-radius: 50%;
    animation: bspin .7s linear infinite;
    display: none;
  }
  .purple-cta .btn-spinner { border-top-color: white; }
  .amber-cta .btn-spinner { border: 2px solid rgba(3,1,10,.2); border-top-color: #03010A; }
  .submit-btn.loading .btn-spinner { display: block; }
  @keyframes bspin { to { transform: rotate(360deg); } }
  .btn-label { pointer-events: none; }
  
  /* Form success state */
  .form-success {
    display: none;
    text-align: center; padding: 32px 0;
  }
  .form-success.show { display: block; animation: fadeTab .3s ease; }
  .success-check {
    font-size: 44px; margin-bottom: 14px;
    animation: scaleIn .3s ease;
  }
  @keyframes scaleIn {
    from { transform: scale(.5); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
  }
  .success-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px; color: var(--green);
    margin-bottom: 8px;
  }
  .success-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; color: var(--muted);
    line-height: 1.6;
  }
  
  /* ══════════════════════════════════════
     TAB 2 — GIVE FEEDBACK
  ══════════════════════════════════════ */
  .feedback-wrap {
    max-width: 600px; margin: 0 auto;
  }
  .feedback-intro {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; color: var(--muted);
    text-align: center; margin-bottom: 32px;
    line-height: 1.65;
  }
  /* Star rating */
  .star-block {
    text-align: center; margin-bottom: 28px;
  }
  .star-kicker {
    font-family: 'Space Mono', monospace;
    font-size: 9px; letter-spacing: .14em;
    text-transform: uppercase; color: var(--purpleL);
    margin-bottom: 14px;
  }
  .stars-row {
    display: flex; justify-content: center; gap: 8px;
    margin-bottom: 10px;
  }
  .star {
    font-size: 36px; cursor: pointer;
    color: rgba(241,239,254,.18);
    transition: color .15s, transform .12s;
    user-select: none; line-height: 1;
  }
  .star:hover, .star.hover, .star.selected {
    color: var(--amber);
  }
  .star:hover { transform: scale(1.15); }
  .star-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: .1em;
    text-transform: uppercase; color: var(--amber);
    min-height: 16px;
    opacity: 0; transition: opacity .15s;
  }
  .star-label.show { opacity: 1; }
  
  /* Feedback category pills */
  .category-grid {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 0;
  }
  .cat-pill {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 500;
    padding: 9px 18px; border-radius: 100px;
    border: 1px solid rgba(124,58,237,.25);
    background: transparent; color: var(--muted);
    cursor: pointer; transition: all .18s;
    user-select: none;
  }
  .cat-pill:hover {
    border-color: rgba(124,58,237,.5);
    color: var(--white);
  }
  .cat-pill.selected {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
  }
  
  /* ══════════════════════════════════════
     TAB 3 — GET HELP
  ══════════════════════════════════════ */
  .help-wrap { max-width: 800px; margin: 0 auto; }
  .help-section-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px; letter-spacing: .16em;
    text-transform: uppercase; color: var(--purpleL);
    margin-bottom: 18px;
  }
  /* Quick help cards */
  .help-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 36px; }
  .help-card {
    background: var(--card);
    border: 1px solid rgba(124,58,237,.15);
    border-radius: 14px; padding: 22px;
    cursor: pointer;
    transition: border-color .2s, transform .2s, box-shadow .2s;
    position: relative;
  }
  .help-card:hover {
    border-color: rgba(124,58,237,.45);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(124,58,237,.1);
  }
  .hc-emoji { font-size: 28px; margin-bottom: 12px; }
  .hc-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 600;
    color: var(--white); margin-bottom: 6px;
  }
  .hc-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; color: var(--muted);
    line-height: 1.55;
  }
  .hc-arrow {
    position: absolute; right: 18px; top: 22px;
    font-family: 'Space Mono', monospace;
    font-size: 14px; color: var(--purpleL);
    transition: transform .15s;
  }
  .help-card:hover .hc-arrow { transform: translateX(4px); }
  
  /* Help accordion */
  .help-accordion { margin-bottom: 36px; }
  .ha-item {
    border-bottom: 1px solid rgba(124,58,237,.1);
  }
  .ha-q {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 500;
    color: var(--white);
    transition: color .15s;
  }
  .ha-q:hover { color: var(--purpleL); }
  .ha-chevron {
    font-size: 12px; color: var(--purpleL);
    transition: transform .22s;
    flex-shrink: 0; margin-left: 16px;
  }
  .ha-item.open .ha-chevron { transform: rotate(180deg); }
  .ha-a {
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .ha-item.open .ha-a { max-height: 400px; }
  .ha-a-inner {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px; color: var(--muted);
    line-height: 1.7; padding-bottom: 16px;
  }
  .ha-a-inner a { color: var(--amber); text-decoration: none; }
  .ha-a-inner a:hover { text-decoration: underline; }
  
  /* FAQ link strip */
  .faq-strip {
    background: rgba(124,58,237,.06);
    border: 1px solid rgba(124,58,237,.2);
    border-radius: 12px; padding: 20px 24px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 20px;
    flex-wrap: wrap; margin-bottom: 36px;
  }
  .faq-strip-left p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; color: var(--white);
    margin: 0 0 4px;
  }
  .faq-strip-left span {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; color: var(--muted);
  }
  .faq-strip a {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 600;
    color: var(--white);
    background: var(--purple);
    padding: 10px 20px; border-radius: 8px;
    text-decoration: none; white-space: nowrap;
    transition: background .2s;
  }
  .faq-strip a:hover { background: #6D28D9; }
  
  /* ── Responsive ── */
  @media(max-width:767px) {
    .contact-hero { padding: 44px 24px 36px; }
    .contact-content { padding: 36px 20px 60px; }
    .touch-grid { grid-template-columns: 1fr; gap: 32px; }
    .help-cards { grid-template-columns: 1fr; }
    .tab-btn { flex: 1; text-align: center; padding: 14px 10px; font-size: 13px; }
    .category-grid .cat-pill { flex: 1 1 calc(50% - 4px); text-align: center; }
  }
  @media(max-width:479px) {
    .ch-headline { font-size: 48px; }
    .tab-bar { font-size: 12px; }
    .tab-btn { padding: 12px 8px; font-size: 12px; }
  }