/* =========================================================
   PAGE 05 — RESTART
========================================================= */

.restart-page {

    --restart-green: #123d2a;
    --restart-green-dark: #0a2b1d;
    --restart-green-soft: #edf4ef;

    --restart-orange: #ff694f;

    --restart-text: #26352e;
    --restart-muted: #6c7a72;

    --restart-border: #dce5df;

    overflow: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.restart-page section {
    position: relative;

    padding: 75px 0;

    overflow: hidden;
}


.restart-page p {
    color: var(--restart-muted);

    font-size: 16px;

    line-height: 1.8;
}


.restart-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--restart-orange);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.8px;

    line-height: 1.3;

    text-transform: uppercase;
}


.restart-eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    flex-shrink: 0;

    background: var(--restart-orange);

    border-radius: 20px;
}


/* =========================================================
   01 — INTRO
========================================================= */

.restart-intro-section {
    background: var(--restart-green-soft);
}


.restart-intro-grid {
    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    gap: 70px;

    align-items: center;
}


.restart-intro-content h2 {
    margin: 22px 0 27px;

    color: var(--restart-green);

    line-height: 1.05;
}


.restart-intro-content h2 span {
    display: block;

    color: var(--restart-orange);
}


.restart-intro-lead {
    max-width: 620px;

    margin-bottom: 18px;

    font-size: 16px;
}


.restart-intro-statement {
    display: flex;

    flex-direction: column;

    gap: 3px;

    margin-top: 28px;

    padding-left: 20px;

    border-left: 2px solid var(--restart-orange);
}


.restart-intro-statement span {
    color: var(--restart-green);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.restart-intro-statement strong {
    color: var(--restart-orange);

    font-size: 16px;
    font-weight: 800;

    letter-spacing: 0.5px;
}


/* Intro image */

.restart-intro-image {
    position: relative;
}


.restart-image-frame {
    position: relative;

    min-height: 510px;

    overflow: hidden;

    background: var(--restart-green);
}


.restart-image-frame img {
    width: 100%;
    height: 100%;

    min-height: 510px;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}


.restart-image-frame:hover img {
    transform: scale(1.04);
}


.restart-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            transparent 35%,
            rgba(10, 43, 29, 0.85) 100%);
}


.restart-image-caption {
    position: absolute;

    right: 28px;
    bottom: 28px;
    left: 28px;

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.restart-image-caption span {
    color: var(--restart-orange);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}


.restart-image-caption strong {
    color: #ffffff;

    font-size: 18px;
    font-weight: 700;

    letter-spacing: 0.5px;
}


.restart-image-accent {
    position: absolute;

    right: -12px;
    bottom: -12px;

    width: 120px;
    height: 120px;

    border-right: 2px solid var(--restart-orange);
    border-bottom: 2px solid var(--restart-orange);

    pointer-events: none;
}


/* =========================================================
   02 — TWO DOORS
========================================================= */

.restart-doors-section {
    background: #ffffff;
}


.restart-section-heading {
    max-width: 820px;

    margin-bottom: 48px;
}


.restart-section-heading h2 {
    margin: 20px 0;

    color: var(--restart-green);

    line-height: 1.06;
}


.restart-section-heading h2 span {
    display: block;

    color: var(--restart-orange);
}


.restart-section-heading p {
    max-width: 650px;

    margin: 0;

    font-size: 15px;
}


.restart-doors-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;
}


.restart-door-card {
    position: relative;

    min-height: 390px;

    display: flex;

    flex-direction: column;

    padding: 30px;

    overflow: hidden;

    cursor: pointer;

    border: 1px solid var(--restart-border);

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}


.restart-door-before {
    background: var(--restart-green-soft);
}


.restart-door-after {
    color: #ffffff;

    background: var(--restart-green);
}


.restart-door-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 22px 45px rgba(18, 61, 42, 0.12);
}


.restart-door-before:hover {
    background: var(--restart-green);
    border-color: var(--restart-green);
}


.restart-door-after:hover {
    background: var(--restart-green-dark);
}


.restart-door-number {
    position: absolute;

    top: 24px;
    right: 28px;

    color: rgba(18, 61, 42, 0.25);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}


.restart-door-after .restart-door-number {
    color: rgba(255, 255, 255, 0.25);
}


.restart-door-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 50px;

    color: var(--restart-green);

    background: #ffffff;

    border-radius: 50%;

    font-size: 20px;

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease;
}


.restart-door-after .restart-door-icon {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.1);
}


.restart-door-card:hover .restart-door-icon {
    color: #ffffff;

    background: var(--restart-orange);

    transform: rotate(-8deg) scale(1.06);
}


.restart-door-content {
    position: relative;

    z-index: 2;

    margin-top: auto;
}


.restart-door-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: var(--restart-orange);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.7px;
}


.restart-door-content h3 {
    max-width: 480px;

    margin: 0 0 13px;

    color: var(--restart-green);

    font-size: 27px;
    font-weight: 700;

    line-height: 1.15;

    transition:
        color 0.4s ease;
}


.restart-door-after .restart-door-content h3 {
    color: #ffffff;
}


.restart-door-content p {
    max-width: 480px;

    margin: 0 0 15px;

    font-size: 15px;

    line-height: 1.7;

    transition:
        color 0.4s ease;
}


.restart-door-after .restart-door-content p {
    color: rgba(255, 255, 255, 0.68);
}


.restart-door-before:hover .restart-door-content h3 {
    color: #ffffff;
}


.restart-door-before:hover .restart-door-content p {
    color: rgba(255, 255, 255, 0.68);
}


.restart-door-divider {
    width: 38px;
    height: 2px;

    margin: 20px 0;

    background: var(--restart-orange);
}


.restart-door-detail {
    max-width: 530px !important;

    font-size: 14px !important;
}


.restart-door-arrow {
    position: absolute;

    right: 28px;
    bottom: 28px;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--restart-green);

    background: #ffffff;

    border-radius: 50%;

    font-size: 13px;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}


.restart-door-after .restart-door-arrow {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.1);
}


.restart-door-card:hover .restart-door-arrow {
    color: #ffffff;

    background: var(--restart-orange);

    transform: translateX(5px);
}


/* =========================================================
   03 — BEFORE THE EXAM
========================================================= */

.restart-before-section {
    background: var(--restart-green-soft);
}


.restart-before-heading {
    display: grid;

    grid-template-columns:
        1fr 0.8fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 50px;
}


.restart-before-heading h2 {
    margin-top: 20px;

    color: var(--restart-green);

    line-height: 1.05;
}


.restart-before-heading h2 span {
    display: block;

    color: var(--restart-orange);
}


.restart-before-heading-copy p {
    margin: 0;

    font-size: 15px;
}


/* Pillars */

.restart-pillars-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;
}


.restart-pillar-card {
    position: relative;

    min-height: 210px;

    padding: 24px;

    background: #ffffff;

    border: 1px solid transparent;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.restart-pillar-card:hover {
    background: var(--restart-green);

    border-color: var(--restart-green);

    transform: translateY(-6px);

    box-shadow:
        0 18px 35px rgba(18, 61, 42, 0.1);
}


.restart-pillar-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color: #a3ada7;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;

    transition:
        color 0.35s ease;
}


.restart-pillar-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 34px;

    color: var(--restart-green);

    background: var(--restart-green-soft);

    border-radius: 50%;

    font-size: 17px;

    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}


.restart-pillar-card:hover .restart-pillar-icon {
    color: #ffffff;

    background: var(--restart-orange);

    transform: rotate(-7deg);
}


.restart-pillar-card:hover .restart-pillar-number {
    color: rgba(255, 255, 255, 0.4);
}


.restart-pillar-card h3 {
    margin: 0 0 7px;

    color: var(--restart-green);

    font-size: 20px;
    font-weight: 700;

    transition:
        color 0.35s ease;
}


.restart-pillar-card:hover h3 {
    color: #ffffff;
}


.restart-pillar-card p {
    margin: 0;

    font-size: 14px;

    line-height: 1.6;

    transition:
        color 0.35s ease;
}


.restart-pillar-card:hover p {
    color: rgba(255, 255, 255, 0.68);
}


/* Plan A */

.restart-plan-strip {
    display: grid;

    grid-template-columns:
        auto 1fr;

    gap: 20px;

    align-items: center;

    margin-top: 18px;

    padding: 25px 28px;

    background: var(--restart-green);

    border-left: 4px solid var(--restart-orange);
}


.restart-plan-icon {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    font-size: 17px;
}


.restart-plan-content>span {
    display: block;

    margin-bottom: 5px;

    color: var(--restart-orange);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.6px;
}


.restart-plan-content strong {
    display: block;

    margin-bottom: 6px;

    color: #ffffff;

    font-size: 17px;
}


.restart-plan-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   04 — RECOVERY
========================================================= */

.restart-recovery-section {
    background: #ffffff;
}


.restart-recovery-heading {
    max-width: 850px;

    margin-bottom: 65px;
}


.restart-recovery-heading h2 {
    margin: 20px 0;

    color: var(--restart-green);

    line-height: 1.05;
}


.restart-recovery-heading h2 span {
    display: block;

    color: var(--restart-orange);
}


.restart-recovery-heading p {
    max-width: 650px;

    margin: 0;

    font-size: 15px;
}


/* Journey */

.restart-recovery-journey {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}


.restart-recovery-progress {
    position: absolute;

    top: 34px;
    right: 12%;
    left: 12%;

    height: 2px;

    background: #f8f8f8;

    z-index: 0;
}


.restart-recovery-progress span {
    display: block;

    width: 0;
    height: 100%;

    background: var(--restart-orange);

    transition:
        width 0.6s ease;
}


.restart-recovery-step {
    position: relative;

    z-index: 2;

    cursor: pointer;
}


.restart-recovery-node {
    display: flex;

    flex-direction: column;

    align-items: center;

    margin-bottom: 25px;
}


.restart-recovery-node>span {
    margin-bottom: 9px;

    color: #9ba69f;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.restart-recovery-node>div {
    width: 68px;
    height: 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--restart-green);

    background: #ffffff;

    border: 2px solid var(--restart-border);

    border-radius: 50%;

    font-size: 18px;

    transition:
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}


.restart-recovery-step:hover .restart-recovery-node>div,
.restart-recovery-step.active .restart-recovery-node>div {
    color: #ffffff;

    background: var(--restart-orange);

    border-color: var(--restart-orange);

    transform: scale(1.08);
}


.restart-recovery-card {
    min-height: 220px;

    padding: 24px;

    text-align: center;

    background: var(--restart-green-soft);

    border: 1px solid transparent;

    transition:
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.restart-recovery-step:hover .restart-recovery-card,
.restart-recovery-step.active .restart-recovery-card {
    background: var(--restart-green);

    transform: translateY(-5px);

    box-shadow:
        0 18px 35px rgba(18, 61, 42, 0.1);
}


.restart-recovery-card>span {
    display: block;

    margin-bottom: 12px;

    color: var(--restart-orange);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.restart-recovery-card h3 {
    margin: 0 0 12px;

    color: var(--restart-green);

    font-size: 21px;
    font-weight: 700;

    line-height: 1.25;

    transition:
        color 0.35s ease;
}


.restart-recovery-card p {
    margin: 0;

    font-size: 14px;

    line-height: 1.7;

    transition:
        color 0.35s ease;
}


.restart-recovery-step:hover .restart-recovery-card h3,
.restart-recovery-step.active .restart-recovery-card h3 {
    color: #ffffff;
}


.restart-recovery-step:hover .restart-recovery-card p,
.restart-recovery-step.active .restart-recovery-card p {
    color: rgba(255, 255, 255, 0.68);
}


/* Decision */

.restart-decision-options {
    margin-top: 55px;

    padding: 28px;

    background: var(--restart-green-soft);

    border: 1px solid var(--restart-border);
}


.restart-decision-heading {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;
}


.restart-decision-heading>span {
    color: var(--restart-orange);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.restart-decision-heading strong {
    color: var(--restart-green);

    font-size: 15px;
}


.restart-decision-grid {
    display: grid;

    grid-template-columns:
        1fr auto 1fr auto 1fr;

    align-items: center;

    gap: 15px;
}


.restart-decision-option {
    min-height: 95px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 18px;

    background: #ffffff;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.restart-decision-option:hover {
    background: var(--restart-green);

    transform: translateY(-3px);
}


.restart-decision-option i {
    color: var(--restart-orange);

    font-size: 17px;
}


.restart-decision-option span {
    color: var(--restart-green);

    font-size: 14px;
    font-weight: 700;

    line-height: 1.45;

    transition:
        color 0.3s ease;
}


.restart-decision-option:hover span {
    color: #ffffff;
}


.restart-decision-connector {
    color: var(--restart-orange);

    font-size: 13px;
}


/* =========================================================
   05 — ALTERNATIVE ROUTE
========================================================= */

.restart-alternative-section {
    background: var(--restart-green-soft);
}


.restart-alternative-grid {
    display: grid;

    grid-template-columns:
        0.25fr 1fr;

    gap: 50px;

    align-items: center;

    max-width: 1050px;

    margin: auto;
}


.restart-alternative-icon {
    display: flex;

    align-items: center;
    justify-content: center;
}


.restart-alternative-icon>div {
    width: 125px;
    height: 125px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: var(--restart-green);

    border-radius: 50%;

    font-size: 38px;

    box-shadow:
        0 15px 40px rgba(18, 61, 42, 0.12);
}


.restart-alternative-content h2 {
    margin: 20px 0;

    color: var(--restart-green);

    line-height: 1.05;
}


.restart-alternative-content h2 span {
    display: block;

    color: var(--restart-orange);
}


.restart-alternative-content p {
    max-width: 850px;

    margin-bottom: 14px;

    font-size: 14px;
}


/* =========================================================
   06 — AUDIENCE
========================================================= */

.restart-audience-section {
    background: #ffffff;
}


.restart-audience-layout {
    display: grid;

    grid-template-columns:
        0.75fr 1.25fr;

    gap: 70px;
}


.restart-audience-heading {
    position: sticky;

    top: 110px;
}


.restart-audience-heading h2 {
    margin: 20px 0;

    color: var(--restart-green);

    line-height: 1.05;
}


.restart-audience-heading h2 span {
    display: block;

    color: var(--restart-orange);
}


.restart-audience-heading p {
    max-width: 480px;

    margin: 0;

    font-size: 15px;
}


/* Audience list */

.restart-audience-list {
    border-top: 1px solid var(--restart-border);
}


.restart-audience-item {
    min-height: 80px;

    display: grid;

    grid-template-columns:
        40px 1fr 35px;

    align-items: center;

    gap: 15px;

    padding: 17px 0;

    border-bottom: 1px solid var(--restart-border);

    cursor: pointer;

    transition:
        padding 0.3s ease,
        background 0.3s ease;
}


.restart-audience-item:hover {
    padding-right: 12px;
    padding-left: 12px;

    background: var(--restart-green-soft);
}


.restart-audience-item>span {
    color: #9ba69f;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.4px;
}


.restart-audience-item strong {
    color: var(--restart-green);

    font-size: 15px;
    font-weight: 650;

    line-height: 1.5;
}


.restart-audience-item i {
    color: var(--restart-orange);

    font-size: 12px;

    transform:
        translateX(-5px);

    opacity: 0;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


.restart-audience-item:hover i {
    opacity: 1;

    transform:
        translateX(0);
}


/* =========================================================
   07 — BELIEF
========================================================= */

.restart-belief-section {
    background: var(--restart-green-soft);
}


.restart-belief {
    position: relative;

    min-height: 430px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 60px 30px;

    text-align: center;

    overflow: hidden;
}


.restart-belief::before,
.restart-belief::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border: 1px solid rgba(18, 61, 42, 0.08);

    border-radius: 50%;

    pointer-events: none;
}


.restart-belief::before {
    top: -120px;
    left: -80px;
}


.restart-belief::after {
    right: -80px;
    bottom: -120px;
}


.restart-belief-icon {
    position: relative;

    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    color: #ffffff;

    background: var(--restart-green);

    border-radius: 50%;

    font-size: 22px;

    z-index: 2;
}


.restart-belief-content {
    position: relative;

    z-index: 2;

    max-width: 900px;
}


.restart-belief-content>span {
    display: block;

    margin-bottom: 18px;

    color: var(--restart-orange);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;
}


.restart-belief-content h2 {
    margin: 0;

    color: var(--restart-green);

    font-size: clamp(28px, 4vw, 48px);

    font-weight: 700;

    line-height: 1.1;
}


.restart-belief-content h2 em {
    color: var(--restart-orange);

    font-style: normal;
}


.restart-belief-line {
    width: 45px;
    height: 2px;

    margin: 25px auto 20px;

    background: var(--restart-orange);
}


.restart-belief-content p {
    margin: 0;

    color: var(--restart-green);

    font-size: 16px;
    font-weight: 600;
}


.restart-belief-arrow {
    position: absolute;

    right: 30px;
    bottom: 30px;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--restart-orange);

    border: 1px solid rgba(255, 105, 79, 0.3);

    border-radius: 50%;

    font-size: 12px;

    animation:
        restartArrowFloat 2s ease-in-out infinite;
}


@keyframes restartArrowFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

}


/* =========================================================
   08 — FINAL CTA
========================================================= */

.restart-final-section {
    background: var(--restart-green);

    overflow: hidden;
}


.restart-final-pattern {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 600px;
    height: 600px;

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

    pointer-events: none;
}


.restart-final-pattern::before,
.restart-final-pattern::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;

    transform:
        translate(-50%, -50%);
}


.restart-final-pattern::before {
    width: 420px;
    height: 420px;
}


.restart-final-pattern::after {
    width: 250px;
    height: 250px;
}


.restart-final-content {
    position: relative;

    z-index: 2;

    padding: 20px 0;
}


.restart-final-content h2 {
    max-width: 850px;

    margin: 22px auto;

    color: #ffffff;

    line-height: 1.05;
}


.restart-final-content h2 span {
    display: block;

    color: var(--restart-orange);
}


.restart-final-content p {
    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 16px;
}


.restart-final-button:after {

    color: #ffffff !important;

    background: var(--restart-orange);

    border: 1px solid var(--restart-orange);
}


.restart-final-button:hover {
    color: var(--restart-green) !important;

    background: #ffffff;

    border-color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .restart-intro-grid {
        grid-template-columns:
            1fr 0.9fr;

        gap: 40px;
    }


    .restart-before-heading {
        grid-template-columns:
            1fr 0.9fr;

        gap: 40px;
    }


    .restart-pillars-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .restart-audience-layout {
        gap: 45px;
    }


    .restart-alternative-grid {
        grid-template-columns:
            0.2fr 1fr;

        gap: 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .restart-page section {
        padding: 55px 0;
    }


    /* Intro */

    .restart-intro-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .restart-intro-content h2 {
        margin-bottom: 22px;
    }


    .restart-image-frame {
        min-height: 360px;
    }


    .restart-image-frame img {
        min-height: 360px;
    }


    /* Doors */

    .restart-doors-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .restart-door-card {
        min-height: 350px;

        padding: 25px;
    }


    /* Before */

    .restart-before-heading {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 35px;
    }


    .restart-pillars-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .restart-pillar-card {
        min-height: 175px;
    }


    .restart-plan-strip {
        grid-template-columns: 1fr;

        gap: 14px;

        padding: 22px;
    }


    /* Recovery */

    .restart-recovery-heading {
        margin-bottom: 45px;
    }


    .restart-recovery-journey {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .restart-recovery-progress {
        top: 34px;
        bottom: 34px;
        left: 34px;

        width: 2px;
        height: auto;

        right: auto;
    }


    .restart-recovery-progress span {
        width: 100%;
        height: 0;
    }


    .restart-recovery-step {
        display: grid;

        grid-template-columns: 70px 1fr;

        gap: 15px;
    }


    .restart-recovery-node {
        margin: 0;

        align-items: center;
    }


    .restart-recovery-node>span {
        display: none;
    }


    .restart-recovery-card {
        min-height: 0;

        text-align: left;
    }


    .restart-decision-options {
        padding: 20px;
    }


    .restart-decision-heading {
        flex-direction: column;

        align-items: flex-start;

        margin-bottom: 20px;
    }


    .restart-decision-grid {
        grid-template-columns: 1fr;

        gap: 8px;
    }


    .restart-decision-connector {
        display: none;
    }


    /* Alternative */

    .restart-alternative-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .restart-alternative-icon {
        justify-content: flex-start;
    }


    .restart-alternative-icon>div {
        width: 85px;
        height: 85px;

        font-size: 25px;
    }


    /* Audience */

    .restart-audience-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .restart-audience-heading {
        position: relative;

        top: auto;
    }


    .restart-audience-item {
        grid-template-columns:
            30px 1fr 25px;

        gap: 10px;
    }


    .restart-audience-item strong {
        font-size: 14px;
    }


    /* Belief */

    .restart-belief {
        min-height: 380px;

        padding: 45px 20px;
    }


    .restart-belief-content h2 {
        font-size: 29px;
    }


    .restart-belief-arrow {
        right: 20px;
        bottom: 20px;
    }


    /* CTA */

    .restart-final-content h2 {
        font-size: 32px;
    }


    .restart-final-button {
        width: 100%;

        max-width: 280px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .restart-page *,
    .restart-page *::before,
    .restart-page *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}