  
  .feature-icon {
    width: 70px; height: 70px;
    color: var(--primary-color);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  }
  .step-icon, .value-icon {
    width: 56px; height: 56px; border-radius: 999px;
    border: 1.5px solid var(--primary-color); color: var(--primary-color);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  }
  .step-icon { background: var(--bg-page); }

  .hero-photo { background }
  .site-card { border: 1px solid var(--border-card); border-radius: 4px; overflow: hidden; background: var(--bg-card); }
  .site-img { height: 130px; background-size: cover; background-position: center; }

  .check-icon {
    width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; border-radius: 999px;
    border: 1.5px solid var(--primary-color); display: flex; align-items: center; justify-content: center;
  }

  .process-line { position: relative; }
  .process-line::before {
    content: ''; position: absolute; top: 28px; left: 8%; right: 8%; height: 1px;
    background: var(--border-card); z-index: 0;
  }
  .process-step { position: relative; z-index: 1; }
  .step-num {
    font-family: 'Oswald', sans-serif; color: var(--primary-color);
    font-weight: 600; font-size: 0.85rem; margin-bottom: 4px;
  }

  .cta-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 4px; }
  .cta-icon {
    width: 48px; height: 48px; border-radius: 999px; border: 1.5px solid var(--primary-color);
    color: var(--primary-color); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }

  .footer-link { color: var(--text-secondary); transition: color 0.15s ease; }
  .footer-link:hover { color: var(--primary-color); }
  .social-icon {
    width: 34px; height: 34px; border-radius: 999px; border: 1px solid var(--border-card);
    display: flex; align-items: center; justify-content: center; color: var(--text-secondary);
    transition: border-color 0.15s ease, color 0.15s ease;
  }
  .social-icon:hover { border-color: var(--primary-color); color: var(--primary-color); }

  .header-band {
    background: var(--bg-page);
  }

  .meta-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text-primary);
    font-size: 1.5rem;
  }

  .meta-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
  }

  .tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 6px 14px;
    border-radius: 3px;
  }

  .tag-green {
    background: #1D3B24;
    color: var(--primary-text);
  }

  .tag-outline {
    border: 1px solid var(--border-card);
    color: var(--text-primary);
    background: transparent;
  }

  .hero-photo {
    background-size: cover;
    background-position: center;
    border-radius: 4px;
  }

  .check-item {
    font-size: .95rem;
    margin-left: 10px;
  }

  .section-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .btn-back {
    border: 1px solid #D7DCE2;
    color: #1A2430;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: border-color 0.15s ease, color 0.15s ease;
  }

  .btn-back:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
  }

  /* ---------- SIDEBAR (dark) ---------- */
  .sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 4px;
    position: sticky;
    top: 24px;
  }

  .field-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 6px;
  }

  .field-label .req {
    color: var(--primary-color);
  }

  .field-input {
    width: 100%;
    background: var(--bg-page);
    border: 1px solid var(--border-card);
    border-radius: 3px;
    padding: 10px 14px;
    color: var(--text-primary);
    font-size: 0.88rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }

  .field-input::placeholder {
    color: #5C6B7C;
  }

  .field-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(217, 167, 48, 0.15);
  }

  select.field-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A9B4C2' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 34px;
  }

  .file-input-wrap {
    display: flex;
    border: 1px solid var(--border-card);
    border-radius: 3px;
    overflow: hidden;
    background: var(--bg-page);
  }

  .file-btn {
    background: var(--bg-card);
    border-right: 1px solid var(--border-card);
    color: var(--text-secondary);
    font-size: 0.8rem;
    padding: 9px 14px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .file-name {
    color: #5C6B7C;
    font-size: 0.8rem;
    padding: 9px 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .file-input-wrap input[type="file"] {
    display: none;
  }