﻿
  /* Channels */
  .channel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .channel-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
    display: flex; flex-direction: column;
  }
  .channel-card:hover {
    border-color: var(--fs-red);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }
  .channel-icon {
    width: 52px; height: 52px;
    background: var(--fs-red-light);
    color: var(--fs-red);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
  }
  .channel-name {
    font-size: 14.5px; font-weight: 600;
    margin-bottom: 6px;
  }
  .channel-detail {
    font-size: 13.5px; color: var(--text-muted);
    margin-bottom: 12px;
    flex: 1;
  }
  .channel-cta {
    font-size: 12.5px; font-weight: 600;
    color: var(--fs-red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  }

  /* Form layout */
  .form-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
  .form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 36px;
  }
  .form-card h3 {
    font-size: 22px; font-weight: 600; letter-spacing: -0.01em;
    margin: 0 0 8px;
  }
  .form-card .form-desc {
    font-size: 14px; color: var(--text-muted); margin: 0 0 24px; line-height: 1.65;
  }
  .field { margin-bottom: 16px; }
  .field-label {
    font-size: 13px; color: var(--text);
    font-weight: 500;
    margin-bottom: 6px; display: block;
  }
  .field-label .req { color: var(--fs-red); }
  .input, .select, .textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    color: var(--text);
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .input:focus, .select:focus, .textarea:focus {
    border-color: var(--fs-red);
    box-shadow: 0 0 0 3px rgba(230,51,34,0.1);
  }
  .textarea { min-height: 100px; resize: vertical; font-family: inherit; }
  .radio-row { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 0; }
  .radio {
    font-size: 13px;
    padding: 8px 14px;
    background: var(--surface-2);
    border-radius: 999px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.15s;
    user-select: none;
  }
  .radio:hover { color: var(--fs-red); }
  .radio input { display: none; }
  .radio input:checked ~ span,
  .radio.checked {
    background: var(--fs-red);
    color: #fff;
  }
  .field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .upload-field {
    padding: 14px;
    border: 1.5px dashed var(--border-strong);
    border-radius: 10px;
    color: var(--text-muted);
    display: flex; align-items: center; gap: 10px;
    cursor: pointer;
    transition: all 0.15s;
    font-size: 13.5px;
  }
  .upload-field:hover { border-color: var(--fs-red); color: var(--fs-red); background: var(--fs-red-light); }
  .form-submit {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
  }

  /* Sidebar info */
  .info-side {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
  }
  .info-block { padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--border); }
  .info-block:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
  .info-block-head {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 12px;
  }
  .info-block-icon {
    width: 32px; height: 32px;
    background: var(--surface);
    color: var(--fs-red);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .info-block-title { font-size: 14px; font-weight: 600; color: var(--text); }
  .info-line {
    font-size: 13px; color: var(--text-muted);
    line-height: 1.7;
    display: flex; gap: 8px; align-items: flex-start;
    padding: 3px 0;
  }
  .info-line .dot {
    color: var(--fs-red); flex-shrink: 0;
    font-weight: 700;
  }
  .info-line a { color: var(--fs-red); }
  .info-line a:hover { text-decoration: underline; }

  /* Maps */
  .maps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .map-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
  }
  .map-card-head {
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 12px;
  }
  .map-card-icon {
    width: 38px; height: 38px;
    background: var(--fs-red-light);
    color: var(--fs-red);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .map-card-label {
    font-size: 15px; font-weight: 600;
    margin: 0 0 2px;
  }
  .map-card-addr {
    font-size: 12.5px; color: var(--text-muted);
    line-height: 1.5;
  }
  .map-card-frame {
    aspect-ratio: 16 / 10;
    background: var(--surface-2);
    position: relative;
    overflow: hidden;
  }
  .map-card-frame iframe {
    width: 100%; height: 100%;
    border: 0; display: block;
  }

  /* Commitments */
  .commit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .commit-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 26px;
  }
  .commit-icon {
    width: 48px; height: 48px;
    background: var(--fs-red-light);
    color: var(--fs-red);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
  }
  .commit-title { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 8px; }
  .commit-text { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin: 0; }

  /* FAQ */
  .accordion { display: flex; flex-direction: column; gap: 10px; max-width: 880px; margin: 0 auto; }
  .acc-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
  }
  .acc-item.is-open { border-color: var(--fs-red); }
  .acc-head {
    padding: 18px 22px;
    display: flex; align-items: center; gap: 14px;
    cursor: pointer; user-select: none;
    font-size: 15px; font-weight: 600;
  }
  .acc-title { flex: 1; }
  .acc-toggle {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--surface-2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: all 0.2s;
  }
  .acc-item.is-open .acc-toggle { background: var(--gradient-brand); color: #fff; transform: rotate(45deg); }
  .acc-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
  .acc-item.is-open .acc-body { max-height: 800px; }
  .acc-body-inner {
    padding: 0 22px 22px 22px;
    color: var(--text-muted); font-size: 14px; line-height: 1.75;
  }
  .acc-body-inner p { margin: 0 0 10px; }
  .acc-body-inner p:last-child { margin-bottom: 0; }

  @media (max-width: 980px) {
    .channel-grid { grid-template-columns: repeat(2, 1fr); }
    .form-grid { grid-template-columns: 1fr; gap: 24px; }
    .commit-grid { grid-template-columns: 1fr; }
    .maps-grid { grid-template-columns: 1fr; }
    .form-card { padding: 26px 24px; }
  }
  @media (max-width: 640px) {
    .channel-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .field-grid { grid-template-columns: 1fr; }
    .form-card { padding: 20px 18px; }
    .info-side { padding: 22px; }
  }

