/* ===== Photo Frame Placeholder ===== */
  .photo-frame {
    width: 100%;
    background: var(--cream);
    border: 2px dashed var(--orange-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .photo-frame-inner {
    text-align: center;
    padding: 14px;
    color: var(--orange-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .photo-frame-icon { font-size: 1.5rem; }
  .photo-frame-text {
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    font-weight: 700;
    color: var(--orange);
  }
  .photo-frame-hint {
    font-size: 0.68rem;
    color: var(--text-light);
  }

  /* ===== Page Header ===== */
  .tr-header {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    padding: 160px 0 96px;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .tr-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 80% 30%, rgba(255,255,255,0.25) 0%, transparent 70%);
    pointer-events: none;
  }
  .tr-header .container { position: relative; z-index: 1; }
  .tr-breadcrumb {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 24px;
    letter-spacing: 0.06em;
  }
  .tr-breadcrumb a { color: rgba(255,255,255,0.75); }
  .tr-breadcrumb a:hover { color: var(--white); }
  .tr-breadcrumb span { margin: 0 8px; }
  .tr-header .section-label { color: rgba(255,255,255,0.95); }
  .tr-header .section-title {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin-bottom: 24px;
  }
  .tr-header-emph {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
  }
  .tr-header-emph span {
    background: var(--white);
    color: var(--orange-dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .tr-header-emph span small {
    font-size: 0.65em;
    color: var(--orange);
    margin-right: 4px;
  }

  /* ===== Flow ===== */
  .tr-flow { background: var(--white); }
  .tr-flow-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 48px;
    position: relative;
  }
  .tr-step {
    background: var(--cream);
    border-radius: 14px;
    padding: 28px 18px;
    text-align: center;
    position: relative;
  }
  .tr-step::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid var(--orange-light);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    z-index: 2;
  }
  .tr-step:last-child::after { display: none; }
  .tr-step-num {
    width: 44px;
    height: 44px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 auto 14px;
    box-shadow: 0 4px 14px rgba(240,112,48,0.3);
  }
  .tr-step-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
  }
  .tr-step-text {
    font-size: 0.74rem;
    color: var(--text-mid);
    line-height: 1.8;
  }

  /* ===== Benefits ===== */
  .tr-benefits { background: var(--cream); }
  .tr-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
  .tr-benefit {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: stretch;
  }
  .tr-benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px var(--shadow-lg);
  }
  .tr-benefit-img {
    border-radius: 0;
    border: none;
    border-right: 2px dashed var(--orange-light);
  }
  .tr-benefit-body { padding: 28px; }
  .tr-benefit-num {
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--orange);
    letter-spacing: 0.18em;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .tr-benefit-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.5;
  }
  .tr-benefit-text {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.95;
  }

  /* ===== FAQ ===== */
  .tr-faq { background: var(--white); }
  .tr-faq-list {
    max-width: 820px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .tr-faq-item {
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .tr-faq-q {
    width: 100%;
    padding: 22px 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .tr-faq-q::before {
    content: 'Q.';
    color: var(--orange);
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-right: 12px;
    flex-shrink: 0;
  }
  .tr-faq-q-text { flex: 1; }
  .tr-faq-toggle {
    width: 28px;
    height: 28px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--orange);
    transition: transform 0.25s;
    flex-shrink: 0;
  }
  .tr-faq-item.is-open .tr-faq-toggle { transform: rotate(45deg); }
  .tr-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .tr-faq-item.is-open .tr-faq-a { max-height: 600px; }
  .tr-faq-a-inner {
    padding: 0 24px 22px;
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 2;
    display: flex;
    gap: 12px;
  }
  .tr-faq-a-inner::before {
    content: 'A.';
    color: var(--orange-dark);
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  /* ===== Form ===== */
  .tr-form-section { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-mid) 100%); }
  .tr-form-wrap {
    max-width: 720px;
    margin: 48px auto 0;
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 12px 40px var(--shadow);
  }
  .tr-form-row { margin-bottom: 24px; }
  .tr-form-row label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
  }
  .tr-form-row label .required {
    background: var(--orange);
    color: var(--white);
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 50px;
    margin-left: 8px;
    letter-spacing: 0.05em;
  }
  .tr-form-row input,
  .tr-form-row select,
  .tr-form-row textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: inherit;
    background: var(--cream);
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .tr-form-row input:focus,
  .tr-form-row select:focus,
  .tr-form-row textarea:focus {
    border-color: var(--orange);
    background: var(--white);
  }
  .tr-form-row textarea { min-height: 130px; resize: vertical; }
  .tr-form-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
  }
  .tr-form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-mid);
    transition: 0.2s;
  }
  .tr-form-check:hover { border-color: var(--orange); }
  .tr-form-check input { width: auto; accent-color: var(--orange); }
  .tr-form-submit {
    text-align: center;
    margin-top: 32px;
  }
  .tr-form-note {
    font-size: 0.72rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 16px;
  }

  /* ===== Voices ===== */
  .tr-voices { background: var(--white); }
  .tr-voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
  .tr-voice {
    background: var(--cream);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow);
    display: flex;
    flex-direction: column;
  }
  .tr-voice .photo-frame {
    aspect-ratio: 4 / 3;
    border-radius: 0;
    border: none;
    border-bottom: 2px dashed var(--orange-light);
  }
  .tr-voice-body { padding: 24px; }
  .tr-voice-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
  }
  .tr-voice-name small {
    display: block;
    font-size: 0.72rem;
    color: var(--orange-dark);
    font-weight: 700;
    margin-top: 2px;
  }
  .tr-voice-quote {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 2;
  }

  /* ===== Responsive ===== */
  @media (max-width: 960px) {
    .tr-flow-grid { grid-template-columns: repeat(2, 1fr); }
    .tr-step::after { display: none; }
    .tr-benefit-grid { grid-template-columns: 1fr; }
    .tr-benefit { grid-template-columns: 1fr; }
    .tr-benefit-img {
      aspect-ratio: 16 / 9;
      border-right: none;
      border-bottom: 2px dashed var(--orange-light);
    }
    .tr-form-wrap { padding: 32px 24px; }
    .tr-form-checks { grid-template-columns: 1fr; }
    .tr-voices-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 560px) {
    .tr-flow-grid { grid-template-columns: 1fr; }
  }
