﻿/* =========================================================
   TUTEDUDE DESIGN SYSTEM
   ========================================================= */

:root {
    --td-navy: #101828;
    --td-violet: #6C4CF1;
    --td-violet-dark: #5939D8;
    --td-yellow: #FFC83D;

    --td-background: #F8FAFC;
    --td-white: #FFFFFF;

    --td-text: #101828;
    --td-muted: #667085;

    --td-border: #E4E7EC;

    --td-success: #12B76A;

    --td-radius-sm: 10px;
    --td-radius-md: 14px;
    --td-radius-lg: 20px;

    --td-container: 1200px;
}


/* =========================================================
   GLOBAL RESET
   ========================================================= */

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;

    font-family: 'Inter', sans-serif;

    color: var(--td-text);
    background: var(--td-white);

    font-size: 16px;
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.td-container {
    width: min(var(--td-container), 92%);
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.td-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid var(--td-border);
}

.td-navbar .navbar {
    min-height: 76px;
    padding-top: 10px;
    padding-bottom: 10px;
}


/* LOGO */

.td-logo {
    display: inline-flex;
    align-items: center;

    color: var(--td-navy) !important;
}

.td-logo-text {
    font-size: 24px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: -1px;

    color: var(--td-navy);
}


/* NAVIGATION LINKS */

.td-navbar .nav-link {
    position: relative;

    color: var(--td-text);

    font-size: 15px;
    font-weight: 500;

    padding: 10px 12px !important;

    transition: color 0.2s ease;
}

.td-navbar .nav-link:hover {
    color: var(--td-violet);
}


/* MOBILE TOGGLE */

.td-navbar .navbar-toggler {
    border: 1px solid var(--td-border);

    border-radius: 10px;

    padding: 8px 10px;
}

.td-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(108, 76, 241, 0.12);
}


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.td-btn-primary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 48px;

    padding: 0 22px;

    border-radius: 12px;

    background: var(--td-violet);
    border: 1px solid var(--td-violet);

    color: var(--td-white) !important;

    font-size: 16px;
    font-weight: 600;

    line-height: 1;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.td-btn-primary:hover {
    background: var(--td-violet-dark);
    border-color: var(--td-violet-dark);

    color: var(--td-white) !important;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(108, 76, 241, 0.22);
}


/* =========================================================
   SECONDARY BUTTON
   ========================================================= */

.td-btn-secondary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 48px;

    padding: 0 22px;

    border-radius: 12px;

    background: var(--td-white);

    border: 1px solid var(--td-border);

    color: var(--td-text) !important;

    font-size: 16px;
    font-weight: 600;

    transition: all 0.2s ease;
}

.td-btn-secondary:hover {
    border-color: var(--td-violet);

    color: var(--td-violet) !important;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.td-heading {
    margin: 0;

    font-size: 52px;

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -2px;

    color: var(--td-text);
}

.td-subheading {
    margin: 0;

    font-size: 18px;

    line-height: 1.7;

    color: var(--td-muted);
}


/* =========================================================
   SECTION
   ========================================================= */

.td-section {
    padding: 96px 0;
}


/* =========================================================
   CARDS
   ========================================================= */

.td-card {
    height: 100%;

    background: var(--td-white);

    border: 1px solid var(--td-border);

    border-radius: var(--td-radius-lg);

    padding: 28px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.td-card:hover {
    transform: translateY(-5px);

    border-color: rgba(108, 76, 241, 0.25);

    box-shadow:
        0 18px 45px rgba(16, 24, 40, 0.08);
}




/* =========================================================
   REFUND / DARK SECTION
   ========================================================= */

.td-refund {
    position: relative;

    overflow: hidden;

    background: var(--td-navy);

    color: var(--td-white);
}

.td-refund-label {
    color: var(--td-yellow);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 0.5px;

    text-transform: uppercase;
}

.td-refund-title {
    margin-top: 12px;

    color: var(--td-white);

    font-size: 42px;

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -1px;
}

.td-refund-description {
    max-width: 680px;

    margin-top: 20px;

    color: #98A2B3;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   SMALL BADGE
   ========================================================= */

.td-badge {
    display: inline-flex;

    align-items: center;

    padding: 8px 14px;

    border-radius: 50px;

    background: #F0ECFF;

    color: var(--td-violet);

    font-size: 14px;

    font-weight: 600;
}


/* =========================================================
   COURSE CATEGORY LABEL
   ========================================================= */

.td-eyebrow {
    display: inline-block;

    color: var(--td-violet);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 0.4px;

    text-transform: uppercase;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991px) {

    .td-navbar .navbar-collapse {
        padding: 15px 0 10px;
    }

    .td-navbar .nav-link {
        padding: 10px 0 !important;
    }

    .td-navbar .td-btn-primary {
        width: 100%;
    }

}


@media (max-width: 767px) {

    .td-container {
        width: 90%;
    }

    .td-navbar .navbar {
        min-height: 68px;
    }

    .td-logo-text {
        font-size: 22px;
    }

    .td-section {
        padding: 60px 0;
    }

    .td-heading {
        font-size: 38px;

        letter-spacing: -1.4px;
    }

    .td-subheading {
        font-size: 16px;
    }

    .td-refund-title {
        font-size: 32px;
    }

    .td-refund-description {
        font-size: 16px;
    }

    .td-card {
        padding: 22px;
    }

    .td-footer {
        padding-top: 55px;
    }

    .td-footer-bottom {
        align-items: flex-start;

        flex-direction: column;

        margin-top: 40px;
    }

    .td-footer-legal {
        flex-wrap: wrap;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .td-heading {
        font-size: 34px;
    }

    .td-btn-primary {
        width: 100%;
    }

}

/* =========================================================
   HOME HERO
   ========================================================= */

.td-home-hero {
    padding: 90px 0 75px;
    background: #FFFFFF;
    overflow: hidden;
}


/* Hero Heading */

.td-home-hero-title {
    max-width: 650px;
    margin: 24px 0 0;

    font-size: 56px;
    line-height: 1.07;
    font-weight: 700;

    letter-spacing: -2.5px;

    color: var(--td-navy);
}


.td-home-hero-title span {
    display: inline;
    color: var(--td-violet);
}


/* Hero Description */

.td-home-hero-description {
    max-width: 590px;

    margin: 26px 0 0;

    color: var(--td-muted);

    font-size: 18px;
    line-height: 1.7;
}


/* Hero Buttons */

.td-home-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 32px;
}


/* Proof Strip */

.td-proof-strip {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;

    gap: 28px;

    margin-top: 45px;
    padding-top: 25px;

    border-top: 1px solid var(--td-border);
}


.td-proof-item {
    display: flex;
    flex-direction: column;

    gap: 3px;
}


.td-proof-item strong {
    color: var(--td-navy);

    font-size: 20px;
    line-height: 1.2;

    font-weight: 700;
}


.td-proof-item span {
    color: var(--td-muted);

    font-size: 13px;
    line-height: 1.4;
}


/* Hero Image */

.td-home-hero-image {
    position: relative;

    overflow: hidden;

    border-radius: 24px;

    background: #F2F4F7;

    box-shadow:
        0 25px 60px rgba(16, 24, 40, 0.12);
}


.td-home-hero-image img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;
}


/* =========================================================
   HERO RESPONSIVE
   ========================================================= */

@media (max-width: 1199px) {

    .td-home-hero-title {
        font-size: 50px;
    }

}


@media (max-width: 991px) {

    .td-home-hero {

        padding: 65px 0 60px;

    }


    .td-home-hero-title {

        max-width: 700px;

        font-size: 48px;

    }


    .td-home-hero-description {

        font-size: 17px;

    }


    .td-home-hero-image {

        margin-top: 15px;

    }

}


@media (max-width: 767px) {

    .td-home-hero {

        padding: 50px 0 45px;

    }


    .td-home-hero-title {

        font-size: 38px;

        line-height: 1.1;

        letter-spacing: -1.5px;

    }


    .td-home-hero-description {

        margin-top: 20px;

        font-size: 16px;

    }


    .td-home-hero-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .td-home-hero-actions .td-btn-primary,
    .td-home-hero-actions .td-btn-secondary {

        width: 100%;

    }


    .td-proof-strip {

        gap: 20px;

        margin-top: 35px;

    }


    .td-proof-item {

        min-width: 95px;

    }


    .td-home-hero-image {

        margin-top: 5px;

        border-radius: 18px;

    }

}


@media (max-width: 400px) {

    .td-home-hero-title {

        font-size: 34px;

    }

}

/* =========================================================
   TUTEDUDE OFFICIAL LOGO
   ========================================================= */

.td-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.td-logo-image {
    display: block;
    width: 145px;
    height: auto;
    object-fit: contain;
}


/* Mobile */

@media (max-width: 767px) {

    .td-logo-image {
        width: 125px;
    }

}

/* =========================================================
   COURSES SECTION
   ========================================================= */

.td-courses-section {
    padding: 100px 0;
    background: #F8FAFC;
}


/* Section Header */

.td-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 45px;
}


.td-section-title {
    margin: 10px 0 0;

    max-width: 650px;

    color: var(--td-navy);

    font-size: 42px;
    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -1.5px;
}


.td-section-title span {
    color: var(--td-violet);
}


.td-section-intro {
    max-width: 430px;

    margin: 0;

    color: var(--td-muted);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   COURSE CARD
   ========================================================= */

.td-course-card {
    height: 100%;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: var(--td-white);

    border: 1px solid var(--td-border);

    border-radius: 20px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.td-course-card:hover {

    transform: translateY(-6px);

    border-color: rgba(108, 76, 241, 0.25);

    box-shadow:
        0 20px 45px rgba(16, 24, 40, 0.09);
}


/* Card Top */

.td-course-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 25px 25px 0;
}


/* Course Icon */

.td-course-icon {

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    font-size: 15px;

    font-weight: 800;
}


.td-course-icon-violet {

    background: #F0ECFF;

    color: var(--td-violet);

}


.td-course-icon-yellow {

    background: #FFF4D6;

    color: #8A6500;

}


.td-course-icon-green {

    background: #E5F5F1;

    color: #16796A;

}


/* Level */

.td-course-level {

    display: inline-flex;

    align-items: center;

    padding: 6px 11px;

    border-radius: 50px;

    background: #F2F4F7;

    color: #667085;

    font-size: 12px;

    font-weight: 600;
}


/* Card Content */

.td-course-content {

    flex: 1;

    padding: 25px;
}


.td-course-category {

    display: block;

    margin-bottom: 9px;

    color: var(--td-violet);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.8px;
}


.td-course-title {

    margin: 0;

    color: var(--td-navy);

    font-size: 24px;

    line-height: 1.25;

    font-weight: 700;

    letter-spacing: -0.5px;
}


.td-course-description {

    min-height: 82px;

    margin: 15px 0 0;

    color: var(--td-muted);

    font-size: 15px;

    line-height: 1.65;
}


/* Course Meta */

.td-course-meta {

    display: flex;

    flex-direction: column;

    gap: 9px;

    margin-top: 22px;

    padding-top: 20px;

    border-top: 1px solid #F2F4F7;
}


.td-course-meta span {

    color: #475467;

    font-size: 13px;
}


.td-meta-icon {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    margin-right: 6px;

    border-radius: 50%;

    background: #ECFDF3;

    color: #12B76A;

    font-size: 11px;

    font-weight: 700;
}


/* Card Footer */

.td-course-footer {

    padding: 18px 25px;

    border-top: 1px solid var(--td-border);

    background: #FCFCFD;
}


.td-course-link {

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: var(--td-violet) !important;

    font-size: 14px;

    font-weight: 700;
}


.td-course-link span {

    font-size: 18px;

    transition: transform 0.2s ease;
}


.td-course-link:hover span {

    transform: translateX(4px);

}


/* =========================================================
   COURSES BOTTOM CTA
   ========================================================= */

.td-courses-bottom {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 42px;

    text-align: center;
}


.td-courses-bottom p {

    margin: 0;

    color: var(--td-muted);

    font-size: 14px;
}


.td-courses-bottom a {

    color: var(--td-violet) !important;

    font-size: 14px;

    font-weight: 700;
}


.td-courses-bottom a span {

    display: inline-block;

    margin-left: 3px;

    transition: transform 0.2s ease;
}


.td-courses-bottom a:hover span {

    transform: translateX(4px);

}


/* =========================================================
   COURSES RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .td-courses-section {

        padding: 75px 0;

    }


    .td-section-header {

        display: block;

        margin-bottom: 35px;

    }


    .td-section-intro {

        max-width: 600px;

        margin-top: 18px;

    }

}


@media (max-width: 767px) {

    .td-courses-section {

        padding: 60px 0;

    }


    .td-section-title {

        font-size: 34px;

        letter-spacing: -1px;

    }


    .td-course-content {

        padding: 22px;

    }


    .td-course-top {

        padding: 22px 22px 0;

    }


    .td-course-footer {

        padding: 17px 22px;

    }


    .td-course-description {

        min-height: auto;

    }


    .td-courses-bottom {

        flex-direction: column;

        gap: 5px;

    }

}

/* =========================================================
   HOW IT WORKS
   ========================================================= */

.td-how-section {
    padding: 100px 0;
    background: #FFFFFF;
}


/* Header */

.td-how-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 50px;
}


/* Steps Grid */

.td-how-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


/* Step Card */

.td-how-card {
    position: relative;

    padding: 30px;

    min-height: 350px;

    background: #FFFFFF;

    border: 1px solid var(--td-border);

    border-radius: 20px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.td-how-card:hover {

    transform: translateY(-5px);

    border-color:
        rgba(108, 76, 241, 0.25);

    box-shadow:
        0 18px 45px
        rgba(16, 24, 40, 0.08);
}


/* Number */

.td-how-number {

    position: absolute;

    top: 25px;
    right: 28px;

    color: #D0D5DD;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* Step Icon */

.td-how-icon {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 82px;

    height: 42px;

    padding: 0 14px;

    margin-bottom: 45px;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 700;
}


.td-how-icon-violet {

    background: #F0ECFF;

    color: var(--td-violet);
}


.td-how-icon-yellow {

    background: #FFF4D6;

    color: #8A6500;
}


.td-how-icon-green {

    background: #E5F5F1;

    color: #16796A;
}


/* Heading */

.td-how-card h3 {

    margin: 0;

    color: var(--td-navy);

    font-size: 22px;

    line-height: 1.3;

    font-weight: 700;

    letter-spacing: -0.4px;
}


/* Description */

.td-how-card p {

    margin: 14px 0 0;

    color: var(--td-muted);

    font-size: 15px;

    line-height: 1.65;
}


/* Separator */

.td-how-line {

    width: 100%;

    height: 1px;

    margin-top: 28px;

    background: var(--td-border);
}


/* Small Label */

.td-how-label {

    display: block;

    margin-top: 17px;

    color: #98A2B3;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.8px;
}


/* Bottom Statement */

.td-how-bottom {

    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 28px;

    padding: 22px 25px;

    border-radius: 14px;

    background: #F8FAFC;

    border: 1px solid #EAECF0;
}


.td-how-bottom-icon {

    flex: 0 0 auto;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ECFDF3;

    color: #12B76A;

    font-weight: 700;
}


.td-how-bottom strong {

    display: block;

    color: var(--td-navy);

    font-size: 15px;

    font-weight: 700;
}


.td-how-bottom p {

    margin: 3px 0 0;

    color: var(--td-muted);

    font-size: 13px;
}


/* =========================================================
   HOW IT WORKS RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .td-how-section {

        padding: 75px 0;

    }


    .td-how-header {

        display: block;

        margin-bottom: 35px;

    }


    .td-how-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .td-how-card:last-child {

        grid-column:
            1 / -1;

    }

}


@media (max-width: 767px) {

    .td-how-section {

        padding: 60px 0;

    }


    .td-how-grid {

        grid-template-columns: 1fr;

    }


    .td-how-card:last-child {

        grid-column: auto;

    }


    .td-how-card {

        min-height: auto;

        padding: 25px;

    }


    .td-how-icon {

        margin-bottom: 35px;

    }


    .td-how-bottom {

        align-items: flex-start;

    }

}
/* =========================================================
   REFUND SECTION
   ========================================================= */

.td-refund-section {
    position: relative;

    padding: 105px 0 75px;

      background: #F5F3FF;

   color: var(--td-navy);

    overflow: hidden;
}


/* Subtle background decoration */

.td-refund-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.07);

    pointer-events: none;
}


.td-refund-section::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.05);

    pointer-events: none;
}


/* Refund Label */

.td-refund-label {
    display: inline-block;

    color: var(--td-yellow);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}


/* Refund Heading */

.td-refund-title {
    max-width: 700px;

    margin: 15px 0 0;

   color: var(--td-navy);

    font-size: 48px;

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -1.5px;
}


.td-refund-title span {
    color: var(--td-yellow);
}


/* Description */

.td-refund-description {
    max-width: 650px;

    margin: 22px 0 0;

    color: #475467;

    font-size: 17px;

    line-height: 1.75;
}


/* CTA */

.td-refund-actions {
    margin-top: 30px;
}


/* Refund Note */

..td-refund-note {
    display: flex;

    align-items: center;

    gap: 10px;

    max-width: 620px;

    margin-top: 22px;

    color: #667085;

    font-size: 13px;

    line-height: 1.5;
}


.td-refund-note-icon {
    display: flex;

    flex: 0 0 auto;

    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: rgba(18, 183, 106, 0.15);

    color: #32D583;

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   REFUND VISUAL CARD
   ========================================================= */

.td-refund-card {

    position: relative;

    padding: 32px;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(108, 76, 241, 0.24),
            rgba(108, 76, 241, 0.08)
        );

    
      border: 1px solid rgba(108, 76, 241, 0.25);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.18);
}


.td-refund-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #B8C0CC;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.8px;
}


.td-refund-check {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border-radius: 50%;

    background: rgba(18, 183, 106, 0.18);

    color: #32D583;

    font-size: 15px;

    font-weight: 700;
}


/* 100% */

.td-refund-percentage {

    margin-top: 28px;

    color: var(--td-white);

    font-size: 76px;

    line-height: 0.95;

    font-weight: 800;

    letter-spacing: -4px;
}


.td-refund-money {

    margin-top: 10px;

    color: var(--td-yellow);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;
}


.td-refund-card-text {

    max-width: 370px;

    margin: 22px 0 0;

    color: #B8C0CC;

    font-size: 14px;

    line-height: 1.7;
}


/* Divider */

.td-refund-divider {

    height: 1px;

    margin: 25px 0;

    background: rgba(255, 255, 255, 0.12);
}


/* Mini Journey */

.td-refund-mini-row {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #FFFFFF;

    font-size: 12px;

    font-weight: 600;
}


.td-refund-arrow {

    color: #98A2B3;

    font-size: 14px;
}


/* =========================================================
   REFUND STEPS
   ========================================================= */

.td-refund-steps {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    margin-top: 75px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


.td-refund-step {

    display: flex;

    gap: 18px;

    padding: 30px 25px;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
}


.td-refund-step:last-child {
    border-right: none;
}


.td-refund-step-number {

    color: var(--td-yellow);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.5px;
}


.td-refund-step strong {

    display: block;

    color: var(--td-navy);

    font-size: 15px;

    font-weight: 700;
}


.td-refund-step p {

    margin: 7px 0 0;

    color: #667085;

    font-size: 13px;

    line-height: 1.55;
}


/* =========================================================
   REFUND RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .td-refund-section {
        padding: 80px 0 70px;
    }


    .td-refund-title {
        font-size: 42px;
    }


    .td-refund-card {
        margin-top: 10px;
    }


    .td-refund-steps {
        grid-template-columns: 1fr;
    }


    .td-refund-step {
        border-right: none;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.12);
    }


    .td-refund-step:last-child {
        border-bottom: none;
    }

}


@media (max-width: 767px) {

    .td-refund-section {
        padding: 65px 0 55px;
    }


    .td-refund-title {
        font-size: 34px;

        letter-spacing: -1px;
    }


    .td-refund-description {
        font-size: 16px;
    }


    .td-refund-card {
        padding: 25px;

        border-radius: 18px;
    }


    .td-refund-percentage {
        font-size: 62px;
    }


    .td-refund-mini-row {
        flex-wrap: wrap;
    }


    .td-refund-steps {
        margin-top: 50px;
    }


    .td-refund-step {
        padding: 24px 5px;
    }

}

/* =========================================================
   TUTEDUDE FOOTER
   ========================================================= */

.td-footer {
    background: var(--td-navy) !important;
    color: var(--td-white) !important;
    padding: 55px 0 25px;
    margin: 0;
}


/* =========================================================
   FOOTER BRAND
   ========================================================= */

.td-footer-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}


.td-footer-logo-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 170px;
    height: 58px;

    padding: 8px 13px;

    background: #FFFFFF;

    border-radius: 10px;

    overflow: hidden;
}


.td-footer-logo-image {
    display: block;

    width: 145px;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   FOOTER DESCRIPTION
   ========================================================= */

.td-footer-description {
    max-width: 430px;

    margin: 20px 0 0;

    color: #98A2B3;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   FOOTER MAIN LINK
   ========================================================= */

.td-footer-main-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 22px;

    color: #FFFFFF !important;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition: color 0.2s ease;
}


.td-footer-main-link span {
    transition: transform 0.2s ease;
}


.td-footer-main-link:hover {
    color: #FFFFFF !important;
}


.td-footer-main-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   FOOTER HEADINGS
   ========================================================= */

.td-footer-heading {
    margin: 5px 0 18px;

    color: #FFFFFF;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 0.2px;
}


/* =========================================================
   FOOTER LINKS
   ========================================================= */

.td-footer-links {
    list-style: none;

    padding: 0;

    margin: 0;
}


.td-footer-links li {
    margin-bottom: 13px;
}


.td-footer-links a {
    color: #98A2B3 !important;

    font-size: 14px;

    text-decoration: none;

    transition: color 0.2s ease;
}


.td-footer-links a:hover {
    color: #FFFFFF !important;
}


/* =========================================================
   FOOTER CTA
   ========================================================= */

.td-footer-small {
    max-width: 260px;

    margin: 0;

    color: #98A2B3;

    font-size: 14px;

    line-height: 1.6;
}


.td-footer-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 18px;

    min-height: 44px;

    padding: 0 18px;

    border-radius: 10px;

    background: #FFFFFF;

    color: var(--td-navy) !important;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.td-footer-button:hover {
    background: #F2F4F7;

    color: var(--td-navy) !important;

    transform: translateY(-2px);
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.td-footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 60px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255, 255, 255, 0.12);

    color: #667085;

    font-size: 13px;
}


/* Copyright */

.td-footer-copyright {
    color: #667085;

    font-size: 13px;
}


/* Legal Links */

.td-footer-legal {
    display: flex;

    align-items: center;

    gap: 10px;
}


.td-footer-legal span {
    color: #667085;
}


.td-footer-legal a {
    color: #98A2B3 !important;

    font-size: 13px;

    text-decoration: none;

    transition: color 0.2s ease;
}


.td-footer-legal a:hover {
    color: #FFFFFF !important;
}


/* =========================================================
   FOOTER RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 991px) {

    .td-footer {
        padding: 65px 0 25px;
    }

}


/* =========================================================
   FOOTER RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .td-footer {
        padding: 55px 0 22px;
    }


    .td-footer-logo-box {
        width: 155px;
        height: 54px;

        padding: 7px 11px;
    }


    .td-footer-logo-image {
        width: 132px;
    }


    .td-footer-description {
        max-width: 100%;

        font-size: 14px;
    }


    .td-footer-bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 14px;

        margin-top: 45px;

        padding-top: 20px;
    }


    .td-footer-legal {
        flex-wrap: wrap;
    }

}


/* =========================================================
   FOOTER VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 400px) {

    .td-footer-logo-box {
        width: 145px;
        height: 52px;
    }


    .td-footer-logo-image {
        width: 123px;
    }

}

/* =========================================================
   REFUND CARD - FINAL LIGHT SECTION VERSION
   ========================================================= */

.td-refund-card {
    position: relative;

    padding: 32px;

    border-radius: 22px;

    background: var(--td-navy) !important;

    color: #FFFFFF;

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 25px 55px rgba(16, 24, 40, 0.18);
}


/* Card top */

.td-refund-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #B8C0CC !important;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.8px;
}


/* Green check */

.td-refund-check {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 32px;
    height: 32px;

    border-radius: 50%;

    background: rgba(18, 183, 106, 0.18);

    color: #32D583;

    font-size: 15px;

    font-weight: 700;
}


/* 100% */

.td-refund-percentage {
    margin-top: 28px;

    color: #FFFFFF !important;

    font-size: 76px;

    line-height: 0.95;

    font-weight: 800;

    letter-spacing: -4px;
}


/* MONEY BACK */

.td-refund-money {
    margin-top: 10px;

    color: var(--td-yellow) !important;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* Card description */

.td-refund-card-text {
    max-width: 370px;

    margin: 22px 0 0;

    color: #B8C0CC !important;

    font-size: 14px;

    line-height: 1.7;
}


/* Divider */

.td-refund-divider {
    height: 1px;

    margin: 25px 0;

    background: rgba(255, 255, 255, 0.12);
}


/* Learn → Complete → Claim */

.td-refund-mini-row {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #FFFFFF !important;

    font-size: 12px;

    font-weight: 600;
}


.td-refund-arrow {
    color: #98A2B3 !important;

    font-size: 14px;
}

/* =========================================================
   COURSE DETAILS — HERO
   ========================================================= */

.td-course-hero {
    padding: 85px 0 70px;

    background:
        linear-gradient(
            135deg,
            #FFFFFF 0%,
            #F8F7FF 100%
        );

    overflow: hidden;
}


.td-course-breadcrumb {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 28px;

    color: #98A2B3;

    font-size: 13px;

    font-weight: 500;
}


.td-course-breadcrumb span {
    color: var(--td-violet);
}


/* Category */

.td-course-category {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--td-violet);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.7px;

    text-transform: uppercase;
}


/* Title */

.td-course-title {
    max-width: 680px;

    margin: 0;

    color: var(--td-navy);

    font-size: 58px;

    line-height: 1.04;

    font-weight: 750;

    letter-spacing: -2.5px;
}


.td-course-title span {
    display: block;

    color: var(--td-violet);
}


/* Description */

.td-course-description {
    max-width: 630px;

    margin: 24px 0 0;

    color: #667085;

    font-size: 18px;

    line-height: 1.7;
}


/* Meta */

.td-course-meta {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 25px;

    color: #667085;

    font-size: 14px;
}


.td-course-meta strong {
    color: var(--td-navy);

    font-weight: 700;
}


.td-course-meta-dot {
    color: #D0D5DD;
}


/* Actions */

.td-course-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


/* Trust */

.td-course-trust {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 22px;

    color: #667085;

    font-size: 13px;
}


.td-course-trust-check {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: #ECFDF3;

    color: #12B76A;

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   COURSE VISUAL
   ========================================================= */

.td-course-visual {

    position: relative;

    padding: 20px;

    border-radius: 24px;

    background: var(--td-navy);

    box-shadow:
        0 30px 70px rgba(16, 24, 40, 0.16);

    transform: rotate(1deg);
}


.td-course-visual-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 16px;

    color: #98A2B3;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.8px;
}


.td-course-visual-dot {

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #12B76A;

    box-shadow:
        0 0 0 5px rgba(18, 183, 106, 0.12);
}


/* Browser */

.td-course-screen {

    overflow: hidden;

    border-radius: 14px;

    background: #FFFFFF;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);
}


.td-course-screen-header {

    display: flex;

    align-items: center;

    gap: 6px;

    height: 35px;

    padding: 0 13px;

    background: #F2F4F7;

    border-bottom:
        1px solid #EAECF0;
}


.td-screen-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #D0D5DD;
}


/* Wireframe */

.td-course-wireframe {

    display: flex;

    min-height: 330px;
}


/* Sidebar */

.td-wire-sidebar {

    width: 24%;

    padding: 22px 13px;

    background: #F8F9FC;

    border-right:
        1px solid #EAECF0;
}


.td-wire-logo {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 32px;
    height: 32px;

    margin-bottom: 30px;

    border-radius: 8px;

    background: #F0ECFF;

    color: var(--td-violet);

    font-size: 10px;

    font-weight: 800;
}


.td-wire-line {

    width: 100%;

    height: 7px;

    margin-bottom: 15px;

    border-radius: 5px;

    background: #E4E7EC;
}


.td-wire-line.short {

    width: 65%;
}


/* Content */

.td-wire-content {

    flex: 1;

    padding: 25px;
}


.td-wire-heading {

    width: 58%;

    height: 15px;

    border-radius: 6px;

    background: #101828;
}


.td-wire-subheading {

    width: 42%;

    height: 8px;

    margin-top: 12px;

    border-radius: 5px;

    background: #D0D5DD;
}


/* Cards */

.td-wire-cards {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-top: 30px;
}


.td-wire-cards div {

    height: 70px;

    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            #F0ECFF,
            #F8F7FF
        );

    border:
        1px solid #E4E7EC;
}


/* Large block */

.td-wire-large {

    height: 80px;

    margin-top: 15px;

    border-radius: 10px;

    background: #F2F4F7;
}


/* Caption */

.td-course-visual-caption {

    display: flex;

    flex-direction: column;

    gap: 5px;

    padding: 20px 5px 3px;
}


.td-course-visual-caption strong {

    color: #FFFFFF;

    font-size: 14px;

    font-weight: 700;
}


.td-course-visual-caption span {

    color: #98A2B3;

    font-size: 12px;
}


/* =========================================================
   COURSE HIGHLIGHTS
   ========================================================= */

.td-course-highlights {

    padding: 0 0 75px;

    background:
        linear-gradient(
            135deg,
            #FFFFFF 0%,
            #F8F7FF 100%
        );
}


.td-course-highlight-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border:
        1px solid var(--td-border);

    border-radius: 18px;

    background: #FFFFFF;

    box-shadow:
        0 10px 30px rgba(16, 24, 40, 0.04);

    overflow: hidden;
}


.td-course-highlight {

    display: flex;

    align-items: center;

    gap: 13px;

    min-height: 100px;

    padding: 20px;

    border-right:
        1px solid var(--td-border);
}


.td-course-highlight:last-child {
    border-right: none;
}


.td-highlight-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 auto;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: #ECFDF3;

    color: #12B76A;

    font-size: 13px;

    font-weight: 700;
}


.td-course-highlight strong {

    display: block;

    color: var(--td-navy);

    font-size: 13px;

    font-weight: 700;
}


.td-course-highlight span:not(.td-highlight-icon) {

    display: block;

    margin-top: 3px;

    color: #98A2B3;

    font-size: 11px;

    line-height: 1.4;
}


/* =========================================================
   COURSE HERO RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .td-course-hero {

        padding: 65px 0 55px;

    }


    .td-course-title {

        font-size: 48px;

    }


    .td-course-visual {

        max-width: 620px;

        margin: 15px auto 0;

    }


    .td-course-highlight-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .td-course-highlight:nth-child(2) {

        border-right: none;

    }


    .td-course-highlight:nth-child(-n+2) {

        border-bottom:
            1px solid var(--td-border);

    }

}


@media (max-width: 767px) {

    .td-course-hero {

        padding: 50px 0 45px;

    }


    .td-course-title {

        font-size: 38px;

        letter-spacing: -1.5px;

    }


    .td-course-description {

        font-size: 16px;

    }


    .td-course-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .td-course-actions a {

        width: 100%;

    }


    .td-course-visual {

        padding: 15px;

        border-radius: 18px;

        transform: none;

    }


    .td-course-wireframe {

        min-height: 260px;

    }


    .td-wire-content {

        padding: 18px;

    }


    .td-wire-cards {

        gap: 6px;

    }


    .td-course-highlight-grid {

        grid-template-columns: 1fr;

    }


    .td-course-highlight {

        border-right: none;

        border-bottom:
            1px solid var(--td-border);

    }


    .td-course-highlight:last-child {

        border-bottom: none;

    }

}
/* =========================================================
   COURSE DETAILS — WHAT YOU'LL LEARN
   ========================================================= */

.td-learning-section {
    padding: 100px 0;

    background: #FFFFFF;
}


/* Left title */

.td-learning-title {
    max-width: 380px;

    margin: 14px 0 0;

    color: var(--td-navy);

    font-size: 44px;

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -1.5px;
}


.td-learning-title span {
    color: var(--td-violet);
}


/* Intro */

.td-learning-intro {
    max-width: 390px;

    margin: 20px 0 0;

    color: var(--td-muted);

    font-size: 16px;

    line-height: 1.7;
}


/* Learning note */

.td-learning-note {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    max-width: 390px;

    margin-top: 30px;

    padding: 18px;

    border-radius: 14px;

    background: #F8F7FF;

    border: 1px solid #E9E4FF;
}


.td-learning-note-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 auto;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: #ECFDF3;

    color: #12B76A;

    font-size: 12px;

    font-weight: 700;
}


.td-learning-note strong {

    display: block;

    color: var(--td-navy);

    font-size: 14px;

    font-weight: 700;
}


.td-learning-note p {

    margin: 4px 0 0;

    color: var(--td-muted);

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   LEARNING LIST
   ========================================================= */

.td-learning-list {

    border-top:
        1px solid var(--td-border);
}


.td-learning-item {

    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 18px;

    padding: 25px 0;

    border-bottom:
        1px solid var(--td-border);

    transition:
        padding-left 0.2s ease,
        background 0.2s ease;
}


.td-learning-item:hover {

    padding-left: 8px;
}


.td-learning-number {

    color: var(--td-violet);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.5px;

    padding-top: 3px;
}


.td-learning-item h3 {

    margin: 0;

    color: var(--td-navy);

    font-size: 18px;

    line-height: 1.35;

    font-weight: 700;
}


.td-learning-item p {

    max-width: 650px;

    margin: 7px 0 0;

    color: var(--td-muted);

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================================
   LEARNING RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .td-learning-section {

        padding: 75px 0;

    }


    .td-learning-title {

        font-size: 38px;

    }


    .td-learning-intro {

        max-width: 600px;

    }


    .td-learning-note {

        max-width: 600px;

        margin-bottom: 25px;

    }

}


@media (max-width: 767px) {

    .td-learning-section {

        padding: 60px 0;

    }


    .td-learning-title {

        font-size: 34px;

        letter-spacing: -1px;

    }


    .td-learning-item {

        grid-template-columns: 42px 1fr;

        gap: 10px;

        padding: 21px 0;

    }


    .td-learning-item h3 {

        font-size: 16px;

    }


    .td-learning-item p {

        font-size: 13px;

    }

}
/* =========================================================
   COURSE DETAILS — PROJECTS
   ========================================================= */

.td-projects-section {
    padding: 100px 0;

    background: #F8FAFC;
}


/* Header */

.td-projects-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 50px;
}


.td-projects-title {

    max-width: 600px;

    margin: 14px 0 0;

    color: var(--td-navy);

    font-size: 44px;

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -1.5px;
}


.td-projects-title span {
    color: var(--td-violet);
}


.td-projects-intro {

    max-width: 390px;

    margin: 0;

    color: var(--td-muted);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   PROJECT CARD
   ========================================================= */

.td-project-card {

    height: 100%;

    overflow: hidden;

    background: #FFFFFF;

    border:
        1px solid var(--td-border);

    border-radius: 20px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.td-project-card:hover {

    transform: translateY(-6px);

    border-color:
        rgba(108, 76, 241, 0.25);

    box-shadow:
        0 20px 45px
        rgba(16, 24, 40, 0.08);
}


/* =========================================================
   PROJECT VISUAL
   ========================================================= */

.td-project-visual {

    display: flex;

    align-items: center;

    justify-content: center;

    height: 235px;

    padding: 25px;

    overflow: hidden;
}


.td-project-violet {

    background:
        linear-gradient(
            145deg,
            #F0ECFF,
            #E8E2FF
        );
}


.td-project-yellow {

    background:
        linear-gradient(
            145deg,
            #FFF7DD,
            #FFF0BE
        );
}


.td-project-green {

    background:
        linear-gradient(
            145deg,
            #E8F8F4,
            #DDF2EC
        );
}


/* =========================================================
   PROJECT 1 — MOBILE
   ========================================================= */

.td-project-window {

    width: 230px;

    padding: 10px;

    border-radius: 12px;

    background: #FFFFFF;

    box-shadow:
        0 18px 35px
        rgba(16, 24, 40, 0.15);

    transform: rotate(-3deg);
}


.td-project-window-top {

    display: flex;

    gap: 4px;

    padding: 4px 3px 8px;
}


.td-project-window-top span {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #D0D5DD;
}


.td-project-phone {

    width: 100%;

    padding: 15px;

    border-radius: 9px;

    background: #F8F7FF;
}


.td-project-phone-top {

    width: 50%;

    height: 8px;

    margin-bottom: 15px;

    border-radius: 5px;

    background: var(--td-navy);
}


.td-project-phone-image {

    height: 55px;

    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            #DCD4FF,
            #F0ECFF
        );
}


.td-project-phone-line {

    width: 85%;

    height: 7px;

    margin-top: 13px;

    border-radius: 5px;

    background: #D0D5DD;
}


.td-project-phone-line.short {

    width: 55%;

    margin-top: 7px;
}


.td-project-phone-button {

    width: 60%;

    height: 18px;

    margin-top: 15px;

    border-radius: 5px;

    background: var(--td-violet);
}


/* =========================================================
   PROJECT 2 — DASHBOARD
   ========================================================= */

.td-project-dashboard {

    display: flex;

    width: 280px;

    height: 160px;

    overflow: hidden;

    border-radius: 12px;

    background: #FFFFFF;

    box-shadow:
        0 18px 35px
        rgba(16, 24, 40, 0.14);

    transform: rotate(2deg);
}


.td-dashboard-sidebar {

    width: 24%;

    background: #F8F9FC;

    border-right:
        1px solid #EAECF0;
}


.td-dashboard-main {

    flex: 1;

    padding: 15px;
}


.td-dashboard-heading {

    width: 55%;

    height: 9px;

    border-radius: 5px;

    background: var(--td-navy);
}


.td-dashboard-row {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 7px;

    margin-top: 18px;
}


.td-dashboard-row div {

    height: 35px;

    border-radius: 6px;

    background: #FFF4D6;

    border:
        1px solid #F3E2A7;
}


.td-dashboard-large {

    height: 50px;

    margin-top: 10px;

    border-radius: 7px;

    background: #F2F4F7;
}


/* =========================================================
   PROJECT 3 — BROWSER
   ========================================================= */

.td-project-browser {

    width: 280px;

    overflow: hidden;

    border-radius: 11px;

    background: #FFFFFF;

    box-shadow:
        0 18px 35px
        rgba(16, 24, 40, 0.14);

    transform: rotate(-2deg);
}


.td-browser-top {

    display: flex;

    gap: 4px;

    padding: 8px;

    background: #F2F4F7;

    border-bottom:
        1px solid #EAECF0;
}


.td-browser-top span {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #D0D5DD;
}


.td-browser-body {

    position: relative;

    min-height: 145px;

    padding: 18px;
}


.td-browser-heading {

    width: 45%;

    height: 11px;

    border-radius: 5px;

    background: var(--td-navy);
}


.td-browser-text {

    width: 65%;

    height: 7px;

    margin-top: 10px;

    border-radius: 5px;

    background: #D0D5DD;
}


.td-browser-button {

    width: 65px;

    height: 20px;

    margin-top: 15px;

    border-radius: 5px;

    background: #16796A;
}


.td-browser-image {

    position: absolute;

    right: 15px;

    bottom: 15px;

    width: 85px;

    height: 65px;

    border-radius: 7px;

    background: #E5F5F1;
}


/* =========================================================
   PROJECT CONTENT
   ========================================================= */

.td-project-content {

    padding: 25px;
}


.td-project-number {

    color: var(--td-violet);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.8px;
}


.td-project-content h3 {

    margin: 8px 0 0;

    color: var(--td-navy);

    font-size: 21px;

    font-weight: 700;

    letter-spacing: -0.3px;
}


.td-project-content p {

    margin: 10px 0 0;

    color: var(--td-muted);

    font-size: 14px;

    line-height: 1.65;
}


/* Tags */

.td-project-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 20px;
}


.td-project-tags span {

    padding: 5px 9px;

    border-radius: 6px;

    background: #F2F4F7;

    color: #667085;

    font-size: 10px;

    font-weight: 600;
}


/* =========================================================
   PROJECT BOTTOM
   ========================================================= */

.td-projects-bottom {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 30px;

    padding: 20px 22px;

    border:
        1px solid #E4E7EC;

    border-radius: 14px;

    background: #FFFFFF;
}


.td-projects-bottom-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 auto;

    width: 35px;
    height: 35px;

    border-radius: 50%;

    background: #F0ECFF;

    color: var(--td-violet);

    font-weight: 700;
}


.td-projects-bottom strong {

    display: block;

    color: var(--td-navy);

    font-size: 14px;

    font-weight: 700;
}


.td-projects-bottom p {

    margin: 3px 0 0;

    color: var(--td-muted);

    font-size: 12px;
}


/* =========================================================
   PROJECT RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .td-projects-section {

        padding: 75px 0;

    }


    .td-projects-header {

        display: block;

        margin-bottom: 35px;

    }


    .td-projects-intro {

        max-width: 600px;

        margin-top: 18px;

    }

}


@media (max-width: 767px) {

    .td-projects-section {

        padding: 60px 0;

    }


    .td-projects-title {

        font-size: 34px;

        letter-spacing: -1px;

    }


    .td-project-visual {

        height: 210px;

    }


    .td-projects-bottom {

        align-items: flex-start;

    }

}

/* =========================================================
   COURSE DETAILS — MENTORSHIP & COMMUNITY
   ========================================================= */

.td-mentorship-section {

    padding: 110px 0;

    background: #FFFFFF;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.td-mentorship-title {

    max-width: 520px;

    margin: 14px 0 0;

    color: var(--td-navy);

    font-size: 46px;

    line-height: 1.1;

    font-weight: 700;

    letter-spacing: -1.6px;
}


.td-mentorship-title span {

    color: var(--td-violet);
}


.td-mentorship-description {

    max-width: 520px;

    margin: 22px 0 0;

    color: var(--td-muted);

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   POINTS
   ========================================================= */

.td-mentorship-points {

    margin-top: 35px;

    display: flex;

    flex-direction: column;

    gap: 24px;
}


.td-mentorship-point {

    display: flex;

    align-items: flex-start;

    gap: 14px;
}


.td-mentorship-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 auto;

    width: 34px;

    height: 34px;

    border-radius: 50%;

    background: #ECFDF3;

    color: #12B76A;

    font-size: 13px;

    font-weight: 700;
}


.td-mentorship-point h3 {

    margin: 0;

    color: var(--td-navy);

    font-size: 16px;

    font-weight: 700;
}


.td-mentorship-point p {

    max-width: 420px;

    margin: 4px 0 0;

    color: var(--td-muted);

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   COMMUNITY VISUAL
   ========================================================= */

.td-mentorship-visual {

    position: relative;

    padding: 30px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #F0ECFF,
            #F8FAFC
        );

    border: 1px solid #E4E0FF;

    box-shadow:
        0 25px 60px
        rgba(16, 24, 40, 0.08);

    overflow: hidden;
}


/* decorative circle */

.td-mentorship-visual::before {

    content: "";

    position: absolute;

    width: 190px;

    height: 190px;

    border-radius: 50%;

    top: -80px;

    right: -70px;

    background: #E6DEFF;

    opacity: 0.65;
}


/* =========================================================
   COMMUNITY HEADER
   ========================================================= */

.td-mentor-header {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 12px;

    padding-bottom: 22px;

    border-bottom: 1px solid #E4E7EC;
}


.td-mentor-avatar {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 44px;

    height: 44px;

    border-radius: 12px;

    background: var(--td-violet);

    color: #FFFFFF;

    font-size: 13px;

    font-weight: 700;
}


.td-mentor-header strong {

    display: block;

    color: var(--td-navy);

    font-size: 14px;

    font-weight: 700;
}


.td-mentor-header span {

    display: block;

    margin-top: 2px;

    color: var(--td-muted);

    font-size: 11px;
}


.td-online-dot {

    width: 9px;

    height: 9px;

    margin-left: auto;

    border-radius: 50%;

    background: #12B76A;

    box-shadow:
        0 0 0 4px #D1FADF;
}


/* =========================================================
   MESSAGES
   ========================================================= */

.td-message {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-top: 24px;
}


.td-message-right {

    justify-content: flex-end;
}


.td-message-avatar {

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 auto;

    width: 30px;

    height: 30px;

    border-radius: 50%;

    background: #FFFFFF;

    border: 1px solid #DDD8FF;

    color: var(--td-violet);

    font-size: 10px;

    font-weight: 700;
}


.td-message-bubble {

    max-width: 310px;

    padding: 12px 15px;

    border-radius: 12px;

    background: #FFFFFF;

    border: 1px solid #E4E7EC;

    box-shadow:
        0 6px 18px
        rgba(16, 24, 40, 0.04);
}


.td-message-bubble strong {

    display: block;

    color: var(--td-navy);

    font-size: 11px;

    font-weight: 700;
}


.td-message-bubble p {

    margin: 4px 0 0;

    color: var(--td-muted);

    font-size: 12px;

    line-height: 1.5;
}


/* Mentor message */

.td-mentor-bubble {

    background: var(--td-violet);

    border-color: var(--td-violet);
}


.td-mentor-bubble strong,
.td-mentor-bubble p {

    color: #FFFFFF;
}


.td-mentor-avatar-small {

    background: #FFF4D6;

    border-color: #F3E2A7;

    color: #8A6500;
}


/* =========================================================
   COMMUNITY STATUS
   ========================================================= */

.td-community-status {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

    padding-top: 20px;

    border-top: 1px solid #E4E7EC;

    color: var(--td-navy);

    font-size: 12px;

    font-weight: 600;
}


.td-community-check {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 26px;

    height: 26px;

    border-radius: 50%;

    background: #ECFDF3;

    color: #12B76A;

    font-size: 11px;

    font-weight: 700;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .td-mentorship-section {

        padding: 80px 0;

    }


    .td-mentorship-title {

        font-size: 40px;

    }


    .td-mentorship-visual {

        margin-top: 10px;

    }

}


@media (max-width: 767px) {

    .td-mentorship-section {

        padding: 60px 0;

    }


    .td-mentorship-title {

        font-size: 34px;

        letter-spacing: -1px;

    }


    .td-mentorship-description {

        font-size: 16px;

    }


    .td-mentorship-visual {

        padding: 20px;

        border-radius: 18px;

    }


    .td-message-bubble {

        max-width: 240px;

    }

}

/* =========================================================
   COURSE DETAILS — FINAL ENROLLMENT CTA
   ========================================================= */

.td-enroll-section {

    padding: 95px 0;

    background: #F8FAFC;
}


.td-enroll-box {

    position: relative;

    overflow: hidden;

    padding: 55px 60px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #F0ECFF 0%,
            #FFFFFF 55%,
            #F8F7FF 100%
        );

    border: 1px solid #DDD8FF;

    box-shadow:
        0 20px 50px
        rgba(16, 24, 40, 0.06);
}


/* Decorative circles */

.td-enroll-box::before {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    right: -110px;

    top: -130px;

    border-radius: 50%;

    background: #E6DEFF;

    opacity: 0.55;
}


.td-enroll-box::after {

    content: "";

    position: absolute;

    width: 160px;

    height: 160px;

    left: -90px;

    bottom: -90px;

    border-radius: 50%;

    background: #FFF4D6;

    opacity: 0.7;
}


/* Keep content above decorations */

.td-enroll-box .row {

    position: relative;

    z-index: 2;
}


/* Eyebrow */

.td-enroll-eyebrow {

    display: inline-block;

    color: var(--td-violet);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.8px;

}


/* Title */

.td-enroll-title {

    max-width: 600px;

    margin: 12px 0 0;

    color: var(--td-navy);

    font-size: 42px;

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -1.4px;
}


.td-enroll-title span {

    color: var(--td-violet);

}


/* Description */

.td-enroll-description {

    max-width: 600px;

    margin: 18px 0 0;

    color: var(--td-muted);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   ENROLL ACTION
   ========================================================= */

.td-enroll-action {

    position: relative;

    z-index: 2;

    padding: 25px;

    border-radius: 18px;

    background: #FFFFFF;

    border: 1px solid #E4E7EC;

    box-shadow:
        0 15px 35px
        rgba(16, 24, 40, 0.08);
}


.td-enroll-price {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding-bottom: 18px;

    margin-bottom: 18px;

    border-bottom:
        1px solid #EAECF0;
}


.td-enroll-price span {

    color: #98A2B3;

    font-size: 12px;

    font-weight: 500;
}


.td-enroll-price strong {

    color: var(--td-navy);

    font-size: 15px;

    font-weight: 700;
}


.td-enroll-button {

    width: 100%;

    min-height: 52px;
}


.td-enroll-note {

    margin: 13px 0 0;

    color: #98A2B3;

    font-size: 11px;

    line-height: 1.5;

    text-align: center;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .td-enroll-section {

        padding: 75px 0;

    }


    .td-enroll-box {

        padding: 45px;

    }


    .td-enroll-title {

        font-size: 38px;

    }

}


@media (max-width: 767px) {

    .td-enroll-section {

        padding: 60px 0;

    }


    .td-enroll-box {

        padding: 30px 22px;

        border-radius: 18px;

    }


    .td-enroll-title {

        font-size: 32px;

        letter-spacing: -1px;

    }


    .td-enroll-description {

        font-size: 15px;

    }


    .td-enroll-action {

        padding: 20px;

    }

}

/* =========================================================
   COURSE DETAILS — FAQ
   ========================================================= */

.td-faq-section {

    padding: 100px 0;

    background: #F8FAFC;
}


.td-faq-title {

    max-width: 390px;

    margin: 14px 0 0;

    color: var(--td-navy);

    font-size: 42px;

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -1.4px;
}


.td-faq-title span {

    display: block;

    color: var(--td-violet);
}


.td-faq-intro {

    max-width: 390px;

    margin: 20px 0 0;

    color: var(--td-muted);

    font-size: 15px;

    line-height: 1.7;
}


/* FAQ list */

.td-faq-list {

    border-top: 1px solid var(--td-border);
}


.td-faq-item {

    border-bottom: 1px solid var(--td-border);

    background: transparent;
}


/* Question */

.td-faq-item summary {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 23px 5px;

    cursor: pointer;

    list-style: none;

    color: var(--td-navy);

    font-size: 16px;

    font-weight: 700;
}


.td-faq-item summary::-webkit-details-marker {

    display: none;
}


.td-faq-item summary::marker {

    display: none;
}


.td-faq-plus {

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 auto;

    width: 28px;

    height: 28px;

    border-radius: 50%;

    background: #FFFFFF;

    border: 1px solid var(--td-border);

    color: var(--td-violet);

    font-size: 18px;

    font-weight: 400;

    transition: transform 0.2s ease;
}


.td-faq-item[open] .td-faq-plus {

    transform: rotate(45deg);

}


/* Answer */

.td-faq-answer {

    max-width: 700px;

    padding: 0 55px 23px 5px;

    color: var(--td-muted);

    font-size: 14px;

    line-height: 1.7;
}


/* Hover */

.td-faq-item summary:hover {

    color: var(--td-violet);

}


/* Responsive */

@media (max-width: 991px) {

    .td-faq-section {

        padding: 75px 0;

    }


    .td-faq-title {

        font-size: 38px;

    }

}


@media (max-width: 767px) {

    .td-faq-section {

        padding: 60px 0;

    }


    .td-faq-title {

        font-size: 34px;

    }


    .td-faq-item summary {

        padding: 20px 0;

        font-size: 15px;

    }


    .td-faq-answer {

        padding-left: 0;

        padding-right: 25px;

        font-size: 13px;

    }

}