  /* ══════════════════════════════════════════════════
     Contact page
  ══════════════════════════════════════════════════ */

  /* Hero */
  .ct-hero {
    padding: 148px 0 80px;
    position: relative;
    overflow: hidden;
  }
  .ct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 88% 12%, rgba(177,255,117,.13) 0%, transparent 42%),
      radial-gradient(ellipse at 10% 78%, rgba(200,239,255,.10) 0%, transparent 38%),
      radial-gradient(ellipse at 50% 55%, rgba(177,255,117,.04) 0%, transparent 55%);
    pointer-events: none;
  }
  .ct-hero::after {
    content: 'WOAW';
    position: absolute;
    right: -1%;
    top: 50%;
    transform: translateY(-52%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(140px, 22vw, 320px);
    line-height: 1;
    letter-spacing: .04em;
    color: rgba(245,244,240,.028);
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
  }
  .ct-hero-tag { margin-bottom: 20px; }
  .ct-hero-h {
    font-family: var(--font-title);
    font-size: clamp(52px, 7vw, 102px);
    line-height: .88;
    color: var(--ivoire);
    font-weight: 400;
    margin: 0 0 24px;
  }
  .ct-hero-p {
    font-size: 15px;
    color: rgba(245,244,240,.52);
    line-height: 1.65;
    max-width: 480px;
    margin: 0;
  }

  /* Canaux — fond ivoire avec cadre */
  .ct-channels {
    background: var(--ivoire);
    padding: 72px 0 80px;
    position: relative;
  }

  /* Cadre englobant toutes les lignes */
  .ct-channels-frame {
    border: 1px solid rgba(5,5,3,.1);
    border-radius: 16px;
    overflow: hidden;
  }

  .ct-channel-row {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 22px 28px;
    border-bottom: 1px solid rgba(5,5,3,.07);
    text-decoration: none;
    position: relative;
    transition: background .22s;
    overflow: hidden;
    background: transparent;
  }

  .ct-channel-row:last-child { border-bottom: none; }

  .ct-channel-row::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--cc);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform .25s cubic-bezier(.4,0,.2,1);
  }

  .ct-channel-row:hover { background: rgba(5,5,3,.03); }
  .ct-channel-row:hover::before { transform: scaleY(1); }

  .ct-channel-row-num {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: .18em;
    color: rgba(5,5,3,.2);
    min-width: 24px;
    flex-shrink: 0;
  }

  .ct-channel-row-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--cc) 10%, rgba(5,5,3,.04));
    border: 1px solid color-mix(in srgb, var(--cc) 28%, transparent);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background .22s, border-color .22s;
  }

  .ct-channel-row:hover .ct-channel-row-icon {
    background: color-mix(in srgb, var(--cc) 18%, rgba(5,5,3,.04));
    border-color: color-mix(in srgb, var(--cc) 50%, transparent);
  }

  .ct-channel-row-icon svg { width: 17px; height: 17px; }

  .ct-channel-row-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(34px, 3.6vw, 52px);
    line-height: 1;
    color: var(--noir);
    min-width: 220px;
    flex-shrink: 0;
    transition: color .22s;
  }

  .ct-channel-row:hover .ct-channel-row-name { color: var(--cc); }

  .ct-channel-row-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .ct-channel-row-handle {
    font-family: 'Space Mono', monospace;
    font-size: 16px;
    letter-spacing: .04em;
    color: rgba(5,5,3,.72);
  }

  .ct-channel-row-hint {
    font-size: 12px;
    color: rgba(5,5,3,.38);
    line-height: 1.45;
    margin-top: 3px;
  }

  .ct-channel-row-arrow {
    font-size: 20px;
    color: rgba(5,5,3,.18);
    transition: color .22s, transform .25s;
    flex-shrink: 0;
    padding-right: 4px;
  }

  .ct-channel-row:hover .ct-channel-row-arrow {
    color: var(--cc);
    transform: translateX(5px);
  }

  /* Bloc central : formulaire + infos */
  .ct-main {
    padding: 72px 0 80px;
  }

  .ct-main-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: start;
  }

  /* Formulaire */
  .ct-form-title {
    font-family: var(--font-title);
    font-size: clamp(28px, 3vw, 44px);
    line-height: .9;
    color: var(--ivoire);
    font-weight: 400;
    margin: 0 0 32px;
  }

  .ct-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .ct-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .ct-field label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(245,244,240,.4);
  }

  .ct-field input,
  .ct-field textarea,
  .ct-field select {
    background: rgba(245,244,240,.05);
    border: 1px solid rgba(245,244,240,.12);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--ivoire);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.4;
    transition: border-color .2s ease, background .2s ease;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
  }

  .ct-field input::placeholder,
  .ct-field textarea::placeholder { color: rgba(245,244,240,.22); }

  .ct-field input:focus,
  .ct-field textarea:focus {
    outline: none;
    border-color: var(--lime);
    background: rgba(245,244,240,.07);
  }

  .ct-field textarea { resize: vertical; min-height: 120px; }

  .ct-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--lime), #d8ffbd);
    color: var(--noir);
    border: none;
    border-radius: 12px;
    padding: 0 32px;
    height: 56px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity .2s ease, transform .2s ease;
    align-self: flex-start;
    margin-top: 6px;
  }

  .ct-submit:hover { opacity: .88; transform: translateY(-2px); }

  /* Infos + FAQ */
  .ct-info-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .ct-info-section-title {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(245,244,240,.3);
    margin-bottom: 16px;
  }

  .ct-info-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .ct-info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .ct-info-item-label {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(245,244,240,.28);
  }

  .ct-info-item-value {
    font-size: 13px;
    color: rgba(245,244,240,.72);
  }

  .ct-info-item-value a {
    color: var(--lime);
    text-decoration: none;
  }

  .ct-info-item-value a:hover { opacity: .78; }

  /* FAQ */
  .ct-faq {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(245,244,240,.08);
    border-radius: 10px;
    overflow: hidden;
  }

  .ct-faq-item {
    border-bottom: 1px solid rgba(245,244,240,.07);
    padding: 0;
  }

  .ct-faq-item:last-child { border-bottom: none; }

  .ct-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 18px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .06em;
    color: rgba(245,244,240,.72);
    transition: color .18s ease;
  }

  .ct-faq-q:hover { color: var(--ivoire); }

  .ct-faq-q-arrow {
    font-size: 14px;
    color: rgba(245,244,240,.24);
    transition: transform .2s ease;
    flex-shrink: 0;
  }

  .ct-faq-item.open .ct-faq-q-arrow { transform: rotate(45deg); color: var(--lime); }

  .ct-faq-a {
    font-size: 12px;
    color: rgba(245,244,240,.44);
    line-height: 1.65;
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease, padding .28s ease;
  }

  .ct-faq-item.open .ct-faq-a {
    max-height: 200px;
    padding: 4px 18px 16px;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .ct-channel-row-name { min-width: 160px; font-size: 36px; }
  }
  @media (max-width: 760px) {
    .ct-main-grid { grid-template-columns: 1fr; gap: 48px; }
    .ct-form-row { grid-template-columns: 1fr; }
    .ct-hero { padding: 120px 0 52px; }
    .ct-channel-row { gap: 20px; }
    .ct-channel-row-name { min-width: 120px; font-size: 28px; }
    .ct-channel-row-hint { display: none; }
    .ct-channel-row-num { display: none; }
  }
