.about-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px 32px;
}
.about-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.about-hero h1 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}
.about-hero p {
  color: var(--text-muted);
  font-size: 14px;
}

.about-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.about-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 24px;
}

.about-section h2 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-section h2 .icon {
  font-size: 18px;
}

.about-section p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 12px;
}
.about-section p:last-child { margin-bottom: 0; }

.affiliate-box {
  background: var(--accent-light);
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 12px;
}

.affiliate-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.affiliate-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  line-height: 1.7;
}
.affiliate-list li:last-child { border-bottom: none; }
.affiliate-list li::before {
  content: "▸";
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.notice-box {
  background: var(--orange-light);
  border: 1px solid #f5c28a;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text);
}

.meta-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.meta-table th, .meta-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.meta-table th {
  width: 28%;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.meta-table td { color: var(--text); }
.meta-table tr:last-child th,
.meta-table tr:last-child td { border-bottom: none; }

/* ── Contact Form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.form-group label .req {
  color: #e05c5c;
  margin-left: 4px;
  font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 9px 12px;
  font-size: 14px;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
  transition: border-color .15s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: opacity .15s;
}
.btn-submit:hover { opacity: .85; }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; }
.form-status {
  font-size: 13.5px;
  padding: 10px 14px;
  border-radius: 6px;
  display: none;
}
.form-status.success {
  display: block;
  background: #e6f6ec;
  border: 1px solid #7ecb9a;
  color: #1e6e3e;
}
.form-status.error {
  display: block;
  background: #fdecea;
  border: 1px solid #f5a6a6;
  color: #8b1a1a;
}

@media (max-width: 600px) {
  .about-section { padding: 20px 18px; }
  .about-hero h1 { font-size: 22px; }
  .meta-table th { width: 35%; }
}
