/* Mind & Soul — Social Skills Groups | page-scoped, Flexbox only */

.social-skills-page {
    --ssg-green: #4f9283;
    --ssg-green-dark: #347d68;
    --ssg-green-soft: #eaf4f0;
    --ssg-purple: #6e4fb3;
    --ssg-purple-dark: #5a3d96;
    --ssg-purple-soft: #f1edf9;
    --ssg-ink: #243b36;
    --ssg-muted: #60746f;
    --ssg-line: rgba(52, 125, 104, 0.18);
    --ssg-cream: #fbfaf7;
    --ssg-white: #ffffff;
    --ssg-shadow: 0 18px 50px rgba(36, 59, 54, 0.09);

    position: relative;
    overflow: hidden;
    background: var(--ssg-cream);
    color: var(--ssg-ink);
}

.social-skills-page,
.social-skills-page * {
    box-sizing: border-box;
}

.social-skills-page img,
.social-skills-page svg {
    display: block;
    max-width: 100%;
}

.social-skills-page a {
    color: inherit;
}

.social-skills-page :focus-visible {
    outline: 3px solid rgba(110, 79, 179, 0.48);
    outline-offset: 4px;
}

.ssg-container {
    width: calc(100% - 64px);
    max-width: 1240px;
    margin: 0 auto;
}

.ssg-section {
    position: relative;
    padding: 108px 0;
}

.ssg-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 18px;
    color: var(--ssg-green-dark);
    font-family: 'RobotoSlab-Bold', serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ssg-eyebrow::before {
    content: '';
    width: 34px;
    height: 2px;
    flex: 0 0 auto;
    border-radius: 99px;
    background:
        linear-gradient(
            90deg,
            var(--ssg-green),
            var(--ssg-purple)
        );
}

.ssg-eyebrow--light {
    color: rgba(255, 255, 255, 0.88);
}

.ssg-eyebrow--light::before {
    background: rgba(255, 255, 255, 0.72);
}

.ssg-title {
    max-width: 800px;
    margin: 0;
    color: var(--ssg-ink);
    font-family: 'RobotoSlab-Bold', serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.ssg-title--light {
    color: var(--ssg-white);
}

.ssg-section-intro,
.ssg-rich-text,
.ssg-hero__intro,
.ssg-closing__text {
    color: var(--ssg-muted);
    font-size: 18px;
    line-height: 1.82;
}

.ssg-section-intro p,
.ssg-rich-text p,
.ssg-hero__intro p,
.ssg-closing__text p {
    margin: 0 0 20px;
}

.ssg-section-intro p:last-child,
.ssg-rich-text p:last-child,
.ssg-hero__intro p:last-child,
.ssg-closing__text p:last-child {
    margin-bottom: 0;
}

.ssg-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: 'RobotoSlab-Bold', serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease;
}

.ssg-button__arrow {
    flex: 0 0 auto;
    transition: transform 220ms ease;
}

.ssg-button:hover .ssg-button__arrow,
.ssg-text-link:hover .ssg-button__arrow,
.ssg-closing__secondary:hover .ssg-button__arrow {
    transform: translateX(4px);
}

.ssg-button--primary {
    background:
        linear-gradient(
            135deg,
            var(--ssg-green) 0%,
            var(--ssg-green-dark) 100%
        );
    color: var(--ssg-white);
    box-shadow:
        0 12px 26px rgba(52, 125, 104, 0.22);
}

.ssg-button--primary:hover {
    color: var(--ssg-white);
    transform: translateY(-2px);
    box-shadow:
        0 16px 32px rgba(52, 125, 104, 0.28);
}

.ssg-button--text {
    padding-right: 8px;
    padding-left: 8px;
    color: var(--ssg-purple-dark);
}

.ssg-button--text:hover {
    color: var(--ssg-purple);
    transform: translateY(-1px);
}

.ssg-button--light {
    background: var(--ssg-white);
    color: var(--ssg-green-dark);
    box-shadow:
        0 14px 30px rgba(16, 48, 42, 0.18);
}

.ssg-button--light:hover {
    color: var(--ssg-green-dark);
    transform: translateY(-2px);
    box-shadow:
        0 18px 36px rgba(16, 48, 42, 0.25);
}

.ssg-text-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-height: 44px;
    color: var(--ssg-purple-dark);
    font-family: 'RobotoSlab-Bold', serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

/* Hero */

.ssg-hero {
    position: relative;
    min-height: 680px;
    padding: 72px 0 88px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 88% 16%,
            rgba(110, 79, 179, 0.14),
            transparent 34%
        ),
        radial-gradient(
            circle at 8% 90%,
            rgba(79, 146, 131, 0.16),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #f8fcfa 0%,
            #f4f1fa 100%
        );
}

.ssg-hero::before,
.ssg-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ssg-hero::before {
    top: -210px;
    right: -150px;
    width: 520px;
    height: 520px;
    border:
        1px solid rgba(110, 79, 179, 0.14);
}

.ssg-hero::after {
    bottom: -270px;
    left: -190px;
    width: 560px;
    height: 560px;
    border:
        1px solid rgba(79, 146, 131, 0.16);
}

.ssg-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 72px;
}

.ssg-hero__copy {
    width: 58%;
    max-width: 720px;
}

.ssg-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 42px;
    color: var(--ssg-muted);
    font-size: 13px;
    line-height: 1.5;
}

.ssg-breadcrumb a {
    color: var(--ssg-green-dark);
    text-decoration: none;
}

.ssg-breadcrumb a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.ssg-breadcrumb .breadcrumb-separator {
    color: rgba(36, 59, 54, 0.4);
}

.ssg-breadcrumb .breadcrumb-current {
    color: var(--ssg-ink);
}

.ssg-hero__title {
    max-width: 720px;
    margin: 0 0 26px;
    color: var(--ssg-ink);
    font-family: 'RobotoSlab-Bold', serif;
    font-size: 62px;
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.038em;
}

.ssg-hero__intro {
    max-width: 660px;
    font-size: 19px;
}

.ssg-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 20px;
    margin-top: 34px;
}

.ssg-hero__note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 28px 0 0;
    color: var(--ssg-muted);
    font-size: 13px;
    line-height: 1.55;
}

.ssg-hero__note span {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--ssg-green);
    box-shadow:
        0 0 0 6px rgba(79, 146, 131, 0.12);
}

.ssg-hero__visual {
    position: relative;
    width: 390px;
    height: 390px;
    flex: 0 0 390px;
}

.ssg-hero__visual-orbit,
.ssg-hero__visual-line,
.ssg-hero__person,
.ssg-hero__visual-center {
    position: absolute;
}

.ssg-hero__visual-orbit {
    border-radius: 50%;
}

.ssg-hero__visual-orbit--outer {
    inset: 0;
    border:
        1px solid rgba(79, 146, 131, 0.28);
}

.ssg-hero__visual-orbit--inner {
    inset: 66px;
    border:
        1px dashed rgba(110, 79, 179, 0.34);
}

.ssg-hero__visual-line {
    top: 50%;
    left: 50%;
    width: 70%;
    height: 1px;
    transform-origin: center;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(79, 146, 131, 0.34),
            transparent
        );
}

.ssg-hero__visual-line--one {
    transform:
        translate(-50%, -50%)
        rotate(45deg);
}

.ssg-hero__visual-line--two {
    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}

.ssg-hero__visual-center {
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            var(--ssg-green),
            var(--ssg-green-dark)
        );
    box-shadow:
        0 26px 60px rgba(52, 125, 104, 0.22);
    transform: translate(-50%, -50%);
}

.ssg-hero__visual-center svg {
    width: 72px;
    height: 72px;
    fill: none;
    stroke: var(--ssg-white);
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ssg-hero__person {
    width: 52px;
    height: 52px;
    border: 10px solid var(--ssg-white);
    border-radius: 50%;
    box-shadow:
        0 12px 34px rgba(36, 59, 54, 0.15);
}

.ssg-hero__person::after {
    content: '';
    position: absolute;
    top: 47px;
    left: 50%;
    width: 38px;
    height: 38px;
    border-radius: 22px 22px 10px 10px;
    background: inherit;
    transform: translateX(-50%);
}

.ssg-hero__person--one {
    top: 14px;
    left: 50%;
    background: var(--ssg-purple);
    transform: translateX(-50%);
}

.ssg-hero__person--two {
    top: 50%;
    right: 12px;
    background: var(--ssg-green);
    transform: translateY(-50%);
}

.ssg-hero__person--three {
    bottom: 14px;
    left: 50%;
    background: #c19a5b;
    transform: translateX(-50%);
}

.ssg-hero__person--four {
    top: 50%;
    left: 12px;
    background: #826ab8;
    transform: translateY(-50%);
}

/* Introduction */

.ssg-introduction {
    background: var(--ssg-white);
}

.ssg-introduction__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 88px;
}

.ssg-introduction__copy {
    width: 58%;
}

.ssg-introduction__text {
    margin-top: 30px;
}

.ssg-introduction__statement {
    position: relative;
    width: 36%;
    margin: 24px 0 0;
    padding: 38px 0 34px 36px;
    border: 0;
    border-left:
        3px solid var(--ssg-purple);
    color: var(--ssg-purple-dark);
    font-family: 'RobotoSlab-Bold', serif;
    font-size: 24px;
    line-height: 1.55;
}

.ssg-introduction__statement p {
    margin: 0;
}

.ssg-introduction__statement-mark {
    position: absolute;
    top: -24px;
    left: 25px;
    color: rgba(110, 79, 179, 0.13);
    font-family: Georgia, serif;
    font-size: 116px;
    line-height: 1;
}

/* Audience */

.ssg-audience {
    background:
        linear-gradient(
            135deg,
            #eff7f4 0%,
            #f8f6fb 100%
        );
}

.ssg-audience__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 82px;
}

.ssg-audience__header {
    position: sticky;
    top: 120px;
    width: 42%;
}

.ssg-audience__header .ssg-section-intro {
    margin-top: 28px;
}

.ssg-audience__list {
    width: 50%;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top:
        1px solid var(--ssg-line);
}

.ssg-audience__item {
    display: flex;
    align-items: flex-start;
    gap: 26px;
    padding: 28px 0;
    border-bottom:
        1px solid var(--ssg-line);
}

.ssg-audience__number {
    min-width: 42px;
    color: var(--ssg-purple);
    font-family: 'RobotoSlab-Bold', serif;
    font-size: 14px;
    line-height: 1.5;
}

.ssg-audience__item h3,
.ssg-skills__item h3,
.ssg-process__content h3,
.ssg-membership h3 {
    margin: 0 0 10px;
    color: var(--ssg-ink);
    font-family: 'RobotoSlab-Bold', serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.ssg-audience__item p,
.ssg-skills__item p,
.ssg-process__content p,
.ssg-membership p {
    margin: 0;
    color: var(--ssg-muted);
    font-size: 16px;
    line-height: 1.75;
}

/* Skills */

.ssg-skills {
    background: var(--ssg-white);
}

.ssg-skills__header,
.ssg-practical__header,
.ssg-memberships__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 70px;
    margin-bottom: 58px;
}

.ssg-skills__header > div:first-child,
.ssg-practical__header > div:first-child,
.ssg-memberships__header > div:first-child {
    width: 52%;
}

.ssg-skills__header .ssg-section-intro,
.ssg-practical__header .ssg-section-intro,
.ssg-memberships__header .ssg-section-intro {
    width: 40%;
}

.ssg-skills__list {
    display: flex;
    flex-wrap: wrap;
    border-top:
        1px solid var(--ssg-line);
}

.ssg-skills__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 50%;
    min-height: 190px;
    padding: 34px 42px 34px 0;
    border-bottom:
        1px solid var(--ssg-line);
}

.ssg-skills__item:nth-child(even) {
    padding-right: 0;
    padding-left: 42px;
    border-left:
        1px solid var(--ssg-line);
}

.ssg-skills__index {
    width: 44px;
    flex: 0 0 44px;
    color: rgba(110, 79, 179, 0.6);
    font-family: 'RobotoSlab-Bold', serif;
    font-size: 13px;
}

.ssg-skills__content {
    max-width: 430px;
}

/* Process */

.ssg-process {
    background: var(--ssg-ink);
    color: var(--ssg-white);
}

.ssg-process::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    background:
        linear-gradient(
            180deg,
            rgba(110, 79, 179, 0.16),
            transparent 72%
        );
    pointer-events: none;
}

.ssg-process__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 84px;
}

.ssg-process__header {
    width: 40%;
}

.ssg-process .ssg-eyebrow {
    color: #b8d9d1;
}

.ssg-process .ssg-title {
    color: var(--ssg-white);
}

.ssg-process .ssg-section-intro {
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.72);
}

.ssg-process__timeline {
    position: relative;
    width: 52%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ssg-process__timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 25px;
    width: 1px;
    background:
        rgba(255, 255, 255, 0.18);
}

.ssg-process__step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 26px;
    padding-bottom: 38px;
}

.ssg-process__step:last-child {
    padding-bottom: 0;
}

.ssg-process__marker {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border:
        1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: var(--ssg-ink);
}

.ssg-process__marker span {
    color: #c9e3dc;
    font-family: 'RobotoSlab-Bold', serif;
    font-size: 15px;
}

.ssg-process__content {
    padding-top: 4px;
}

.ssg-process__content h3 {
    color: var(--ssg-white);
}

.ssg-process__content p {
    color: rgba(255, 255, 255, 0.68);
}

/* Approach */

.ssg-approach {
    background: var(--ssg-white);
}

.ssg-approach__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 94px;
}

.ssg-approach__visual {
    position: relative;
    width: 390px;
    height: 390px;
    flex: 0 0 390px;
}

.ssg-approach__ring,
.ssg-approach__core {
    position: absolute;
    border-radius: 50%;
}

.ssg-approach__ring--one {
    inset: 0;
    border:
        1px solid rgba(79, 146, 131, 0.24);
}

.ssg-approach__ring--two {
    inset: 55px;
    border:
        1px dashed rgba(110, 79, 179, 0.28);
}

.ssg-approach__ring--three {
    inset: 112px;
    background: var(--ssg-green-soft);
}

.ssg-approach__core {
    inset: 145px;
    background:
        linear-gradient(
            135deg,
            var(--ssg-purple),
            var(--ssg-purple-dark)
        );
    box-shadow:
        0 18px 42px rgba(90, 61, 150, 0.2);
}

.ssg-approach__copy {
    width: 56%;
}

.ssg-approach__copy .ssg-rich-text {
    margin-top: 30px;
}

.ssg-approach__copy .ssg-text-link {
    margin-top: 25px;
}

/* Practical */

.ssg-practical {
    background:
        linear-gradient(
            180deg,
            #f4f9f7 0%,
            #fbfaf7 100%
        );
}

.ssg-practical__list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    border-top:
        1px solid var(--ssg-line);
}

.ssg-practical__item {
    width: 50%;
    padding: 27px 34px 27px 0;
    border-bottom:
        1px solid var(--ssg-line);
}

.ssg-practical__item:nth-child(even) {
    padding-right: 0;
    padding-left: 34px;
    border-left:
        1px solid var(--ssg-line);
}

.ssg-practical__item dt {
    margin-bottom: 8px;
    color: var(--ssg-green-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ssg-practical__item dd {
    margin: 0;
    color: var(--ssg-ink);
    font-family: 'RobotoSlab-Bold', serif;
    font-size: 20px;
    line-height: 1.45;
}

.ssg-practical__footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 42px;
    margin-top: 36px;
}

.ssg-practical__note {
    max-width: 760px;
    padding-left: 22px;
    border-left:
        3px solid rgba(110, 79, 179, 0.4);
    color: var(--ssg-muted);
    font-size: 16px;
    line-height: 1.75;
}

.ssg-practical__note p {
    margin: 0;
}

/* Memberships */

.ssg-memberships {
    background: var(--ssg-white);
}

.ssg-memberships__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.ssg-membership {
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 15px);
    min-width: 0;
    margin: 0;
    padding: 22px;
    border:
        1px solid rgba(36, 59, 54, 0.09);
    border-radius: 22px;
    background: #f8f8f6;
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.ssg-membership:hover {
    transform: translateY(-3px);
    border-color:
        rgba(79, 146, 131, 0.24);
    box-shadow: var(--ssg-shadow);
}

.ssg-membership__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 176px;
    padding: 14px;
    border-radius: 16px;
    background: var(--ssg-white);
    text-decoration: none;
}

.ssg-membership__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.ssg-membership figcaption {
    padding: 22px 4px 2px;
}

.ssg-membership h3 {
    font-size: 17px;
}

.ssg-membership p {
    font-size: 14px;
}

/* FAQ */

.ssg-faq {
    background:
        linear-gradient(
            135deg,
            #f0f7f4 0%,
            #f4f0fa 100%
        );
}

.ssg-faq__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 82px;
}

.ssg-faq__header {
    position: sticky;
    top: 120px;
    width: 38%;
}

.ssg-faq__header .ssg-section-intro {
    margin-top: 28px;
}

.ssg-faq__items {
    width: 54%;
    border-top:
        1px solid var(--ssg-line);
}

.ssg-faq__item {
    border-bottom:
        1px solid var(--ssg-line);
}

.ssg-faq__item h3 {
    margin: 0;
}

.ssg-faq__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    min-height: 76px;
    padding: 20px 0;
    border: 0;
    background: transparent;
    color: var(--ssg-ink);
    font-family: 'RobotoSlab-Bold', serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
    cursor: pointer;
}

.ssg-faq__icon {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border:
        1px solid rgba(79, 146, 131, 0.32);
    border-radius: 50%;
}

.ssg-faq__icon::before,
.ssg-faq__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    border-radius: 9px;
    background: var(--ssg-green-dark);
    transform: translate(-50%, -50%);
    transition: transform 220ms ease;
}

.ssg-faq__icon::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}

.ssg-faq__button[aria-expanded='true']
.ssg-faq__icon::after {
    transform:
        translate(-50%, -50%)
        rotate(0deg);
}

.ssg-faq__panel {
    padding: 0 46px 26px 0;
}

.ssg-faq__panel[hidden] {
    display: none;
}

.ssg-faq__panel .ssg-rich-text {
    font-size: 16px;
}

/* Closing */

.ssg-closing {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            var(--ssg-green-dark) 0%,
            #2b6658 58%,
            #4e397e 100%
        );
}

.ssg-closing::before {
    content: '';
    position: absolute;
    top: -220px;
    right: -170px;
    width: 520px;
    height: 520px;
    border:
        1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.ssg-closing__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 74px;
}

.ssg-closing__copy {
    width: 60%;
}

.ssg-closing__text {
    max-width: 720px;
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.76);
}

.ssg-closing__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 32%;
    gap: 18px;
}

.ssg-closing__phone {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 44px;
    color: var(--ssg-white);
    text-decoration: none;
}

.ssg-closing__phone span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ssg-closing__phone strong {
    font-family: 'RobotoSlab-Bold', serif;
    font-size: 18px;
}

.ssg-closing__secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    color: rgba(255, 255, 255, 0.82);
    font-family: 'RobotoSlab-Bold', serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.ssg-closing__secondary:hover,
.ssg-closing__phone:hover {
    color: var(--ssg-white);
}

/* Responsive */

@media (max-width: 1199px) {
    .ssg-hero__title {
        font-size: 54px;
    }

    .ssg-hero__visual,
    .ssg-approach__visual {
        width: 340px;
        height: 340px;
        flex-basis: 340px;
    }

    .ssg-approach__core {
        inset: 126px;
    }
}

@media (max-width: 1024px) {
    .ssg-container {
        width: calc(100% - 48px);
    }

    .ssg-section {
        padding: 88px 0;
    }

    .ssg-title {
        font-size: 38px;
    }

    .ssg-hero {
        min-height: 0;
        padding: 58px 0 78px;
    }

    .ssg-hero__inner {
        gap: 46px;
    }

    .ssg-hero__copy {
        width: 60%;
    }

    .ssg-hero__title {
        font-size: 47px;
    }

    .ssg-hero__visual {
        width: 300px;
        height: 300px;
        flex-basis: 300px;
    }

    .ssg-hero__visual-center {
        width: 108px;
        height: 108px;
    }

    .ssg-hero__person {
        width: 44px;
        height: 44px;
        border-width: 8px;
    }

    .ssg-hero__person::after {
        top: 40px;
        width: 32px;
        height: 32px;
    }

    .ssg-introduction__inner,
    .ssg-audience__inner,
    .ssg-process__inner,
    .ssg-approach__inner,
    .ssg-faq__inner,
    .ssg-closing__inner {
        gap: 56px;
    }

    .ssg-audience__header,
    .ssg-faq__header {
        position: static;
    }

    .ssg-membership {
        width: calc(50% - 11px);
    }
}

@media (max-width: 900px) {
    .ssg-hero__inner,
    .ssg-introduction__inner,
    .ssg-audience__inner,
    .ssg-process__inner,
    .ssg-approach__inner,
    .ssg-faq__inner,
    .ssg-closing__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .ssg-hero__copy,
    .ssg-introduction__copy,
    .ssg-introduction__statement,
    .ssg-audience__header,
    .ssg-audience__list,
    .ssg-process__header,
    .ssg-process__timeline,
    .ssg-approach__copy,
    .ssg-faq__header,
    .ssg-faq__items,
    .ssg-closing__copy,
    .ssg-closing__actions {
        width: 100%;
        max-width: none;
    }

    .ssg-hero__visual,
    .ssg-approach__visual {
        align-self: center;
    }

    .ssg-introduction__statement {
        margin-top: 0;
    }

    .ssg-skills__header,
    .ssg-practical__header,
    .ssg-memberships__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .ssg-skills__header > div:first-child,
    .ssg-practical__header > div:first-child,
    .ssg-memberships__header > div:first-child,
    .ssg-skills__header .ssg-section-intro,
    .ssg-practical__header .ssg-section-intro,
    .ssg-memberships__header .ssg-section-intro {
        width: 100%;
    }

    .ssg-closing__actions {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .ssg-container {
        width: calc(100% - 36px);
    }

    .ssg-section {
        padding: 72px 0;
    }

    .ssg-title {
        font-size: 33px;
    }

    .ssg-section-intro,
    .ssg-rich-text,
    .ssg-hero__intro,
    .ssg-closing__text {
        font-size: 17px;
        line-height: 1.75;
    }

    .ssg-hero {
        padding: 38px 0 68px;
    }

    .ssg-breadcrumb {
        margin-bottom: 30px;
    }

    .ssg-hero__title {
        font-size: 41px;
    }

    .ssg-hero__visual {
        width: 276px;
        height: 276px;
        flex-basis: 276px;
    }

    .ssg-introduction__statement {
        padding-left: 26px;
        font-size: 21px;
    }

    .ssg-skills__item,
    .ssg-skills__item:nth-child(even),
    .ssg-practical__item,
    .ssg-practical__item:nth-child(even) {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
        border-left: 0;
    }

    .ssg-skills__item {
        min-height: 0;
    }

    .ssg-practical__footer {
        flex-direction: column;
    }

    .ssg-membership {
        width: 100%;
        max-width: 480px;
    }

    .ssg-membership__logo-wrap {
        height: 190px;
    }

    .ssg-faq__button {
        min-height: 70px;
        font-size: 17px;
    }

    .ssg-closing {
        padding: 76px 0;
    }
}

@media (max-width: 600px) {
    .ssg-hero__actions,
    .ssg-closing__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .ssg-button {
        width: 100%;
    }

    .ssg-button--text {
        justify-content: flex-start;
        width: auto;
    }

    .ssg-hero__note {
        align-items: flex-start;
    }

    .ssg-approach__visual {
        width: 280px;
        height: 280px;
        flex-basis: 280px;
    }

    .ssg-approach__ring--two {
        inset: 42px;
    }

    .ssg-approach__ring--three {
        inset: 86px;
    }

    .ssg-approach__core {
        inset: 110px;
    }
}

@media (max-width: 480px) {
    .ssg-container {
        width: calc(100% - 30px);
    }

    .ssg-section {
        padding: 62px 0;
    }

    .ssg-eyebrow {
        font-size: 11px;
        letter-spacing: 0.09em;
    }

    .ssg-title {
        font-size: 29px;
    }

    .ssg-hero__title {
        font-size: 36px;
        line-height: 1.1;
    }

    .ssg-hero__intro,
    .ssg-section-intro,
    .ssg-rich-text,
    .ssg-closing__text {
        font-size: 16px;
    }

    .ssg-hero__visual {
        width: 244px;
        height: 244px;
        flex-basis: 244px;
    }

    .ssg-hero__visual-orbit--inner {
        inset: 43px;
    }

    .ssg-hero__visual-center {
        width: 88px;
        height: 88px;
    }

    .ssg-hero__visual-center svg {
        width: 56px;
        height: 56px;
    }

    .ssg-hero__person {
        width: 38px;
        height: 38px;
        border-width: 7px;
    }

    .ssg-hero__person::after {
        top: 34px;
        width: 28px;
        height: 28px;
    }

    .ssg-audience__item {
        gap: 16px;
    }

    .ssg-audience__number,
    .ssg-skills__index {
        min-width: 34px;
        width: 34px;
        flex-basis: 34px;
    }

    .ssg-process__step {
        gap: 17px;
    }

    .ssg-process__marker {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .ssg-process__timeline::before {
        left: 22px;
    }

    .ssg-membership {
        padding: 16px;
        border-radius: 18px;
    }

    .ssg-membership__logo-wrap {
        height: 160px;
    }

    .ssg-faq__panel {
        padding-right: 0;
    }
}

@media (max-width: 375px) {
    .ssg-hero__title {
        font-size: 32px;
    }

    .ssg-title {
        font-size: 27px;
    }

    .ssg-hero__visual,
    .ssg-approach__visual {
        width: 220px;
        height: 220px;
        flex-basis: 220px;
    }

    .ssg-approach__ring--two {
        inset: 33px;
    }

    .ssg-approach__ring--three {
        inset: 68px;
    }

    .ssg-approach__core {
        inset: 88px;
    }
}

@media (max-width: 320px) {
    .ssg-container {
        width: calc(100% - 24px);
    }

    .ssg-hero__title {
        font-size: 29px;
    }

    .ssg-title {
        font-size: 25px;
    }

    .ssg-hero__visual {
        width: 200px;
        height: 200px;
        flex-basis: 200px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .social-skills-page *,
    .social-skills-page *::before,
    .social-skills-page *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}