/* ===================================
   AI Course Landing Page - YKK Style (Minimalist)
   ================================= */

/* CSS Variables */
:root {
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-text: #1a1a1a;
    --color-text-light: #666666;
    --primary: #2EA9DF;
    --primary-dark: #1a8bc4;
    --color-accent: #2EA9DF;
    /* Corporate Blue */
    --color-accent-hover: #1a8bc4;
    --color-border: #e5e7eb;

    --font-heading: 'Noto Sans TC', sans-serif;
    --font-body: 'Noto Sans TC', sans-serif;

    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 120px;

    --container-width: 1280px;
    --header-height: 80px;

    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Prevent horizontal scroll on body */
body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

/* Prevent horizontal scroll on sections and body */
section,
header,
footer {
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.section-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    display: block;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 24px;
}

.section-desc {
    color: var(--color-text-light);
    font-size: 1.125rem;
    max-width: 600px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: var(--color-accent);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(44, 90, 255, 0.2);
}

.btn-dark {
    background-color: #1a1a1a;
    color: white;
}

.btn-dark:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* ===================================
   Header
   ================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
}

.header-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav a {
    font-size: 0.9375rem;
    font-weight: 500;
}

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

.nav-cta {
    padding: 10px 24px;
    background: var(--color-accent);
    color: white !important;
    border-radius: 4px;
}

.nav-cta:hover {
    background: var(--color-accent-hover);
}

.nav-enterprise {
    position: relative;
    padding: 6px 14px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white !important;
    border-radius: 20px;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    transition: all 0.3s ease;
}

.nav-enterprise:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
}

/* ===================================
   Hero Section - Premium Redesign
   ================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
    background: #0a0a0a;
}

/* Subtle accent decoration */
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 169, 223, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 169, 223, 0.1) 0%, transparent 70%);
    z-index: 0;
}

/* Grid pattern overlay - simplified */
.hero-grid-pattern {
    display: none;
}

/* Floating orbs - hidden for clean design */
.hero-orb {
    display: none;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 680px;
    padding-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #5cc7e8;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 169, 223, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(46, 169, 223, 0.3);
}

.hero-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 28px;
    color: white;
    letter-spacing: -0.03em;
}

.hero-highlight {
    display: inline-block;
    margin-top: 8px;
    background: linear-gradient(90deg, #1a8bc4 0%, var(--primary) 50%, #5cc7e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-features {
    margin-bottom: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-features li {
    font-size: 0.9375rem;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.hero-features li:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(46, 169, 223, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.hero-features li svg {
    color: #22c55e;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #4f7aff 100%);
    box-shadow: 0 8px 32px rgba(44, 90, 255, 0.35);
    border: none;
    position: relative;
    overflow: hidden;
}

.hero-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-cta .btn-primary:hover::before {
    left: 100%;
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(44, 90, 255, 0.5);
}

.hero-cta .btn-outline {
    border-color: var(--color-border);
    color: var(--color-text);
}

.hero-cta .btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.hero-image {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-image.instructor-hero {
    position: relative;
    align-self: flex-end;
}

.hero-image.instructor-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(46, 169, 223, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.hero-image.instructor-hero img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6));
    transform-origin: bottom center;
    margin-bottom: -100px;
}

/* Instructor Name Tag */
.instructor-name-tag {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 20px 28px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.instructor-name-tag .name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text);
}

.instructor-name-tag .title {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

/* Instructor Info Overlay (Desktop & Mobile) */
.instructor-info-overlay {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.85) 60%, transparent 100%);
    padding: 80px 24px 40px;
}

.instructor-info-overlay .instructor-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.instructor-info-overlay .instructor-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.instructor-info-overlay .badge {
    font-size: 0.9rem;
    padding: 12px 22px;
    background: rgba(46, 169, 223, 0.15);
    border: 1px solid rgba(46, 169, 223, 0.4);
    border-radius: 28px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Floating Stats Badges */
.hero-floating-badge {
    position: absolute;
    background: white;
    padding: 14px 22px;
    border-radius: 14px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
    z-index: 5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-floating-badge.badge-1 {
    top: 25%;
    right: 10%;
}

.hero-floating-badge.badge-2 {
    bottom: 25%;
    right: 5%;
}

.hero-floating-badge .badge-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-floating-badge .badge-icon.purple {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
}

@keyframes float {

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

    50% {
        transform: translateY(-15px);
    }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
    color: var(--color-text-light);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-text-light);
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0;
    }
}

/* ===================================
   Partners Section (Logos)
   ================================= */
.partners {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid var(--color-border);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* Center appropriately */
    gap: 48px;
    /* Larger gap for logos */
    margin-top: 32px;
}

.partner-logo {
    height: 40px;
    /* Fixed height for consistency */
    width: auto;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

@media (max-width: 768px) {

    /* Hero Mobile Responsive */
    .hero {
        min-height: auto;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .hero-label {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
        color: #22d3ee;
    }

    .hero-title {
        color: white;
    }

    .hero-title .highlight {
        color: #22d3ee;
    }

    .hero-description {
        color: rgba(255, 255, 255, 0.8);
    }

    .hero-stats .stat-number {
        color: white;
    }

    .hero-stats .stat-label {
        color: rgba(255, 255, 255, 0.6);
    }

    .hero::after {
        width: 200px;
        height: 200px;
        top: 20%;
        right: -50px;
    }

    .hero .container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .hero-content {
        max-width: 100%;
        padding-bottom: 0;
        order: 1;
    }

    .hero-label {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .hero-title br {
        display: none;
    }

    .hero-description {
        font-size: 0.875rem;
        margin-bottom: 20px;
        line-height: 1.7;
    }

    .hero-features {
        justify-content: center;
        gap: 6px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .hero-features li {
        font-size: 0.7rem;
        padding: 6px 10px;
        gap: 4px;
    }

    .hero-features li svg {
        width: 10px;
        height: 10px;
    }

    .hero-cta {
        order: 3;
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-top: 32px;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 14px 24px;
    }

    .hero-image {
        order: 2;
        flex: none;
        width: 100%;
        max-width: 320px;
        margin: 10px auto 0;
        position: relative;
    }

    .hero-image.instructor-hero img {
        max-height: 320px;
        transform: none !important;
        transform-origin: center center;
        object-fit: contain;
        width: 100%;
        margin-bottom: 0;
    }

    .hero-image.instructor-hero::before {
        display: block;
        width: 280px;
        height: 280px;
        background: radial-gradient(circle, rgba(46, 169, 223, 0.4) 0%, transparent 70%);
        filter: blur(50px);
        bottom: 20%;
    }

    .hero-image.instructor-hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 4px;
        background: linear-gradient(90deg, transparent, rgba(46, 169, 223, 0.5), transparent);
        border-radius: 2px;
    }

    .instructor-name-tag {
        display: none;
    }

    .hero-floating-badge {
        display: none;
    }

    /* Mobile Instructor Info */
    .instructor-info-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 50px 16px 20px;
        background: linear-gradient(to top, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.8) 70%, transparent 100%);
    }

    .instructor-info-overlay .instructor-name {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    .instructor-info-overlay .instructor-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .instructor-info-overlay .badge {
        font-size: 0.75rem;
        padding: 8px 14px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-orb {
        display: none;
    }

    .hero-grid-pattern {
        opacity: 0.3;
    }

    /* Partners Mobile */
    .partners-grid {
        gap: 24px;
    }

    .partner-logo {
        height: 30px;
    }
}


/* ===================================
   Stats Section
   ================================= */
.stats {
    padding: var(--spacing-lg) 0;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: var(--color-border);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1;
    color: var(--color-accent);
}

.stat-unit {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.stat-label {
    margin-top: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-light);
}

/* Hide stats on mobile */
@media (max-width: 768px) {
    .stats {
        display: none;
    }
}

/* ===================================
   About Section
   ================================= */
.about {
    padding: var(--spacing-xl) 0;
}

.about .section-title {
    margin-bottom: var(--spacing-lg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-card {
    padding-top: 24px;
    border-top: 1px solid var(--color-text);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
}

.about-number {
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-text-light);
    margin-bottom: 24px;
    font-family: 'Times New Roman', serif;
    font-style: italic;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.about-card p {
    color: var(--color-text-light);
}

/* Email Form in About Section */
.about-cta {
    margin-top: 60px;
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, #f8faff 0%, #e8f0ff 100%);
    border-radius: 24px;
    border: 1px solid rgba(44, 90, 255, 0.1);
}

.about-cta-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-text);
}

.email-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

.email-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 16px 20px;
    font-size: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.email-form input[type="email"]:focus {
    border-color: var(--color-accent);
}

.email-form button {
    white-space: nowrap;
    border: none;
    outline: none;
    background: var(--primary);
}

.email-form button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 169, 223, 0.3);
}

/* ===================================
   Message Section
   ================================= */
.message {
    padding: var(--spacing-xl) 0;
    background-color: #f0f2f5;
    overflow: hidden;
}

.message-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.message-text {
    flex: 1;
}

.message-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 32px;
}

.text-accent {
    color: var(--color-accent);
    position: relative;
    display: inline-block;
}

.text-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(44, 90, 255, 0.1);
    z-index: -1;
}

.message-desc {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.message-image {
    flex: 1;
    position: relative;
}

.message-image img {
    border-radius: 4px;
    box-shadow: 20px 20px 0 var(--color-accent);
}

/* ===================================
   Curriculum Section
   ================================= */
.curriculum {
    padding: var(--spacing-xl) 0;
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tool-card {
    background: white;
    border: 1px solid var(--color-border);
    padding: 28px;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.tool-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

/* Tool Logos */
.tool-logo-img {
    height: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-logo-img img {
    height: 100%;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.tool-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.tool-card p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Schedule List Style */
.center-align {
    text-align: center;
}

.price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
    margin-bottom: 48px;
}

.price-label {
    background: var(--color-accent);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 700;
}

.price-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-text);
}

.price-original {
    text-decoration: line-through;
    color: var(--color-text-light);
    font-size: 1rem;
}

.price-note {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.schedule-list {
    max-width: 900px;
    margin: 0 auto;
    font-family: var(--font-heading);
}

.schedule-month-group {
    margin-bottom: 48px;
}

.month-title {
    font-size: 1.25rem;
    color: var(--color-text);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-text);
    margin-bottom: 0;
}

.schedule-item {
    display: grid;
    grid-template-columns: 100px 140px 1fr 120px;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
    transition: background-color 0.2s ease;
}

.schedule-item:hover {
    background-color: #fafafa;
}

.date-col {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.date-col .date {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
}

.date-col .day {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.time-col {
    font-family: 'Times New Roman', serif;
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.info-col {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-col .location {
    color: var(--color-text);
    font-weight: 500;
}

.info-col .status {
    font-size: 0.75rem;
    padding: 2px 8px;
    border: 1px solid #22c55e;
    color: #22c55e;
    border-radius: 20px;
}

.info-col .status.highlight {
    background: #fff1f2;
    border-color: #ef4444;
    color: #ef4444;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.schedule-note {
    text-align: center;
    margin-top: 48px;
    color: var(--color-text-light);
    font-size: 0.875rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .schedule-item {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 12px;
    }

    .date-col {
        grid-column: 1 / -1;
    }

    .time-col {
        grid-column: 1 / -1;
    }

    .info-col {
        grid-column: 1 / 2;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .action-col {
        grid-column: 2 / 3;
        display: flex;
        justify-content: flex-end;
    }

    .price-tag {
        flex-direction: column;
        gap: 4px;
    }
}

.tool-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.tool-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.tool-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.tool-more {
    background: var(--color-bg-alt);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px dashed var(--color-border);
}

/* ===================================
   Format Section
   ================================= */
.format {
    padding: var(--spacing-xl) 0;
    background-color: #1a1a1a;
    color: white;
}

.format-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.format-image {
    flex: 1;
}

.format-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.format-text {
    flex: 1;
}

.format .section-label {
    color: var(--color-accent);
}

.format-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 24px;
    line-height: 1.8;
}

.format-features {
    margin-top: 40px;
    display: grid;
    gap: 24px;
}

.format-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-num {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-accent);
    background: rgba(44, 90, 255, 0.15);
    padding: 8px 14px;
    border-radius: 8px;
    flex-shrink: 0;
}

.format-feature h4 {
    margin-bottom: 4px;
    font-size: 1.125rem;
    color: white;
}

.format-feature p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

@media (max-width: 768px) {
    .format-content {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .format-image img {
        max-height: 300px;
        object-fit: cover;
    }
}

/* ===================================
   Transformation Section
   ================================= */
.transformation {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
}

.transform-roles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.transform-role-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.transform-role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--color-accent);
}

.role-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.role-icon {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 90, 255, 0.05);
    /* Accent faint bg */
    border-radius: 12px;
}

.role-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.role-comparison {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.comparison-row.negative {
    background: #fdf2f2;
    /* Light red/pink */
    color: #cc0000;
}

.comparison-row.positive {
    background: #f0fdf4;
    /* Light green */
    color: #166534;
    font-weight: 600;
}

.arrow-down {
    text-align: center;
    color: var(--color-border);
    font-size: 1.2rem;
    margin: 4px 0;
}

.cross,
.check {
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .transform-roles-grid {
        grid-template-columns: 1fr;
    }

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

/* ===================================
   Testimonials Section
   ================================= */
.testimonials {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-alt);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1rem;
    font-style: italic;
    color: #444;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 0.9375rem;
}

.author-title {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

/* ===================================
   Instructor Section
   ================================= */
.instructor {
    padding: var(--spacing-xl) 0;
}

.instructor-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.instructor-image img {
    width: 100%;
    box-shadow: -20px -20px 0 #f0f2f5;
}

.instructor-name {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.instructor-title {
    color: var(--color-accent);
    margin-bottom: 32px;
    font-weight: 500;
}

.instructor-credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 12px;
}

.credential-tag {
    font-size: 1.5rem;
}

.instructor-experience {
    margin-bottom: 32px;
}

.instructor-experience h4 {
    margin-bottom: 16px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.experience-tags span {
    padding: 6px 16px;
    background: #f0f2f5;
    border-radius: 50px;
    font-size: 0.875rem;
    color: #444;
}

.instructor-quote {
    padding: 24px;
    background: rgba(44, 90, 255, 0.05);
    border-left: 3px solid var(--color-accent);
    font-style: italic;
    color: #444;
}

/* ===================================
   Enterprise Section
   ================================= */
.enterprise {
    padding: var(--spacing-xl) 0;
    background-color: #111;
    color: white;
}

.enterprise .section-label {
    color: var(--color-accent);
}

.enterprise-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 60px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 40px 0;
}

.enterprise-stat {
    text-align: center;
}

.enterprise-stat .stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.enterprise-stat .stat-text {
    color: #888;
    font-size: 0.9375rem;
}

.enterprise-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.enterprise-industries {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.industry-card {
    background: #222;
    padding: 24px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.industry-card:hover {
    background: #333;
    transform: translateY(-4px);
}

.industry-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.enterprise-cta {
    text-align: center;
}

.enterprise-cta p {
    margin-bottom: 24px;
    font-size: 1.25rem;
}

.enterprise-cta .btn-outline {
    border-color: #555;
    color: white;
}

.enterprise-cta .btn-outline:hover {
    border-color: white;
    background: white;
    color: black;
}

/* ===================================
   Tool Logos
   ================================= */
.tool-logo-img {
    height: 48px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.tool-logo-img img {
    height: 100%;
    width: auto;
    max-width: 100%;
}

/* ===================================
   Schedule Section (List Style)
   ================================= */
.schedule {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg);
}

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

.price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
    margin-bottom: 48px;
}

.price-label {
    background: var(--color-accent);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 700;
}

.price-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-text);
}

.price-original {
    text-decoration: line-through;
    color: var(--color-text-light);
    font-size: 1rem;
}

.price-note {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.schedule-list {
    max-width: 900px;
    margin: 0 auto;
    font-family: var(--font-heading);
}

.schedule-month-group {
    margin-bottom: 48px;
}

.month-title {
    font-size: 1.25rem;
    color: var(--color-text);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-text);
    margin-bottom: 0;
}

.schedule-item {
    display: grid;
    grid-template-columns: 100px 140px 1fr 120px;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
    transition: background-color 0.2s ease;
}

.schedule-item:hover {
    background-color: #fafafa;
}

.date-col {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.date-col .date {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
}

.date-col .day {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.time-col {
    font-family: 'Times New Roman', serif;
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.info-col {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-col .location {
    color: var(--color-text);
    font-weight: 500;
}

.info-col .status {
    font-size: 0.75rem;
    padding: 2px 8px;
    border: 1px solid #22c55e;
    color: #22c55e;
    border-radius: 20px;
}

.info-col .status.highlight {
    background: #fff1f2;
    border-color: #ef4444;
    color: #ef4444;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.schedule-note {
    text-align: center;
    margin-top: 48px;
    color: var(--color-text-light);
    font-size: 0.875rem;
    line-height: 1.8;
}

/* ===================================
   Final CTA
   ================================= */
.final-cta {
    padding: 100px 0;
    background: #f0f2f5;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.final-cta p {
    color: var(--color-text-light);
    margin-bottom: 40px;
}

/* ===================================
   Footer
   ================================= */
.footer {
    padding: 60px 0 30px;
    background: white;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.footer-links a {
    margin-left: 32px;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    color: #999;
    font-size: 0.8125rem;
    padding-top: 32px;
    border-top: 1px solid #f0f0f0;
}

/* ===================================
   Animations
   ================================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive
   ================================= */
/* ===================================
   Animations & Lively Effects
   ================================= */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

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

@keyframes pulse-soft {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 90, 255, 0.2);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(44, 90, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(44, 90, 255, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-image img {
    animation: fadeInUp 1s ease-out;
}

.tool-card:hover .tool-icon,
.tool-card:hover .tool-logo-img {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.schedule-popular {
    animation: pulse-soft 2s infinite;
}

.about-card.highlight-card {
    border: 3px solid var(--color-accent);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(44, 90, 255, 0.03) 100%);
    box-shadow: 0 15px 40px rgba(44, 90, 255, 0.1);
    transform: scale(1.02);
    position: relative;
    overflow: hidden;
}

.about-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(44, 90, 255, 0.08);
    color: var(--color-accent);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.highlight-card .about-badge {
    background: var(--color-accent);
    color: white;
}

.highlight-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(44, 90, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}


.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Staggered Animation for grids */
.tools-grid .tool-card:nth-child(1) {
    transition-delay: 0.1s;
}

.tools-grid .tool-card:nth-child(2) {
    transition-delay: 0.2s;
}

.tools-grid .tool-card:nth-child(3) {
    transition-delay: 0.3s;
}

.tools-grid .tool-card:nth-child(4) {
    transition-delay: 0.4s;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero {
        height: auto;
        padding-top: 100px;
    }

    .hero .container {
        flex-direction: column;
        justify-content: center;
        gap: 60px;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
        padding-bottom: 20px;
        max-width: 100%;
        padding-left: 24px;
    }

    .hero-label {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-image {
        width: 100%;
        height: auto;
        max-height: 500px;
        flex: auto;
    }

    .hero-image.instructor-hero img {
        max-height: 500px;
        width: auto;
        max-width: 100%;
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
        transform: scale(1.8);
        transform-origin: bottom center;
    }

    .hero-scroll {
        display: none;
    }

    .message-content,
    .format-content,
    .instructor-content {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid,
    .about-grid,
    .enterprise-industries {
        grid-template-columns: repeat(2, 1fr);
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .schedule-card.featured {
        transform: none;
    }

    .transform-grid {
        flex-direction: column;
    }

    .transform-arrow {
        transform: rotate(90deg);
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
        --spacing-xl: 60px;
        --spacing-lg: 40px;
    }

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

    .hero-title {
        font-size: 2.4rem;
        white-space: normal;
    }

    .header .nav {
        display: none;
        /* Hide nav links on mobile for now */
    }

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

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

    .about-cta {
        padding: 32px 24px;
    }

    .about-cta-text {
        font-size: 1.25rem;
    }

    .enterprise-stats {
        flex-direction: column;
        gap: 32px;
    }

    .enterprise-gallery {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .footer-links a {
        display: block;
        margin: 16px 0;
    }
}

/* ===================================
   Market Insight Section
   ================================= */
.market-insight {
    padding: var(--spacing-xl) 0;
    background: #f8faff;
    position: relative;
    overflow: hidden;
}

.market-insight::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(44, 90, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.insight-row {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.insight-chart-col {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.insight-chart-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: left;
    width: 100%;
    max-width: 400px;
}

.chart-container {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(44, 90, 255, 0.08);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.pie-chart {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(var(--color-accent) 0% 5%,
            #e0e7ff 5% 100%);
    margin: 0 auto 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pie-chart::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
}

.pie-center {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-accent);
}

.pie-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.pie-label {
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 4px;
    color: var(--color-text-main);
}

.chart-caption {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.chart-subcaption {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 8px;
}

.insight-text-col {
    flex: 1;
}

.insight-subtitle {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.insight-desc {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 8px;
}

.insight-points {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.insight-point {
    padding-left: 24px;
    border-left: 3px solid #e0e7ff;
    transition: all 0.3s ease;
}

.insight-point:hover {
    border-left-color: var(--color-accent);
}

.insight-point h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.insight-point p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Format Section styles moved to line 1019 */


@media (max-width: 900px) {
    .insight-row {
        flex-direction: column;
        gap: 40px;
    }

    .insight-chart-col {
        flex: auto;
        width: 100%;
        text-align: left;
    }

    .insight-chart-col .section-title {
        text-align: left;
    }

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

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

/* ===================================
   FAQ Section
   ================================= */
.faq {
    padding: var(--spacing-xl) 0;
    background: #f8faff;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.faq-item {
    margin-bottom: 16px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(44, 90, 255, 0.08);
    border-color: rgba(44, 90, 255, 0.3);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    margin-left: 16px;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    border-top-color: #f0f0f0;
}

.faq-answer p {
    padding: 20px 24px;
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .faq-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ===================================
   Hero Redesign Tweaks
   ================================= */
.hero {
    /* Dark theme with gradient */
    background:
        radial-gradient(ellipse at 80% 50%, rgba(46, 169, 223, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(46, 169, 223, 0.18) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 20%, rgba(46, 169, 223, 0.12) 0%, transparent 60%),
        #0a0a0a;
}

/* ===================================
   Showcase Section
   ================================= */
.showcase {
    padding: var(--spacing-xl) 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.showcase-tab {
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text-light);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-tab:hover,
.showcase-tab.active {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(44, 90, 255, 0.2);
}

.showcase-content {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.showcase-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

/* Showcase Card Generic */
.showcase-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--color-accent);
}

.showcase-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: #f8faff;
    /* Light blueish gray */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-thumb img {
    transform: scale(1.05);
}

.showcase-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 2;
}

.showcase-card:hover .showcase-overlay-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--color-accent);
    color: white;
}

.showcase-info {
    padding: 24px;
    flex: 1;
    border-top: 1px solid #f0f0f0;
}

.showcase-type {
    font-size: 0.8rem;
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.showcase-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-main);
    line-height: 1.4;
}

.showcase-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Audio Player Style for Music Cards */
.audio-player-ui {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8faff;
}

.audio-disk {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #333, #000);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-disk::before {
    content: '';
    width: 30%;
    height: 30%;
    background: var(--color-accent);
    border-radius: 50%;
    border: 2px solid white;
}

.showcase-card:hover .audio-disk {
    animation: spin 4s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Youtube Embed Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Trend Chart Styles */
.trend-chart-container {
    margin-top: 60px;
    padding: 48px;
    background: white;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    position: relative;
}

.chart-wrapper {
    width: 100%;
    height: 350px;
    margin-bottom: 32px;
}

.trend-notes {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.note-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.note-item .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.note-item .dot.primary {
    background: var(--color-accent);
    box-shadow: 0 0 10px var(--color-accent);
}

/* Transformation Section Redesign */
.transform-visual-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.transform-module {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--color-border);
}

.module-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 24px;
}

.module-comparison {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
}

.comp-box {
    flex: 1;
    padding: 32px;
    position: relative;
}

.comp-box.before {
    background: #f8f9fa;
}

.comp-box.after {
    background: white;
    border-left: 1px solid var(--color-border);
}

.comp-tag {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.before .comp-tag {
    background: #94a3b8;
    color: white;
}

.after .comp-tag {
    background: var(--color-accent);
    color: white;
}

.comp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comp-list li {
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.before .comp-list li {
    color: #64748b;
}

.after .comp-list li {
    color: var(--color-text-main);
    font-weight: 600;
}

.before .comp-list li::before {
    content: '✕';
    color: #ef4444;
    font-weight: 900;
}

.after .comp-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: 900;
}

.comp-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    background: #f8fafc;
    position: relative;
    z-index: 1;
}

.divider-arrow {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Fix mobile responsiveness for transformation boxes */
@media (max-width: 600px) {
    .comp-box {
        padding: 20px;
    }

    .module-label {
        font-size: 1.1rem;
    }

    .comp-list li {
        font-size: 0.9rem;
    }
}


@media (max-width: 768px) {
    .module-comparison {
        flex-direction: column;
    }

    .comp-divider {
        width: 100%;
        height: 40px;
    }

    .divider-arrow {
        transform: rotate(90deg);
    }

    .comp-box.after {
        border-left: none;
        border-top: 2px dashed rgba(44, 90, 255, 0.2);
    }

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

    .trend-chart-container {
        padding: 24px 16px;
        border-radius: 20px;
        margin-top: 40px;
    }

    .chart-wrapper {
        height: 250px;
    }

    .trend-notes {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* ===================================
   Free Tools Section
   ================================= */
.free-tools {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
}

.tools-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.free-tool-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    position: relative;
}

.free-tool-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(44, 90, 255, 0.08);
    transform: translateY(-4px);
}

.free-tool-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.free-tool-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.free-tool-info p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.free-tool-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .tools-list {
        grid-template-columns: 1fr;
    }

    .free-tool-card {
        padding: 20px 24px;
    }
}

/* ===================================
   Tools Category Styles
   ================================= */
.tools-category {
    margin-bottom: 48px;
}

.tools-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 3px solid var(--color-accent);
}

/* ===================================
   Final CTA Buttons
   ================================= */
.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.final-cta .btn-outline {
    background: transparent;
    border: 2px solid #333;
    color: #333;
}

.final-cta .btn-outline:hover {
    background: #333;
    color: white;
}

/* ===================================
   Modal Overlay & Content
   ================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-content {
    background: white;
    border-radius: 24px;
    padding: 48px;
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal-content h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.modal-desc {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

/* Enterprise Form Styles */
.enterprise-form .form-group {
    margin-bottom: 20px;
}

.enterprise-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.enterprise-form .required {
    color: #ef4444;
}

.enterprise-form input,
.enterprise-form select,
.enterprise-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.enterprise-form input:focus,
.enterprise-form select:focus,
.enterprise-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.enterprise-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.enterprise-form button[type="submit"] {
    width: 100%;
    margin-top: 16px;
}

@media (max-width: 600px) {
    .modal-content {
        padding: 32px 24px;
    }

    .enterprise-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Wish CTA in Schedule */
.wish-cta {
    margin-top: 40px;
    text-align: center;
    padding: 32px;
    background: #f8faff;
    border-radius: 16px;
    border: 1px dashed var(--color-border);
}

.wish-cta p {
    margin-bottom: 16px;
    color: var(--color-text-light);
}

/* Modal Small Size */
.modal-content.modal-small {
    max-width: 450px;
}

/* Number-based free tool icons */
.free-tool-icon {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 90, 255, 0.08);
    border-radius: 12px;
    flex-shrink: 0;
}

/* Number-based industry icons */
.industry-icon {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-accent);
}

/* Enterprise Info in Modal */
.enterprise-info {
    background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 100%);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.enterprise-info .info-highlight {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.enterprise-info .info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.enterprise-info .info-list li {
    padding: 8px 0;
    font-size: 0.9375rem;
    color: var(--color-text);
    border-bottom: 1px solid rgba(44, 90, 255, 0.1);
}

.enterprise-info .info-list li:last-child {
    border-bottom: none;
}

/* Credential tag number style */
.credential-tag {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--color-accent);
    background: rgba(44, 90, 255, 0.1);
    padding: 6px 10px;
    border-radius: 6px;
}

/* Nav CTA Button (電子報) */
.nav-cta-btn {
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Mobile Floating CTA */
.mobile-floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.floating-btn:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {

    /* Show mobile floating CTA */
    .mobile-floating-cta {
        display: block;
    }

    /* Add padding to body for floating CTA */
    body {
        padding-bottom: 90px;
    }

    /* Hide desktop nav CTA button on mobile */
    .nav-cta-btn {
        display: none;
    }

    /* ========== Mobile Typography ========== */
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .section-label {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
    }

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

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* ========== Mobile Spacing ========== */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* section padding removed */

    /* ========== Mobile Cards ========== */
    .tool-card,
    .about-card {
        padding: 20px;
    }

    .tool-card h4 {
        font-size: 1rem;
    }

    .tool-card p {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    /* ========== Mobile Schedule ========== */
    .schedule-item {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px;
        margin-bottom: 12px;
        background: #fafafa;
        border-radius: 16px;
        border: 1px solid var(--color-border);
    }

    .schedule-item .date-col {
        display: flex;
        align-items: baseline;
        gap: 8px;
        margin-bottom: 4px;
    }

    .schedule-item .date-col .date {
        font-size: 1.375rem;
        font-weight: 800;
        color: var(--color-text);
    }

    .schedule-item .date-col .day {
        font-size: 0.875rem;
        color: var(--color-text-light);
    }

    .schedule-item .time-col {
        font-size: 0.875rem;
        color: var(--color-text-light);
        margin-bottom: 8px;
    }

    .schedule-item .info-col {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
    }

    .schedule-item .info-col .location {
        font-weight: 600;
        font-size: 0.9375rem;
    }

    .schedule-item .info-col .status {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .schedule-item .action-col {
        margin-top: 4px;
    }

    .schedule-item .action-col .btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 0.9375rem;
    }

    .month-title {
        font-size: 1.125rem;
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--color-accent);
        font-weight: 700;
    }

    .schedule-month-group {
        margin-bottom: 28px;
    }

    /* ========== Mobile Modal ========== */
    .modal-content {
        margin: 16px;
        padding: 24px;
        max-height: calc(100vh - 32px);
        border-radius: 20px;
    }

    .modal-content h2 {
        font-size: 1.375rem;
        margin-bottom: 8px;
    }

    .modal-desc {
        font-size: 0.9375rem;
        margin-bottom: 20px;
    }

    .enterprise-form .form-group label {
        font-size: 0.875rem;
    }

    .enterprise-form input,
    .enterprise-form select,
    .enterprise-form textarea {
        font-size: 16px;
        /* Prevent iOS zoom */
        padding: 14px;
    }

    /* ========== Mobile Price Tag ========== */
    .price-tag {
        padding: 16px;
    }

    .price-value {
        font-size: 1.5rem;
    }

    /* ========== Mobile Instructor ========== */
    .instructor-name-tag {
        bottom: 80px;
        left: 10px;
        padding: 14px 18px;
    }

    .instructor-name-tag .name {
        font-size: 1rem;
    }

    .instructor-name-tag .title {
        font-size: 0.8125rem;
    }

    /* ========== Mobile Format Section ========== */
    .format-content {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .format-feature {
        gap: 14px;
    }

    .feature-num {
        font-size: 1rem;
        padding: 6px 12px;
    }

    .format-feature h4 {
        font-size: 1rem;
    }

    .format-feature p {
        font-size: 0.875rem;
    }

    /* ========== Mobile Hero ========== */
    .hero-features {
        gap: 10px;
    }

    .hero-features li {
        font-size: 0.875rem;
    }
}

/* ========== Button Loading & Success Animation ========== */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn.loading {
    color: transparent !important;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: btn-spin 0.8s linear infinite;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}

.btn.success {
    background: #10b981 !important;
    border-color: #10b981 !important;
}

.btn.success::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.25rem;
    color: white;
    animation: btn-check 0.3s ease-out;
}

@keyframes btn-check {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Mobile tap feedback */
@media (max-width: 768px) {
    .btn:active {
        transform: scale(0.97);
    }

    .floating-btn:active {
        transform: scale(0.98);
    }
}

/* ===================================
   SEO Story Section - Instructor Insights
   ================================= */
.story-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

.story-header {
    text-align: center;
    margin-bottom: 80px;
}

.story-header .section-label {
    color: var(--color-accent);
}

.story-header .section-title {
    max-width: 700px;
    margin: 0 auto 24px;
}

.story-header .section-desc {
    max-width: 600px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.story-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #4f7aff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.story-card-icon svg {
    color: white;
}

.story-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
}

.story-card-content {
    color: var(--color-text-light);
    line-height: 2;
    font-size: 1rem;
}

.story-card-content p {
    margin-bottom: 16px;
}

.story-card-content p:last-child {
    margin-bottom: 0;
}

.story-card-content strong {
    color: var(--color-text);
    font-weight: 600;
}

.story-card-content em {
    color: var(--color-accent);
    font-style: normal;
    font-weight: 500;
}

/* Quote Block */
.story-quote {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(46, 169, 223, 0.1) 0%, transparent 60%),
        #0a0a0a;
    color: white;
    border-radius: 24px;
    padding: 60px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.story-quote::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
}

.story-quote-text {
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.story-quote-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.story-quote-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.story-quote-author-info {
    display: flex;
    flex-direction: column;
}

.story-quote-author-name {
    font-weight: 700;
    font-size: 1.125rem;
}

.story-quote-author-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

/* Vision Section */
.vision-section {
    padding: var(--spacing-xl) 0;
    background: #0a0a0f;
    color: white;
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vision-content .section-label {
    color: #4f8fff;
}

.vision-content .section-title {
    color: white;
    margin-bottom: 48px;
}

.vision-text {
    font-size: 1.25rem;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

.vision-text p {
    margin-bottom: 32px;
}

.vision-text strong {
    color: white;
}

.vision-text em {
    color: #4f8fff;
    font-style: normal;
}

.vision-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vision-highlight {
    text-align: center;
}

.vision-highlight-icon {
    width: 56px;
    height: 56px;
    background: rgba(79, 143, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vision-highlight-icon svg {
    color: #4f8fff;
}

.vision-highlight h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.vision-highlight p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

/* Enhanced Footer for SEO */
.footer-enhanced {
    padding: 80px 0 40px;
    background: #111;
    color: white;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-enhanced {
    max-width: 320px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4f8fff 0%, #a855f7 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand-enhanced p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-accent);
}

.footer-social svg {
    color: white;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Story Section Mobile */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .story-card {
        padding: 32px 24px;
    }

    .story-card h3 {
        font-size: 1.25rem;
    }

    .story-quote {
        padding: 40px 24px;
    }

    .story-quote-text {
        font-size: 1.125rem;
    }

    .vision-highlights {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-enhanced {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ===================================
   Tools Pricing Section (Free vs Paid)
   ================================= */
.tools-pricing-section {
    margin-top: 80px;
    padding: 48px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid var(--color-border);
}

.tools-pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.tools-pricing-note {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 40px;
    padding: 16px 24px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.tools-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tool-pricing-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.tool-pricing-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.tool-pricing-card.free {
    border-color: #22c55e;
}

.tool-pricing-card.paid {
    border-color: #f59e0b;
    background: #fffbeb;
}

.tool-pricing-header {
    margin-bottom: 24px;
}

.pricing-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
}

.pricing-badge.free {
    background: #22c55e;
    color: white;
}

.pricing-badge.paid {
    background: #f59e0b;
    color: white;
}

.tool-pricing-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tool-pricing-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    flex-wrap: wrap;
}

.tool-mini-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 8px;
}

.tool-pricing-list li span {
    font-weight: 500;
}

.optional-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: var(--color-accent);
    color: white;
    border-radius: 20px;
    margin-left: auto;
}

.pricing-disclaimer {
    margin-top: 20px;
    font-size: 0.875rem;
    color: var(--color-text-light);
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* ===================================
   Instructor Gallery (Photo Grid)
   ================================= */
.instructor-gallery {
    margin-top: 60px;
    margin-bottom: 60px;
}

.gallery-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.gallery-photo {
    flex: 1;
    min-width: 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
}

.gallery-photo.large {
    flex: 1.5;
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-photo:hover img {
    transform: scale(1.05);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.gallery-photo:hover .photo-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Platform Links Section
   ================================= */
.platform-links-section {
    margin-top: 80px;
    padding: 60px;
    background: #f8f9fa;
    border-radius: 24px;
}

.platform-links-title {
    font-size: 1.75rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: 8px;
}

.platform-links-desc {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.platform-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.platform-link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.platform-link-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 12px 40px rgba(44, 90, 255, 0.12);
    transform: translateY(-4px);
}

.platform-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
    flex-shrink: 0;
}

.platform-info {
    flex: 1;
}

.platform-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.platform-info p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 6px;
}

.platform-stat {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: rgba(44, 90, 255, 0.1);
    color: var(--color-accent);
    border-radius: 20px;
    font-weight: 600;
}

.platform-arrow {
    font-size: 1.5rem;
    color: var(--color-accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.platform-link-card:hover .platform-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===================================
   Vision Extended Content
   ================================= */
.vision-extended {
    margin-top: 60px;
    text-align: left;
}

.vision-insight-block {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.vision-insight-block h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.vision-insight-block p {
    font-size: 1.125rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}

.vision-insight-block p:last-child {
    margin-bottom: 0;
}

.vision-insight-block strong {
    color: white;
}

.vision-insight-block em {
    color: #4f8fff;
    font-style: normal;
}

/* ===================================
   Mobile Responsive for New Sections
   ================================= */
@media (max-width: 768px) {
    .tools-pricing-section {
        padding: 32px 20px;
    }

    .tools-pricing-grid {
        grid-template-columns: 1fr;
    }

    .tool-pricing-card {
        padding: 24px;
    }

    .gallery-row {
        flex-direction: column;
    }

    .gallery-photo,
    .gallery-photo.large {
        flex: none;
        aspect-ratio: 16 / 9;
    }

    .platform-links-section {
        padding: 40px 20px;
    }

    .platform-links-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .platform-link-card {
        padding: 20px;
        gap: 16px;
    }

    .platform-logo {
        width: 64px;
        height: 64px;
        border-radius: 14px;
    }

    .platform-info h4 {
        font-size: 1.125rem;
    }

    .platform-info p {
        font-size: 0.9375rem;
    }

    .platform-stat {
        font-size: 0.8125rem;
        padding: 5px 12px;
    }

    .platform-arrow {
        opacity: 1;
        transform: translateX(0);
        font-size: 1.25rem;
    }

    .vision-insight-block {
        padding: 24px;
    }

    .vision-insight-block h3 {
        font-size: 1.125rem;
    }

    .vision-insight-block p {
        font-size: 1rem;
    }
}

/* ===================================
   Media Coverage Section
   ================================= */
.media-coverage {
    padding: var(--spacing-xl) 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(46, 169, 223, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(46, 169, 223, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 50%, rgba(46, 169, 223, 0.08) 0%, transparent 50%),
        #0a0a0a;
}

.media-coverage .section-title {
    color: white;
}

.media-coverage .section-desc {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
}

.media-video-container {
    max-width: 900px;
    margin: 48px auto 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* ===================================
   Class Photos Section
   ================================= */
.class-photos {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
}

.class-photos .section-title {
    color: white;
}

.class-photos .section-desc {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.photo-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 24px 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay span {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .media-coverage,
    .class-photos {
        padding: 60px 0;
    }

    .photos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .photo-item {
        aspect-ratio: 16 / 10;
    }

    .photo-overlay {
        opacity: 1;
    }

    .media-video-container {
        margin-top: 32px;
    }
}

/* ===================================
   Side Progress Navigation
   ================================= */
.progress-nav {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    z-index: 999;
}

.progress-label {
    display: none;
}

.progress-dots {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    transition: all 0.3s ease;
    cursor: pointer;
}

.progress-dot:hover {
    background: #9ca3af;
    transform: scale(1.3);
}

.progress-dot.active {
    background: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(44, 90, 255, 0.2);
}

/* Mobile */
@media (max-width: 768px) {
    .progress-nav {
        right: 12px;
    }

    .progress-label {
        font-size: 0.6875rem;
        padding: 6px 10px;
    }

    .progress-dots {
        padding: 10px 8px;
        gap: 10px;
    }

    .progress-dot {
        width: 8px;
        height: 8px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .progress-nav {
        right: 8px;
    }

    .progress-label {
        font-size: 0.625rem;
        padding: 5px 8px;
    }

    .progress-dots {
        padding: 8px 6px;
        gap: 8px;
    }

    .progress-dot {
        width: 6px;
        height: 6px;
    }
}

/* ===================================
   NEW Transformation Section - Table Style
   ================================= */
.transformation-new {
    padding: 80px 0;
    background: white;
}

.transform-table {
    margin-top: 48px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
}

.transform-row {
    display: grid;
    grid-template-columns: 140px 1fr 1fr;
    border-bottom: 1px solid var(--color-border);
}

.transform-row:last-child {
    border-bottom: none;
}

.transform-header-row {
    background: #f8f9fa;
}

.transform-header-row .transform-cell {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.transform-cell {
    padding: 20px 24px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.cell-category {
    font-weight: 600;
    color: var(--color-text);
    background: #fafafa;
    border-right: 1px solid var(--color-border);
}

.cell-before {
    color: #94a3b8;
    border-right: 1px solid var(--color-border);
}

.cell-after {
    color: var(--color-text);
    font-weight: 500;
}

/* Mobile */
@media (max-width: 768px) {
    .transformation-new {
        padding: 60px 0;
    }

    .transform-row {
        grid-template-columns: 1fr;
    }

    .transform-header-row {
        display: none;
    }

    .transform-cell {
        padding: 16px 20px;
    }

    .cell-category {
        background: #f8f9fa;
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        font-size: 0.8125rem;
        padding: 12px 20px;
    }

    .cell-before,
    .cell-after {
        border-right: none;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cell-before::before {
        content: '前';
        font-size: 0.75rem;
        padding: 2px 8px;
        background: #f1f5f9;
        border-radius: 4px;
        color: #94a3b8;
    }

    .cell-after::before {
        content: '後';
        font-size: 0.75rem;
        padding: 2px 8px;
        background: #dbeafe;
        border-radius: 4px;
        color: var(--color-accent);
    }
}

/* ===================================
   NEW Tools Info - Simple Text Style
   ================================= */
.tools-info-simple {
    margin-top: 60px;
    padding: 32px 40px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.tools-info-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text);
}

.tools-info-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 12px;
}

.tools-info-desc strong {
    color: var(--color-text);
}

.tools-info-desc .highlight-text {
    color: #22c55e;
    font-weight: 600;
}

.tools-info-note {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0;
}

@media (max-width: 768px) {
    .tools-info-simple {
        padding: 24px;
        margin-top: 40px;
    }

    .tools-info-title {
        font-size: 1rem;
    }

    .tools-info-desc,
    .tools-info-note {
        font-size: 0.9375rem;
    }
}

/* ===================================
   Video Thumbnail Link Style
   ================================= */
.video-thumbnail-link {
    display: block;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-thumbnail-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: background 0.3s ease;
}

.video-thumbnail-link:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.play-icon {
    transition: transform 0.3s ease;
}

.video-thumbnail-link:hover .play-icon {
    transform: scale(1.1);
}

.video-cta {
    color: white;
    font-size: 0.9375rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 20px;
    border-radius: 50px;
}

/* ===================================
   What We Teach Section
   ================================= */
.what-we-teach {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.teach-timeline {
    display: grid;
    gap: 16px;
    max-width: 800px;
    margin: 60px auto 0;
}

.teach-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 28px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.teach-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.teach-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teach-content {
    flex: 1;
}

.teach-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.teach-content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Highlight item (step 0) */
.teach-item.highlight-item {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
    border-color: #f59e0b;
}

.teach-item.highlight-item .teach-number {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.teach-item.highlight-item .teach-highlight {
    color: #b45309;
    font-weight: 500;
}

/* Final item */
.teach-item.final-item {
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    border-color: var(--primary);
}

.teach-item.final-item .teach-number {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* Mobile */
@media (max-width: 768px) {
    .what-we-teach {
        padding: 60px 0;
    }

    .teach-timeline {
        margin-top: 40px;
        gap: 12px;
    }

    .teach-item {
        padding: 18px 20px;
        gap: 16px;
    }

    .teach-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .teach-content h4 {
        font-size: 1rem;
    }

    .teach-content p {
        font-size: 0.875rem;
    }
}

/* Teach tip style */
.teach-tip {
    font-size: 0.8125rem;
    color: #6b7280;
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(46, 169, 223, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
    line-height: 1.5;
}

.teach-item.highlight-item .teach-tip {
    background: rgba(245, 158, 11, 0.08);
    border-left-color: #f59e0b;
}

.teach-item.final-item .teach-tip {
    background: rgba(46, 169, 223, 0.08);
}

/* ===================================
   Career Boost Section
   ================================= */
.career-boost {
    padding: 100px 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(46, 169, 223, 0.22) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(46, 169, 223, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 30%, rgba(46, 169, 223, 0.1) 0%, transparent 50%),
        #0a0a0a;
}

.career-boost .section-label {
    color: var(--primary);
}

.career-boost .section-title {
    color: white;
}

.career-boost .section-desc {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.career-steps {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 60px auto 0;
}

.career-step {
    display: flex;
    gap: 24px;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.career-step:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
    border-color: rgba(34, 211, 238, 0.3);
}

.career-step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-step-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.career-step-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Highlight step */
.career-step.highlight-step {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-color: rgba(34, 211, 238, 0.4);
}

.career-step.highlight-step .career-step-number {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.career-step-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 14px;
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

/* Mobile */
@media (max-width: 768px) {
    .career-boost {
        padding: 60px 0;
    }

    .career-steps {
        margin-top: 40px;
        gap: 16px;
    }

    .career-step {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .career-step-number {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .career-step-content h4 {
        font-size: 1rem;
    }

    .career-step-content p {
        font-size: 0.875rem;
    }
}

/* ===================================
   Resume Comparison (Before/After)
   ================================= */
.resume-comparison {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 40px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 28px;
    min-height: 280px;
}

.comparison-card.before {
    opacity: 0.8;
}

.comparison-card.after {
    background: rgba(46, 169, 223, 0.05);
    border-color: rgba(46, 169, 223, 0.3);
}

.comparison-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-card.before .comparison-label {
    color: rgba(255, 255, 255, 0.6);
}

.comparison-card.after .comparison-label {
    color: var(--primary);
}

.comparison-label .dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.comparison-card.before .dot {
    background: rgba(255, 255, 255, 0.3);
}

.comparison-card.after .dot {
    background: var(--primary);
}

.comparison-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.resume-item {
    padding: 10px 14px;
    border-radius: 2px;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.resume-item.faded {
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.15);
}

.resume-item.highlight {
    background: rgba(46, 169, 223, 0.08);
    color: rgba(255, 255, 255, 0.95);
    border-left: 2px solid var(--primary);
    padding-left: 12px;
}

.resume-item.highlight strong {
    color: var(--primary);
    font-weight: 700;
}

.resume-item.highlight {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.resume-text {
    display: block;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1a8bc4 0%, var(--primary) 50%, #5cc7e8 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(46, 169, 223, 0.4);
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progress-ray-trace 2s linear infinite;
}

@keyframes progress-ray-trace {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

.comparison-arrow {
    color: var(--primary);
    opacity: 0.7;
}

/* Mobile */
@media (max-width: 768px) {
    .resume-comparison {
        margin-top: 60px;
        padding-top: 40px;
    }

    .comparison-title {
        font-size: 1.25rem;
        margin-bottom: 30px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .comparison-arrow {
        transform: rotate(90deg);
        justify-self: center;
    }

    .comparison-card {
        min-height: auto;
        padding: 20px;
    }

    .resume-item {
        font-size: 0.875rem;
        padding: 10px 14px;
    }
}

/* ===================================
   FAQ Tabs
   ================================= */
.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 40px 0 50px;
}

.faq-tab {
    padding: 14px 28px;
    background: transparent;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.faq-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-list .faq-item {
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.faq-list .faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #1f2937;
    cursor: pointer;
}

.faq-list .faq-answer {
    padding: 0 24px 20px;
    color: #6b7280;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-tabs {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }

    .faq-tab {
        width: 100%;
        padding: 16px;
    }
}

/* ===================================
   Instructor Mottos
   ================================= */
.instructor-mottos {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.motto-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(46, 169, 223, 0.08) 0%, rgba(147, 51, 234, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.motto-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.motto-item p {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.motto-item strong {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .motto-item {
        padding: 14px 16px;
    }

    .motto-icon {
        font-size: 1.25rem;
    }

    .motto-item p {
        font-size: 0.875rem;
    }
}

/* ===================================
   FAQ Groups (no tabs)
   ================================= */
.faq-group {
    margin-bottom: 60px;
}

.faq-group:last-child {
    margin-bottom: 0;
}

.faq-group-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

/* ===================================
   Instructor Philosophy (clean list)
   ================================= */
.instructor-philosophy {
    margin: 30px 0;
}

.instructor-philosophy h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.philosophy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.philosophy-list li {
    position: relative;
    padding-left: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.6;
    border-left: 3px solid var(--primary);
    margin-bottom: 12px;
    background: #f9fafb;
    border-radius: 0 8px 8px 0;
}

.philosophy-list li:last-child {
    margin-bottom: 0;
}

/* ===================================
   Mobile Newsletter Button (Header)
   ================================= */
.mobile-newsletter-btn {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

@media (max-width: 768px) {
    .mobile-newsletter-btn {
        display: flex;
    }
}

/* ===================================
   Mobile Bottom CTA Bar
   ================================= */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.mobile-bottom-bar.visible {
    opacity: 1;
    transform: translateY(0);
}

.mobile-bottom-cta {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
}

@media (max-width: 768px) {

    /* Mobile bottom bar - hidden by default, shown via JS when leaving hero */
    .mobile-bottom-bar {
        display: block;
        /* Keep display:block but use opacity/transform for animation */
        /* visibility controlled via .visible class */
    }

    .mobile-bottom-bar:not(.visible) {
        pointer-events: none;
    }

    /* Add padding to body to prevent content being hidden behind bottom bar */
    body {
        padding-bottom: 80px;
    }
}

/* ===================================
   Partner Logos Grid
   ================================= */
.partner-logos {
    margin-bottom: 60px;
}

.partner-title {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 24px;
    align-items: center;
    justify-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    height: 80px;
    width: 100%;
    transition: all 0.3s ease;
}

.logo-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.logo-item img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

@media (max-width: 1024px) {
    .logo-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .logo-item {
        height: 60px;
        padding: 12px;
    }

    .logo-item img {
        max-height: 36px;
    }

    .partner-logos {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   Enterprise Logos Section (Simple)
   ================================= */
.enterprise-logos {
    padding: 80px 0;
    background: white;
}

.logo-grid-simple {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 60px;
    margin-top: 50px;
}

.logo-grid-simple img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .enterprise-logos {
        padding: 50px 0;
    }

    .logo-grid-simple {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 16px;
        margin-top: 30px;
    }

    .logo-grid-simple img {
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }
}

/* ===================================
   Teach Icon Style
   ================================= */
.teach-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.teach-item.highlight-item .teach-icon {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
}

.teach-item.final-item .teach-icon {
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
}

@media (max-width: 768px) {
    .teach-icon {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
}

/* ===================================
   Enterprise Inquiry Form
   ================================= */
.enterprise-inquiry {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.inquiry-content {
    text-align: center;
    margin-bottom: 30px;
}

.inquiry-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.inquiry-content p {
    font-size: 1rem;
    color: var(--text-muted);
}

.inquiry-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus,
.inquiry-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 169, 223, 0.1);
}

.inquiry-form textarea {
    resize: vertical;
    min-height: 100px;
}

.inquiry-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.inquiry-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.inquiry-form label .required {
    color: #ef4444;
}

.inquiry-form .form-group {
    flex: 1;
}

.inquiry-form .form-group.full-width {
    width: 100%;
}

.inquiry-form button {
    align-self: center;
    padding: 16px 48px;
}

/* Inquiry Highlights */
.inquiry-highlights {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.inquiry-highlights .highlight-item {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(46, 169, 223, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
}

/* Submit Button Enhanced */
.inquiry-submit {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
    padding: 18px 40px;
    font-size: 1.125rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    border: none !important;
    border-radius: 12px;
    color: white !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(46, 169, 223, 0.3);
}

.inquiry-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(46, 169, 223, 0.4);
}

.inquiry-submit svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .enterprise-inquiry {
        margin-top: 40px;
        padding: 24px;
    }

    .inquiry-content h3 {
        font-size: 1.25rem;
    }

    .inquiry-form .form-row {
        grid-template-columns: 1fr;
    }

    .inquiry-highlights {
        gap: 12px;
    }

    .inquiry-highlights .highlight-item {
        font-size: 0.8125rem;
        padding: 6px 12px;
    }

    .inquiry-submit {
        max-width: 100%;
        font-size: 1rem;
        padding: 16px 32px;
    }

    /* APP-style Mobile Form Experience */
    .enterprise-inquiry {
        margin-top: 30px;
        padding: 20px 16px;
        border-radius: 16px;
        background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    }

    .inquiry-content {
        margin-bottom: 24px;
    }

    .inquiry-content h3 {
        font-size: 1.375rem;
        text-align: center;
        margin-bottom: 12px;
    }

    .inquiry-content p {
        font-size: 0.9375rem;
        text-align: center;
        line-height: 1.6;
        color: #6b7280;
    }

    .inquiry-form {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .inquiry-form .form-row {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .inquiry-form .form-group {
        margin-bottom: 16px;
    }

    .inquiry-form label {
        font-size: 0.8125rem;
        font-weight: 600;
        color: #374151;
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .inquiry-form input,
    .inquiry-form select,
    .inquiry-form textarea {
        width: 100%;
        padding: 16px 14px;
        font-size: 1rem;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        background: white;
        transition: all 0.2s ease;
        -webkit-appearance: none;
        appearance: none;
    }

    .inquiry-form input:focus,
    .inquiry-form select:focus,
    .inquiry-form textarea:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(46, 169, 223, 0.1);
        background: white;
    }

    .inquiry-form input::placeholder,
    .inquiry-form textarea::placeholder {
        color: #9ca3af;
        font-size: 0.9375rem;
    }

    .inquiry-form select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        padding-right: 40px;
    }

    .inquiry-form textarea {
        min-height: 100px;
        resize: none;
    }

    .inquiry-form .form-group.full-width {
        margin-bottom: 20px;
    }

    .inquiry-submit {
        position: sticky;
        bottom: 20px;
        margin-top: 8px;
        padding: 18px 24px;
        font-size: 1.0625rem;
        border-radius: 14px;
        box-shadow: 0 4px 24px rgba(46, 169, 223, 0.35);
    }

    .inquiry-submit:active {
        transform: scale(0.98);
    }

    /* Add subtle animation on input focus */
    .inquiry-form .form-group:focus-within label {
        color: var(--primary);
    }
}

/* ===================================
   Tools Grid Flat (no categories)
   ================================= */
.tools-grid-flat {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .tools-grid-flat {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .tools-grid-flat {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 30px;
    }
}

/* ===================================
   Teach Grid Two Column Layout
   ================================= */
.teach-grid-two-col {
    max-width: 900px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.teach-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 28px 0;
    border-bottom: 1px solid #e5e7eb;
    align-items: start;
}

.teach-row:last-child {
    border-bottom: none;
}

.teach-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.teach-num {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(46, 169, 223, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
}

.teach-title h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.teach-desc p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 10px;
}

.teach-tools {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(46, 169, 223, 0.08);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
}

.teach-row.highlight-row {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
    border-radius: 12px;
    padding: 28px 24px;
    margin-top: 16px;
    border-bottom: none;
}

.teach-row.highlight-row .teach-num {
    background: #f59e0b;
    color: white;
}

.teach-row.highlight-row .teach-tools {
    background: rgba(245, 158, 11, 0.2);
    color: #b45309;
}

@media (max-width: 768px) {
    .teach-grid-two-col {
        margin-top: 30px;
    }

    .teach-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px 0;
    }

    .teach-title h4 {
        font-size: 1rem;
    }

    .teach-desc p {
        font-size: 0.875rem;
    }

    .teach-row.highlight-row {
        padding: 20px 16px;
    }
}

/* ===================================
   Mobile Newsletter Button - Force Display
   ================================= */
@media (max-width: 768px) {
    .header-inner {
        display: flex;
        align-items: center;
    }

    .mobile-newsletter-btn {
        display: flex !important;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--primary);
        color: white;
        border: none;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        margin-right: 8px;
        flex-shrink: 0;
    }

    .mobile-newsletter-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* ===================================
   Countdown Badge Styles
   ================================= */
.countdown-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.countdown-badge.early-bird {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
}

.countdown-badge.late-bird {
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
}

.countdown-badge.closed {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

/* Mobile Schedule Compact */
@media (max-width: 768px) {
    .schedule-item {
        padding: 16px;
        gap: 8px;
    }

    .schedule-item .date-col {
        flex-direction: row;
        gap: 6px;
        align-items: center;
    }

    .schedule-item .date-col .date {
        font-size: 1rem;
    }

    .schedule-item .date-col .day {
        font-size: 0.75rem;
    }

    .schedule-item .time-col {
        font-size: 0.8125rem;
        padding: 4px 0;
    }

    .schedule-item .info-col {
        flex-direction: row;
        gap: 8px;
        align-items: center;
        flex-wrap: wrap;
    }

    .schedule-item .location {
        font-size: 0.75rem;
    }

    .schedule-item .action-col {
        margin-top: 8px;
    }

    .schedule-item .action-col .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }

    .month-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .schedule-month-group {
        margin-bottom: 20px;
    }
}

/* ===================================
   Discount Note Style
   ================================= */
.discount-note {
    display: block;
    margin-top: 8px;
    font-size: 0.6875rem;
    color: #dc2626;
    font-weight: 500;
}

@media (max-width: 768px) {
    .discount-note {
        font-size: 0.625rem;
        text-align: center;
    }
}

/* ===================================
   Transform Cards (Redesigned)
   ================================= */
.transform-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 50px auto 0;
}

.transform-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.transform-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.transform-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.transform-before {
    font-size: 0.9375rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.transform-arrow {
    font-size: 1.25rem;
    color: #22c55e;
    margin: 8px 0;
}

.transform-after {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

@media (max-width: 768px) {
    .transform-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 30px;
    }

    .transform-card {
        padding: 20px 16px;
    }

    .transform-label {
        font-size: 0.6875rem;
        margin-bottom: 12px;
    }

    .transform-before {
        font-size: 0.8125rem;
    }

    .transform-arrow {
        font-size: 1rem;
        margin: 6px 0;
    }

    .transform-after {
        font-size: 0.875rem;
    }
}

/* ===================================
   Star Rating Style
   ================================= */
.star-rating {
    color: #f59e0b;
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-card .author-avatar {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

/* ===================================
   Countdown Badge - Red Theme
   ================================= */
.countdown-badge.early-bird,
.countdown-badge.late-bird {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
    font-weight: 700;
}

/* ===================================
   Logo Grid - Larger Desktop
   ================================= */
.logo-grid-simple img {
    height: 80px;
}

/* ===================================
   Logo Grid - 100px Height Override
   ================================= */
.logo-grid-simple img {
    height: 100px !important;
}

/* ===================================
   Transform Cards - Enhanced
   ================================= */
.transform-cards {
    gap: 24px;
}

.transform-card {
    padding: 32px;
}

.transform-label {
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.transform-before {
    font-size: 1rem;
}

.transform-after {
    font-size: 1.125rem;
}

.transformation-new .section-desc {
    max-width: 600px;
    margin: 16px auto 0;
    color: var(--text-muted);
}

/* ===================================
   Logo Grid - Fixed Height 90px
   ================================= */
.logo-grid-simple img {
    height: 90px !important;
    max-height: 90px !important;
    min-height: 90px !important;
    width: auto;
    object-fit: contain;
    object-position: center;
}




/* ===================================
   Mobile Newsletter Button - FINAL FIX
   ================================= */
@media (max-width: 768px) {
    .header-inner {
        position: relative;
    }

    .mobile-newsletter-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        border-radius: 50% !important;
        background: var(--primary) !important;
        color: white !important;
        border: none !important;
        cursor: pointer !important;
        align-items: center !important;
        justify-content: center !important;
        margin-right: 10px !important;
        flex-shrink: 0 !important;
        z-index: 100 !important;
    }

    .mobile-newsletter-btn svg {
        width: 16px !important;
        height: 16px !important;
        display: block !important;
    }

    /* Hide original side progress nav on mobile */
    .progress-nav {
        display: none !important;
    }
}

/* ===================================
   Mobile Horizontal Progress Bar
   ================================= */
.mobile-progress-container {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: 3px;
    background: #e5e7eb;
    z-index: 999;
}

.mobile-progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.2s ease;
}

@media (max-width: 768px) {
    .mobile-progress-container {
        display: block;
    }
}

/* ===================================
   Schedule Mobile Compact Layout
   ================================= */
@media (max-width: 768px) {
    .schedule-item {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        padding: 16px !important;
        gap: 8px 16px !important;
    }

    .schedule-item .date-col {
        display: flex !important;
        flex-direction: row !important;
        align-items: baseline !important;
        gap: 4px !important;
        min-width: auto !important;
        flex: 0 0 auto !important;
    }

    .schedule-item .date-col .date {
        font-size: 1.125rem !important;
        font-weight: 700 !important;
    }

    .schedule-item .date-col .day {
        font-size: 0.75rem !important;
        color: var(--text-muted) !important;
    }

    .schedule-item .time-col {
        font-size: 0.8125rem !important;
        color: var(--text-muted) !important;
        flex: 0 0 auto !important;
    }

    .schedule-item .info-col {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }

    .schedule-item .location {
        font-size: 0.8125rem !important;
        font-weight: 500 !important;
    }

    .schedule-item .action-col {
        flex: 0 0 100% !important;
        margin-top: 8px !important;
    }

    .schedule-item .action-col .btn {
        width: 100% !important;
        padding: 12px !important;
        font-size: 0.9375rem !important;
    }

    .schedule-month-group {
        margin-bottom: 24px !important;
    }

    .month-title {
        font-size: 1rem !important;
        padding-bottom: 8px !important;
        margin-bottom: 12px !important;
    }
}

/* ===================================
   FORCE Mobile Newsletter Button Display
   ================================= */
.mobile-newsletter-btn {
    display: none;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.mobile-newsletter-btn svg {
    display: block;
}

@media screen and (max-width: 768px) {
    .mobile-newsletter-btn {
        display: flex !important;
    }

    .nav-cta-btn {
        display: none !important;
    }
}

/* ===================================
   Mobile Instructor Section Optimization
   ================================= */
@media (max-width: 768px) {
    .instructor {
        padding: 50px 0;
    }

    .instructor-content {
        flex-direction: column;
        text-align: center;
    }

    .instructor-image {
        margin-bottom: 24px;
        width: 100%;
    }

    .instructor-image img {
        width: 100%;
        max-width: 280px;
        height: auto;
        border-radius: 16px;
        object-fit: cover;
        margin: 0 auto;
        display: block;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .instructor-name {
        font-size: 1.75rem;
        margin-bottom: 8px;
    }

    .instructor-title {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .instructor-credentials {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 28px;
        text-align: left;
    }

    .credential {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 18px;
        background: white;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    }

    .credential-tag {
        flex-shrink: 0;
        width: 8px;
        height: 8px;
        background: var(--primary);
        border-radius: 50%;
    }

    .credential span:last-child {
        font-size: 0.9375rem;
        line-height: 1.5;
        color: #374151;
        font-weight: 500;
    }

    .instructor-philosophy {
        text-align: left;
        margin-top: 20px;
    }

    .instructor-philosophy h4 {
        font-size: 1.125rem;
        margin-bottom: 16px;
        text-align: center;
    }

    .philosophy-list li {
        font-size: 0.9375rem;
        padding: 14px 16px;
        margin-bottom: 10px;
    }
}

/* ===================================
   Mobile Resume Comparison Optimization
   ================================= */
@media (max-width: 768px) {
    .resume-comparison {
        margin-top: 50px;
        padding: 30px 0;
    }

    .comparison-title {
        font-size: 1.375rem;
        line-height: 1.4;
        margin-bottom: 24px;
        text-align: center;
    }

    .comparison-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .comparison-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .comparison-card h4 {
        font-size: 1rem;
        margin-bottom: 16px;
        text-align: center;
    }

    .resume-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .resume-item {
        font-size: 0.9375rem;
        padding: 14px 16px;
        border-radius: 10px;
        text-align: left;
    }

    .comparison-arrow {
        display: flex;
        justify-content: center;
        transform: rotate(90deg);
        margin: -8px 0;
    }

    .comparison-card.before {
        order: 1;
    }

    .comparison-arrow {
        order: 2;
    }

    .comparison-card.after {
        order: 3;
    }
}

/* ===================================
   Mobile Newsletter Button - Icon + Text Inline
   ================================= */
@media (max-width: 768px) {
    .mobile-newsletter-btn {
        display: inline-flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        width: auto !important;
        height: auto !important;
        padding: 10px 16px !important;
        border-radius: 8px !important;
        font-size: 0.875rem !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
    }

    .mobile-newsletter-btn svg {
        width: 16px !important;
        height: 16px !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        display: inline-block !important;
    }
}

/* ===================================
   Mobile Schedule Section - Compact Premium Style
   ================================= */
@media (max-width: 768px) {
    .schedule {
        padding: 50px 0;
    }

    .schedule .section-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .schedule .section-desc {
        font-size: 0.9375rem;
        margin-bottom: 24px;
    }

    .schedule-month-group {
        margin-bottom: 20px;
    }

    .month-title {
        font-size: 0.875rem;
        font-weight: 600;
        color: #6b7280;
        margin-bottom: 10px;
        padding-left: 2px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .schedule-item {
        display: grid;
        grid-template-columns: 85px 1fr;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        background: white;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
        margin-bottom: 10px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .schedule-item:active {
        transform: scale(0.98);
        background: #f9fafb;
    }

    .schedule-item .date-col {
        display: flex;
        align-items: baseline;
        gap: 4px;
        padding: 0;
        background: none;
        border: none;
    }

    .schedule-item .date-col::after {
        display: none;
    }

    .schedule-item .date-col .date {
        font-size: 1.125rem;
        font-weight: 700;
        color: #1f2937;
    }

    .schedule-item .date-col .day {
        font-size: 0.8125rem;
        color: #6b7280;
        font-weight: 500;
    }

    .schedule-item .time-col {
        display: none;
    }

    .schedule-item .info-col {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 0;
        min-width: 0;
    }

    .schedule-item .location {
        font-size: 0.875rem;
        font-weight: 500;
        color: #374151;
    }

    .schedule-item .countdown-badge {
        font-size: 0.6875rem;
        padding: 3px 10px;
        border-radius: 20px;
        flex-shrink: 0;
    }

    .schedule-item .action-col {
        display: none;
    }

    .schedule-item .action-col .btn {
        padding: 10px 16px;
        font-size: 0.8125rem;
        font-weight: 600;
        border-radius: 8px;
        white-space: nowrap;
    }

    .schedule-item.disabled {
        opacity: 0.5;
    }

    .schedule-item.disabled .action-col .btn {
        background: #d1d5db;
        color: #6b7280;
    }
}

/* ===================================
   Mobile Header Button Fix
   ================================= */
@media (max-width: 768px) {
    .mobile-newsletter-btn {
        padding: 8px 12px !important;
        font-size: 0.75rem !important;
        gap: 4px !important;
    }

    .mobile-newsletter-btn svg {
        width: 14px !important;
        height: 14px !important;
    }
}

/* ===================================
   Mobile Modal Fix
   ================================= */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 20px 16px;
        align-items: flex-start;
        padding-top: 60px;
    }

    .modal-content {
        margin: 0;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        border: none !important;
        outline: none !important;
    }

    .modal-content.modal-small {
        padding: 24px 20px;
    }

    .modal-content.modal-small h2 {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .modal-content.modal-small .modal-desc {
        font-size: 0.875rem;
        margin-bottom: 20px;
    }

    .modal-content.modal-small .form-group {
        margin-bottom: 16px;
    }

    .modal-content.modal-small .form-group label {
        font-size: 0.8125rem;
        margin-bottom: 6px;
    }

    .modal-content.modal-small .form-group input {
        padding: 14px 16px;
        font-size: 1rem;
        border: 1px solid #d1d5db;
        border-radius: 10px;
    }

    .modal-content.modal-small .btn {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
        border-radius: 10px;
    }
}

/* ===================================
   Mobile Only Line Break
   ================================= */
.mobile-only {
    display: none;
}

.desktop-only {
    display: inline;
}

img.desktop-only {
    display: block;
}

img.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: inline;
    }

    .desktop-only {
        display: none;
    }

    img.mobile-only {
        display: block;
    }

    img.desktop-only {
        display: none;
    }
}

/* Chapter title style */
.teach-chapter {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

/* ===================================
   Mobile Teach Section - Single Column Layout
   ================================= */
@media (max-width: 768px) {
    .teach-grid-two-col {
        margin-top: 24px;
    }

    .teach-row {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 16px 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .teach-row:last-child {
        border-bottom: none;
    }

    .teach-title {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .teach-num {
        font-size: 0.6875rem;
        padding: 3px 8px;
        min-width: 24px;
        text-align: center;
    }

    .teach-title h4 {
        font-size: 1rem;
        font-weight: 600;
        margin: 0;
    }

    .teach-desc {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-left: 34px;
    }

    .teach-subtitle {
        font-size: 0.8125rem;
        color: #6b7280;
        line-height: 1.4;
        margin: 0;
        flex: 1;
    }

    .teach-tools {
        font-size: 0.625rem;
        padding: 4px 10px;
        background: rgba(46, 169, 223, 0.08);
        color: var(--primary);
        border-radius: 20px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* 神秘互動環節 - 特殊樣式 */
    .teach-row.highlight-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px 16px;
        margin-top: 16px;
        background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
        border-radius: 16px;
        border: none;
        text-align: center;
    }

    .teach-row.highlight-row .teach-title {
        justify-content: center;
    }

    .teach-row.highlight-row .teach-num {
        background: #f59e0b;
        color: white;
    }

    .teach-row.highlight-row .teach-title h4 {
        font-size: 1.125rem;
        font-weight: 700;
    }

    .teach-row.highlight-row .teach-desc {
        display: block;
    }

    .teach-row.highlight-row .teach-desc p {
        font-size: 0.875rem;
        color: #92400e;
        margin-bottom: 10px;
    }

    .teach-row.highlight-row .teach-tools {
        display: inline-block;
        background: rgba(245, 158, 11, 0.2);
        color: #b45309;
        font-size: 0.75rem;
        padding: 6px 16px;
    }
}

/* ===================================
   Mobile Schedule Section - Card Style V2
   ================================= */
@media (max-width: 768px) {
    .schedule {
        padding: 40px 0;
    }

    .schedule .section-header {
        margin-bottom: 24px;
    }

    .schedule .section-title {
        font-size: 1.375rem;
    }

    .schedule-month-group {
        margin-bottom: 16px;
    }

    .month-title {
        font-size: 0.8125rem !important;
        font-weight: 600 !important;
        color: #9ca3af !important;
        margin-bottom: 8px !important;
        padding-left: 4px !important;
    }

    .schedule-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        padding: 16px !important;
        background: white !important;
        border-radius: 14px !important;
        border: 1px solid #e5e7eb !important;
        margin-bottom: 8px !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
    }

    .schedule-item .date-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 2px !important;
        min-width: 60px !important;
        padding: 0 !important;
        background: none !important;
        border: none !important;
    }

    .schedule-item .date-col::after {
        display: none !important;
    }

    .schedule-item .date-col .date {
        font-size: 1.25rem !important;
        font-weight: 700 !important;
        color: var(--primary) !important;
        line-height: 1.2 !important;
    }

    .schedule-item .date-col .day {
        font-size: 0.75rem !important;
        color: #6b7280 !important;
        font-weight: 500 !important;
    }

    .schedule-item .time-col {
        display: none !important;
    }

    .schedule-item .info-col {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
        padding: 0 !important;
    }

    .schedule-item .location {
        font-size: 0.875rem !important;
        font-weight: 500 !important;
        color: #374151 !important;
    }

    .schedule-item .countdown-badge {
        font-size: 0.6875rem !important;
        padding: 3px 10px !important;
        border-radius: 20px !important;
    }

    .schedule-item .action-col {
        display: block !important;
        padding: 0 !important;
    }

    .schedule-item .action-col .btn {
        padding: 10px 18px !important;
        font-size: 0.8125rem !important;
        font-weight: 600 !important;
        border-radius: 10px !important;
        white-space: nowrap !important;
    }

    .schedule-item.disabled {
        opacity: 0.5 !important;
    }

    .schedule-note {
        margin-top: 20px;
        padding: 16px;
        background: #f9fafb;
        border-radius: 12px;
    }

    .schedule-note p {
        font-size: 0.8125rem;
        margin-bottom: 6px;
    }
}

/* ===================================
   Desktop: Insight Section Title Hierarchy
   ================================= */
@media (min-width: 769px) {
    .insight-chart-col .section-title {
        font-size: 2.25rem;
        color: #1f2937;
        line-height: 1.5;
        text-align: left;
        margin-bottom: 28px;
        font-weight: 700;
    }

    .insight-text-col .section-title {
        font-size: 1.5rem;
        color: var(--primary);
        font-weight: 600;
    }
}

/* ===================================
   What We Teach Section - Desktop Center
   ================================= */
@media (min-width: 769px) {

    .what-we-teach .section-header,
    .curriculum .section-header,
    .why-ai .section-header,
    .class-photos .section-header,
    .instructor .section-header,
    .faq .section-header {
        text-align: center;
    }

    .what-we-teach .section-desc,
    .curriculum .section-desc,
    .why-ai .section-desc,
    .class-photos .section-desc,
    .instructor .section-desc,
    .faq .section-desc {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }
}

/* ===================================
   Testimonials Mobile - Single Column
   ================================= */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

/* ===================================
   Skill Level Spectrum Section
   ================================= */
.skill-level {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(180deg, #f8fafc 0%, white 100%);
}

.skill-level .section-header {
    text-align: center;
}

.skill-level .section-desc {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.skill-spectrum {
    max-width: 700px;
    margin: 40px auto 0;
}

.spectrum-annotation {
    position: relative;
    width: 50%;
    text-align: center;
    margin-bottom: 8px;
}

.annotation-text {
    display: inline-block;
    padding: 8px 16px;
    background: #f59e0b;
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 20px;
}

.annotation-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #f59e0b;
    margin: 0 auto;
}

.spectrum-numbers {
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
    margin-bottom: 4px;
}

.spectrum-numbers span {
    width: 28px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #9ca3af;
}

.spectrum-numbers span:nth-child(-n+5) {
    color: var(--primary);
}

.spectrum-bar {
    position: relative;
    height: 52px;
    background: #e5e7eb;
    border-radius: 26px;
    overflow: visible;
}

.spectrum-highlight {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, #1a8bc4 0%, #2EA9DF 50%, #5cc7e8 100%);
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 20px rgba(46, 169, 223, 0.5),
        0 0 40px rgba(46, 169, 223, 0.3);
    overflow: hidden;
}

.spectrum-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: ray-trace 2s linear infinite;
}

@keyframes ray-trace {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

.spectrum-text {
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.spectrum-cursor {
    position: absolute;
    left: 25%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(46, 169, 223, 0.4);
    z-index: 2;
    animation: cursor-pulse 1.5s ease-in-out infinite;
}

.spectrum-cursor::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

@keyframes cursor-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 2px 8px rgba(46, 169, 223, 0.4);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 4px 16px rgba(46, 169, 223, 0.6);
    }
}

.spectrum-progress-arrow {
    position: relative;
    display: flex;
    align-items: center;
    margin: 16px 0 8px;
    padding-left: 25%;
}

.progress-line {
    position: absolute;
    left: 25%;
    width: 55%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, #22c55e 100%);
    border-radius: 2px;
}

.progress-arrow-head {
    position: absolute;
    right: 15%;
    color: #22c55e;
    animation: arrow-bounce 1.5s ease-in-out infinite;
}

.progress-label {
    position: absolute;
    right: 10%;
    top: -20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #22c55e;
    white-space: nowrap;
}

@keyframes arrow-bounce {

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

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

.spectrum-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.8125rem;
    color: #6b7280;
}

.spectrum-note {
    margin-top: 24px;
    text-align: center;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.spectrum-note strong {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .skill-spectrum {
        margin-top: 30px;
    }

    .spectrum-annotation {
        width: 55%;
    }

    .annotation-text {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .spectrum-numbers span {
        font-size: 0.6875rem;
        width: 16px;
    }

    .spectrum-bar {
        height: 44px;
        border-radius: 22px;
    }

    .spectrum-highlight {
        border-radius: 22px;
    }

    .spectrum-text {
        font-size: 0.8125rem;
    }

    .spectrum-labels {
        font-size: 0.75rem;
    }
}

/* ===================================
   Vision Insight Items (No Box)
   ================================= */
.vision-extended.no-box {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 48px;
}

.vision-insight-item {
    max-width: 800px;
}

.insight-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 3px solid var(--primary);
}

.vision-insight-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

.vision-insight-item p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .vision-extended.no-box {
        gap: 32px;
        margin-top: 36px;
    }

    .insight-title {
        font-size: 1.0625rem;
        padding-left: 12px;
    }

    .vision-insight-item p {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
}

/* Line Floating Button */
.line-floating-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #06C755;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(6, 199, 85, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.line-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(6, 199, 85, 0.5);
}

.line-floating-btn svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .line-floating-btn {
        bottom: 120px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .line-floating-btn svg {
        width: 28px;
        height: 28px;
    }
}