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

.hero {
    position: relative;

    padding: 115px 0 95px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 15%,
            var(--soft),
            transparent 35%
        ),
        radial-gradient(
            circle at 10% 80%,
            var(--soft),
            transparent 30%
        );
}

.hero::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    bottom: -220px;

    border-radius: 50%;

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

    opacity: .45;

    pointer-events: none;
}

.hero-content {
    position: relative;

    z-index: 1;

    max-width: 900px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 7px 12px;

    border-radius: 99px;

    background: var(--soft);

    color: var(--primary);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .6px;
}

.hero h1 {
    max-width: 900px;

    margin: 20px 0 16px;

    font-size:
        clamp(46px, 8vw, 82px);

    line-height: 1.01;

    letter-spacing: -3px;

    font-weight: 850;
}

.hero h1 span {
    color: var(--primary);
}

.hero-description {
    max-width: 720px;

    margin: 0;

    color: var(--muted);

    font-size: 19px;

    line-height: 1.7;
}

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

    gap: 12px;

    margin-top: 30px;
}

.hero-actions .btn {
    min-height: 46px;
}

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

    gap: 18px;

    margin-top: 24px;

    color: var(--muted);

    font-size: 13px;
}

.hero-trust div {
    display: inline-flex;
    align-items: center;

    gap: 7px;
}

.hero-trust i {
    color: var(--primary);

    font-size: 12px;
}


/* =========================
   SECTION EYEBROW
========================= */

.section-eyebrow {
    display: block;

    margin-bottom: 7px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 850;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


/* =========================
   SECTION HEADINGS
========================= */

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 30px;
}

.section-heading > div {
    max-width: 720px;
}

.section-heading h2 {
    margin: 0;
}

.section-heading p {
    margin-bottom: 0;
}

.section-heading > .btn {
    flex-shrink: 0;
}


/* =========================
   STATS
========================= */

.stat-grid {
    display: grid;

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

    gap: 16px;
}

.stat-card {
    position: relative;

    padding: 26px 20px;

    text-align: center;

    background: var(--card);

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

    border-radius: 18px;

    box-shadow:
        var(--shadow-sm);

    overflow: hidden;

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

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

    position: absolute;

    top: 0;
    left: 18%;
    right: 18%;

    height: 2px;

    background: var(--primary);

    opacity: .15;

    transition:
        left .25s ease,
        right .25s ease,
        opacity .25s ease;
}

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

    box-shadow:
        var(--shadow-md);

    border-color:
        color-mix(
            in srgb,
            var(--primary) 25%,
            var(--border)
        );
}

.stat-card:hover::before {
    left: 10%;
    right: 10%;

    opacity: .5;
}

.stat-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    margin: 0 auto 11px;

    border-radius: 14px;

    background: var(--soft);

    color: var(--primary);

    font-size: 20px;
}

.stat-number {
    display: block;

    margin-bottom: 4px;

    font-size: 27px;

    line-height: 1.15;

    font-weight: 850;
}

.stat-card > span {
    color: var(--muted);

    font-size: 13px;
}


/* =========================
   SOCIAL CHANNELS
========================= */

.social-channel-grid {
    display: grid;

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

    gap: 18px;
}

.social-channel-card {
    position: relative;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 23px;

    text-decoration: none;

    color: var(--text);

    background:
        linear-gradient(
            135deg,
            rgba(37, 99, 235, .055),
            var(--card)
        );

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

    border-radius: 20px;

    box-shadow:
        var(--shadow-sm);

    overflow: hidden;

    isolation: isolate;

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

.social-channel-card::before {
    content: "";

    position: absolute;

    inset: -90px;

    background:
        radial-gradient(
            circle,
            rgba(37, 99, 235, .13),
            transparent 65%
        );

    opacity: 0;

    transform: scale(.7);

    transition:
        opacity .3s ease,
        transform .4s ease;

    z-index: -1;
}

.social-channel-card:hover {
    transform: translateY(-5px);

    box-shadow:
        var(--shadow-md);

    border-color:
        rgba(37, 99, 235, .25);
}

.social-channel-card:hover::before {
    opacity: 1;

    transform: scale(1);
}

.social-channel-icon {
    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 16px;

    background:
        rgba(37, 99, 235, .09);

    color: var(--primary);

    font-size: 27px;

    transition:
        transform .3s ease,
        background .3s ease;
}

.social-channel-card:hover .social-channel-icon {
    transform:
        scale(1.08)
        rotate(-3deg);

    background:
        rgba(37, 99, 235, .14);
}

.social-channel-content {
    min-width: 0;

    flex: 1;
}

.social-channel-label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 4px;

    color: var(--primary);

    font-size: .75rem;

    font-weight: 750;

    letter-spacing: .06em;

    text-transform: uppercase;
}

.social-channel-content h3 {
    margin: 0 0 5px;

    font-size: 1.12rem;

    line-height: 1.3;
}

.social-channel-content p {
    margin: 0;

    color: var(--muted);

    font-size: .9rem;

    line-height: 1.55;
}

.social-channel-arrow {
    flex: 0 0 auto;

    color: var(--muted);

    font-size: .9rem;

    transition:
        transform .25s ease,
        color .25s ease;
}

.social-channel-card:hover .social-channel-arrow {
    color: var(--primary);

    transform:
        translate(2px, -2px);
}


/* =========================
   COURSE / RESOURCE GRID
========================= */

.course-grid,
.resource-grid {
    display: grid;

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

    gap: 20px;
}

.course-card,
.resource-card {
    position: relative;

    display: flex;

    flex-direction: column;

    background: var(--card);

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

    border-radius: 19px;

    overflow: hidden;

    box-shadow:
        var(--shadow-sm);

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

.course-card:hover,
.resource-card:hover {
    transform: translateY(-5px);

    box-shadow:
        var(--shadow-md);

    border-color:
        color-mix(
            in srgb,
            var(--primary) 22%,
            var(--border)
        );
}


/* =========================
   COURSE CARD
========================= */

.course-image {
    position: relative;

    overflow: hidden;
}

.course-image img {
    display: block;

    width: 100%;

    object-fit: contain;

    transition:
        transform .4s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.035);
}

.course-placeholder {
    aspect-ratio: 16 / 9;

    display: grid;
    place-items: center;

    background: var(--soft);

    color: var(--primary);

    font-size: 42px;
}

.access-badge {
    position: absolute;

    top: 12px;
    right: 12px;

    padding: 5px 10px;

    border-radius: 99px;

    background: var(--card);

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

    box-shadow:
        0 4px 14px rgba(0, 0, 0, .08);

    font-size: 10px;

    font-weight: 850;

    text-transform: uppercase;

    letter-spacing: .04em;
}

.access-badge.free {
    color: #16a34a;
}

.access-badge.paid {
    color: var(--primary);
}

.course-body,
.resource-body {
    display: flex;

    flex: 1;

    flex-direction: column;

    padding: 20px;
}

.course-category,
.resource-type {
    color: var(--primary);

    font-size: 11px;

    font-weight: 850;

    letter-spacing: .7px;

    text-transform: uppercase;
}

.course-title,
.resource-title {
    margin: 7px 0;

    font-size: 19px;

    line-height: 1.3;

    letter-spacing: -.25px;
}

.course-description,
.resource-description {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.6;

    margin: 0 0 16px;
}

.course-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 18px;
}

.meta-item {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    color: var(--muted);

    font-size: 12px;
}

.meta-item i {
    color: var(--primary);

    font-size: 11px;
}

.course-footer,
.resource-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-top: auto;
}

.course-price {
    font-size: 13px;

    font-weight: 850;
}


/* =========================
   RESOURCE CARD
========================= */

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

    display: grid;
    place-items: center;

    margin-bottom: 15px;

    border-radius: 15px;

    background: var(--soft);

    color: var(--primary);

    font-size: 25px;
}


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

.feature-grid {
    display: grid;

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

    gap: 18px;
}

.feature-card {
    position: relative;

    padding: 26px;

    background: var(--card);

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

    border-radius: 18px;

    overflow: hidden;

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

.feature-card::after {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    right: -45px;
    bottom: -45px;

    border-radius: 50%;

    background: var(--soft);

    opacity: .5;

    pointer-events: none;
}

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

    box-shadow:
        var(--shadow-md);

    border-color:
        color-mix(
            in srgb,
            var(--primary) 20%,
            var(--border)
        );
}

.feature-icon {
    width: 49px;
    height: 49px;

    display: grid;
    place-items: center;

    margin-bottom: 15px;

    border-radius: 13px;

    background: var(--soft);

    color: var(--primary);

    font-size: 18px;
}

.feature-number {
    display: block;

    margin-bottom: 5px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 850;

    letter-spacing: 1px;
}

.feature-card h3 {
    position: relative;

    z-index: 1;

    margin: 0 0 8px;

    font-size: 18px;
}

.feature-card p {
    position: relative;

    z-index: 1;

    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.65;
}


/* =========================
   TOPICS / SKILLS
========================= */

.topic-grid {
    display: grid;

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

    gap: 18px;
}

.topic-card {
    position: relative;

    min-height: 205px;

    padding: 26px;

    background: var(--card);

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

    border-radius: 18px;

    overflow: hidden;

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

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

    position: absolute;

    width: 120px;
    height: 120px;

    top: -65px;
    right: -55px;

    border-radius: 50%;

    background: var(--soft);

    transition:
        transform .35s ease;
}

.topic-card:hover {
    transform: translateY(-5px);

    box-shadow:
        var(--shadow-md);

    border-color:
        color-mix(
            in srgb,
            var(--primary) 22%,
            var(--border)
        );
}

.topic-card:hover::before {
    transform: scale(1.3);
}

.topic-card > i {
    position: relative;

    z-index: 1;

    display: block;

    margin-bottom: 17px;

    color: var(--primary);

    font-size: 29px;
}

.topic-card h3 {
    position: relative;

    z-index: 1;

    margin: 0 0 7px;

    font-size: 18px;
}

.topic-card p {
    position: relative;

    z-index: 1;

    margin: 0;

    max-width: 310px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.6;
}

.topic-card span {
    position: relative;

    z-index: 1;

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

    gap: 7px;

    margin-top: 18px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 750;
}

.topic-card span i {
    font-size: 10px;

    transition:
        transform .2s ease;
}

.topic-card:hover span i {
    transform:
        translateX(3px);
}

/* =========================================================
   CERTIFICATE SECTION
========================================================= */

.certificate-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}


/* ---------------------------------------------------------
   Certificate Demo Layout
--------------------------------------------------------- */

.certificate-demo {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: center;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------------------------------------------------------
   Certificate Preview
--------------------------------------------------------- */

.certificate-demo-preview {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.certificate-preview-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    min-height: 300px;
}

.certificate-preview-scale {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 68.75%;
    overflow: hidden;
    border-radius: 18px;
}

/*
   The actual certificate is 1600 × 1100.
   certificate.js scales it using transform.
*/

.certificate-preview-scale .cd-certificate {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: top left;
}

/* ---------------------------------------------------------
   Certificate Content
--------------------------------------------------------- */

.certificate-demo-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.certificate-demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 14px;
    margin-bottom: 18px;

    border-radius: 999px;

    background: rgba(37, 99, 235, 0.10);
    color: var(--primary-color);

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.certificate-demo-badge i {
    font-size: 0.9rem;
}

.certificate-demo-content h3 {
    margin: 0 0 16px;

    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.15;
    font-weight: 800;

    color: var(--heading-color);
}

.certificate-demo-content p {
    margin: 0 0 28px;

    max-width: 500px;

    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.75;
}

/* ---------------------------------------------------------
   Verify Certificate Button
--------------------------------------------------------- */

.certificate-demo-content .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.certificate-demo-content .btn i {
    font-size: 0.95rem;
}

/* ---------------------------------------------------------
   Decorative Background
--------------------------------------------------------- */

.certificate-section::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    top: 10%;
    left: -220px;

    border-radius: 50%;

    background: rgba(37, 99, 235, 0.05);

    filter: blur(10px);

    pointer-events: none;
}

.certificate-section::after {
    content: "";
    position: absolute;

    width: 360px;
    height: 360px;

    right: -180px;
    bottom: 5%;

    border-radius: 50%;

    background: rgba(16, 185, 129, 0.05);

    filter: blur(10px);

    pointer-events: none;
}

.certificate-section .container {
    position: relative;
    z-index: 1;
}

/* ---------------------------------------------------------
   Dark Theme
--------------------------------------------------------- */

[data-theme="dark"] .certificate-demo-badge {
    background: rgba(96, 165, 250, 0.12);
    color: var(--primary-color);
}

[data-theme="dark"] .certificate-section::before {
    background: rgba(96, 165, 250, 0.06);
}

[data-theme="dark"] .certificate-section::after {
    background: rgba(52, 211, 153, 0.05);
}

/* ---------------------------------------------------------
   Tablet
--------------------------------------------------------- */

@media (max-width: 900px) {

    .certificate-section {
        padding: 80px 0;
    }

    .certificate-demo {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .certificate-demo-preview {
        width: 100%;
    }

    .certificate-demo-content {
        align-items: center;
        text-align: center;
    }

    .certificate-demo-content p {
        max-width: 650px;
    }
}

/* ---------------------------------------------------------
   Mobile
--------------------------------------------------------- */

@media (max-width: 600px) {

    .certificate-section {
        padding: 65px 0;
    }

    .certificate-section .section-header {
        margin-bottom: 35px;
    }

    .certificate-demo {
        gap: 35px;
    }

    .certificate-preview-container,
    .certificate-preview-scale {
        border-radius: 12px;
    }

    .certificate-demo-badge {
        font-size: 0.7rem;
        padding: 7px 11px;
    }

    .certificate-demo-content h3 {
        font-size: 1.7rem;
    }

    .certificate-demo-content p {
        font-size: 0.94rem;
        line-height: 1.65;
        margin-bottom: 23px;
    }

    .certificate-demo-content .btn {
        width: 100%;
    }
}

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

.faq-list {
    max-width: 850px;

    margin: auto;
}

.faq-item {
    margin-bottom: 11px;

    background: var(--card);

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

    border-radius: 15px;

    overflow: hidden;

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

.faq-item:hover {
    border-color:
        color-mix(
            in srgb,
            var(--primary) 18%,
            var(--border)
        );
}

.faq-item[open] {
    box-shadow:
        var(--shadow-sm);
}

.faq-item summary {
    display: block;

    padding: 18px 20px;

    cursor: pointer;

    font-size: 15px;

    font-weight: 750;

    list-style: none;
}

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

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

    float: right;

    color: var(--primary);

    font-size: 20px;

    line-height: 1;
}

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

.faq-answer {
    padding:
        0 20px 19px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.65;
}


/* =========================
   CTA
========================= */

.cta-box {
    position: relative;

    padding: 52px 30px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(37, 99, 235, .10),
            transparent 55%
        ),
        var(--soft);

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

    border-radius: 24px;

    overflow: hidden;
}

.cta-box::before,
.cta-box::after {
    content: "";

    position: absolute;

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

    border-radius: 50%;

    pointer-events: none;

    opacity: .5;
}

.cta-box::before {
    width: 180px;
    height: 180px;

    left: -100px;
    top: -90px;
}

.cta-box::after {
    width: 220px;
    height: 220px;

    right: -130px;
    bottom: -130px;
}

.cta-box > * {
    position: relative;

    z-index: 1;
}

.cta-box h2 {
    margin:
        18px 0 9px;

    font-size:
        clamp(28px, 5vw, 42px);

    letter-spacing: -1px;
}

.cta-box p {
    max-width: 650px;

    margin:
        0 auto 25px;

    color: var(--muted);

    line-height: 1.65;
}

.cta-actions {
    display: flex;
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;
}


/* =========================
   CONTACT
========================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 25px;
}

.contact-card {
    padding: 26px;

    background: var(--card);

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

    border-radius: 19px;

    box-shadow:
        var(--shadow-sm);
}

.contact-item {
    display: flex;

    gap: 13px;

    margin-bottom: 21px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item > i {
    width: 41px;
    height: 41px;

    flex: 0 0 41px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: var(--soft);

    color: var(--primary);
}

.contact-item strong {
    display: block;

    margin-bottom: 3px;

    font-size: 14px;
}

.contact-item a,
.contact-item span {
    display: block;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.5;
}

.contact-item a {
    text-decoration: none;

    transition:
        color .2s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-link {
    text-decoration: none;

    color: var(--text);
}

.contact-link > div {
    min-width: 0;
}

.contact-form {
    display: grid;

    gap: 15px;
}

.form-group {
    display: grid;

    gap: 7px;
}

.form-group label {
    font-size: 13px;

    font-weight: 750;
}

.form-group input,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 12px 14px;

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

    border-radius: 11px;

    background: var(--input-bg);

    color: var(--text);

    outline: none;

    font: inherit;

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px
        color-mix(
            in srgb,
            var(--primary) 10%,
            transparent
        );
}

.form-group textarea {
    min-height: 140px;

    resize: vertical;
}

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

    gap: 10px;
}

.form-status {
    min-height: 20px;

    margin: 0;

    color: var(--muted);

    font-size: 13px;
}


/* =========================
   EMPTY STATE
========================= */

.section-empty {
    grid-column: 1 / -1;

    padding: 38px 25px;

    text-align: center;

    color: var(--muted);

    border:
        1px dashed var(--border);

    border-radius: 17px;
}


/* =========================
   THEME TOGGLE
========================= */

.theme-toggle {
    position: fixed;

    top: 85px;
    right: 20px;

    width: 42px;
    height: 42px;

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

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

    border-radius: 50%;

    background: var(--card);

    color: var(--text);

    cursor: pointer;

    font-size: 17px;

    box-shadow:
        var(--shadow-sm);

    z-index: 900;

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

.theme-toggle:hover {
    background: var(--soft);

    color: var(--primary);

    border-color: var(--primary);

    transform:
        translateY(-2px);

    box-shadow:
        var(--shadow-md);
}


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

@media (max-width: 800px) {

    .mobile-menu {
        display: block;
    }

    .site-nav {
        position: absolute;

        top: 72px;
        left: 0;
        right: 0;

        display: none;

        padding: 15px 4%;

        flex-direction: column;
        align-items: stretch;

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

    .site-nav.open {
        display: flex;
    }

    .site-nav a:not(.btn) {
        padding: 9px 0;
    }

    .nav-actions {
        justify-content: flex-start;
    }

    .section-heading {
        align-items: flex-start;

        flex-direction: column;
    }

    .section-heading > .btn {
        width: auto;
    }

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

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

}


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

@media (max-width: 700px) {

    .hero {
        padding:
            90px 0 75px;
    }

    .hero h1 {
        font-size:
            clamp(42px, 10vw, 62px);

        letter-spacing:
            -2px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-trust {
        gap: 11px 17px;

        font-size: 12px;
    }

    .social-channel-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .social-channel-card {
        padding: 18px;

        gap: 14px;

        border-radius: 18px;
    }

    .social-channel-icon {
        flex-basis: 50px;

        width: 50px;
        height: 50px;

        border-radius: 14px;

        font-size: 23px;
    }

    .social-channel-content h3 {
        font-size: 1rem;
    }

    .social-channel-content p {
        font-size: .84rem;
    }

    .social-channel-label {
        font-size: .7rem;
    }

    .cta-box {
        padding:
            42px 22px;
    }

}


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

@media (max-width: 600px) {

    .theme-toggle {
        top: 75px;
        right: 14px;

        width: 38px;
        height: 38px;

        font-size: 15px;
    }

    .hero {
        padding:
            78px 0 65px;
    }

    .hero-tag {
        font-size: 11px;

        padding: 6px 10px;
    }

    .hero h1 {
        margin-top: 17px;

        font-size:
            clamp(39px, 11vw, 54px);

        line-height: 1.03;

        letter-spacing:
            -1.8px;
    }

    .hero-description {
        font-size: 16px;

        line-height: 1.65;
    }

    .hero-actions {
        flex-direction: column;

        gap: 9px;
    }

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

    .section-heading {
        gap: 14px;

        margin-bottom: 23px;
    }

    .section-heading > .btn {
        width: 100%;
    }

    .section-eyebrow {
        font-size: 10px;

        letter-spacing: 1px;
    }

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

        gap: 11px;
    }

    .stat-card {
        padding:
            20px 12px;
    }

    .stat-icon {
        width: 43px;
        height: 43px;

        margin-bottom: 9px;

        border-radius: 12px;

        font-size: 17px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-card > span {
        font-size: 11px;
    }

    .course-grid,
    .resource-grid,
    .feature-grid,
    .topic-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .course-card,
    .resource-card,
    .feature-card,
    .topic-card {
        border-radius: 16px;
    }

    .course-body,
    .resource-body {
        padding: 17px;
    }

    .feature-card {
        padding: 21px;
    }

    .topic-card {
        min-height: auto;

        padding: 21px;
    }

    .faq-item summary {
        padding: 16px;
    }

    .faq-answer {
        padding:
            0 16px 17px;
    }

    .cta-box {
        border-radius: 19px;

        padding:
            38px 18px;
    }

    .cta-box h2 {
        font-size: 29px;

        letter-spacing:
            -.8px;
    }

    .cta-actions {
        flex-direction: column;
    }

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

    .contact-card {
        padding: 20px;

        border-radius: 16px;
    }

    .contact-actions {
        flex-direction: column;
    }

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

    .course-footer,
    .resource-footer {
        align-items: stretch;

        flex-direction: column;
    }

    .course-footer .btn,
    .resource-footer .btn {
        width: 100%;
    }

}


/* =========================
   COURSE / RESOURCE ACTIONS
========================= */

.resource-footer,
.course-footer {
    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 10px;
}

.resource-actions {
    display: flex;

    justify-content: flex-end;

    gap: 8px;

    width: 100%;
}