@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* CSS Variables for theming */
:root {
    --primary-teal: #49BBBD;
    --secondary-teal: #a4dcdd;
    /* #626381
    #9DCCFF  */

    --primary-teal-dark: #3DA4A6;
    --accent-orange: #F48C06;
    --accent-pink: #E94B7F;
    --accent-purple: #9B59B6;
    --text-dark: #2C3E50;
    --text-gray: #5D6C7B;
    --text-light: #8392A5;
    --white: #FFFFFF;
    --bg-light: #F8FAFB;
    --shadow-sm: 0 2px 8px rgba(73, 187, 189, 0.1);
    --shadow-md: 0 4px 20px rgba(73, 187, 189, 0.15);
    --shadow-lg: 0 8px 32px rgba(73, 187, 189, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    
}

/* body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
} */

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* background: var(--primary-teal); */
    background: white;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-greeting {
    color: var(--primary-teal);
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-login {
    padding: 0.6rem 1.75rem;
    background: var(--white);
    color: var(--primary-teal);
    text-decoration: none;
    border: 2px solid var(--primary-teal);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border: none;
}

.btn-signup {
    padding: 0.6rem 1.75rem;
    background: var(--primary-teal);
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    background: var(--white);
    color: var(--primary-teal);
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #6DD5DA 100%);
    padding: 140px 2rem 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 2.9rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--accent-orange);
    display: inline-block;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-teal);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.btn-play {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

.btn-play svg {
    width: 32px;
    height: 32px;
    background: var(--white);
    color: var(--primary-teal);
    border-radius: 50%;
    padding: 0.4rem;
    transition: all 0.3s ease;
}

.btn-play:hover {
    transform: translateX(5px);
}

.btn-play:hover svg {
    transform: scale(1.1);
}

/* ===== HERO IMAGE ===== */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.student-img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* ===== FLOATING CARDS ===== */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.card-students {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.card-congrats {
    top: 35%;
    right: -5%;
    animation-delay: 0.5s;
}

.card-class {
    bottom: 20%;
    left: 10%;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    animation-delay: 1s;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.calendar-icon {
    background: linear-gradient(135deg, #5DB0F5 0%, #4A90E2 100%);
}

.email-icon {
    background: linear-gradient(135deg, #FFA36C 0%, #FF8866 100%);
}

.card-content {
    flex: 1;
}

.card-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.card-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.card-subtitle {
    font-size: 0.8rem;
    color: var(--text-light);
}

.card-time {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-join-now {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-pink) 0%, #D83F6E 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(233, 75, 127, 0.3);
}

.btn-join-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(233, 75, 127, 0.4);
}

/* ===== DECORATIVE ICON ===== */
.decorative-icon {
    position: absolute;
    top: 5%;
    right: 10%;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-pink) 0%, #D83F6E 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
    z-index: 3;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ===== WAVE BACKGROUND ===== */
.wave-background {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.wave-background svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ===== SUCCESS SECTION ===== */
.success-section {
    background: var(--white);
    padding: 2rem 6rem 2rem ;
}

.success-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 0.8s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }
.stat-item:nth-child(5) { animation-delay: 0.5s; }

.stat-number {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* ===== CLOUD SECTION ===== */
.cloud-section {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.cloud-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.highlight-cloud {
    color: var(--primary-teal);
}



.ft-success {
    /* padding: 80px 20px; */
    background-color: var(--white);
}

.ft-success__container {
    max-width: 1200px;
    margin: 0 auto;
}

.ft-success__header {
    text-align: center;
    margin-bottom: 60px;
}

.ft-success__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.ft-success__subtitle {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.ft-success__stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.ft-success__stat {
    text-align: center;
}

.ft-success__stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 8px;
}

.ft-success__stat-label {
    font-size: 14px;
    color: var(--text-gray);
}

.ft-success__software {
    text-align: center;
    margin-bottom: 60px;
}

.ft-success__software-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.ft-success__software-highlight {
    color: var(--primary-teal);
}

.ft-success__software-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

.ft-success__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 10px;
    margin-bottom: 20px;
    /* box-shadow: 0 8px 8px -4px #49BBBD; */
}

.ft-success__feature {
    text-align: center;
    padding: 20px;
    box-shadow: 0 8px 8px -4px #49BBBD;
}

.ft-success__feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

.ft-success__feature:hover .ft-success__feature-icon {
    transform: translateY(-5px);
}

.ft-success__feature-icon--blue {
    background-color: #5B72EE;
    color: var(--white);
}

.ft-success__feature-icon--teal {
    background-color: var(--primary-teal);
    color: var(--white);
}

.ft-success__feature-icon--cyan {
    background-color: #29B9E7;
    color: var(--white);
}

.ft-success__feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

.ft-success__feature-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}


.ft-what-is {
    padding: 60px 0px;
    background-color: var(--bg-light);
    position: relative;
}

.ft-what-is__container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.ft-what-is__header {
    text-align: center;
    margin-bottom: 50px;
}

.ft-what-is__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.ft-what-is__title-highlight {
    color: var(--primary-teal);
}

.ft-what-is__subtitle {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Cards */
.ft-what-is__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.ft-what-is__card {
    height: 280px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), 
                url('../images/i-code-instructors.JPG');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.ft-what-is__card:hover {
    transform: translateY(-5px);
}

.ft-what-is__card--students {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)), 
                url('../images/i-code-students.JPG');
    background-size: cover;
    background-position: center;
}

.ft-what-is__card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.ft-what-is__card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ft-what-is__card-button {
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--white);
    background-color: transparent;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ft-what-is__card-button:hover {
    background-color: var(--white);
    color: var(--text-dark);
}

.ft-what-is__card-button--teal {
    border-color: var(--primary-teal);
    background-color: var(--primary-teal);
}

.ft-what-is__card-button--teal:hover {
    background-color: var(--primary-teal-dark);
    border-color: var(--primary-teal-dark);
    color: var(--white);
}

/* Physical Classroom Section */
.ft-what-is__physical {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.ft-what-is__physical-content {
    position: relative;
}

.ft-what-is__physical-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00FF87, var(--primary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
}

.ft-what-is__physical-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 20px;
}

.ft-what-is__physical-highlight {
    color: var(--primary-teal);
}

.ft-what-is__physical-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.ft-what-is__physical-link {
    color: var(--primary-teal);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.ft-what-is__physical-link:hover {
    gap: 12px;
}

.ft-what-is__physical-link::after {
    content: '→';
}

.ft-what-is__physical-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ft-what-is__physical-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.ft-what-is__physical-decoration {
    position: absolute;
    border-radius: 20px;
}

.ft-what-is__physical-decoration--1 {
    width: 120px;
    height: 120px;
    background: var(--primary-teal);
    bottom: -20px;
    right: -20px;
    opacity: 0.3;
}

.ft-what-is__physical-decoration--2 {
    width: 80px;
    height: 80px;
    background: #00FF87;
    top: -15px;
    right: -15px;
    opacity: 0.5;
}

/* Features Section */
.ft-what-is__features-section {
    background-color: var(--white);
    border-radius: 30px;
    padding: 60px 40px;
    
    
}

.ft-what-is__features-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 12px;
}

.ft-what-is__features-highlight {
    color: var(--primary-teal);
}

.ft-what-is__features-subtitle {
    font-size: 15px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 60px;
}

/* Feature Blocks */
.ft-what-is__feature-block {
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.ft-what-is__feature-block--reverse {
    margin-bottom: 0;
}

.ft-what-is__feature-block--reverse .ft-what-is__feature-content {
    order: 1;
}

.ft-what-is__feature-block--reverse .ft-what-is__feature-visual {
    order: 2;
}

.ft-what-is__feature-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 30px;
}

.ft-what-is__feature-title-highlight {
    color: var(--primary-teal);
}

.ft-what-is__feature-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.ft-what-is__feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ft-what-is__feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.ft-what-is__feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--primary-teal);
}

.ft-what-is__feature-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Avatars Visual */
.ft-what-is__feature-visual {
    position: relative;
}

.ft-what-is__avatars {
    position: relative;
}

.ft-what-is__avatar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 400px;
}

.ft-what-is__avatar-item {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.ft-what-is__avatar-item:nth-child(4),
.ft-what-is__avatar-item:nth-child(5) {
    grid-column: span 1;
}

.ft-what-is__avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ft-what-is__status-badges {
    position: absolute;
    bottom: -20px;
    left: 20px;
    display: flex;
    gap: 10px;
}

.ft-what-is__badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.ft-what-is__badge--present {
    background-color: #5B72EE;
    color: var(--white);
}

.ft-what-is__badge--call {
    background-color: var(--accent-pink);
    color: var(--white);
}

.ft-what-is__badge--message {
    background-color: var(--primary-teal);
    color: var(--white);
}

/* Teacher Image */
.ft-what-is__teacher-image {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.ft-what-is__teacher-image img {
    width: 100%;
    border-radius: 200px 200px 20px 20px;
    box-shadow: var(--shadow-lg);
}

/* Decorative Elements */
.ft-what-is__decoration-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.ft-what-is__decoration-blob--1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00FF87, var(--primary-teal));
    top: -30px;
    left: -30px;
}

.ft-what-is__decoration-blob--2 {
    width: 60px;
    height: 60px;
    background: var(--primary-teal);
    bottom: -20px;
    right: -20px;
}

.ft-what-is__decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid;
}

.ft-what-is__decoration-circle--1 {
    width: 40px;
    height: 40px;
    border-color: var(--primary-teal);
    top: 50%;
    right: -50px;
}

.ft-what-is__decoration-circle--2 {
    width: 60px;
    height: 60px;
    border-color: var(--accent-pink);
    top: -30px;
    right: 50px;
}

.ft-what-is__decoration-circle--3 {
    width: 50px;
    height: 50px;
    border-color: #5B72EE;
    bottom: 100px;
    left: -40px;
}

.ft-what-is__decoration-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.ft-what-is__decoration-dot--1 {
    background-color: var(--accent-orange);
    bottom: 200px;
    right: -20px;
}

.ft-what-is__decoration-dot--2 {
    background-color: #5B72EE;
    top: 100px;
    left: -30px;
}

.ft-what-is__decoration-icon {
    position: absolute;
    color: var(--primary-teal);
    opacity: 0.7;
}

.ft-what-is__decoration-icon--1 {
    top: 50px;
    right: -40px;
}

.ft-what-is__decoration-icon--2 {
    bottom: 150px;
    left: -40px;
}

/* COURSES */
.ft-explore {
    padding: 80px 20px;
    background: linear-gradient(135deg, #E8F4F8 0%, #F5F5F5 50%, #FEFEFE 100%);
    position: relative;
}

.ft-explore__container {
    max-width: 1400px;
    margin: 0 auto;
}

.ft-explore__header {
    margin-bottom: 50px;
}

.ft-explore__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.ft-explore__subtitle {
    font-size: 15px;
    color: var(--text-gray);
}

/* Category */
.ft-explore__category {
    margin-bottom: 60px;
}

.ft-explore__category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.ft-explore__category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.ft-explore__category-title svg {
    color: var(--primary-teal);
}

.ft-explore__see-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-teal);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.ft-explore__see-all:hover {
    gap: 12px;
}

/* Horizontal Scroll Container */
.ft-explore__scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 20px 0 40px 0;
    scroll-behavior: smooth;
}

.ft-explore__scroll-container::-webkit-scrollbar {
    height: 8px;
}

.ft-explore__scroll-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.ft-explore__scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary-teal);
    border-radius: 10px;
}

.ft-explore__scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-teal-dark);
}

/* Pill Wrapper with rotation */
.ft-explore__pill-wrapper {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 35px;
    padding: 10px;
    transform: rotate(-8deg);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.ft-explore__pill-wrapper:hover {
    transform: rotate(0deg) translateY(-10px);
}

/* Pills */
.ft-explore__pill {
    width: 90px;
    height: 400px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    cursor: pointer;
}

.ft-explore__pill-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    white-space: nowrap;
}

.ft-explore__pill--orange {
    background: linear-gradient(180deg, #FF8A3D 0%, #FF6B1A 100%);
}

.ft-explore__pill--coral {
    background: linear-gradient(180deg, #FF7E7E 0%, #FF5757 100%);
}

.ft-explore__pill--brown {
    background: linear-gradient(180deg, #C49B6C 0%, #A67C52 100%);
}

.ft-explore__pill--yellow {
    background: linear-gradient(180deg, #FFD93D 0%, #FFC107 100%);
}

.ft-explore__pill--purple {
    background: linear-gradient(180deg, #C490E4 0%, #A569BD 100%);
}

.ft-explore__pill--blue {
    background: linear-gradient(180deg, #6DB9F7 0%, #3498DB 100%);
}

.ft-explore__pill--green {
    background: linear-gradient(180deg, #82D8A8 0%, #5FBEAA 100%);
}

.ft-explore__pill--teal {
    background: linear-gradient(180deg, #66D9D9 0%, var(--primary-teal) 100%);
}

/* Card */
.ft-explore__card {
    flex-shrink: 0;
    width: 380px;
    background-color: var(--white);
    border-radius: 24px;
    border: 2px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ft-explore__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.ft-explore__card--bordered {
    border: 3px solid #E94B7F;
}

.ft-explore__card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.ft-explore__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ft-explore__card-image--gradient {
    background: linear-gradient(180deg, #1A3A52 0%, #2D5F7F 50%, #E8A598 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ft-explore__gradient-content {
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.ft-explore__gradient-subtitle {
    font-size: 12px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.ft-explore__gradient-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ft-explore__gradient-text {
    font-size: 13px;
    opacity: 0.9;
}

.ft-explore__card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-teal);
    letter-spacing: 0.5px;
}

.ft-explore__card-content {
    padding: 24px;
}

.ft-explore__card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.ft-explore__card-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.ft-explore__card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ft-explore__card-rating {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ft-explore__stars {
    display: flex;
    gap: 4px;
}

.ft-explore__price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.ft-explore__card-button {
    padding: 12px 28px;
    background-color: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.ft-explore__card-button:hover {
    background-color: var(--primary-teal);
    color: var(--white);
    transform: scale(1.05);
}

/*Testimonial*/
.ft-testimonial-section {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        padding: 60px 20px;
    }

    .ft-testimonial-left {
        padding-right: 40px;
    }

    .ft-testimonial-label {
        font-size: 13px;
        font-weight: 500;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .ft-testimonial-label::before {
        content: '';
        width: 40px;
        height: 2px;
        background-color: var(--text-light);
    }

    .ft-testimonial-title {
        font-size: 42px;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 24px;
        line-height: 1.3;
    }

    .ft-testimonial-description {
        font-size: 16px;
        color: var(--text-gray);
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .ft-testimonial-cta {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 14px 32px;
        background-color: transparent;
        border: 2px solid var(--primary-teal);
        border-radius: 50px;
        color: var(--primary-teal);
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        margin-top: 12px;
    }

    .ft-testimonial-cta:hover {
        background-color: var(--primary-teal);
        color: var(--white);
        box-shadow: var(--shadow-md);
    }

    .ft-testimonial-cta svg {
        width: 20px;
        height: 20px;
        transition: transform 0.3s ease;
    }

    .ft-testimonial-cta:hover svg {
        transform: translateX(4px);
    }

    .ft-testimonial-right {
        position: relative;
    }

    .ft-testimonial-card-container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ft-student-image {
        width: 300px;
        height: 350px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
    }

    .ft-testimonial-card {
        position: absolute;
        bottom: -30px;
        right: -50px;
        background-color: var(--white);
        padding: 28px 32px;
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
        max-width: 380px;
        border-left: 4px solid var(--accent-orange);
    }

    .ft-testimonial-quote {
        font-size: 14px;
        color: var(--text-gray);
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .ft-testimonial-author {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .ft-author-name {
        font-size: 15px;
        font-weight: 600;
        color: var(--text-dark);
    }

    .ft-testimonial-rating {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .ft-stars {
        display: flex;
        gap: 3px;
    }

    .ft-star {
        color: var(--accent-orange);
        font-size: 16px;
    }

    .ft-rating-source {
        font-size: 11px;
        color: var(--text-light);
        margin-top: 4px;
    }

    .ft-nav-arrow {
        position: absolute;
        top: 50%;
        right: -20px;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background-color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-md);
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
    }

    .ft-nav-arrow:hover {
        background-color: var(--primary-teal);
        box-shadow: var(--shadow-lg);
    }

    .ft-nav-arrow:hover svg {
        stroke: var(--white);
    }

    .ft-nav-arrow svg {
        width: 24px;
        height: 24px;
        stroke: var(--primary-teal);
        transition: stroke 0.3s ease;
    }

/* ===========================
     ft-membership: Pricing Section
     =========================== */
  .ft-membership-pricing {
    padding: 72px 24px 80px;
    background: #fff;
  }

  .ft-membership-pricing__title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
    font-style: normal;
    color: var(--primary-teal);
    margin: 50px 0 56px;
    letter-spacing: -0.5px;
  }

  .ft-membership-pricing__cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    /* max-width: 960px; */
    margin: 0 auto;
    flex-wrap: wrap;
  }

  /* ===========================
     ft-membership: Card Base
     =========================== */
  .ft-membership-card {
    background: var(--ft-white);
    border: 1px solid var(--ft-border);
    border-radius: 16px;
    padding: 32px 28px;
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: var(--ft-card-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
  }

  .ft-membership-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.14);

  }

  .ft-membership-card--featured {
    border-color: transparent;
    box-shadow: var(--ft-featured-shadow);
    transform: translateY(-4px);
    z-index: 2;
  }

  .ft-membership-card--featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 64px rgba(62,207,178,0.25);
  }

  /* Header row for featured card */
  .ft-membership-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
  }

  /* ===========================
     ft-membership: Card Label
     =========================== */
  .ft-membership-card__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ft-muted);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .ft-membership-card__label--teal {
    color: var(--ft-teal);
    margin-bottom: 12px;
  }

  /* ===========================
     ft-membership: Badge
     =========================== */
  .ft-membership-card__badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--ft-teal-dark);
    border: 1.5px solid var(--ft-teal);
    border-radius: 999px;
    padding: 2px 10px;
    text-transform: uppercase;
  }

  /* ===========================
     ft-membership: Price
     =========================== */
  .ft-membership-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 28px;
  }

  .ft-membership-card__amount {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--ft-text);
    letter-spacing: -1px;
    line-height: 1;
  }

  .ft-membership-card__period {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ft-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* ===========================
     ft-membership: Features List
     =========================== */
  .ft-membership-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
  }

  .ft-membership-card__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--ft-text);
  }

  /* ===========================
     ft-membership: Check Icons
     =========================== */
  .ft-membership-card__check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--ft-border);
    color: var(--ft-muted);
  }

  .ft-membership-card__check--gold {
    background: var(--ft-gold);
    color: var(--ft-white);
  }

  .ft-membership-card__check--teal {
    background: var(--ft-teal);
    color: var(--ft-white);
  }

  /* ===========================
     ft-membership: Buttons
     =========================== */
  .ft-membership-card__btn {
    display: block;
    text-align: center;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
  }

   

  .ft-membership-card__btn--outline {
    border: 1.5px solid var(--primary-teal);
    color: var(--primary-teal);
    background: transparent;
  }

  .ft-membership-card__btn--outline:hover {
    border-color: #ffffff;
    background: var(--primary-teal);
    color: #ffffff;

  }

  .ft-membership-card__btn--solid {
    background: var(--primary-teal);
    color: var(--ft-white);
    border: 1.5px solid var(--primary-teal);
  }

  .ft-membership-card__btn--solid:hover {
    background: var(--primary-teal);
    
  }

  /* ===========================
     ft-membership: CTA Section
     =========================== */
  .ft-membership-cta {
    background: #252641;
    border-radius: 20px;
    margin: 0 24px;
    padding: 72px 24px;
    text-align: center;
    color: #ffffff;
  }

  .ft-membership-cta__inner {
    max-width: 680px;
    margin: 0 auto;
  }

  .ft-membership-cta__title {
    color: #ffffff;
    font-size: 1.65rem;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.3;
  }

  .ft-membership-cta__text {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 36px;
  }

  .ft-membership-cta__btn {
    display: inline-block;
    background: var(--primary-teal);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.15s ease;
  }

  .ft-membership-cta__btn:hover {
    background: var(--primary-teal);
    transform: translateY(-2px);
  }

  /* FAQ */
    /* ===========================
     ft-membership: FAQ Section
     =========================== */
  .ft-membership-faq {
    padding: 72px 24px 80px;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
  }

  .ft-membership-faq__title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2D3436;
    margin: 0 0 48px;
    letter-spacing: -0.3px;
  }

  .ft-membership-faq__list {
    display: flex;
    flex-direction: column;
  }
 

  /* ===========================
     ft-membership: FAQ Item
     =========================== */
  .ft-membership-faq__item {
    border-bottom: 1px solid #2D3436;;
  }

  .ft-membership-faq__item:first-child {
    border-top: 1px solid #2D3436;
  }

  .ft-membership-faq__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 4px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
  }

  .ft-membership-faq__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3ecfb2;
    flex-shrink: 0;
  }

  .ft-membership-faq__question {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ft-text);
  }

  .ft-membership-faq__icon {
    color: var(--ft-muted);
    flex-shrink: 0;
    transition: transform 0.25s ease;
  }

  .ft-membership-faq__icon--open {
    color: var(--ft-teal);
  }

  /* ===========================
     ft-membership: FAQ Answer
     =========================== */
  .ft-membership-faq__answer {
    display: none;
    padding: 0 4px 20px 38px;
  }

  .ft-membership-faq__answer--visible {
    display: block;
  }

  .ft-membership-faq__answer p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--ft-muted);
    margin: 0;
  }

  /* ===========================
     ft-membership: Testimonials Section
     =========================== */
  .ft-membership-testimonials {
    /* background: #9DCCFF; */
    background: #ebf5ff;
    padding: 64px 0 72px;
   
  }

  .ft-membership-testimonials__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ft-text);
    margin: 0 0 36px 60px;
    letter-spacing: -0.2px;
  }

  /* ===========================
     ft-membership: Carousel Wrapper
     =========================== */
  .ft-membership-testimonials__wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
  }

  .ft-membership-testimonials__track-outer {
    flex: 1;
    overflow: hidden;
  }

  .ft-membership-testimonials__track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    will-change: transform;
    padding: 12px 4px;
  }

  /* ===========================
     ft-membership: Nav Buttons
     =========================== */
  .ft-membership-testimonials__nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-teal);
    border: none;
    color: var(--ft-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    margin: 0 12px;
    transition: background 0.2s ease, transform 0.15s ease;
    box-shadow: 0 4px 12px rgba(62, 207, 178, 0.35);
    z-index: 2;
  }

  .ft-membership-testimonials__nav:hover {
    background: var(--ft-teal-dark);
    transform: scale(1.05);
  }

  /* ===========================
     ft-membership: Testimonial Card
     =========================== */
  .ft-membership-testimonial-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 24px;
    min-width: 210px;
    flex: 0 0 calc(25% - 16px);
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .ft-membership-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  }

  .ft-membership-testimonial-card__avatar {
    width: 76px;
    height: 76px;
    border-radius: 10px;
    object-fit: cover;
    margin: 0 auto 14px;
    display: block;
    background: #e5e7eb;
  }

  .ft-membership-testimonial-card__name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ft-text);
    margin: 0 0 10px;
  }

  .ft-membership-testimonial-card__text {
    font-size: 0.82rem;
    line-height: 1.65;
    color: var(--ft-muted);
    margin: 0;
  }



/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .floating-card {
        scale: 0.85;
    }
}

@media (max-width: 968px) {
    .ft-what-is__physical,
    .ft-what-is__feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ft-what-is__feature-block--reverse .ft-what-is__feature-content {
        order: 2;
    }

    .ft-what-is__feature-block--reverse .ft-what-is__feature-visual {
        order: 1;
    }

    .ft-what-is__features-section {
        padding: 40px 20px;
    }
    .ft-testimonial-section {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .ft-testimonial-left {
            padding-right: 0;
            text-align: center;
        }

        .ft-testimonial-label {
            justify-content: center;
        }

        .ft-testimonial-title {
            font-size: 36px;
        }

        .ft-testimonial-card {
            position: static;
            margin-top: 30px;
            max-width: 100%;
        }

        .ft-nav-arrow {
            top: 40%;
            right: 10px;
        }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 120px 1.5rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .floating-card {
        scale: 0.7;
    }

    .card-class {
        bottom: 10%;
        left: 5%;
    }

       .ft-success {
        padding: 60px 20px;
    }

    .ft-success__title {
        font-size: 28px;
    }

    .ft-success__stats {
        gap: 40px;
    }

    .ft-success__stat-number {
        font-size: 36px;
    }

    .ft-success__software-title {
        font-size: 24px;
    }

    .ft-success__features {
        grid-template-columns: 1fr;
    }

    .ft-what-is {
        padding: 60px 20px;
    }

    .ft-what-is__title,
    .ft-what-is__features-title {
        font-size: 28px;
    }

    .ft-what-is__cards {
        grid-template-columns: 1fr;
    }

    .ft-what-is__physical-title,
    .ft-what-is__feature-title {
        font-size: 24px;
    }

    .ft-what-is__avatar-grid {
        max-width: 100%;
    }

     .ft-explore {
        padding: 60px 15px;
    }

    .ft-explore__title {
        font-size: 28px;
    }

    .ft-explore__card {
        width: 320px;
    }

    .ft-explore__pill {
        width: 80px;
        height: 220px;
    }

    .ft-explore__scroll-container {
        gap: 15px;
    }

    .ft-explore__pill-wrapper {
        padding: 8px;
    }

    /*Membership*/
    .ft-membership-pricing__cards {
      flex-direction: column;
      align-items: center;
    }

    .ft-membership-card {
      max-width: 100%;
      width: 100%;
    }

    .ft-membership-card--featured {
      transform: none;
    }

    .ft-membership-cta {
      margin: 0 12px;
      padding: 48px 20px;
    }

    .ft-membership-pricing__title {
      font-size: 1.9rem;
    }
    /* FAQ */
    .ft-membership-faq {
      padding: 48px 16px 56px;
    }

    .ft-membership-faq__title {
      font-size: 1.35rem;
    }

    .ft-membership-testimonials__title {
      margin-left: 24px;
      font-size: 1.2rem;
    }

    .ft-membership-testimonial-card {
      flex: 0 0 calc(80% - 16px);
    }
}

@media (max-width: 640px) {
        .ft-testimonial-title {
            font-size: 28px;
        }

        .ft-student-image {
            width: 250px;
            height: 300px;
        }

        .ft-testimonial-card {
            padding: 20px 24px;
        }
    }




@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }
}