/* ==========================================================================
   Partner Recruitment — Clean, imagery-driven redesign
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Fraunces:ital,opsz,wght@1,9..144,400;1,9..144,900&display=swap');

:root {
    --bg: #F6F2EA;
    --bg-2: #EFEADD;
    --paper: #FFFFFF;
    --ink: #0B1220;
    --ink-2: #1F2937;
    --muted: #64748B;
    --hair: rgba(11,18,32,0.12);
    --hair-strong: rgba(11,18,32,0.22);
    --accent: #E04A1A;
    --accent-2: #FF7A45;
    --teal: #0E4C5E;
    --teal-2: #1B6B93;

    --sans: 'Plus Jakarta Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
    --serif: 'Fraunces', Georgia, serif;
}

body.page-about {
    background: var(--bg) !important;
    color: var(--ink);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.005em;
}
body.page-about main { background: var(--bg); }

.pt-container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .pt-container { padding: 0 22px; } }

/* Section rhythm */
.pt-hero, .pt-alliance, .pt-visual, .pt-role, .pt-fields, .pt-target,
.pt-merit, .pt-impact, .pt-steps, .pt-faq, .pt-form {
    position: relative;
    padding: 120px 0;
}
@media (max-width: 720px) {
    .pt-hero, .pt-alliance, .pt-visual, .pt-role, .pt-fields, .pt-target,
    .pt-merit, .pt-impact, .pt-steps, .pt-faq, .pt-form { padding: 84px 0; }
}

/* Section marker */
.pt-marker {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 28px;
}
.pt-marker__num {
    display: inline-block;
    font-family: var(--serif); font-style: italic;
    font-size: 20px; font-weight: 900;
    color: var(--accent); line-height: 1;
}
.pt-marker__rule { width: 40px; height: 1px; background: currentColor; opacity: 0.6; }

.pt-h {
    font-family: var(--sans);
    font-weight: 800;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 24px;
}
.pt-h em {
    font-style: normal;
    font-weight: 900;
    color: var(--accent);
    padding: 0 4px;
}
.pt-lead {
    font-size: clamp(15px, 1.4vw, 17px);
    font-weight: 400;
    line-height: 1.85;
    color: var(--ink-2);
    max-width: 680px;
    margin: 0 0 48px;
}

/* Fade-in */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1); }
.fade-in.is-visible { opacity: 1; transform: none; }

/* ============================================================
   1. HERO — Full-bleed image with overlay
   ============================================================ */
.pt-hero {
    padding: 0;
    min-height: 92vh;
    display: flex; align-items: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #0B1220;
}
.pt-hero__bg {
    position: absolute; inset: 0;
    background-image: url('/partner/assets/vr-filming.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(25%) contrast(1.05);
}
.pt-hero__bg::after {
    content: ""; position: absolute; inset: 0;
    background:
        linear-gradient(105deg, rgba(11,18,32,0.92) 0%, rgba(11,18,32,0.75) 45%, rgba(11,18,32,0.35) 100%),
        linear-gradient(180deg, rgba(11,18,32,0.6) 0%, rgba(11,18,32,0.2) 30%, rgba(11,18,32,0.7) 100%);
}
.pt-hero__inner {
    position: relative;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 160px 40px 100px;
    z-index: 1;
}
.pt-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    padding: 10px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 2px;
    backdrop-filter: blur(10px);
    margin-bottom: 36px;
    color: #fff;
}
.pt-hero__eyebrow::before {
    content: ""; width: 8px; height: 8px;
    background: var(--accent-2); border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255,122,69,0.25);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.pt-hero__title {
    font-weight: 800;
    font-size: clamp(32px, 5vw, 68px);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin: 0 0 32px;
    max-width: 960px;
}
.pt-hero__title em {
    font-style: normal;
    font-weight: 900;
    color: var(--accent-2);
    padding: 0 2px;
}
.pt-hero__sub {
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.85;
    color: rgba(255,255,255,0.84);
    max-width: 620px;
    margin: 0 0 44px;
}
.pt-hero__cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 80px; }

.pt-btn {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 14px; font-weight: 600;
    padding: 18px 28px;
    text-decoration: none;
    border-radius: 2px;
    transition: all .3s cubic-bezier(.2,.8,.2,1);
    cursor: pointer;
    border: 1px solid transparent;
}
.pt-btn--primary { background: var(--accent); color: #fff; }
.pt-btn--primary:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.pt-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.pt-btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.pt-btn__arrow { font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1; }

.pt-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.22);
    padding-top: 36px;
    max-width: 960px;
}
.pt-hero__stat {
    padding: 0 28px;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.pt-hero__stat:first-child { padding-left: 0; }
.pt-hero__stat:last-child { border-right: none; }
.pt-hero__stat-val {
    font-weight: 800;
    font-size: clamp(32px, 3.6vw, 48px);
    line-height: 1;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}
.pt-hero__stat-val sup {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    color: var(--accent-2);
    font-weight: 400;
    vertical-align: top;
}
.pt-hero__stat-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}
@media (max-width: 900px) {
    .pt-hero { min-height: auto; }
    .pt-hero__inner { padding: 120px 22px 72px; }
    .pt-hero__stats { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
    .pt-hero__stat { padding: 0 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 20px; }
    .pt-hero__stat:nth-child(1), .pt-hero__stat:nth-child(3) { padding-left: 0; }
}

/* ============================================================
   2. ALLIANCE — SVG relationship diagram + text
   ============================================================ */
.pt-alliance { background: var(--paper); }
.pt-alliance__head { max-width: 820px; margin: 0 auto 72px; text-align: center; }
.pt-alliance__head .pt-marker { justify-content: center; }
.pt-alliance__head .pt-lead { margin-left: auto; margin-right: auto; }

.pt-alliance__diagram {
    background: var(--bg);
    border: 1px solid var(--hair-strong);
    border-radius: 4px;
    padding: 64px 48px;
    margin-bottom: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
}
.pt-alliance__node {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}
.pt-alliance__node-tag {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 14px;
}
.pt-alliance__node-name {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 16px;
    line-height: 1.2;
}
.pt-alliance__node-name em { font-family: var(--serif); font-style: italic; color: var(--accent); font-weight: 900; }
.pt-alliance__node-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--ink-2);
    max-width: 220px;
    margin: 0 auto;
}
.pt-alliance__node--jg .pt-alliance__node-name { color: var(--teal-2); }
.pt-alliance__node--koubo .pt-alliance__node-name { color: var(--accent); }

.pt-alliance__connector {
    position: absolute;
    top: 50%;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ink), transparent);
    transform: translateY(-50%);
}
.pt-alliance__connector--left { left: 33.33%; margin-left: -40px; }
.pt-alliance__connector--right { right: 33.33%; margin-right: -40px; }
.pt-alliance__connector::after {
    content: "×";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg);
    padding: 0 8px;
    font-family: var(--serif); font-style: italic; font-weight: 900;
    font-size: 24px;
    color: var(--accent);
    line-height: 1;
}

.pt-alliance__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.pt-alliance__card {
    background: var(--paper);
    padding: 40px 36px;
    border: 1px solid var(--hair-strong);
    border-top: 3px solid var(--ink);
    border-radius: 4px;
    position: relative;
}
.pt-alliance__card--jg { border-top-color: var(--teal-2); }
.pt-alliance__card--koubo { border-top-color: var(--accent); }
.pt-alliance__card-head {
    display: flex; align-items: baseline; gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--hair);
}
.pt-alliance__card-num {
    font-family: var(--serif); font-style: italic; font-weight: 900;
    font-size: 38px; line-height: 1; color: var(--accent);
    flex-shrink: 0;
}
.pt-alliance__card--jg .pt-alliance__card-num { color: var(--teal-2); }
.pt-alliance__card-eyebrow {
    font-size: 10px; letter-spacing: 0.16em;
    text-transform: uppercase; font-weight: 600;
    color: var(--muted); margin-bottom: 6px;
}
.pt-alliance__card-name {
    font-size: 22px; font-weight: 800;
    color: var(--ink); margin: 0;
    letter-spacing: -0.02em; line-height: 1.2;
}
.pt-alliance__card-desc {
    font-size: 14px; line-height: 1.75;
    color: var(--ink-2); margin: 0 0 22px;
}
.pt-alliance__list { list-style: none; padding: 0; margin: 0; }
.pt-alliance__list li {
    font-size: 13px; line-height: 1.65;
    color: var(--ink-2);
    padding: 12px 0 12px 28px;
    border-top: 1px dashed var(--hair);
    position: relative;
}
.pt-alliance__list li::before {
    content: "";
    position: absolute; left: 0; top: 18px;
    width: 14px; height: 1px; background: var(--accent);
}
.pt-alliance__list li strong { font-weight: 700; color: var(--ink); }

.pt-alliance__combo {
    margin-top: 56px;
    padding: 56px 48px;
    background: var(--ink);
    color: #fff;
    border-radius: 4px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: center;
}
.pt-alliance__combo-img {
    aspect-ratio: 4/3;
    background-image: url('/partner/assets/vr-seminar.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    filter: grayscale(30%) contrast(1.05);
}
.pt-alliance__combo-title {
    font-weight: 800;
    font-size: clamp(22px, 2.6vw, 32px);
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 12px 0 16px;
}
.pt-alliance__combo-title em { font-family: var(--serif); font-style: italic; color: var(--accent-2); font-weight: 900; }
.pt-alliance__combo-text { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.78); margin: 0; }
.pt-alliance__combo-label {
    font-size: 10px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--accent-2);
    margin-bottom: 12px;
}

@media (max-width: 900px) {
    .pt-alliance__diagram { grid-template-columns: 1fr; gap: 0; padding: 40px 24px; }
    .pt-alliance__connector { display: none; }
    .pt-alliance__node { padding: 24px 0; border-bottom: 1px dashed var(--hair-strong); }
    .pt-alliance__node:last-child { border-bottom: none; }
    .pt-alliance__grid { grid-template-columns: 1fr; gap: 20px; }
    .pt-alliance__card { padding: 32px 24px; }
    .pt-alliance__combo { grid-template-columns: 1fr; padding: 40px 28px; gap: 28px; }
}

/* ============================================================
   3. VISUAL — Photo strip
   ============================================================ */
.pt-visual { background: var(--bg); padding: 80px 0; }
.pt-visual__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 12px;
    aspect-ratio: 21/9;
    max-height: 540px;
}
.pt-visual__img {
    overflow: hidden;
    background: var(--ink);
    position: relative;
    border-radius: 2px;
}
.pt-visual__img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .5s ease;
    filter: grayscale(20%);
}
.pt-visual__img:hover img { transform: scale(1.05); filter: none; }
.pt-visual__img-label {
    position: absolute;
    bottom: 20px; left: 22px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.pt-visual__img-label::before {
    content: ""; display: inline-block;
    width: 20px; height: 1px;
    background: var(--accent-2);
    vertical-align: middle;
    margin-right: 10px;
}
@media (max-width: 900px) {
    .pt-visual__grid { grid-template-columns: 1fr; aspect-ratio: auto; max-height: none; gap: 10px; }
    .pt-visual__img { aspect-ratio: 3/2; }
}

/* ============================================================
   4. ROLE — Three columns with photos
   ============================================================ */
.pt-role { background: var(--paper); }
.pt-role__head { max-width: 820px; margin: 0 auto 64px; text-align: center; }
.pt-role__head .pt-marker { justify-content: center; }
.pt-role__head .pt-lead { margin-left: auto; margin-right: auto; }

.pt-role__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pt-role__card {
    background: var(--paper);
    border: 1px solid var(--hair-strong);
    border-radius: 4px;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease;
}
.pt-role__card:hover { transform: translateY(-6px); border-color: var(--ink); }
.pt-role__img {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    position: relative;
    filter: grayscale(15%);
}
.pt-role__card:hover .pt-role__img { filter: none; }
.pt-role__card--jg .pt-role__img { background-image: url('/partner/assets/vr-doctor.jpg'); }
.pt-role__card--koubo .pt-role__img { background-image: url('/partner/assets/staff-360.jpg'); }
.pt-role__card--partner .pt-role__img { background-image: url('/partner/assets/kango-toujisha.png'); }
.pt-role__img::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11,18,32,0.7));
}
.pt-role__num {
    position: absolute;
    bottom: 20px; left: 24px;
    font-family: var(--serif); font-style: italic; font-weight: 900;
    font-size: 64px; line-height: 1;
    color: #fff;
    z-index: 1;
}
.pt-role__body { padding: 32px 28px 36px; }
.pt-role__tag {
    font-size: 11px; letter-spacing: 0.16em;
    text-transform: uppercase; font-weight: 600;
    color: var(--accent); margin-bottom: 10px;
}
.pt-role__card--jg .pt-role__tag { color: var(--teal-2); }
.pt-role__name {
    font-weight: 800; font-size: 22px;
    color: var(--ink); margin: 0 0 22px;
    letter-spacing: -0.02em; line-height: 1.2;
}
.pt-role__list { list-style: none; padding: 0; margin: 0; }
.pt-role__list li {
    font-size: 13px; line-height: 1.7;
    color: var(--ink-2);
    padding: 12px 0 12px 24px;
    border-top: 1px dashed var(--hair);
    position: relative;
}
.pt-role__list li::before {
    content: "";
    position: absolute; left: 0; top: 20px;
    width: 12px; height: 1px; background: var(--accent);
}
@media (max-width: 900px) {
    .pt-role__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   5. FIELDS — Clean table/list (no icons)
   ============================================================ */
.pt-fields { background: var(--bg); }
.pt-fields__head { max-width: 820px; margin: 0 auto 56px; text-align: center; }
.pt-fields__head .pt-marker { justify-content: center; }
.pt-fields__head .pt-lead { margin-left: auto; margin-right: auto; }

.pt-fields__list {
    background: var(--paper);
    border: 1px solid var(--hair-strong);
    border-radius: 4px;
    overflow: hidden;
}
.pt-field-row {
    display: grid;
    grid-template-columns: 70px 1.2fr 2fr auto;
    align-items: center;
    padding: 28px 36px;
    border-bottom: 1px solid var(--hair);
    gap: 32px;
    transition: background .25s ease;
}
.pt-field-row:last-child { border-bottom: none; }
.pt-field-row:hover { background: var(--bg); }
.pt-field-row:hover .pt-field-row__title { color: var(--accent); }
.pt-field-row__num {
    font-family: var(--serif); font-style: italic; font-weight: 900;
    font-size: 28px; color: var(--muted);
    line-height: 1;
}
.pt-field-row__title {
    font-weight: 800; font-size: 20px;
    color: var(--ink); margin: 0;
    letter-spacing: -0.02em; line-height: 1.25;
    transition: color .25s ease;
}
.pt-field-row__text {
    font-size: 13px; line-height: 1.7;
    color: var(--ink-2); margin: 0;
}
.pt-field-row__tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.pt-field-row__tags span {
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.08em;
    padding: 5px 10px;
    background: var(--bg-2);
    color: var(--ink-2);
    border-radius: 2px;
    white-space: nowrap;
}
@media (max-width: 900px) {
    .pt-field-row { grid-template-columns: 54px 1fr; gap: 14px 18px; padding: 24px 22px; }
    .pt-field-row__text, .pt-field-row__tags { grid-column: 2; }
    .pt-field-row__tags { justify-content: flex-start; }
    .pt-field-row__title { font-size: 17px; }
    .pt-field-row__num { font-size: 24px; }
}

/* ============================================================
   6. TARGET — Simple typography grid, no icons, no shadow
   ============================================================ */
.pt-target { background: var(--paper); }
.pt-target__head { max-width: 820px; margin: 0 auto 56px; text-align: center; }
.pt-target__head .pt-marker { justify-content: center; }
.pt-target__head .pt-lead { margin-left: auto; margin-right: auto; }

.pt-target__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--hair-strong);
    border-radius: 4px;
    overflow: hidden;
}
.pt-target-card {
    background: var(--paper);
    padding: 36px 32px;
    border-right: 1px solid var(--hair);
    border-bottom: 1px solid var(--hair);
    transition: background .3s ease;
}
.pt-target-card:nth-child(3n) { border-right: none; }
.pt-target-card:nth-last-child(-n+3) { border-bottom: none; }
.pt-target-card:hover { background: var(--bg); }
.pt-target-card__num {
    font-family: var(--serif); font-style: italic; font-weight: 900;
    font-size: 22px; color: var(--accent);
    display: block; margin-bottom: 16px;
}
.pt-target-card__title {
    font-weight: 800; font-size: 18px;
    color: var(--ink); margin: 0 0 12px;
    letter-spacing: -0.02em; line-height: 1.25;
}
.pt-target-card__text {
    font-size: 13px; line-height: 1.75;
    color: var(--ink-2); margin: 0 0 20px;
}
.pt-target-card__tag {
    display: inline-block;
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    padding-top: 16px;
    border-top: 1px solid var(--hair);
    width: 100%;
}
@media (max-width: 900px) {
    .pt-target__grid { grid-template-columns: 1fr; }
    .pt-target-card { border-right: none; }
    .pt-target-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--hair); }
    .pt-target-card:last-child { border-bottom: none; }
}

/* ============================================================
   7. MERIT — Image + text alternating rows
   ============================================================ */
.pt-merit { background: var(--bg); }
.pt-merit__head { max-width: 820px; margin: 0 auto 80px; text-align: center; }
.pt-merit__head .pt-marker { justify-content: center; }
.pt-merit__head .pt-lead { margin-left: auto; margin-right: auto; }

.pt-merit__list { display: flex; flex-direction: column; gap: 80px; }
.pt-merit__item {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.pt-merit__item:nth-child(even) { grid-template-columns: 1fr 1.1fr; }
.pt-merit__item:nth-child(even) .pt-merit__img { order: 2; }
.pt-merit__img {
    aspect-ratio: 5/4;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    filter: grayscale(15%);
    position: relative;
}
.pt-merit__item:nth-child(1) .pt-merit__img { background-image: url('/partner/assets/vr-seminar.jpg'); }
.pt-merit__item:nth-child(2) .pt-merit__img { background-image: url('/partner/assets/staff-360.jpg'); }
.pt-merit__item:nth-child(3) .pt-merit__img { background-image: url('/partner/assets/vr-filming.jpg'); }
.pt-merit__img::after {
    content: "";
    position: absolute; inset: 0;
    border: 1px solid var(--hair-strong);
    border-radius: 4px;
    pointer-events: none;
}
.pt-merit__num {
    font-family: var(--serif); font-style: italic; font-weight: 900;
    font-size: 80px; line-height: 0.9;
    color: var(--accent);
    margin-bottom: 14px;
}
.pt-merit__num-label {
    display: inline-block;
    margin-left: 16px;
    font-family: var(--sans);
    font-size: 10px; letter-spacing: 0.18em;
    text-transform: uppercase; font-weight: 600;
    color: var(--muted);
    font-style: normal;
    vertical-align: super;
}
.pt-merit__title {
    font-weight: 800;
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.22;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 18px;
}
.pt-merit__title em {
    font-family: var(--serif); font-style: italic; font-weight: 900;
    color: var(--accent);
}
.pt-merit__text {
    font-size: 15px;
    line-height: 1.85;
    color: var(--ink-2);
    margin: 0 0 24px;
}
.pt-merit__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pt-merit__tags span {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.06em;
    padding: 7px 12px;
    background: var(--paper);
    border: 1px solid var(--hair-strong);
    color: var(--ink-2);
    border-radius: 2px;
}
@media (max-width: 900px) {
    .pt-merit__item, .pt-merit__item:nth-child(even) {
        grid-template-columns: 1fr; gap: 28px;
    }
    .pt-merit__item:nth-child(even) .pt-merit__img { order: 0; }
    .pt-merit__num { font-size: 60px; }
}

/* ============================================================
   8. IMPACT — Photo + note
   ============================================================ */
.pt-impact { background: var(--paper); }
.pt-impact__head { max-width: 820px; margin: 0 auto 56px; text-align: center; }
.pt-impact__head .pt-marker { justify-content: center; }
.pt-impact__head .pt-lead { margin-left: auto; margin-right: auto; }

.pt-impact__visual {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 16px;
    margin-bottom: 48px;
    aspect-ratio: 21/9;
    max-height: 480px;
}
.pt-impact__img {
    overflow: hidden;
    background: var(--ink);
    border-radius: 4px;
    position: relative;
}
.pt-impact__img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    filter: grayscale(15%);
    transition: all .5s ease;
}
.pt-impact__img:hover img { filter: none; }
.pt-impact__note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    padding: 44px 48px;
    background: var(--ink);
    color: #fff;
    border-radius: 4px;
}
.pt-impact__note-num {
    font-family: var(--serif); font-style: italic; font-weight: 900;
    font-size: 88px; line-height: 0.85;
    color: var(--accent-2);
}
.pt-impact__note h3 {
    font-weight: 800; font-size: 22px;
    line-height: 1.3; margin: 0 0 12px;
    letter-spacing: -0.02em;
}
.pt-impact__note p {
    font-size: 14px; line-height: 1.85;
    color: rgba(255,255,255,0.75); margin: 0;
    max-width: 640px;
}
@media (max-width: 900px) {
    .pt-impact__visual { grid-template-columns: 1fr; aspect-ratio: auto; max-height: none; }
    .pt-impact__img { aspect-ratio: 4/3; }
    .pt-impact__note { grid-template-columns: 1fr; gap: 20px; padding: 36px 28px; }
    .pt-impact__note-num { font-size: 64px; }
}

/* ============================================================
   9. STEPS — Horizontal timeline
   ============================================================ */
.pt-steps { background: var(--bg); }
.pt-steps__head { max-width: 820px; margin: 0 auto 64px; text-align: center; }
.pt-steps__head .pt-marker { justify-content: center; }
.pt-steps__head .pt-lead { margin-left: auto; margin-right: auto; }

.pt-steps__list {
    max-width: 960px; margin: 0 auto;
    position: relative;
}
.pt-steps__list::before {
    content: "";
    position: absolute;
    left: 44px; top: 40px; bottom: 40px;
    width: 2px;
    background: repeating-linear-gradient(180deg, var(--ink) 0 6px, transparent 6px 12px);
}
.pt-step {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 40px;
    padding: 28px 0 40px;
    position: relative;
}
.pt-step__marker {
    width: 88px; height: 88px;
    display: grid; place-items: center;
    background: var(--bg);
    border: 2px solid var(--ink);
    border-radius: 50%;
    font-family: var(--serif); font-style: italic; font-weight: 900;
    font-size: 42px;
    color: var(--ink);
    z-index: 1;
    line-height: 1;
}
.pt-step--final .pt-step__marker {
    background: var(--ink);
    color: var(--accent-2);
    border-color: var(--ink);
}
.pt-step__body { padding-top: 18px; }
.pt-step__title-row {
    display: flex; align-items: baseline; gap: 16px;
    flex-wrap: wrap; margin-bottom: 14px;
}
.pt-step__title {
    font-weight: 800;
    font-size: 22px;
    line-height: 1.25;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.02em;
}
.pt-step__badge {
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 5px 10px;
    border: 1px solid var(--ink);
    color: var(--ink);
    background: var(--paper);
    border-radius: 2px;
}
.pt-step__badge--now { background: var(--ink); color: var(--bg); }
.pt-step__badge--warn { background: var(--accent); color: #fff; border-color: var(--accent); }
.pt-step__badge--purple { background: var(--teal); color: #fff; border-color: var(--teal); }
.pt-step__badge--green { background: var(--accent-2); color: var(--ink); border-color: var(--accent-2); }
.pt-step__text {
    font-size: 14px; line-height: 1.8;
    color: var(--ink-2);
    margin: 0;
    max-width: 680px;
}
@media (max-width: 720px) {
    .pt-step { grid-template-columns: 68px 1fr; gap: 18px; }
    .pt-step__marker { width: 66px; height: 66px; font-size: 30px; }
    .pt-steps__list::before { left: 33px; top: 32px; bottom: 32px; }
    .pt-step__title { font-size: 18px; }
}

/* ============================================================
   10. FAQ — Hairline accordion
   ============================================================ */
.pt-faq { background: var(--paper); }
.pt-faq__head { max-width: 820px; margin: 0 auto 56px; text-align: center; }
.pt-faq__head .pt-marker { justify-content: center; }

.pt-faq__list {
    max-width: 960px; margin: 0 auto;
    border-top: 1px solid var(--ink);
    counter-reset: faq-counter;
}
.pt-faq__item {
    border-bottom: 1px solid var(--hair);
    transition: background .3s ease;
}
.pt-faq__item[open] { background: var(--bg); border-bottom-color: var(--ink); }
.pt-faq__item summary {
    list-style: none; cursor: pointer;
    padding: 28px 32px 28px 24px;
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 20px;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    color: var(--ink);
    letter-spacing: -0.01em;
    transition: color .25s ease;
}
.pt-faq__item summary::-webkit-details-marker { display: none; }
.pt-faq__item summary::before {
    counter-increment: faq-counter;
    content: "Q." counter(faq-counter, decimal-leading-zero);
    font-family: var(--serif); font-style: italic; font-weight: 900;
    font-size: 20px;
    color: var(--accent);
    align-self: start;
    padding-top: 4px;
}
.pt-faq__item:hover summary { color: var(--accent); }
.pt-faq__icon {
    width: 34px; height: 34px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    display: grid; place-items: center;
    font-family: var(--serif); font-size: 18px; font-weight: 400;
    color: var(--ink);
    transition: all .3s cubic-bezier(.2,.8,.2,1);
    flex-shrink: 0;
}
.pt-faq__item[open] .pt-faq__icon { transform: rotate(45deg); background: var(--ink); color: var(--bg); }
.pt-faq__answer {
    padding: 0 32px 32px 108px;
    font-size: 14px;
    line-height: 1.85;
    color: var(--ink-2);
}
@media (max-width: 720px) {
    .pt-faq__item summary { padding: 22px 16px; grid-template-columns: 46px 1fr auto; gap: 12px; font-size: 15px; }
    .pt-faq__answer { padding: 0 16px 24px 74px; }
}

/* ============================================================
   11. FORM
   ============================================================ */
.pt-form { background: var(--bg); }
.pt-form__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 72px;
    align-items: start;
}
.pt-form__intro .pt-h { font-size: clamp(34px, 4vw, 52px); }
.pt-form__contact {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--hair-strong);
}
.pt-form__contact-label {
    font-size: 10px; letter-spacing: 0.18em;
    text-transform: uppercase; font-weight: 600;
    color: var(--muted); margin-bottom: 14px;
}
.pt-form__alt-btn {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 16px 20px;
    background: var(--paper);
    border: 1px solid var(--hair-strong);
    color: var(--ink);
    text-decoration: none;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.02em;
    transition: all .25s ease;
    margin-bottom: 10px;
    border-radius: 2px;
}
.pt-form__alt-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.pt-form__alt-btn span:last-child { font-family: var(--serif); font-size: 18px; font-style: italic; }

.pt-form__card {
    background: var(--paper);
    border: 1px solid var(--hair-strong);
    padding: 52px 44px;
    border-radius: 4px;
    position: relative;
}
.pt-form__card::before {
    content: "FORM";
    position: absolute;
    top: -9px; left: 32px;
    background: var(--bg);
    padding: 0 10px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--muted);
}
.pt-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.pt-form__field { margin-bottom: 24px; }
.pt-form__row .pt-form__field { margin-bottom: 0; }
.pt-form__field label {
    display: block;
    font-size: 11px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink);
    margin-bottom: 10px;
}
.pt-form__req { color: var(--accent); }
.pt-form__field input,
.pt-form__field select,
.pt-form__field textarea {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--hair-strong);
    background: transparent;
    font-family: var(--sans);
    font-size: 15px;
    color: var(--ink);
    box-sizing: border-box;
    transition: border-color .25s ease;
    border-radius: 0;
}
.pt-form__field textarea { min-height: 90px; resize: vertical; }
.pt-form__field input::placeholder,
.pt-form__field textarea::placeholder { color: rgba(11,18,32,0.35); }
.pt-form__field input:focus,
.pt-form__field select:focus,
.pt-form__field textarea:focus { outline: none; border-bottom-color: var(--accent); border-bottom-width: 2px; }
.pt-form__field select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%230B1220'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right center; padding-right: 20px;
}
.pt-form__consent {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 13px; color: var(--ink-2);
    line-height: 1.65;
    margin: 28px 0 16px;
    cursor: pointer;
}
.pt-form__consent input[type="checkbox"] { margin-top: 3px; accent-color: var(--accent); }
.pt-form__consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.pt-form__note {
    font-size: 11px; color: var(--muted);
    line-height: 1.7;
    padding: 14px 0 22px;
    border-top: 1px dashed var(--hair);
}
.pt-form__submit {
    width: 100%;
    padding: 20px;
    background: var(--ink);
    color: #fff;
    border: 1px solid var(--ink);
    font-family: var(--sans);
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease;
    border-radius: 2px;
}
.pt-form__submit:hover { background: var(--accent); border-color: var(--accent); }
.pt-form__submit:disabled { opacity: .6; cursor: not-allowed; }
.pt-form__success { text-align: center; padding: 48px 20px; }
.pt-form__success-icon {
    font-family: var(--serif); font-style: italic; font-weight: 900;
    font-size: 84px; color: var(--accent); line-height: 1;
    margin-bottom: 20px;
}
.pt-form__success h3 {
    font-weight: 800; font-size: 26px;
    line-height: 1.25; margin: 0 0 14px; color: var(--ink);
    letter-spacing: -0.02em;
}
.pt-form__success p {
    font-size: 14px; line-height: 1.75;
    color: var(--ink-2); margin: 0;
}
@media (max-width: 900px) {
    .pt-form__grid { grid-template-columns: 1fr; gap: 48px; }
    .pt-form__card { padding: 40px 24px; }
    .pt-form__row { grid-template-columns: 1fr; gap: 0; }
    .pt-form__row .pt-form__field { margin-bottom: 24px; }
}

body.page-about ::selection { background: var(--ink); color: var(--accent-2); }
