:root {

    --bg: #F6F8FF;
    --bg-2: #FFFFFF;
    --card: #FFFFFF;
    --line: #DCE3FA;

    --text: #101B4D;
    --text-dim: #5C6690;

    --teal: #3452D9;
    --amber: #C98A00;
    --coral: #5C74D9;

    --radius: 16px;

    --display: 'Space Grotesk', sans-serif;
    --body: 'Inter', sans-serif;
    --mono: 'JetBrains Mono', monospace;
}


/* =================================
   GENERAL
================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    line-height: 1.6;
    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


img {
    max-width: 100%;
    display: block;
}


.wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}


h1,
h2,
h3,
h4 {
    font-family: var(--display);
    line-height: 1.15;
    letter-spacing: -0.01em;
}


section {
    padding: 70px 0;
}


.eyebrow {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal);
    display: inline-block;
    margin-bottom: 14px;
}



/* =================================
   BUTTONS
================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 14px 28px;

    border-radius: 999px;

    font-weight: 600;
    font-size: .95rem;

    cursor: pointer;

    border: none;

    transition:
        transform .15s ease,
        box-shadow .15s ease,
        border-color .15s ease;
}


.btn-primary {
    background: var(--teal);
    color: #FFFFFF;

    box-shadow:
        0 8px 24px rgba(65,105,225,.35);
}


.btn-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(65,105,225,.45);
}


.btn-ghost {
    background: transparent;
    color: var(--text);

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


.btn-ghost:hover {
    border-color: var(--teal);
    color: var(--teal);
}



/* =================================
   NAVIGATION
================================= */

header {
    position: sticky;
    top: 0;
    z-index: 50;

    background:
        rgba(246,248,255,.88);

    backdrop-filter: blur(10px);

    border-bottom:
        1px solid var(--line);
}


nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 16px 24px;

    max-width: 1160px;

    margin: 0 auto;

    position: relative;
}


.logo {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.15rem;

    display: flex;
    align-items: center;

    gap: 10px;
}


.logo span {
    color: var(--teal);
}


.logo-image {
    width: 46px;
    height: 46px;

    object-fit: contain;

    border-radius: 8px;

    flex-shrink: 0;
}


.nav-links {
    display: flex;
    gap: 28px;

    font-size: .92rem;

    color: var(--text-dim);
}


.nav-links a {
    transition: color .15s ease;
}


.nav-links a:hover {
    color: var(--text);
}


.nav-right {
    display: flex;
    align-items: center;

    gap: 16px;
}


.nav-cta {
    display: none;
}


.menu-btn {
    display: block;

    background: none;

    border: none;

    color: var(--text);

    font-size: 1.4rem;

    cursor: pointer;
}


@media(min-width: 860px) {

    .nav-cta {
        display: inline-flex;
    }


    .menu-btn {
        display: none;
    }

}


@media(max-width: 859px) {

    .nav-links {
        display: none;
    }

}



/* =================================
   HERO
================================= */

.hero {
    padding: 90px 0 60px;

    position: relative;
}


.hero-grid {
    display: grid;

    gap: 32px;

    align-items: center;
}


.hero-content {
    min-width: 0;
}


.hero h1 {
    font-size:
        clamp(2.2rem, 5vw, 3.4rem);

    margin-bottom: 20px;
}


.hero h1 em {
    font-style: normal;
    color: var(--teal);
}


.hero p.lead {
    font-size: 1.1rem;

    color: var(--text-dim);

    max-width: 520px;

    margin-bottom: 32px;
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 20px;
}


.hero-note {
    font-family: var(--mono);
    font-size: .8rem;

    color: var(--text-dim);
}


.hero-right {
    display: flex;
    flex-direction: column;

    gap: 28px;

    align-items: stretch;
}


.hero-visual {
    display: flex;
    justify-content: center;
}


.hero-illustration {
    width: 100%;
    max-width: 380px;

    height: auto;
}


/* hide mobile illustration on desktop */

.mobile-hero-visual {
    display: none;
}


.desktop-hero-visual {
    display: flex;
}


@media(min-width: 900px) {

    .hero-grid {
        grid-template-columns:
            1.1fr .9fr;
    }

}



/* =================================
   LEARNING PATH
================================= */

.path-card {
    background: var(--card);

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

    border-radius: 20px;

    padding: 32px 24px;

    position: relative;

    overflow: hidden;

    box-shadow:
        0 5px 20px
        rgba(16,27,77,.04);
}


.path-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 0%,
            rgba(65,105,225,.18),
            transparent 55%
        );

    pointer-events: none;
}


.path-title {
    font-family: var(--mono);

    font-size: .75rem;

    letter-spacing: .1em;

    text-transform: uppercase;

    color: var(--text-dim);

    margin-bottom: 24px;
}


.path-track {
    position: relative;

    padding: 0 6px;
}


.path-line {
    position: absolute;

    top: 19px;
    left: 24px;
    right: 24px;

    height: 3px;

    background: var(--line);

    border-radius: 3px;
}


.path-line-fill {
    position: absolute;

    top: 19px;
    left: 24px;

    height: 3px;

    width: 0%;

    background:
        linear-gradient(
            90deg,
            var(--teal),
            var(--amber),
            var(--coral)
        );

    border-radius: 3px;

    transition:
        width 1.2s ease;
}


.path-nodes {
    display: flex;
    justify-content: space-between;

    position: relative;
}


.node {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;

    width: 33%;
}


.dot {
    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: var(--bg-2);

    border:
        3px solid var(--line);

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

    font-family: var(--mono);

    font-size: .85rem;
    font-weight: 600;

    z-index: 2;
}


.node.active .dot {
    border-color: var(--teal);

    color: var(--teal);

    box-shadow:
        0 0 0 6px
        rgba(65,105,225,.12);
}


.node-label {
    font-family: var(--display);

    font-weight: 600;
    font-size: .9rem;
}


.node-sub {
    font-size: .75rem;

    color: var(--text-dim);

    text-align: center;
}



/* =================================
   SECTION HEAD
================================= */

.section-head {
    max-width: 640px;

    margin-bottom: 44px;
}


.section-head h2 {
    font-size:
        clamp(1.6rem,3.4vw,2.3rem);
}


.section-head p {
    color: var(--text-dim);

    margin-top: 12px;

    font-size: 1.02rem;
}



/* =================================
   MISSION
================================= */

.mission-grid {
    display: grid;

    gap: 40px;

    align-items: center;
}


.mission-content {
    min-width: 0;
}


.mission-illustration {
    width: 100%;
    max-width: 320px;

    height: auto;

    margin: 0 auto;

    display: block;

    border-radius: 24px;
}


.mv-grid {
    display: grid;

    gap: 18px;

    margin-top: 16px;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(220px,1fr)
        );
}


.mv-card {
    background: var(--card);

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

    border-radius: var(--radius);

    padding: 24px;

    box-shadow:
        0 4px 18px
        rgba(16,27,77,.05);
}


.mv-card h3 {
    font-family: var(--display);

    font-size: 1.1rem;

    margin-bottom: 10px;

    color: var(--teal);
}


.mv-card p {
    color: var(--text-dim);

    font-size: .95rem;
}


@media(min-width: 860px) {

    .mission-grid {
        grid-template-columns:
            .8fr 1.2fr;
    }

}



/* =================================
   WHY SMARTY
================================= */

.grid-4 {
    display: grid;

    gap: 20px;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(230px,1fr)
        );
}


.why-card {
    background: var(--card);

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

    border-radius: var(--radius);

    padding: 26px;

    box-shadow:
        0 4px 18px
        rgba(16,27,77,.05);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.why-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 28px
        rgba(16,27,77,.08);
}


.why-card .ico {
    font-size: 1.6rem;

    margin-bottom: 14px;
}


.why-card h3 {
    font-size: 1.05rem;

    margin-bottom: 8px;
}


.why-card p {
    color: var(--text-dim);

    font-size: .92rem;
}



/* =================================
   SOCIAL PROOF
================================= */

#results {
    background:
        rgba(255,255,255,.35);
}


.proof-grid {
    display: grid;

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

    gap: 20px;
}


.proof-card {
    background: var(--card);

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

    border-radius: 18px;

    padding: 28px;

    text-align: center;

    box-shadow:
        0 4px 18px
        rgba(16,27,77,.05);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.proof-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 28px
        rgba(16,27,77,.08);
}


.proof-icon {
    width: 58px;
    height: 58px;

    margin:
        0 auto 16px;

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

    border-radius: 16px;

    background:
        rgba(52,82,217,.08);

    font-size: 1.7rem;
}


.proof-card h3 {
    margin-bottom: 8px;

    font-size: 1.05rem;
}


.proof-card p {
    color: var(--text-dim);

    font-size: .9rem;
}



/* =================================
   PROGRAMS
================================= */

.prog-grid {
    display: grid;

    gap: 18px;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(260px,1fr)
        );
}


.prog-card {
    background: #FBFCFF;

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

    border-radius: var(--radius);

    padding: 24px;

    position: relative;

    box-shadow:
        0 4px 18px
        rgba(16,27,77,.05);

    transition:
        transform .2s ease,
        border-color .2s ease;
}


.prog-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(52,82,217,.35);
}


.prog-card h3 {
    font-size: 1.05rem;

    margin-bottom: 8px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;
}


.prog-card p {
    color: var(--text-dim);

    font-size: .9rem;
}


.tag-soon {
    font-family: var(--mono);

    font-size: .68rem;

    background:
        rgba(255,201,71,.15);

    color: var(--amber);

    padding: 3px 9px;

    border-radius: 999px;

    border:
        1px solid
        rgba(255,201,71,.3);
}


/* hidden on desktop */

.programs-toggle {
    display: none;

    margin:
        24px auto 0;
}



/* =================================
   LEVELS / PRICING
================================= */

.level-grid {
    display: grid;

    gap: 20px;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(260px,1fr)
        );
}


.level-card {
    background: var(--card);

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

    border-radius: 20px;

    padding: 30px;

    box-shadow:
        0 6px 24px
        rgba(16,27,77,.06);
}


.featured-level {
    border-color: var(--teal);
}


.level-card h3 {
    font-size: 1.3rem;

    margin-bottom: 6px;
}


.level-card .price {
    font-family: var(--display);

    font-size: 1.5rem;

    color: var(--teal);

    margin:
        14px 0 2px;
}


.level-card .price span {
    font-size: .82rem;

    color: var(--text-dim);

    font-family: var(--body);
}


.level-card .price-group {
    font-family: var(--display);

    font-size: 1.05rem;

    color: var(--amber);

    margin-bottom: 10px;
}


.level-card .price-group span {
    font-size: .78rem;

    color: var(--text-dim);

    font-family: var(--body);
}


.level-description {
    color: var(--text-dim);

    font-size: .9rem;
}


.level-card ul {
    list-style: none;

    margin-top: 16px;
}


.level-card li {
    font-size: .88rem;

    color: var(--text-dim);

    padding: 6px 0;

    border-top:
        1px solid var(--line);
}


.level-card li:first-child {
    border-top: none;
}


.price-note {
    font-size: .85rem;

    color: var(--text-dim);

    margin-top: 20px;

    font-family: var(--mono);
}



/* =================================
   HOW IT WORKS - STEPS
================================= */

.steps {
    display: grid;

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

    gap: 22px;

    counter-reset: smarty-step;
}


.step {
    position: relative;

    padding:
        52px 20px
        20px 20px;

    background: var(--card);

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

    border-radius: var(--radius);

    box-shadow:
        0 4px 18px
        rgba(16,27,77,.05);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}


.step:hover {
    transform: translateY(-4px);

    border-color:
        rgba(52,82,217,.35);

    box-shadow:
        0 10px 28px
        rgba(16,27,77,.08);
}


.step::before {
    counter-increment: smarty-step;

    content:
        "0" counter(smarty-step);

    position: absolute;

    left: 20px;
    top: 17px;

    color: var(--teal);

    font-family: var(--mono);

    font-size: .76rem;

    font-weight: 600;

    letter-spacing: .05em;
}


.step h3 {
    margin-bottom: 8px;

    font-size: 1rem;

    color: var(--text);
}


.step p {
    color: var(--text-dim);

    font-size: .88rem;
}



/* =================================
   LAPTOP CALLOUT
================================= */

.callout {
    background:
        linear-gradient(
            135deg,
            rgba(65,105,225,.12),
            rgba(255,201,71,.08)
        );

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

    border-radius: var(--radius);

    padding: 22px 26px;

    display: flex;
    align-items: center;

    gap: 16px;

    margin-top: 40px;
}


.callout .ico {
    font-size: 1.6rem;
}


.callout p {
    font-size: .92rem;

    color: var(--text-dim);
}


.callout strong {
    color: var(--text);
}



/* =================================
   WORKSHOPS
================================= */

.workshop-banner {
    background: #FBFCFF;

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

    border-radius: 20px;

    padding: 36px;

    display: grid;

    gap: 24px;

    box-shadow:
        0 4px 18px
        rgba(16,27,77,.05);
}


.workshop-banner h2 {
    font-size: 1.5rem;

    margin-bottom: 8px;
}


.workshop-banner p {
    color: var(--text-dim);

    font-size: .95rem;
}


@media(min-width:760px) {

    .workshop-banner {
        grid-template-columns:
            1fr auto;

        align-items: center;
    }

}



/* =================================
   FAQ
================================= */

.faq-item {
    border-bottom:
        1px solid var(--line);

    padding: 20px 0;
}


.faq-item summary {
    cursor: pointer;

    font-weight: 600;

    font-size: 1rem;

    list-style: none;

    display: flex;

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

    gap: 20px;
}


.faq-item summary::-webkit-details-marker {
    display: none;
}


.faq-item summary::after {
    content: "+";

    font-family: var(--mono);

    color: var(--teal);

    font-size: 1.2rem;

    flex-shrink: 0;
}


.faq-item[open] summary::after {
    content: "–";
}


.faq-item p {
    color: var(--text-dim);

    margin-top: 12px;

    font-size: .92rem;
}



/* =================================
   FINAL CTA / BOOKING
================================= */

.final-cta {
    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(65,105,225,.15),
            transparent 60%
        );

    border-top:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);
}


.final-cta h2 {
    font-size:
        clamp(1.8rem,4vw,2.6rem);

    margin-bottom: 16px;
}


.final-cta > .wrap > p {
    color: var(--text-dim);

    margin-bottom: 28px;
}


.book-grid {
    display: grid;

    gap: 20px;

    text-align: left;

    margin-top: 36px;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(280px,1fr)
        );
}


.book-card {
    background: var(--card);

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

    border-radius: 20px;

    padding: 28px;

    box-shadow:
        0 6px 24px
        rgba(16,27,77,.06);
}


.book-card h3 {
    font-family: var(--display);

    font-size: 1.15rem;

    margin:
        6px 0 8px;
}


.book-sub {
    color: var(--text-dim);

    font-size: .88rem;

    margin-bottom: 16px;
}



/* =================================
   FORM
================================= */

.book-form {
    display: flex;
    flex-direction: column;

    gap: 12px;
}


.book-form input,
.book-form select {
    width: 100%;

    padding: 12px 14px;

    border-radius: 10px;

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

    background: var(--bg-2);

    color: var(--text);

    font-family: var(--body);

    font-size: .92rem;
}


.book-form input::placeholder {
    color: var(--text-dim);
}


.book-form input:focus,
.book-form select:focus {
    outline:
        2px solid var(--teal);

    outline-offset: 1px;
}


.form-button {
    width: 100%;
}


.phone-row {
    display: grid;
    grid-template-columns: 135px 1fr;
    gap: 10px;
}

.phone-row select,
.phone-row input {
    width: 100%;
    min-width: 0;
}

@media(max-width: 480px) {

    .phone-row {
        grid-template-columns: 115px 1fr;
    }

}
/* =================================
   SCHEDULE CARD
================================= */

.schedule-card {
    display: flex;
    flex-direction: column;
}


.calendar-visual {
    width: 80px;
    height: 80px;

    margin:
        28px auto 20px;

    border-radius: 50%;

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

    background:
        rgba(65,105,225,.10);

    font-size: 2.2rem;
}


.schedule-card h4 {
    text-align: center;

    font-size: 1.05rem;

    margin-bottom: 10px;
}


.schedule-description {
    color: var(--text-dim);

    text-align: center;

    font-size: .9rem;

    margin-bottom: 24px;
}


.calendar-note {
    color: var(--text-dim);

    font-size: .82rem;

    margin-top: 14px;

    text-align: center;
}



/* =================================
   DIRECT CONTACT INFORMATION
================================= */

.contact-info-section {
    padding:
        45px 0;
}


.contact-info-card {
    background: var(--card);

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

    border-radius: 20px;

    padding: 30px;

    display: flex;

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

    gap: 30px;

    box-shadow:
        0 4px 18px
        rgba(16,27,77,.05);
}


.contact-info-card h2 {
    font-size: 1.4rem;
}


.contact-methods {
    display: flex;

    gap: 18px;
}


.contact-method {
    display: flex;

    align-items: center;

    gap: 11px;

    padding: 13px 16px;

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

    border-radius: 12px;

    background: var(--bg);

    transition:
        border-color .15s ease,
        transform .15s ease;
}


.contact-method:hover {
    transform: translateY(-2px);

    border-color: var(--teal);
}


.contact-method span {
    font-size: 1.35rem;

    flex-shrink: 0;
}


.contact-method small {
    display: block;

    color: var(--text-dim);

    font-size: .7rem;
}


.contact-method strong {
    font-size: .85rem;

    word-break: break-word;
}



/* =================================
   WHATSAPP
================================= */

.wa-float {
    position: fixed;

    bottom: 22px;
    right: 22px;

    z-index: 60;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #25D366;

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

    box-shadow:
        0 10px 28px
        rgba(0,0,0,.35);

    transition:
        transform .15s ease;
}


.wa-float:hover {
    transform: scale(1.08);
}



/* =================================
   FOOTER
================================= */

footer {
    padding: 40px 0;
}


.foot-grid {
    display: flex;

    flex-wrap: wrap;

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

    gap: 20px;

    color: var(--text-dim);

    font-size: .85rem;
}


.footer-logo {
    display: flex;

    align-items: center;

    gap: 10px;
}


.footer-logo img {
    width: 42px;
    height: 42px;

    object-fit: contain;

    border-radius: 7px;
}


.footer-logo strong {
    color: var(--text);
}



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

@media(max-width: 900px) {

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


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

}



/* =================================
   MOBILE HERO + MISSION
================================= */

@media(max-width: 899px) {

    /* HERO */

    .hero {
        padding:
            62px 0 45px;
    }


    .hero-grid {
        grid-template-columns: 1fr;

        gap: 28px;
    }


    .hero-content {
        text-align: center;
    }


    .hero h1 {
        margin-bottom: 0;
    }


    /*
       On mobile:
       title -> image -> description -> buttons
    */

    .desktop-hero-visual {
        display: none;
    }


    .mobile-hero-visual {
        display: flex;

        justify-content: center;

        margin:
            18px 0 12px;
    }


    .mobile-hero-visual .hero-illustration {
        max-width: 270px;
    }


    .hero p.lead {
        margin-left: auto;
        margin-right: auto;

        margin-bottom: 26px;
    }


    .hero-actions {
        justify-content: center;
    }


    .hero-note {
        text-align: center;
    }


    /*
       path stays underneath
       the main mobile hero
    */

    .hero-right {
        gap: 0;
    }


    .path-card {
        margin-top: 4px;
    }


    /* MISSION */

    .mission-grid {
        display: flex;

        flex-direction: column;

        gap: 28px;
    }


    .mission-content {
        order: 1;

        width: 100%;
    }


    .mission-illustration {
        order: 2;

        max-width: 215px;

        margin-top: 3px;
    }

}



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

@media(max-width: 760px) {

    .proof-grid {
        grid-template-columns: 1fr;
    }


    .contact-info-card {
        flex-direction: column;

        align-items: flex-start;
    }


    .contact-methods {
        width: 100%;

        flex-direction: column;
    }


    .contact-method {
        width: 100%;
    }

}



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

@media(max-width: 640px) {

    section {
        padding:
            52px 0;
    }


    .wrap {
        padding:
            0 18px;
    }


    /* NAV */

    nav {
        padding:
            12px 18px;
    }


    .logo {
        font-size: 1rem;
    }


    .logo-image {
        width: 42px;
        height: 42px;
    }


    /* HERO */

    .hero {
        padding:
            48px 0 40px;
    }


    .hero .eyebrow {
        font-size: .68rem;

        margin-bottom: 12px;
    }


    .hero h1 {
        font-size:
            clamp(2rem, 10.5vw, 2.75rem);

        line-height: 1.08;
    }


    .mobile-hero-visual {
        margin:
            10px 0 8px;
    }


    .mobile-hero-visual .hero-illustration {
        max-width: 235px;
    }


    .hero p.lead {
        font-size: .97rem;

        line-height: 1.65;

        margin-bottom: 23px;
    }


    .hero-actions {
        flex-direction: column;

        width: 100%;

        gap: 10px;
    }


    .hero-actions .btn {
        width: 100%;
    }


    .hero-note {
        font-size: .72rem;

        line-height: 1.5;
    }


    /* PATH */

    .path-card {
        padding:
            26px 15px;
    }


    .path-title {
        margin-bottom: 20px;
    }


    .node-label {
        font-size: .82rem;
    }


    .node-sub {
        font-size: .66rem;
    }


    .dot {
        width: 36px;
        height: 36px;

        font-size: .76rem;
    }


    .path-line,
    .path-line-fill {
        top: 17px;
    }


    /* SECTION HEAD */

    .section-head {
        margin-bottom: 30px;
    }


    .section-head h2 {
        font-size: 1.7rem;
    }


    .section-head p {
        font-size: .93rem;
    }


    /* MISSION */

    .mission-illustration {
        max-width: 185px;
    }


    .mv-grid {
        grid-template-columns: 1fr;
    }


    /* WHY */

    .grid-4 {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .why-card {
        padding: 22px;
    }


    /* SOCIAL PROOF */

    .proof-card {
        padding: 23px;
    }


    /* PROGRAMS */

    .prog-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .prog-card {
        padding: 21px;
    }


    /*
       Only first 6 programs
       initially appear on mobile
    */

    .prog-card:nth-child(n+7) {
        display: none;
    }


    /*
       JS adds .show-all
       when the button is clicked
    */

    .prog-grid.show-all .prog-card {
        display: block;
    }


    .programs-toggle {
        display: flex;

        width: 100%;

        margin:
            22px auto 0;
    }


    /* PRICING */

    .level-grid {
        grid-template-columns: 1fr;
    }


    .level-card {
        padding: 25px;
    }


    .price-note {
        font-size: .74rem;
    }


    .callout {
        align-items: flex-start;

        padding: 19px;
    }


    /* STEPS */

    .steps {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .step {
        padding:
            50px 20px
            20px;
    }


    /* WORKSHOP */

    .workshop-banner {
        padding: 25px;
    }


    .workshop-banner .btn {
        width: 100%;
    }


    /* FAQ */

    .faq-item summary {
        font-size: .93rem;
    }


    /* BOOKING */

    .book-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .book-card {
        padding: 23px;
    }


    .final-cta h2 {
        font-size: 1.9rem;
    }


    /* CONTACT DETAILS */

    .contact-info-section {
        padding:
            35px 0;
    }


    .contact-info-card {
        padding: 22px;
    }


    .contact-info-card h2 {
        font-size: 1.25rem;
    }


    .contact-method {
        padding:
            12px 13px;
    }


    /* FOOTER */

    .foot-grid {
        flex-direction: column;

        align-items: flex-start;
    }

/* =================================
   FOOTER SOCIAL ICONS
================================= */

.footer-socials {

    display: flex;

    align-items: center;

    gap: 10px;
}


.footer-socials a {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

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

    background: var(--card);

    color: var(--teal);

    font-size: 1.05rem;

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


.footer-socials a:hover {

    transform: translateY(-3px);

    background: var(--teal);

    color: #FFFFFF;

    border-color: var(--teal);
}


.footer-right {

    text-align: right;
}


/* MOBILE */

@media(max-width: 760px) {

    .footer-socials {

        width: 100%;
    }


    .footer-right {

        text-align: left;
    }

}
    /* WHATSAPP */

    .wa-float {
        width: 54px;
        height: 54px;

        right: 16px;
        bottom: 16px;
    }

}
