* {
    box-sizing: border-box;
}

.profile-test {
    --profile-orange: #ff9900;
    --profile-orange-dark: #e27f00;
    --profile-navy: #003366;
    --profile-blue: #5d7899;
    --profile-bg: #f4f7f9;
    --profile-text: #17283c;
    --profile-muted: #68788c;
    --profile-line: #dce6ef;
    --profile-card: #ffffff;
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(0, 51, 102, 0.055) 0%, rgba(244, 247, 249, 0) 330px),
        var(--profile-bg);
    color: var(--profile-text);
    font-family: "DM Sans", Arial, sans-serif;
}

.profile-test img,
.profile-report img {
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

.profile-test__container {
    width: min(100% - 40px, 1080px);
    margin: 0 auto;
}

/* ---- Hero ---- */
.profile-test__home {
    min-height: calc(100vh - 82px);
    display: grid;
    align-items: center;
    padding: 72px 0 64px;
    background:
        radial-gradient(circle at 78% 22%, rgba(255, 153, 0, 0.16), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #f4f7f9 58%, #eaf1f7 100%);
}

.profile-test__home-container {
    width: min(100% - 40px, 1420px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(680px, 0.98fr) minmax(420px, 0.72fr);
    gap: 88px;
    align-items: center;
}

.profile-test__home-copy {
    display: grid;
    gap: 18px;
    align-content: center;
    justify-items: start;
}

.profile-test__home-kicker {
    margin: 0;
    color: var(--profile-orange-dark);
    font-size: 1.04rem;
    font-weight: 900;
}

.profile-test__home-title {
    margin: 0;
    max-width: 790px;
    color: var(--profile-navy);
    font-family: Poppins, "DM Sans", Arial, sans-serif;
    font-size: clamp(2.7rem, 5vw, 4.9rem);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
}

.profile-test__home-text {
    max-width: 640px;
    margin: 0;
    color: var(--profile-blue);
    font-size: 1.08rem;
    line-height: 1.7;
}

.profile-test__home-button {
    margin-top: 8px;
    text-decoration: none;
}

.profile-test__home-media {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center end;
    overflow: visible;
    transform: translateX(72px);
}

.profile-test__home-media::before {
    content: "";
    position: absolute;
    inset: auto 6% 4% 12%;
    height: 62px;
    border-radius: 50%;
    background: rgba(0, 51, 102, 0.13);
    filter: blur(18px);
}

.profile-test__home-image {
    position: relative;
    width: min(46vw, 720px);
    max-width: none;
    max-height: 690px;
    object-fit: contain;
    right: 200px;
}

/* ---- Shared section styles ---- */
.profile-test__section-head {
    display: grid;
    gap: 14px;
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
    justify-items: center;
}

.profile-test__section-title {
    margin: 0;
    color: var(--profile-navy);
    font-family: Poppins, "DM Sans", Arial, sans-serif;
    font-size: clamp(1.9rem, 4vw, 3.3rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.profile-test__kicker {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    border-radius: 999px;
    background: rgba(0, 51, 102, 0.08);
    color: var(--profile-navy);
    padding: 5px 12px;
    font-size: 0.74rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.profile-test__eyebrow {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border: 1px solid rgba(255, 153, 0, 0.28);
    border-radius: 999px;
    background: rgba(255, 153, 0, 0.11);
    color: var(--profile-navy);
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.profile-test__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border: 0;
    border-radius: 12px;
    font: inherit;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.2;
    padding: 14px 22px;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.profile-test__button:hover {
    transform: translateY(-1px);
}

.profile-test__button--primary {
    background: var(--profile-orange);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(255, 153, 0, 0.25);
    text-decoration: none;
}

.profile-test__button--primary:hover {
    background: var(--profile-orange-dark);
}

.profile-test__button--secondary {
    border: 1px solid rgba(0, 51, 102, 0.18);
    background: #ffffff;
    color: var(--profile-navy);
    box-shadow: 0 10px 22px rgba(0, 51, 102, 0.08);
}

.profile-test__button--secondary:hover {
    background: #f5f9fc;
}

/* ---- Tabs section ---- */
.profile-test__tabs {
    padding: 80px 0;
    background: #ffffff;
}

.profile-test__tabs-container {
    width: min(100% - 40px, 1120px);
    margin: 0 auto;
}

.profile-test__tab-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 36px;
    border-bottom: 1.5px solid var(--profile-line);
}

.profile-test__tab-btn {
    position: relative;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--profile-muted);
    font: inherit;
    font-size: 0.96rem;
    font-weight: 700;
    padding: 10px 20px 16px;
    cursor: pointer;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.profile-test__tab-btn::after {
    content: "";
    position: absolute;
    bottom: -1.5px;
    left: 20px;
    right: 20px;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--profile-navy);
    transform: scaleX(0);
    transition: transform 0.22s ease;
}

.profile-test__tab-btn--active {
    color: var(--profile-navy);
    font-weight: 900;
}

.profile-test__tab-btn--active::after {
    transform: scaleX(1);
}

.profile-test__tab-cta {
    margin-left: auto;
    text-decoration: none;
    font-size: 0.9rem;
    min-height: 42px;
    padding: 10px 20px;
    border-radius: 999px;
}

.profile-test__tab-area {
    margin-top: 32px;
}

.profile-test__tab-panel[hidden] {
    display: none;
}

.profile-test__tab-panel--active {
    animation: tabPanelIn 0.28s ease both;
}

@keyframes tabPanelIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.profile-test__tab-layout {
    display: grid;
    grid-template-columns: 1fr 180px 1fr;
    gap: 20px;
    align-items: center;
    min-height: 260px;
}

.profile-test__tab-desc {
    border: 1px solid rgba(0, 51, 102, 0.1);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(0, 51, 102, 0.07);
    padding: 28px;
    display: grid;
    gap: 12px;
    align-self: stretch;
}

.profile-test__tab-animal {
    color: var(--profile-navy);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.profile-test__tab-desc p {
    margin: 0;
    color: var(--profile-muted);
    font-size: 0.91rem;
    line-height: 1.65;
}

.profile-test__tab-visual {
    position: relative;
    display: grid;
    place-items: center;
    padding: 20px 8px 0;
}

.profile-test__tab-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #00cc99;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 10px rgba(0, 204, 153, 0.45);
}

.profile-test__tab-illustration {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.profile-test__tab-illustration--photo {
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffffff;
    box-shadow: 0 12px 32px rgba(0, 51, 102, 0.18);
}

.profile-test__tab-quote {
    border-radius: 14px;
    background: #00cc99;
    color: #ffffff;
    padding: 28px;
    display: grid;
    gap: 14px;
    align-self: stretch;
}

.profile-test__tab-quote-title {
    margin: 0;
    font-family: Poppins, "DM Sans", Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
}

.profile-test__tab-quote-text {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    font-style: normal;
    opacity: 0.92;
}

/* ---- Brain / Rational-Emotional ---- */
.profile-test__brain {
    padding: 80px 0;
    background: var(--profile-bg);
}

.profile-test__brain-container {
    width: min(100% - 40px, 1120px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 52px;
    align-items: center;
}

.profile-test__brain-copy {
    display: grid;
    gap: 18px;
    justify-items: start;
}

.profile-test__brain-media {
    display: grid;
    place-items: center;
}

.profile-test__brain-collage {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr;
    gap: 14px;
    align-items: center;
    width: 100%;
    max-width: 460px;
}

.profile-test__brain-collage-a {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 51, 102, 0.15);
}

.profile-test__brain-collage-b {
    width: 100%;
    object-fit: contain;
    opacity: 0.85;
}

/* ---- "O que te move?" ---- */
.profile-test__moves {
    padding: 80px 0;
    background: #ffffff;
}

.profile-test__moves-container {
    width: min(100% - 40px, 1120px);
    margin: 0 auto;
}

.profile-test__moves-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 28px;
    align-items: center;
}

.profile-test__moves-col {
    display: grid;
    gap: 16px;
}

.profile-test__moves-center {
    display: grid;
    gap: 22px;
    justify-items: center;
    text-align: center;
    padding: 0 20px;
}

.profile-test__moves-title {
    margin: 0;
    color: var(--profile-navy);
    font-family: Poppins, "DM Sans", Arial, sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
}

.profile-test__move-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 14px 18px;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.profile-test__move-pill--purple {
    background: #5b4fcf;
}

.profile-test__move-pill--teal {
    background: #00cc99;
}

.profile-test__move-label {
    flex: 1;
}

.profile-test__move-icon-wrap {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.profile-test__move-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ---- Setores ---- */
.profile-test__sectors {
    padding: 80px 0;
    background: var(--profile-bg);
}

.profile-test__sectors-container {
    width: min(100% - 40px, 1120px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.profile-test__sectors-copy {
    display: grid;
    gap: 22px;
    justify-items: start;
}

.profile-test__sectors-badge {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    border-radius: 999px;
    background: var(--profile-orange);
    color: #ffffff;
    font-size: 0.96rem;
    font-weight: 900;
    padding: 10px 24px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.profile-test__sectors-badge:hover {
    background: var(--profile-orange-dark);
    transform: translateY(-1px);
}

.profile-test__sectors-sub {
    margin: 0;
    color: var(--profile-muted);
    font-size: 1rem;
    font-weight: 600;
}

.profile-test__sectors-trail {
    width: min(100%, 260px);
    object-fit: contain;
}

.profile-test__button--sectors {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 50px;
    border-radius: 999px;
    background: linear-gradient(135deg, #003366 0%, #005499 100%);
    color: #ffffff;
    font-size: 0.96rem;
    font-weight: 900;
    padding: 12px 26px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.profile-test__button--sectors:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.profile-test__sectors-media {
    display: grid;
    place-items: center;
}

.profile-test__sectors-photo {
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 24px 60px rgba(0, 51, 102, 0.16);
}

/* ---- Test shell ---- */
.profile-test__shell {
    scroll-margin-top: 86px;
    padding: 72px 0 86px;
}

.profile-test__intro {
    display: grid;
    gap: 14px;
    max-width: 790px;
    margin: 0 auto 34px;
    text-align: center;
}

.profile-test__title {
    margin: 0;
    color: var(--profile-navy);
    font-family: Poppins, "DM Sans", Arial, sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
}

.profile-test__subtitle {
    max-width: 690px;
    margin: 0 auto;
    color: var(--profile-blue);
    font-size: 1.12rem;
    line-height: 1.65;
}

.profile-test__card {
    scroll-margin-top: 100px;
    position: relative;
    overflow: hidden;
    width: min(100%, 920px);
    min-height: 560px;
    margin: 0 auto;
    border: 1px solid rgba(0, 51, 102, 0.08);
    border-radius: 12px;
    background: var(--profile-card);
    box-shadow: 0 24px 70px rgba(0, 51, 102, 0.13);
}

.profile-test__progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    height: 7px;
    background: #e8eef4;
}

.profile-test__progress-bar {
    display: block;
    width: 0;
    height: 100%;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(90deg, var(--profile-orange) 0%, var(--profile-navy) 100%);
    transition: width 0.36s ease;
}

.profile-test__screen {
    min-height: 560px;
    padding: 42px;
}

.profile-test__screen--start {
    min-height: 696px;
}

.profile-test__screen[hidden] {
    display: none;
}

.profile-test__start-grid {
    min-height: 476px;
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 34px;
    align-items: center;
}

.profile-test__start-copy {
    display: grid;
    gap: 16px;
    justify-items: start;
}

.profile-test__heading {
    margin: 0;
    color: var(--profile-navy);
    font-family: Poppins, "DM Sans", Arial, sans-serif;
    font-size: 2.65rem;
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: 0;
}

.profile-test__text {
    max-width: 510px;
    margin: 0;
    color: var(--profile-muted);
    font-size: 1.03rem;
    line-height: 1.65;
}

.profile-test__form {
    display: grid;
    width: min(100%, 460px);
    gap: 14px;
    margin-top: 4px;
}

.profile-test__field {
    display: grid;
    gap: 7px;
}

.profile-test__label {
    color: var(--profile-navy);
    font-size: 0.9rem;
    font-weight: 900;
}

.profile-test__input {
    width: 100%;
    min-height: 50px;
    border: 1.5px solid var(--profile-line);
    border-radius: 10px;
    background: #ffffff;
    color: var(--profile-text);
    font: inherit;
    font-size: 1rem;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.profile-test__input:focus {
    border-color: var(--profile-orange);
    box-shadow: 0 0 0 4px rgba(255, 153, 0, 0.14);
}

.profile-test__form-error {
    margin: 0;
    border-radius: 10px;
    background: #fff1f0;
    color: #a33b2f;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.45;
    padding: 10px 12px;
}

.profile-test__type-toggle {
    position: relative;
    display: flex;
    gap: 4px;
    background: rgba(0, 51, 102, 0.07);
    border-radius: 10px;
    padding: 4px;
}

.profile-test__type-toggle::before {
    content: "";
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc((100% - 12px) / 2);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 51, 102, 0.12);
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-profile-mode="company"] .profile-test__type-toggle::before {
    transform: translateX(calc(100% + 4px));
}

.profile-test__type-btn {
    position: relative;
    z-index: 1;
    flex: 1;
    min-height: 38px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: rgba(0, 51, 102, 0.5);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    transition: color 0.24s ease;
}

.profile-test__type-btn--active {
    color: var(--profile-navy);
}

.profile-test__form-section {
    display: grid;
    gap: 12px;
}

.profile-test__form-section[hidden] {
    display: none;
}

.profile-test__form-section--entering {
    animation: profileSectionIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes profileSectionIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

[data-profile-mode="company"] .profile-test__form-section {
    padding: 16px;
    background: rgba(0, 51, 102, 0.04);
    border: 1px solid rgba(0, 51, 102, 0.1);
    border-radius: 10px;
}

.profile-test__section-label {
    margin: 0;
    color: var(--profile-navy);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.profile-test__field-hint {
    margin: 0;
    color: var(--profile-muted);
    font-size: 0.82rem;
    font-weight: 600;
    font-style: italic;
}

.profile-test__profiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.profile-test__side {
    align-self: start;
    display: grid;
    gap: 18px;
    padding-top: 6px;
}

.profile-test__company-note {
    width: min(100%, 340px);
    min-height: 440px;
    justify-self: center;
    border: 1px solid rgba(0, 51, 102, 0.1);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(0, 51, 102, 0.055) 0%, rgba(0, 51, 102, 0.02) 100%),
        #ffffff;
    color: var(--profile-muted);
    padding: 20px;
    animation: profileNoteIn 0.32s ease both;
}

.profile-test__company-note[hidden] {
    display: none;
}

.profile-test__company-note-label {
    display: block;
    margin-bottom: 10px;
    color: var(--profile-navy);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.profile-test__company-note h3 {
    margin: 0 0 10px;
    color: var(--profile-navy);
    font-family: Poppins, "DM Sans", Arial, sans-serif;
    font-size: 1.22rem;
    font-weight: 900;
    line-height: 1.2;
}

.profile-test__company-note p {
    margin: 0;
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.55;
}

.profile-test__company-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.profile-test__company-list li {
    border-top: 1px solid rgba(0, 51, 102, 0.1);
    padding-top: 12px;
}

.profile-test__company-list strong,
.profile-test__company-list span {
    display: block;
}

.profile-test__company-list strong {
    color: var(--profile-navy);
    font-size: 0.9rem;
    font-weight: 900;
}

.profile-test__company-list span {
    margin-top: 4px;
    color: var(--profile-muted);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.45;
}

.profile-test__company-tag {
    margin-top: 18px;
    border-radius: 8px;
    background: rgba(255, 153, 0, 0.13);
    color: var(--profile-navy);
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1.35;
    padding: 12px 14px;
}

@keyframes profileNoteIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.profile-test__profile-preview {
    display: grid;
    gap: 10px;
    justify-items: center;
    margin: 0;
}

.profile-test__profile-img {
    width: 132px;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffffff;
    box-shadow: 0 14px 32px rgba(0, 51, 102, 0.16);
}

.profile-test__profile-name {
    color: var(--profile-navy);
    font-size: 0.95rem;
    font-weight: 900;
}

.profile-test__stage {
    display: grid;
    gap: 26px;
    min-height: 476px;
    align-content: center;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.profile-test__stage--leaving {
    opacity: 0;
    transform: translateY(8px);
}

.profile-test__stage--entering {
    animation: profileQuestionIn 0.28s ease both;
}

.profile-test__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--profile-muted);
    font-size: 0.88rem;
    font-weight: 900;
}

.profile-test__counter,
.profile-test__score-pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border-radius: 999px;
    padding: 7px 12px;
}

.profile-test__counter {
    background: rgba(0, 51, 102, 0.08);
    color: var(--profile-navy);
}

.profile-test__score-pill {
    background: rgba(255, 153, 0, 0.12);
    color: #9a5d00;
}

.profile-test__question {
    margin: 0;
    color: var(--profile-navy);
    font-family: Poppins, "DM Sans", Arial, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: 0;
}

.profile-test__options {
    display: grid;
    gap: 14px;
}

.profile-test__option {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 64px;
    border: 1.5px solid var(--profile-line);
    border-radius: 12px;
    background: #ffffff;
    color: var(--profile-text);
    font: inherit;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.45;
    text-align: left;
    padding: 14px 16px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-test__option:hover {
    border-color: rgba(0, 51, 102, 0.45);
    background: #f5f9fc;
    box-shadow: 0 12px 26px rgba(0, 51, 102, 0.08);
    transform: translateY(-1px);
}

.profile-test__option:disabled {
    cursor: default;
}

.profile-test__option--selected,
.profile-test__option--selected:hover {
    border-color: var(--profile-orange);
    background: var(--profile-orange);
    color: #ffffff;
}

.profile-test__option-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(0, 51, 102, 0.09);
    color: var(--profile-navy);
    font-size: 0.88rem;
    font-weight: 900;
}

.profile-test__option--selected .profile-test__option-letter {
    background: #ffffff;
    color: var(--profile-orange-dark);
}

.profile-test__result {
    display: grid;
    gap: 28px;
    min-height: 476px;
    align-content: center;
}

.profile-test__result-layout {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 30px;
    align-items: center;
}

.profile-test__result-media {
    display: grid;
    place-items: center;
}

.profile-test__result-img {
    width: 190px;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    border: 7px solid #ffffff;
    box-shadow: 0 18px 48px rgba(0, 51, 102, 0.18);
}

.profile-test__result-content {
    display: grid;
    gap: 10px;
}

.profile-test__result-label {
    margin: 0;
    color: var(--profile-orange-dark);
    font-size: 0.88rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.profile-test__result-title {
    margin: 0;
    color: var(--profile-navy);
    font-family: Poppins, "DM Sans", Arial, sans-serif;
    font-size: 3.1rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
}

.profile-test__result-text {
    margin: 0;
    color: var(--profile-muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.profile-test__bars {
    display: grid;
    gap: 12px;
}

.profile-test__bar {
    display: grid;
    grid-template-columns: 112px 1fr 58px;
    align-items: center;
    gap: 12px;
}

.profile-test__bar-name {
    color: var(--profile-navy);
    font-size: 0.92rem;
    font-weight: 900;
}

.profile-test__bar-track {
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8eef4;
}

.profile-test__bar-fill {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--profile-orange), var(--profile-navy));
    transition: width 0.62s ease;
}

.profile-test__bar-value {
    color: var(--profile-muted);
    font-size: 0.9rem;
    font-weight: 900;
    text-align: right;
}

.profile-test__complete {
    display: grid;
    gap: 24px;
    min-height: 476px;
    align-content: center;
}

.profile-test__complete-card {
    display: grid;
    gap: 16px;
    border: 1px solid #b8ddcf;
    border-radius: 12px;
    background: #d8efe5;
    color: #004b35;
    padding: 28px;
}

.profile-test__complete-title {
    margin: 0 0 10px;
    color: #004b35;
    font-family: Poppins, "DM Sans", Arial, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0;
}

.profile-test__complete-text {
    margin: 0;
    color: #004b35;
    font-size: 1.05rem;
    line-height: 1.65;
}

.profile-test__complete-line {
    width: 100%;
    border: 0;
    border-top: 1px solid rgba(0, 75, 53, 0.22);
    margin: 18px 0 4px;
}

.profile-test__complete-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ---- Tools grid ---- */
.profile-test__tools {
    padding: 80px 0;
    background: var(--profile-bg);
}

.profile-test__tools-container {
    width: min(100% - 40px, 1120px);
    margin: 0 auto;
}

.profile-test__tools-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.profile-test__tool-card {
    display: grid;
    justify-items: center;
    gap: 16px;
    padding: 30px 20px 24px;
    border: 1px solid rgba(0, 51, 102, 0.08);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 51, 102, 0.06);
    text-decoration: none;
    color: var(--profile-text);
    text-align: center;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.profile-test__tool-card:hover {
    box-shadow: 0 18px 48px rgba(0, 51, 102, 0.12);
    transform: translateY(-3px);
}

.profile-test__tool-card--idea {
    border-color: rgba(255, 153, 0, 0.18);
}

.profile-test__tool-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.profile-test__tool-title {
    margin: 0;
    color: var(--profile-navy);
    font-family: Poppins, "DM Sans", Arial, sans-serif;
    font-size: 0.96rem;
    font-weight: 900;
    line-height: 1.3;
    flex: 1;
}

.profile-test__tool-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 999px;
    background: var(--profile-navy);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 900;
    padding: 8px 20px;
    transition: background 0.2s ease;
    width: 100%;
}

.profile-test__tool-card:hover .profile-test__tool-cta {
    background: var(--profile-orange);
}

.profile-test__tool-card--idea .profile-test__tool-cta {
    background: var(--profile-orange);
}

/* ---- Print-matched landing overrides ---- */
.profile-test {
    --profile-orange: #ff9900;
    --profile-orange-dark: #ef8f00;
    --profile-purple: #5a40e8;
    --profile-teal: #25cfbf;
    --profile-blue-cta: #1f7beb;
    --profile-text: #33343a;
    --profile-muted: #202433;
    --profile-bg: #ffffff;
    --profile-navy: #33343a;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    color: var(--profile-text);
}

.profile-test__home { order: 1; }
.profile-test__tabs { order: 2; }
.profile-test__brain { order: 3; }
.profile-test__sectors { order: 4; }
.profile-test__moves { order: 5; }
.profile-test__tools { order: 6; }
.profile-test__shell { order: 7; }

@media (min-width: 941px) {
    .profile-test__home-container,
    .profile-test__tabs-container,
    .profile-test__brain-container,
    .profile-test__brain-detail,
    .profile-test__sectors-container,
    .profile-test__moves-container,
    .profile-test__tools-container,
    .profile-test__container {
        zoom: 1.2;
    }
}

.profile-test__home,
.profile-test__tabs,
.profile-test__brain,
.profile-test__sectors,
.profile-test__moves,
.profile-test__tools {
    background: #ffffff;
}

.profile-test__home {
    min-height: 625px;
    padding: 56px 0 72px;
    background:
        radial-gradient(circle at 28% 70%, rgba(37, 207, 191, 0.18), transparent 26%),
        radial-gradient(circle at 78% 48%, rgba(90, 64, 232, 0.15), transparent 32%),
        linear-gradient(120deg, #ffffff 0%, #f8fbff 45%, #ffffff 100%);
}

.profile-test__home-container {
    width: min(100% - 48px, 1120px);
    grid-template-columns: 0.86fr 1.14fr;
    gap: 70px;
}

.profile-test__home-copy {
    gap: 18px;
}

.profile-test__home-title {
    max-width: 520px;
    color: #34343a;
    font-size: 2.45rem;
    line-height: 1.38;
    font-weight: 900;
}

.profile-test__home-text {
    max-width: 560px;
    color: #22242d;
    font-size: 0.96rem;
    line-height: 1.72;
}

.profile-test__home-text strong {
    font-weight: 900;
}

.profile-test__button {
    min-height: 46px;
    border-radius: 14px;
    font-size: 0.98rem;
    text-transform: none;
}

.profile-test__button--primary {
    background: var(--profile-orange);
    box-shadow: none;
}

.profile-test__button--primary:hover {
    background: var(--profile-orange-dark);
}

.profile-test__home-button {
    min-width: 168px;
    min-height: 58px;
    margin-top: 4px;
    border-radius: 16px;
    text-transform: uppercase;
}

.profile-test__home-media {
    min-height: 430px;
    place-items: center;
    transform: none;
}

.profile-test__home-media::before {
    display: none;
}

.profile-test__home-image {
    right: auto;
    width: min(100%, 620px);
    max-height: none;
    object-fit: contain;
}

.profile-test__hero-chat {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    background: #348fe8;
    color: #ffffff;
    font-weight: 900;
    line-height: 1.2;
    text-align: left;
    box-shadow: 0 12px 25px rgba(52, 143, 232, 0.16);
}

.profile-test__hero-chat--main {
    left: 23%;
    bottom: 78px;
    width: 206px;
    min-height: 62px;
    border-radius: 0 11px 11px 0;
    padding: 14px 18px;
    font-size: 0.54rem;
}

.profile-test__hero-chat--main::before {
    content: "";
    position: absolute;
    left: -17px;
    bottom: 0;
    width: 18px;
    height: 24px;
    background: #348fe8;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.profile-test__hero-chat--small {
    left: 47%;
    bottom: 34px;
    width: 106px;
    min-height: 32px;
    border-radius: 16px 0 0 16px;
    padding: 8px 18px;
    font-size: 0.58rem;
    text-align: center;
}

.profile-test__hero-chat--small::after {
    content: "";
    position: absolute;
    right: -16px;
    bottom: 0;
    width: 17px;
    height: 18px;
    background: #348fe8;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.profile-test__tabs {
    min-height: 590px;
    padding: 76px 0 78px;
}

.profile-test__tabs-container,
.profile-test__brain-container,
.profile-test__sectors-container,
.profile-test__moves-container,
.profile-test__tools-container {
    width: min(100% - 48px, 1120px);
}

.profile-test__section-head {
    gap: 2px;
    margin-bottom: 56px;
}

.profile-test__section-title,
.profile-test__moves-title {
    color: #34343a;
    font-size: 1.72rem;
    line-height: 1.18;
    font-weight: 900;
}

.profile-test__section-subtitle {
    margin: 0;
    color: #1f2530;
    font-size: 1rem;
    line-height: 1.35;
}

.profile-test__tab-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 172px;
    gap: 74px;
    align-items: start;
    margin: 0 auto 46px;
    border-bottom: 0;
}

.profile-test__tab-btn {
    isolation: isolate;
    min-height: 39px;
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    font-size: 0.94rem;
    font-weight: 500;
    padding: 9px 22px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.18);
}

.profile-test__tab-btn::before {
    content: "";
    position: absolute;
    inset: -8px;
    z-index: -1;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(90, 64, 232, 0.34), rgba(37, 207, 191, 0.3));
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.profile-test__tab-btn::after {
    left: 50%;
    right: auto;
    bottom: -18px;
    width: 16px;
    height: 4px;
    transform: translateX(-50%);
    background: var(--profile-teal);
}

.profile-test__tab-btn--active {
    color: var(--profile-purple);
    background: linear-gradient(135deg, #ffffff 0%, #f4f1ff 100%);
    box-shadow:
        0 14px 24px rgba(90, 64, 232, 0.24),
        0 0 0 3px rgba(37, 207, 191, 0.16);
    transform: translateY(-5px);
}

.profile-test__tab-btn--active::before {
    opacity: 1;
    transform: scale(1);
    animation: profileActiveGlow 1.8s ease-in-out infinite;
}

.profile-test__tab-btn--active::after {
    transform: translateX(-50%);
    bottom: -24px;
    width: 28px;
    height: 6px;
    box-shadow: 0 0 16px rgba(37, 207, 191, 0.75);
    animation: profileActiveMarker 1.1s ease-in-out infinite alternate;
}

.profile-test__tab-cta {
    min-height: 40px;
    margin-left: 0;
    border-radius: 999px;
    background: var(--profile-purple);
    box-shadow: 0 8px 12px rgba(66, 45, 189, 0.28);
    font-size: 0.96rem;
    padding: 10px 24px;
}

@keyframes profileActiveGlow {
    0%, 100% {
        opacity: 0.54;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.04);
    }
}

@keyframes profileActiveMarker {
    from {
        transform: translateX(-50%) scaleX(0.72);
    }
    to {
        transform: translateX(-50%) scaleX(1.12);
    }
}

.profile-test__tab-layout {
    grid-template-columns: minmax(0, 1.6fr) 170px minmax(250px, 0.72fr);
    gap: 28px;
    min-height: 206px;
}

.profile-test__tab-desc {
    min-height: 206px;
    border: 0;
    border-radius: 19px;
    box-shadow: 0 9px 20px rgba(0, 0, 0, 0.18);
    padding: 48px 28px 24px;
}

.profile-test__tab-animal {
    color: #172033;
    font-size: 1rem;
    letter-spacing: 0;
}

.profile-test__tab-desc p {
    color: #222431;
    font-size: 0.94rem;
    line-height: 1.27;
}

.profile-test__tab-visual::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 54%;
    left: 50%;
    width: 2px;
    background: #d4d4d4;
}

.profile-test__tab-dot {
    top: 8px;
    width: 18px;
    height: 18px;
    border: 0;
    background: var(--profile-teal);
    box-shadow: none;
}

.profile-test__tab-illustration {
    width: 124px;
    height: 124px;
}

.profile-test__tab-quote {
    min-height: 204px;
    border-radius: 17px;
    background: var(--profile-teal);
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.22);
    padding: 16px 24px;
}

.profile-test__tab-quote-title {
    justify-self: end;
    font-size: 1.5rem;
}

.profile-test__tab-quote-text {
    font-size: 0.94rem;
    font-weight: 900;
}

.profile-test__brain {
    padding: 76px 0 118px;
}

.profile-test__brain-container {
    grid-template-columns: minmax(420px, 0.86fr) minmax(360px, 0.72fr);
    gap: 120px;
    align-items: center;
}

.profile-test__brain-copy {
    gap: 4px;
}

.profile-test__brain-copy .profile-test__section-title {
    max-width: 500px;
    font-size: 1.78rem;
    line-height: 1.2;
}

.profile-test__brain-copy .profile-test__home-text {
    max-width: 560px;
    font-size: 1.04rem;
    line-height: 1.7;
}

.profile-test__brain-collage {
    display: block;
    width: 414px;
    max-width: 100%;
}

.profile-test__brain-collage-a {
    width: 100%;
    aspect-ratio: auto;
    border-radius: 0;
    box-shadow: none;
}

.profile-test__brain-collage-b {
    display: none;
}

.profile-test__brain-detail {
    width: min(100% - 48px, 1030px);
    margin: 76px auto 0;
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(360px, 0.9fr);
    gap: 82px;
    align-items: center;
}

.profile-test__brain-chart {
    width: 376px;
    max-width: 100%;
    justify-self: center;
}

.profile-test__brain-detail-copy h3 {
    margin: 0 0 2px;
    color: #34343a;
    font-family: Poppins, "DM Sans", Arial, sans-serif;
    font-size: 1.82rem;
    font-weight: 900;
    line-height: 1.2;
}

.profile-test__brain-detail-copy p {
    margin: 0;
    color: #202433;
    font-size: 1.05rem;
    line-height: 1.72;
}

.profile-test__sectors {
    min-height: 565px;
    padding: 74px 0 76px;
}

.profile-test__sectors-container {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 70px;
}

.profile-test__sectors-copy {
    gap: 32px;
}

.profile-test__sectors-badge {
    min-height: 48px;
    border-radius: 999px;
    background: var(--profile-orange);
    font-size: 1.14rem;
    padding: 11px 24px;
}

.profile-test__sectors-sub {
    color: #222431;
    font-size: 1.05rem;
    font-weight: 500;
}

.profile-test__sectors-trail {
    width: 128px;
}

.profile-test__button--sectors {
    min-height: 39px;
    border-radius: 999px;
    background: linear-gradient(180deg, #25cfbf 0%, #5a40e8 100%);
    font-size: 0.91rem;
    padding: 10px 22px;
}

.profile-test__sectors-media {
    position: relative;
}

.profile-test__sectors-photo {
    width: 500px;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
}

.profile-test__sectors-triangle {
    position: absolute;
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 9px;
    transform: rotate(45deg) skew(8deg, 8deg);
}

.profile-test__sectors-triangle--a {
    right: 88px;
    top: 120px;
    background: rgba(37, 207, 191, 0.52);
}

.profile-test__sectors-triangle--b {
    right: 28px;
    top: 134px;
    width: 50px;
    height: 50px;
    background: var(--profile-teal);
}

.profile-test__moves {
    min-height: 575px;
    padding: 248px 0 158px;
}

.profile-test__moves-layout {
    grid-template-columns: minmax(300px, 1fr) 310px minmax(300px, 1fr);
    gap: 36px;
}

.profile-test__moves-col {
    gap: 22px;
    justify-items: end;
}

.profile-test__moves-col--right {
    justify-items: start;
}

.profile-test__move-pill {
    display: block;
    width: min(100%, 450px);
    min-height: 72px;
    border-radius: 0;
    padding: 0;
    background: transparent !important;
    box-shadow: none;
}

.profile-test__move-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.profile-test__moves-title {
    font-size: 2.7rem;
}

.profile-test__moves-center {
    gap: 8px;
}

.profile-test__moves-center .profile-test__button {
    min-height: 39px;
    border-radius: 12px;
    padding: 9px 22px;
}

.profile-test__tools {
    position: relative;
    min-height: 950px;
    padding: 76px 0 120px;
}

.profile-test__tools-container {
    position: relative;
}

.profile-test__tools .profile-test__section-head {
    margin-bottom: 50px;
}

.profile-test__tools .profile-test__section-title {
    font-size: 2rem;
}

.profile-test__tools-diamond {
    position: absolute;
    top: -48px;
    right: 260px;
    width: 44px;
    height: 44px;
    background: var(--profile-teal);
    transform: rotate(45deg);
}

.profile-test__tools-diamond::before {
    content: "";
    position: absolute;
    inset: -8px 16px 16px -8px;
    background: #4018f3;
}

.profile-test__tools-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 58px;
    row-gap: 82px;
    margin-top: 0;
}

.profile-test__tool-card {
    gap: 15px;
    min-height: 225px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.profile-test__tool-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.profile-test__tool-img {
    width: 112px;
    height: 112px;
}

.profile-test__tool-title {
    min-height: 58px;
    color: #34343a;
    font-size: 1.42rem;
    line-height: 0.98;
}

.profile-test__tool-cta {
    width: auto;
    min-width: 160px;
    min-height: 39px;
    border-radius: 999px;
    background: var(--profile-blue-cta);
    box-shadow: 0 8px 10px rgba(90, 64, 232, 0.45);
    font-size: 0.93rem;
    padding: 8px 24px;
}

.profile-test__tool-card--idea .profile-test__tool-cta {
    min-width: 250px;
    background: var(--profile-blue-cta);
    line-height: 0.95;
}

.profile-test__tool-card:hover .profile-test__tool-cta {
    background: #116fe5;
}

@media (max-width: 1180px) {
    .profile-test__tab-nav {
        gap: 32px;
    }

    .profile-test__home-container,
    .profile-test__brain-container,
    .profile-test__brain-detail,
    .profile-test__sectors-container {
        gap: 48px;
    }

    .profile-test__moves-layout {
        grid-template-columns: 1fr;
    }

    .profile-test__move-icon-wrap,
    .profile-test__moves-col--right .profile-test__move-icon-wrap {
        margin: 0;
    }
}

@media (max-width: 940px) {
    .profile-test__home {
        min-height: auto;
    }

    .profile-test__home-container,
    .profile-test__brain-container,
    .profile-test__brain-detail,
    .profile-test__sectors-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .profile-test__home-copy,
    .profile-test__brain-copy,
    .profile-test__sectors-copy {
        justify-items: center;
    }

    .profile-test__tab-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
    }

    .profile-test__tab-cta {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .profile-test__tab-layout {
        grid-template-columns: 1fr;
    }

    .profile-test__tab-visual::before {
        display: none;
    }

    .profile-test__tools-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-test__moves {
        padding-top: 90px;
    }
}

@media (max-width: 640px) {
    .profile-test__home-container,
    .profile-test__tabs-container,
    .profile-test__brain-container,
    .profile-test__brain-detail,
    .profile-test__sectors-container,
    .profile-test__moves-container,
    .profile-test__tools-container {
        width: min(100% - 24px, 1120px);
    }

    .profile-test__home-title,
    .profile-test__moves-title {
        font-size: 2rem;
    }

    .profile-test__section-title,
    .profile-test__brain-copy .profile-test__section-title,
    .profile-test__tools .profile-test__section-title {
        font-size: 1.55rem;
    }

    .profile-test__hero-chat {
        display: none;
    }

    .profile-test__tab-nav {
        grid-template-columns: 1fr;
    }

    .profile-test__tab-btn {
        justify-self: center;
        width: min(100%, 220px);
    }

    .profile-test__moves-col {
        grid-template-columns: 1fr;
    }

    .profile-test__move-label,
    .profile-test__moves-col--right .profile-test__move-label {
        text-align: center;
    }

    .profile-test__tools-grid {
        column-gap: 18px;
        row-gap: 46px;
    }

    .profile-test__tool-img {
        width: 86px;
        height: 86px;
    }

    .profile-test__tool-title {
        font-size: 1.05rem;
    }

    .profile-test__tool-cta,
    .profile-test__tool-card--idea .profile-test__tool-cta {
        min-width: 0;
        width: 100%;
        padding: 8px 14px;
    }
}

/* ---- Report ---- */
.profile-report {
    --report-navy: #003366;
    --report-orange: #ff9900;
    --report-muted: #64748b;
    background: #f4f7f9;
    color: #17283c;
    padding: 52px 0 76px;
}

.profile-report__container {
    width: min(100% - 40px, 1120px);
    margin: 0 auto;
}

.profile-report__header,
.profile-report__section {
    border: 1px solid rgba(0, 51, 102, 0.09);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 16px 44px rgba(0, 51, 102, 0.08);
}

.profile-report__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
    gap: 18px;
    column-gap: 34px;
    align-items: center;
    margin-bottom: 18px;
    padding: 30px;
}

.profile-report__header > :not(.profile-report__winner) {
    grid-column: 1;
}

.profile-report__winner {
    grid-column: 2;
    grid-row: 1 / span 5;
    display: grid;
    gap: 12px;
    justify-items: center;
    align-self: center;
    justify-self: center;
    width: min(100%, 280px);
    padding: 18px;
    border: 1px solid #dce6ef;
    border-radius: 14px;
    background: #f8fafc;
}

.profile-report__winner-img {
    width: min(100%, 220px);
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 16px 32px rgba(0, 51, 102, 0.14);
}

.profile-report__winner-name {
    color: var(--report-navy);
    font-family: Poppins, "DM Sans", Arial, sans-serif;
    font-size: 1.22rem;
    font-weight: 900;
    line-height: 1.1;
}

.profile-report__title {
    margin: 0;
    color: var(--report-navy);
    font-family: Poppins, "DM Sans", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: 0;
}

.profile-report__subtitle,
.profile-report__meta {
    margin: 0;
    color: var(--report-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.profile-report__section {
    margin-top: 18px;
    padding: 26px;
}

.profile-report__section-title {
    margin: 0 0 18px;
    color: var(--report-navy);
    font-family: Poppins, "DM Sans", Arial, sans-serif;
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: 0;
}

.profile-report__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.profile-report__info {
    border-radius: 10px;
    background: #f8fafc;
    padding: 16px;
}

.profile-report__info-label {
    margin: 0 0 6px;
    color: var(--report-navy);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.profile-report__info-value {
    margin: 0;
    color: #17283c;
    font-size: 1rem;
}

.profile-report__table-wrap {
    overflow-x: auto;
}

.profile-report__table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    color: #17283c;
}

.profile-report__table th,
.profile-report__table td {
    border: 1px solid #dce6ef;
    padding: 12px;
    text-align: center;
    vertical-align: top;
}

.profile-report__table th {
    color: var(--report-navy);
    background: #f8fafc;
    font-weight: 900;
}

.profile-report__profile-img {
    display: block;
    width: 108px;
    height: 108px;
    margin: 0 auto 10px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-report__brain {
    display: grid;
    grid-template-columns: minmax(210px, 1fr) minmax(260px, 320px) minmax(210px, 1fr);
    grid-template-areas:
        ". thinking ."
        "rational brain emotional"
        ". acting .";
    gap: 22px 28px;
    align-items: center;
}

.profile-report__brain-card {
    border-radius: 10px;
    background: #f8fafc;
    color: var(--report-navy);
    padding: 18px;
    text-align: center;
    font-weight: 900;
}

.profile-report__brain-card--thinking { grid-area: thinking; }
.profile-report__brain-card--rational { grid-area: rational; }
.profile-report__brain-card--emotional { grid-area: emotional; }
.profile-report__brain-card--acting   { grid-area: acting; }

.profile-report__brain-img {
    grid-area: brain;
    width: min(100%, 320px);
    margin: 0 auto;
}

.profile-report__understanding-img {
    display: block;
    width: 82px;
    height: 82px;
    margin: 0 auto 10px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-report__list {
    margin: 8px 0 0;
    padding-left: 18px;
    text-align: left;
}

.profile-report__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.profile-report__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 52px;
    border-radius: 12px;
    border: 1px solid transparent;
    font: inherit;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.2;
    padding: 14px 22px;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.profile-report__button:hover {
    transform: translateY(-1px);
}

.profile-report__button--primary {
    background: var(--report-orange);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(255, 153, 0, 0.25);
}

.profile-report__button--primary:hover {
    background: #e27f00;
    color: #ffffff;
}

.profile-report__button--secondary {
    border-color: rgba(0, 51, 102, 0.18);
    background: #ffffff;
    color: var(--report-navy);
    box-shadow: 0 10px 22px rgba(0, 51, 102, 0.08);
}

.profile-report__button--secondary:hover {
    background: #f5f9fc;
    color: var(--report-navy);
}

@keyframes profileQuestionIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Responsive ---- */
@media (max-width: 1240px) {
    .profile-test__home-container {
        grid-template-columns: 1fr;
    }

    .profile-test__home-copy {
        justify-items: center;
        text-align: center;
    }

    .profile-test__home-media {
        min-height: 320px;
        order: -1;
        place-items: center;
        transform: none;
    }

    .profile-test__home-image {
        width: min(100%, 620px);
        max-width: 100%;
        right: auto;
    }

    .profile-test__tab-layout {
        grid-template-columns: 1fr 140px 1fr;
    }
}

@media (max-width: 1000px) {
    .profile-test__moves-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .profile-test__moves-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .profile-test__moves-center {
        order: -1;
        padding: 0;
    }
}

@media (max-width: 900px) {
    .profile-report__header {
        grid-template-columns: 1fr;
    }

    .profile-report__header > :not(.profile-report__winner),
    .profile-report__winner {
        grid-column: 1;
    }

    .profile-report__winner {
        grid-row: auto;
        width: min(100%, 320px);
        margin: 8px auto 0;
    }

    .profile-report__winner-img {
        width: min(100%, 210px);
    }

    .profile-test__title {
        font-size: 3rem;
    }

    .profile-test__start-grid,
    .profile-test__result-layout {
        grid-template-columns: 1fr;
    }

    .profile-test__start-copy {
        justify-items: center;
        text-align: center;
    }

    .profile-test__form {
        justify-items: stretch;
    }

    .profile-test__heading {
        font-size: 2.2rem;
    }

    .profile-test__result-content {
        text-align: center;
    }

    .profile-test__tab-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .profile-test__tab-visual {
        display: none;
    }

    .profile-test__brain-container {
        grid-template-columns: 1fr;
    }

    .profile-test__brain-copy {
        justify-items: center;
        text-align: center;
    }

    .profile-test__sectors-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .profile-test__sectors-copy {
        justify-items: center;
        text-align: center;
    }

    .profile-test__tools-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .profile-test__home {
        min-height: auto;
        padding: 34px 0 50px;
    }

    .profile-test__home-container {
        width: min(100% - 24px, 1120px);
        gap: 28px;
    }

    .profile-test__home-media {
        min-height: auto;
        order: initial;
        margin-top: 12px;
    }

    .profile-test__home-image {
        width: min(100%, 360px);
        max-width: 100%;
        max-height: none;
        right: auto;
    }

    .profile-test__home-title {
        font-size: clamp(2rem, 9vw, 2.2rem);
        line-height: 1.05;
    }

    .profile-test__home-text {
        font-size: 1rem;
    }

    .profile-test__tabs,
    .profile-test__brain,
    .profile-test__moves,
    .profile-test__sectors,
    .profile-test__tools {
        padding: 54px 0;
    }

    .profile-test__tab-nav {
        flex-wrap: wrap;
        gap: 6px;
        border-bottom: none;
    }

    .profile-test__tab-btn {
        border: 1px solid var(--profile-line);
        border-radius: 999px;
        padding: 8px 16px;
        font-size: 0.86rem;
    }

    .profile-test__tab-btn::after {
        display: none;
    }

    .profile-test__tab-btn--active {
        background: var(--profile-navy);
        color: #ffffff;
        border-color: var(--profile-navy);
    }

    .profile-test__tab-cta {
        margin-left: 0;
    }

    .profile-test__moves-col {
        grid-template-columns: 1fr;
    }

    .profile-test__tools-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .profile-test__tool-img {
        width: 72px;
        height: 72px;
    }

    .profile-test__shell {
        padding: 44px 0 58px;
    }

    .profile-test__container {
        width: min(100% - 24px, 1080px);
    }

    .profile-test__title {
        font-size: 2.32rem;
    }

    .profile-test__subtitle {
        font-size: 1rem;
    }

    .profile-test__card {
        min-height: auto;
    }

    .profile-test__screen {
        min-height: auto;
        padding: 30px 20px;
    }

    .profile-test__start-grid,
    .profile-test__stage,
    .profile-test__result,
    .profile-test__complete {
        min-height: auto;
    }

    .profile-test__heading {
        font-size: 1.8rem;
    }

    .profile-test__profiles {
        gap: 14px;
    }

    .profile-test__company-note {
        min-height: auto;
        width: 100%;
    }

    .profile-test__profile-img {
        width: 104px;
    }

    .profile-test__topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .profile-test__question {
        font-size: 1.55rem;
    }

    .profile-test__option {
        grid-template-columns: 1fr;
        gap: 10px;
        min-height: 72px;
    }

    .profile-test__result-img {
        width: 154px;
    }

    .profile-test__result-title {
        font-size: 2.28rem;
    }

    .profile-test__bar {
        grid-template-columns: 1fr 48px;
        gap: 8px;
    }

    .profile-test__bar-track {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .profile-test__complete-title {
        font-size: 1.6rem;
    }

    .profile-report {
        padding: 34px 0 54px;
    }

    .profile-report__container {
        width: min(100% - 24px, 1120px);
    }

    .profile-report__grid,
    .profile-report__brain {
        grid-template-columns: 1fr;
        grid-template-areas:
            "thinking"
            "rational"
            "brain"
            "emotional"
            "acting";
    }

    .profile-report__header,
    .profile-report__section {
        padding: 20px;
    }
}

@media print {
    @page { margin: 12mm; }

    body { background: #ffffff !important; }

    #header,
    #footer,
    .profile-report__actions {
        display: none !important;
    }

    .profile-report {
        background: #ffffff !important;
        color: #17283c;
        padding: 0;
    }

    .profile-report__container {
        width: 100%;
        margin: 0;
    }

    .profile-report__header,
    .profile-report__section {
        border: 1px solid #dce6ef;
        border-radius: 0;
        box-shadow: none;
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .profile-report__header { padding: 18px; }
    .profile-report__section { margin-top: 12px; padding: 16px; }

    .profile-report__title { font-size: 26px; line-height: 1.15; }
    .profile-report__section-title { font-size: 18px; }

    .profile-report__table-wrap { overflow: visible; }
    .profile-report__table { min-width: 0; font-size: 10px; }
    .profile-report__table th,
    .profile-report__table td { padding: 7px; }

    .profile-report__profile-img { width: 64px; height: 64px; }
    .profile-report__understanding-img { width: 48px; height: 48px; }

    .profile-report__brain {
        gap: 12px;
        grid-template-columns: minmax(140px, 1fr) minmax(190px, 230px) minmax(140px, 1fr);
    }

    .profile-report__brain-card { padding: 10px; font-size: 11px; }
    .profile-report__brain-img { width: min(100%, 220px); }
}

@media (prefers-reduced-motion: reduce) {
    .profile-test__progress-bar,
    .profile-test__stage,
    .profile-test__button,
    .profile-test__option,
    .profile-test__bar-fill,
    .profile-test__type-toggle::before,
    .profile-test__form-section--entering,
    .profile-test__company-note,
    .profile-test__tab-panel--active {
        animation: none;
        transition: none;
    }
}
