/* PSNR Service Limited — form page styles */

/* ---------- Form hero (no photo, just the hide) ---------- */
.form-hero { padding: 180px 0 70px; }
.form-hero::after {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(212,175,55,0.10) 0%, transparent 60%),
        linear-gradient(180deg, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.85) 100%);
}

/* ---------- Form shell ---------- */
.psnr-form { margin-top: 2.5rem; }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-block {
    border: 1px solid var(--line);
    border-radius: 4px;
    background-color: rgba(18, 17, 17, 0.85);
    padding: 2.2rem 2rem 1.6rem;
    margin-bottom: 1.6rem;
}
.form-block legend {
    float: none;
    width: auto;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.05rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 1.8rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: baseline;
    gap: 0.9rem;
    width: 100%;
}
.fb-num {
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

.field-note {
    display: block;
    font-size: 0.72rem;
    color: #6b6760;
    margin-top: 0.4rem;
    line-height: 1.5;
}

.legal-note {
    font-size: 0.76rem;
    color: #6b6760;
    line-height: 1.75;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}
.legal-note a { color: var(--gold); text-decoration: none; }

/* ---------- Role / service picker tiles ---------- */
.role-picker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: 0.7rem;
}
.role-opt { cursor: pointer; margin: 0; }
.role-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.role-opt span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-align: center;
    min-height: 92px;
    padding: 1rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: rgba(0,0,0,0.4);
    font-size: 0.76rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: all 0.25s ease;
}
.role-opt span i { font-size: 1.3rem; color: var(--gold); opacity: 0.6; transition: opacity 0.25s ease; }
.role-opt:hover span { border-color: var(--line-strong); color: var(--text); }
.role-opt input:checked + span {
    border-color: var(--gold);
    background: rgba(212,175,55,0.09);
    color: var(--gold);
    box-shadow: inset 0 0 24px rgba(212,175,55,0.07);
}
.role-opt input:checked + span i { opacity: 1; }
.role-opt input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------- Checkbox rows ---------- */
.check-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.check-opt { cursor: pointer; margin: 0; }
.check-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.check-opt span {
    display: inline-block;
    padding: 0.5rem 1.05rem;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: rgba(0,0,0,0.4);
    font-size: 0.78rem;
    letter-spacing: 0.6px;
    color: var(--text-muted);
    transition: all 0.25s ease;
}
.check-opt:hover span { border-color: var(--line-strong); color: var(--text); }
.check-opt input:checked + span {
    border-color: var(--gold);
    background: rgba(212,175,55,0.1);
    color: var(--gold);
}
.check-opt input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------- Consent checkboxes ---------- */
.consent-opt {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.75;
    color: var(--text-muted);
}
.consent-opt input {
    appearance: none;
    -webkit-appearance: none;
    flex-shrink: 0;
    width: 18px; height: 18px;
    margin-top: 3px;
    border: 1px solid var(--line-strong);
    border-radius: 2px;
    background: rgba(0,0,0,0.5);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}
.consent-opt input:checked {
    background: var(--gold);
    border-color: var(--gold);
}
.consent-opt input:checked::after {
    content: '\2713';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #15120a;
    font-size: 0.78rem;
    font-weight: 700;
}
.consent-opt:hover { color: var(--text); }

/* ---------- File upload ---------- */
.file-drop { position: relative; }
.file-input {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    opacity: 0; cursor: pointer;
}
.file-face {
    border: 1px dashed var(--line-strong);
    border-radius: 4px;
    background: rgba(0,0,0,0.4);
    padding: 2.2rem 1.5rem;
    text-align: center;
    transition: all 0.25s ease;
    pointer-events: none;
}
.file-drop:hover .file-face { border-color: var(--gold); background: rgba(212,175,55,0.05); }
.file-face i { font-size: 1.9rem; color: var(--gold); display: block; margin-bottom: 0.8rem; }
.file-label {
    display: block;
    font-size: 0.86rem;
    color: var(--text);
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}
.file-hint { display: block; font-size: 0.72rem; color: #6b6760; }
.file-drop.has-file .file-face { border-style: solid; border-color: var(--gold); }
.file-drop.has-file .file-label { color: var(--gold); }

/* ---------- Star rating ---------- */
.star-pick {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 0.35rem;
}
.star-pick input { position: absolute; opacity: 0; width: 0; height: 0; }
.star-pick label {
    font-size: 2.2rem;
    line-height: 1;
    color: #2e2b26;
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
}
.star-pick label:hover,
.star-pick label:hover ~ label,
.star-pick input:checked ~ label {
    color: var(--gold);
}
.star-pick label:hover { transform: scale(1.12); }
.star-pick input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- Submit ---------- */
.submit-btn {
    margin-top: 0.6rem;
    padding: 1rem;
    font-size: 0.92rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ---------- Thank you page ---------- */
.thanks-wrap {
    min-height: 78vh;
    display: flex;
    align-items: center;
    padding: 170px 0 90px;
}
.thanks-panel {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    background-color: rgba(14, 13, 13, 0.8);
    padding: 3.5rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), inset 0 0 70px rgba(212,175,55,0.05);
}
.thanks-tick {
    font-size: 3.2rem;
    color: var(--gold);
    margin-bottom: 1.4rem;
    display: block;
    text-shadow: 0 0 36px rgba(212,175,55,0.4);
}
.thanks-panel h1 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 2rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.9rem;
}
.thanks-lead {
    font-size: 1.02rem;
    color: var(--text);
    margin-bottom: 1.6rem;
}
.thanks-detail p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 0.9rem;
}
.thanks-detail strong { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .form-hero { padding: 130px 0 50px; }
    .form-block { padding: 1.5rem 1.2rem 1.1rem; }
    .form-block legend { font-size: 0.9rem; letter-spacing: 1.2px; }
    .role-picker { grid-template-columns: repeat(2, 1fr); }
    .thanks-panel { padding: 2.4rem 1.4rem; }
    .thanks-panel h1 { font-size: 1.5rem; }
    .star-pick label { font-size: 1.8rem; }
}

/* ---------- Why band (careers + client) ---------- */
.why-band {
    margin: 3rem 0 3.5rem;
    padding: 2.6rem 2.2rem;
    border: 1px solid var(--line);
    border-radius: 4px;
    background-color: rgba(10, 10, 10, 0.6);
}
.why-band-head {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.8rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1rem;
}
.why-band-intro {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.9;
    max-width: 700px;
    margin-bottom: 2.4rem;
}

.why-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}
.why-tile {
    background: rgba(16, 15, 15, 0.95);
    padding: 1.8rem 1.6rem;
    transition: background 0.3s ease;
}
.why-tile:hover { background: rgba(212, 175, 55, 0.045); }
.why-tile i {
    font-size: 1.4rem;
    color: var(--gold);
    display: block;
    margin-bottom: 0.9rem;
}
.why-tile h5 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.92rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin-bottom: 0.7rem;
}
.why-tile p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin: 0;
}

.why-straight {
    margin-top: 2.2rem;
    padding: 1.7rem 1.8rem;
    border-left: 2px solid var(--gold);
    background: rgba(212, 175, 55, 0.04);
    border-radius: 0 3px 3px 0;
}
.why-straight h6 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.82rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.9rem;
}
.why-straight p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 0.8rem;
}
.why-straight p:last-child { margin-bottom: 0; }
.why-straight strong { color: var(--text); }

@media (max-width: 991px) {
    .why-band { padding: 1.7rem 1.2rem; margin: 2rem 0 2.5rem; }
    .why-band-head { font-size: 1.3rem; }
    .why-items { grid-template-columns: 1fr; }
    .why-tile { padding: 1.4rem 1.2rem; }
    .why-straight { padding: 1.3rem 1.2rem; }
}


/* ---------- Faint grain on form panels (kept low so text stays readable) ---------- */
.form-block,
.why-band,
.thanks-panel {
    position: relative;
    isolation: isolate;
}
.form-block::after,
.why-band::after,
.thanks-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/leather-soft.png');
    background-size: 300px 300px;
    background-repeat: repeat;
    opacity: 0.10;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
}
.form-block > *,
.why-band > *,
.thanks-panel > * { position: relative; z-index: 1; }
