/* CSS Variables for consistent sizing and colors */
:root {
    --container-max-width: 1120px; /* Match source code */
    --container-padding: 24px;
    --section-spacing: 80px;
    --border-radius: 12px;
    --font-size-headline: clamp(32px, 5vw, 56px);
    --font-size-body: 16px;
    --font-size-small: 14px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    
    /* Color System - Unified - Using hover color as primary */
    --color-primary: #4ce3f7;
    --color-primary-hover: #0400ff;
    --color-primary-gradient: linear-gradient(30deg, #4ce3f7, #0400ff);
    --color-primary-gradient-hover: linear-gradient(30deg, #0400ff, #4ce3f7);
    --color-text: #ffffff;
    --color-text-secondary: #cccccc;
    --color-bg-dark: #000000;
    --color-bg-card: #1a1a1a;
    --color-bg-card-hover: #2a2a2a;
    --color-border: #333333;
    --color-accent: #4ce3f7;
}

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

body {
    background-color: var(--color-bg-dark);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--color-text);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 8rem;
}

/* From Uiverse.io by niat786 */
.btn,
button {
    border: none;
    color: #fff;
    background-image: linear-gradient(30deg, #0400ff, #4ce3f7);
    border-radius: 20px;
    background-size: 100% auto;
    font-family: inherit;
    font-size: 17px;
    padding: 0.6em 1.5em;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover,
button:hover {
    background-position: right center;
    background-size: 200% auto;
    -webkit-animation: pulse 2s infinite;
    animation: pulse512 1.5s infinite;
}

@keyframes pulse512 {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.btn:disabled,
button:disabled {
    cursor: auto;
    opacity: 0.6;
}

.btn-primary,
a.btn-primary {
    background-image: linear-gradient(30deg, #0400ff, #4ce3f7);
    height: 2.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 0.3125rem 1.125rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

a.btn-primary:hover {
    opacity: 0.9;
}

/* Container utility class */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header */
.header {
    position: fixed;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 8rem);
    max-width: calc(100% - 8rem);
    padding: 0.75rem 2.5rem;
    height: auto;
    min-height: 2.75rem;
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

@media (min-width: 1024px) {
    .header {
        justify-content: space-between;
    }
}

.header-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--spacing-md);
    position: relative;
}

@media (min-width: 1024px) {
    .header-container {
        grid-template-columns: 1fr auto 1fr;
    }
}

/* Logo */
.logo {
    display: none;
    align-items: center;
    flex-shrink: 0;
    width: 12rem;
    text-decoration: none;
    grid-column: 1;
    justify-self: start;
}

@media (min-width: 1024px) {
    .logo {
        display: flex;
    }
}

.logo-image {
    height: 2.3rem;
    width: auto;
    display: block;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #757575 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-align: left;
    display: inline-block;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    grid-column: 2;
    justify-self: center;
}

.nav-container {
    width: 34.0625rem;
    max-width: 100%;
    height: 100%;
    padding: 0.375rem 0.625rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    outline: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin: 0 auto;
}

.nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
    background-color: transparent;
    display: inline-block;
}

.nav-link:hover {
    background-color: rgba(50, 50, 50, 0.5);
    color: var(--color-text-secondary);
}

/* Header Buttons Group */
.header-buttons {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-shrink: 0;
    grid-column: 3;
    justify-self: end;
}

/* Header Login Button - Standalone */
.header-login-btn {
    display: none;
    flex-shrink: 0;
    background-color: rgba(40, 40, 40, 0.4);
    background-image: none !important;
    border: none;
    border-radius: 999px;
    width: auto;
    height: 2.5rem;
    padding: 0.3125rem 1.125rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.header-login-btn:hover {
    background-color: rgba(50, 50, 50, 0.5);
}

.header-login-btn:active {
    background-color: rgba(35, 35, 35, 0.5);
}

.header-login-btn:disabled {
    opacity: 0.5;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .header-login-btn {
        display: inline-flex;
    }
}

/* Header CTA Button */
.header-cta-btn {
    display: none;
    flex-shrink: 0;
    background-color: rgba(239, 68, 68, 0.2);
    border: none;
    border-radius: 999px;
    overflow: hidden;
    width: auto;
    height: 2.5rem;
    gap: 1rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
    padding: 0;
    text-decoration: none;
}

.header-cta-btn:hover {
    opacity: 0.8;
}

.header-cta-btn:disabled {
    opacity: 0.5;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .header-cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

.header-cta-content {
    width: 100%;
    height: 2.5rem;
    padding: 0.3125rem 1.125rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    background-color: var(--color-text);
    color: var(--color-text-secondary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.header-cta-countdown {
    text-align: center;
    justify-content: flex-start;
    color: var(--color-text-secondary);
    font-size: 0.75rem;
    font-weight: 700;
}

.header-cta-red-text {
    background-image: linear-gradient(30deg, #0400ff, #4ce3f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.header-cta-days {
    background-image: linear-gradient(30deg, #4ce3f7, #0400ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.header-cta-divider {
    width: 1px;
    height: 1px;
    background-color: var(--color-text-secondary);
    outline: 1.5px solid #ef4444;
    margin: 0 0.125rem;
    border-radius: 999px;
    outline-offset: -0.75px;
}

.header-cta-price {
    text-align: center;
    justify-content: flex-start;
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .header {
        top: 2.5rem;
        width: calc(100% - 4rem);
        max-width: calc(100% - 4rem);
        padding: 0.75rem 1.5rem;
    }
    
    .header-container {
        grid-template-columns: auto 1fr;
        justify-items: end;
    }
    
    .logo {
        display: flex;
        grid-column: 1;
    }
    
    .navbar {
        display: none;
    }
    
    .header-buttons {
        grid-column: 2;
        justify-self: end;
    }
    
    .header-login-btn {
        display: none;
    }
    
    .header-cta-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .header {
        top: 2rem;
        width: calc(100% - 3rem);
        max-width: calc(100% - 3rem);
        padding: 0.75rem 1.5rem;
        height: auto;
        min-height: 2.75rem;
    }
    
    .header-container {
        max-width: 100%;
        grid-template-columns: auto 1fr;
        justify-items: end;
    }
    
    .logo {
        display: flex;
        grid-column: 1;
    }
    
    .navbar {
        display: none;
    }
    
    .header-buttons {
        grid-column: 2;
        justify-self: end;
    }
    
    .header-login-btn {
        display: none;
    }
    
    .header-cta-btn {
        display: flex;
    }
}

@media (max-width: 480px) {
    .header {
        top: 1.5rem;
        width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        padding: 0.75rem 1rem;
    }
    
    .header-container {
        grid-template-columns: auto 1fr;
        justify-items: end;
    }
    
    .logo {
        display: flex;
        grid-column: 1;
    }
    
    .navbar {
        display: none;
    }
    
    .header-buttons {
        grid-column: 2;
        justify-self: end;
    }
    
    .header-login-btn {
        display: none;
    }
    
    .header-cta-btn {
        display: flex;
    }
}

/* Hero Section */
.hero {
    padding-top: calc(2rem + 2.75rem + var(--spacing-lg) + var(--spacing-md) + var(--spacing-md));
    padding-bottom: var(--spacing-xl);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-image: url('asset/frame-2087326713-p-2000blue.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 0;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

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

@media (min-width: 768px) {
    .hero {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-left: 0;
        padding-right: 0;
    }
}

.hero .container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.hero-subtitle-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
    color: #ffffff;
    margin-top: 0.25rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

/* Headline */
.hero-headline {
    font-family: 'Inter', sans-serif;
    font-size: 45px;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.headline-line {
    display: block;
}

.headline-line.highlight {
    color: #008de6;
}

/* Subtitle */
.hero-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    line-height: 1.5;
}

/* Hero CTA Button */
.hero-cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}


/* Video Container */
.video-container {
    width: 100%;
    max-width: 704px;
    margin: 0 auto;
    margin-top: var(--spacing-xs);
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 24px rgba(76, 227, 247, 0.2);
}

.video-container:hover .hero-video {
    transform: scale(1.02);
    filter: brightness(1.05);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: calc(24px - 1.5px);
    background-color: var(--color-bg-dark);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: calc(24px - 1.5px);
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Responsive Hero Section */
@media (max-width: 1024px) {
    .hero {
        padding-top: calc(2rem + 2.75rem + var(--spacing-md) + var(--spacing-md));
        padding-bottom: var(--spacing-xl);
    }
    
    .hero-headline {
        font-size: 40px;
    }
    
    .section-2-title {
        font-size: 40px;
    }
    
    .video-container {
        max-width: 704px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 6px;
        --section-spacing: 32px;
    }
    
    .section-2 {
        padding-bottom: calc(var(--section-spacing) + 30px);
    }
    
    .courses {
        padding-top: calc(var(--section-spacing) + 30px);
        padding-bottom: calc(var(--section-spacing) + 30px);
    }
    
    .editor-types {
        padding-top: calc(var(--section-spacing) + 30px);
        padding-bottom: calc(var(--section-spacing) + 30px);
    }
    
    .testimonials {
        padding-top: calc(var(--section-spacing) + 30px);
        padding-bottom: calc(var(--section-spacing) + 30px);
    }
    
    .features-section {
        padding-top: calc(var(--section-spacing) + 30px);
        padding-bottom: calc(var(--section-spacing) + 30px);
    }
    
    .footer {
        padding-top: calc(var(--section-spacing) + 50px);
        margin-top: 30px;
    }
    
    .hero {
        padding-top: calc(3.5rem + 2.75rem + var(--spacing-md) + var(--spacing-sm));
        padding-bottom: var(--spacing-md);
        padding-left: 0.6rem;
        padding-right: 0.6rem;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
        overflow: hidden;
    }
    
    .hero-headline {
        font-size: 27.5px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-2-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-subtitle-text {
        font-size: 0.875rem;
    }
    
    .video-container {
        max-width: 90vw;
        border-radius: 16px;
    }
    
    .video-wrapper {
        border-radius: calc(16px - 1.5px);
    }
    
    .hero-video {
        border-radius: calc(16px - 1.5px);
    }
}

@media (max-width: 480px) {
    :root {
        --section-spacing: 28px;
    }
    
    .section-2 {
        padding-bottom: calc(var(--section-spacing) + 25px);
    }
    
    .courses {
        padding-top: calc(var(--section-spacing) + 25px);
        padding-bottom: calc(var(--section-spacing) + 25px);
    }
    
    .editor-types {
        padding-top: calc(var(--section-spacing) + 25px);
        padding-bottom: calc(var(--section-spacing) + 25px);
    }
    
    .testimonials {
        padding-top: calc(var(--section-spacing) + 25px);
        padding-bottom: calc(var(--section-spacing) + 25px);
    }
    
    .features-section {
        padding-top: calc(var(--section-spacing) + 25px);
        padding-bottom: calc(var(--section-spacing) + 25px);
    }
    
    .footer {
        padding-top: calc(var(--section-spacing) + 40px);
        margin-top: 25px;
    }
    
    .hero {
        padding-top: calc(3rem + 2.75rem + var(--spacing-sm) + var(--spacing-xs));
        padding-bottom: var(--spacing-sm);
        padding-left: 0.4rem;
        padding-right: 0.4rem;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        overflow: hidden;
    }
    
    .hero .container {
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero-headline {
        font-size: 21.5px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-2-title {
        font-size: 22px;
    }
    
    .features-section .section-title {
        font-size: 22px;
    }
    
    .hero-subtitle-text {
        font-size: 0.75rem;
    }
    
    .video-container {
        border-radius: 12px;
    }
    
    .video-wrapper {
        border-radius: calc(12px - 1.5px);
    }
    
    .hero-video {
        border-radius: calc(12px - 1.5px);
    }
    
    .hero-subtitle {
        font-size: 12px;
        padding: 0 var(--spacing-sm);
    }
}

/* Main Content */
.main-content {
    width: 100%;
    background-color: var(--color-bg-dark);
    position: relative;
}

.price-strikethrough {
    text-decoration: line-through;
    color: var(--color-text-secondary);
}

/* Section Common Styles */
section {
    padding: var(--section-spacing) 1.5rem;
    width: 100%;
    box-sizing: border-box;
    background-color: var(--color-bg-dark);
    position: relative;
}

@media (min-width: 768px) {
    section {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    section {
        padding-left: 0;
        padding-right: 0;
    }
}

.section-header {
    width: 100%;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

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

.section-countdown {
    margin-bottom: var(--spacing-xs);
}

.name-section {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #008de6;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 0.25rem 0.875rem;
    background-color: rgba(255, 255, 255, 0.05);
    height: 2.5rem;
}

.section-2 .name-section {
    color: #008de6;
}

.section-2-title-line {
    color: #008de6;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
}

.section-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: calc(var(--spacing-lg) * 0.4);
}

/* Section 2 */
.section-2 {
    padding-top: var(--section-spacing);
    padding-bottom: calc(var(--section-spacing) + 40px);
    padding-left: 1.5rem;
    scroll-margin-top: 6rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .section-2 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .section-2 {
        padding-left: 0;
        padding-right: 0;
    }
}

.section-2-wrapper {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    padding: 0.75px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.section-2-inner {
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 1);
    background-image: url('asset/frame-2087326713-p-2000blue-copy.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: calc(20px - 0.75px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.section-2-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.05);
    z-index: 0;
    border-radius: calc(20px - 0.75px);
}

.section-2 .container {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.section-2-title {
    font-family: 'Inter', sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.section-2-title-line {
    display: block;
}

.section-2-title-line-white {
    background-image: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
    color: #ffffff;
}

/* Features Bar */
.section-2-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 1rem 2rem;
    width: 100%;
    max-width: 600px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* Courses Section */
.courses {
    padding-top: calc(var(--section-spacing) + 40px);
    padding-bottom: calc(var(--section-spacing) + 40px);
    scroll-margin-top: 6rem;
    contain: layout style paint;
    will-change: scroll-position;
}

.courses .container {
    max-width: 60.1825rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .courses .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .courses .container {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .courses .container {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .courses .container {
        padding-left: 0.2rem;
        padding-right: 0.2rem;
        gap: 0.8rem;
    }
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    width: 100%;
    box-sizing: border-box;
    align-items: stretch;
}

.course-card-wrapper {
    max-width: 90vw;
    width: 100%;
    border-radius: 20px;
    padding: 0.75px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    min-width: 0;
    height: 100%;
    transform: translateZ(0);
    will-change: transform;
}

@media (min-width: 768px) {
    .course-card-wrapper {
        max-width: 24.72rem;
    }
}

.course-card-inner {
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-dark);
    border-radius: calc(20px - 0.75px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.course-card-content {
    width: 100%;
    background-color: var(--color-bg-dark);
    display: flex;
    flex-direction: column;
    flex: 1;
    box-sizing: border-box;
    min-width: 0;
}

.course-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
    min-height: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-width: 0;
    min-height: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.course-card-wrapper:hover .course-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.course-image-shadow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 -10px 15px 7px #000A16;
}

.course-text-section {
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.25rem;
    flex-shrink: 0;
    flex-grow: 0;
    align-self: stretch;
    position: relative;
    overflow: visible;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-height: 5.5rem;
    contain: layout style paint;
    transform: translateZ(0);
}


.course-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    line-height: 1.4rem;
    margin: 0;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
}

.course-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin: 0;
    width: 100%;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

@media (max-width: 768px) {
    .section-2 {
        padding-left: 0.6rem;
        padding-right: 0.6rem;
    }
    
    .section-2-wrapper {
        max-width: 100%;
        border-radius: 16px;
        padding: 0.75px;
    }
    
    .section-2-inner {
        border-radius: calc(16px - 0.75px);
    }
    
    .section-2 .container {
        padding: var(--spacing-md);
    }
    
    .section-2-title {
        font-size: 31px;
    }
    
    .name-section {
        font-size: 0.75rem;
        padding: 0.25rem 0.875rem;
        height: 2.5rem;
    }
    
    .section-2-features {
        flex-direction: row;
        gap: var(--spacing-md);
        padding: 0.875rem 1.25rem;
        max-width: 100%;
        flex-wrap: wrap;
    }
    
    .feature-item {
        flex: 0 0 auto;
        justify-content: center;
    }
    
    .feature-icon {
        width: 18px;
        height: 18px;
    }
    
    .feature-text {
        font-size: 0.8125rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        width: 100%;
        padding: 0 0.25rem;
        max-width: 100%;
    }
    
    .course-card-wrapper {
        max-width: 100%;
        width: 100%;
        height: auto;
        min-height: 14rem;
        min-width: 0;
    }
    
    .course-image-container {
        aspect-ratio: 16 / 9;
        min-height: 180px;
    }
    
    .course-text-section {
        padding: 0.7rem 1rem;
        min-height: 5.5rem;
    }
    
    .course-title {
        font-size: 1rem;
        line-height: 1.3rem;
    }
    
    .course-description {
        font-size: 0.7rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .courses-grid {
        padding: 0 0.2rem;
        gap: var(--spacing-xs);
        max-width: 100%;
    }
    
    .course-card-wrapper {
        min-height: 13rem;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    
    .course-image-container {
        min-height: 160px;
    }
    
    .course-text-section {
        padding: 0.6rem 0.8rem;
    }
    
    .course-title {
        font-size: 0.9375rem;
    }
    
    .course-description {
        font-size: 0.6875rem;
    }
}

/* Editor Types Section */
.editor-types {
    padding-top: calc(var(--section-spacing) + 40px);
    padding-bottom: calc(var(--section-spacing) + 40px);
    scroll-margin-top: 6rem;
}

.editor-types .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .editor-types .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .editor-types .container {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .editor-types .container {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .editor-types .container {
        padding-left: 0.2rem;
        padding-right: 0.2rem;
        gap: var(--spacing-sm);
    }
}

.editor-types .section-header {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
}

.editor-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
}

.editor-type-card {
    max-width: 90vw;
    width: auto;
    border-radius: 1.25rem;
    padding: 1.5px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.editor-type-card-inner {
    border-radius: calc(1.25rem - 1.5px);
    background-color: var(--color-bg-dark);
    overflow: hidden;
    height: 100%;
    position: relative;
}

.editor-type-card-aura .editor-type-card-inner {
    background-color: var(--color-bg-dark);
}

.editor-type-card-aura .editor-type-card-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('asset/light.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    border-radius: calc(1.25rem - 1.5px);
}

.editor-type-card-aura .editor-type-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.05);
    z-index: 1;
    border-radius: calc(1.25rem - 1.5px);
}

.editor-type-card-aura .editor-type-card-content {
    position: relative;
    z-index: 2;
}

.editor-type-card-aura .editor-type-title {
    color: #ffffff;
}

.editor-type-card-aura .editor-type-description {
    color: #ffffff;
}

.editor-type-card-content {
    padding: 3rem;
    min-height: 29rem;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.editor-type-card-content-beginner {
    min-height: 33rem;
}

.editor-type-header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
}

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

.editor-type-title {
    color: var(--color-text-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    margin: 0;
    flex: 1;
}

.editor-type-description {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
}

.editor-type-divider {
    width: 88%;
    height: 1.5px;
    align-self: center;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 1.5rem 0;
}

.editor-type-features {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.625rem;
    width: 100%;
    margin-bottom: var(--spacing-lg);
}

.editor-type-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.editor-type-check-icon {
    width: 22px;
    height: 22px;
    color: var(--color-text-secondary);
    flex-shrink: 0;
}

.editor-type-card-aura .editor-type-check-icon {
    color: #008de6;
}

.editor-type-feature-text {
    justify-content: flex-start;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
}

.editor-type-feature-text-highlight {
    background-image: linear-gradient(30deg, #4ce3f7, #0400ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 400;
}

.editor-type-feature-text-strikethrough {
    text-decoration: line-through;
    opacity: 0.6;
    background-image: linear-gradient(30deg, #4ce3f7, #0400ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

@keyframes lightSweep {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.editor-type-price {
    flex-shrink: 0;
    margin-left: var(--spacing-md);
}

.editor-type-price-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background-image: linear-gradient(30deg, #0400ff, #4ce3f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin: 0;
    white-space: nowrap;
}

.editor-type-price-text-gray {
    background-image: linear-gradient(30deg, #b0b0b0, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.editor-type-btn,
a.editor-type-btn {
    margin-top: auto;
    padding-top: 0;
    width: 100%;
    height: auto;
    min-height: 2.5rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 999px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    border: none;
    cursor: pointer;
    flex-wrap: wrap;
}

.editor-type-btn-original-price {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
    line-height: 1.2;
    flex-shrink: 0;
}

.editor-type-btn-beginner .editor-type-btn-original-price {
    color: rgba(0, 0, 0, 0.5);
}

.editor-type-btn-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
    flex-shrink: 0;
}

.editor-type-btn-price-gray {
    color: #000000;
}

.editor-type-btn-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    width: 100%;
    flex-basis: 100%;
    margin-top: -0.2rem;
}

.editor-type-btn-beginner .editor-type-btn-subtitle {
    color: rgba(0, 0, 0, 0.7);
}

.editor-type-btn-beginner {
    background-image: none !important;
    background-color: #ffffff !important;
    box-shadow: 0px 0px 25px 5px rgba(33, 151, 237, 0.25);
    transition: all 0.3s ease;
}

.editor-type-btn-beginner:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .editor-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
        max-width: 950px;
    }
    
    .editor-type-card {
        max-width: 100%;
    }
    
    .editor-type-card-content {
        min-height: 33rem;
    }
    
    .editor-type-card-content-beginner {
        min-height: 33rem;
    }
}

@media (max-width: 768px) {
    .editor-types-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 0.25rem;
        max-width: 100%;
    }
    
    .editor-type-card {
        max-width: 100%;
        width: 100%;
        min-width: 0;
    }
    
    .editor-type-card-content {
        padding: 1.5rem;
        min-height: 29rem;
    }
    
    .editor-type-btn,
    a.editor-type-btn {
        padding: 0.75rem 1rem;
        min-height: 3rem;
        gap: 0.375rem;
    }
    
    .editor-type-btn-price {
        font-size: 1.2rem;
    }
    
    .editor-type-btn-original-price {
        font-size: 0.8125rem;
    }
    
    .editor-type-btn-subtitle {
        margin-top: -0.3rem;
    }
}

@media (max-width: 480px) {
    .editor-types-grid {
        padding: 0 0.2rem;
        gap: var(--spacing-sm);
        max-width: 100%;
    }
    
    .editor-type-card {
        max-width: 100%;
        width: 100%;
        min-width: 0;
    }
    
    .editor-type-card-content {
        padding: 1rem;
        min-height: 26rem;
    }
    
    .editor-type-btn,
    a.editor-type-btn {
        padding: 0.625rem 0.875rem;
        min-height: 2.75rem;
        gap: 0.375rem;
    }
    
    .editor-type-btn-price {
        font-size: 1.1rem;
    }
    
    .editor-type-btn-original-price {
        font-size: 0.75rem;
    }
    
    .editor-type-btn-subtitle {
        font-size: 0.6875rem;
        margin-top: -0.3rem;
    }
    
    .editor-type-header-top {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .editor-type-title {
        font-size: 1.25rem;
    }
    
    .editor-type-price-text {
        font-size: 1.25rem;
    }
    
    .editor-type-description {
        font-size: 0.8125rem;
    }
    
    .editor-type-feature-text {
        font-size: 0.8125rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding-top: calc(var(--section-spacing) + 40px);
    padding-bottom: calc(var(--section-spacing) + 40px);
    scroll-margin-top: 6rem;
}

.testimonials .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
}

@media (min-width: 768px) {
    .testimonials .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .testimonials .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.testimonials .section-header {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
}

.testimonials-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.testimonials-track {
    display: flex;
    gap: var(--spacing-lg);
    width: fit-content;
    animation: scrollTestimonials 40s linear infinite;
    will-change: transform;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.testimonials-carousel:hover .testimonials-track {
    animation-play-state: paused;
}

    .testimonial-card {
        min-width: 450px;
    max-width: 400px;
    width: 400px;
    border-radius: 1.25rem;
    padding: 1.5px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-card-inner {
    border-radius: calc(1.25rem - 1.5px);
    background-color: rgba(20, 20, 20, 1);
    overflow: hidden;
    height: 100%;
    position: relative;
}

.testimonial-card-content {
    padding: 1.5rem 2rem 1.5rem 2rem;
    min-height: auto;
    height: auto;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.testimonial-header {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--spacing-md);
}

.testimonial-author {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--spacing-sm);
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}


.avatar-placeholder {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.125rem;
}

.testimonial-name {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.testimonial-role {
    color: var(--color-text-secondary);
    font-size: 0.75rem;
    font-weight: 300;
    font-style: italic;
    margin: 0;
}

.testimonial-progress {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: var(--spacing-sm);
}

.testimonial-progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.testimonial-progress-label span {
    color: var(--color-text-secondary);
    font-size: 0.75rem;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.testimonial-progress-bar-wrapper {
    width: 100%;
    position: relative;
}

.testimonial-progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: visible;
    position: relative;
}

.testimonial-progress-fill {
    height: 100%;
    background: linear-gradient(30deg, #4ce3f7, #0400ff);
    border-radius: 999px;
    position: relative;
}

.testimonial-progress-marker {
    position: absolute;
    top: -32px;
    left: 0%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    pointer-events: none;
    gap: 4px;
}

.testimonial-progress-marker-text {
    font-size: 0.625rem;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    white-space: nowrap;
    background-color: var(--color-text);
    background-image: linear-gradient(30deg, #0400ff, #4ce3f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 1.5rem;
    order: 1;
    position: relative;
}

.testimonial-progress-marker-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-text);
    border-radius: 999px;
    z-index: -1;
}

.testimonial-progress-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    order: 2;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    width: 100%;
    overflow-y: auto;
    max-height: 4rem;
}

.testimonial-title {
    color: var(--color-text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.testimonial-text {
    color: var(--color-text-secondary);
    font-size: 0.75rem;
    font-weight: 300;
    font-style: italic;
    margin: 0;
    line-height: 1.4;
}

.testimonials .section-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--spacing-lg);
}

@media (min-width: 768px) {
    .testimonials .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .testimonial-card {
        width: 400px;
        min-width: 400px;
    }
}

@media (max-width: 768px) {
    .testimonials .container {
        padding: 0 1.5rem;
    }
    
    .testimonial-card {
        width: calc(92vw - 3rem);
        min-width: calc(92vw - 3rem);
    }
    
    .testimonial-card-content {
        padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    }
    
    .testimonials-track {
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .testimonials .container {
        padding: 0 1.5rem;
    }
    
    .testimonial-card {
        width: calc(92vw - 2rem);
        min-width: calc(92vw - 2rem);
    }
    
    .testimonial-card-content {
        padding: 1.25rem 1.25rem 1.25rem 1.25rem;
    }
    
    .testimonial-content {
        max-height: 4rem;
        overflow: hidden;
    }
    
    .testimonials-track {
        gap: var(--spacing-sm);
    }
}

/* Features Section */
.features-section {
    padding-top: calc(var(--section-spacing) + 40px);
    padding-bottom: calc(var(--section-spacing) + 40px);
    scroll-margin-top: 6rem;
}

.features-section .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--spacing-xl);
    align-items: center;
}

.features-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    align-items: flex-start;
    text-align: left;
}

.features-section .section-header {
    width: 100%;
    text-align: left;
    margin-bottom: 0;
}

.features-section .section-title {
    text-align: left;
    font-size: 32px;
}

.features-checklist {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.feature-check-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.feature-check-icon {
    width: 22px;
    height: 22px;
    color: #008de6;
    flex-shrink: 0;
}

.feature-check-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.features-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.features-img:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}

.features-cta {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--spacing-lg);
}

@media (min-width: 768px) {
    .features-section .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .features-section .container {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .features-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: var(--spacing-lg);
    }
    
    .features-image {
        order: -1;
    }
    
    .features-img {
        max-width: 100%;
    }
    
    .features-cta {
        grid-column: 1;
    }
}

/* Footer */
.footer {
    padding: calc(var(--section-spacing) + 60px) 1.5rem var(--section-spacing) 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    box-sizing: border-box;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .footer {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .footer {
        padding-left: 0;
        padding-right: 0;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-brand {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
}

.footer-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.social-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link:hover {
    color: #008de6;
}

.social-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.social-link:hover .social-icon {
    color: #008de6;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: var(--spacing-lg);
    align-self: flex-start;
    padding-top: calc(var(--spacing-md) + 1.5rem);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-column-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.footer-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-secondary);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 20px;
    }
    
    .section-2 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .section-2-wrapper {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .section-2-inner {
        border-radius: calc(12px - 0.75px);
    }
    
    .section-2 .container {
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
    }
    
    .section-2-title {
        font-size: 26px;
    }
    
    .name-section {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
        height: 2.5rem;
    }
    
    .section-2-features {
        flex-direction: row;
        gap: var(--spacing-sm);
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .feature-item {
        flex: 0 0 auto;
    }
    
    .feature-icon {
        width: 16px;
        height: 16px;
    }
    
    .feature-text {
        font-size: 0.75rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed !important;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: #2a2a2a !important;
    background-image: none !important;
    border: none !important;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    overflow: visible;
    padding: 0;
    margin: 0;
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: #3a3a3a !important;
    background-image: none !important;
    border: 1px solid #ffffff !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

.scroll-to-top svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff !important;
    fill: none !important;
    stroke: #ffffff !important;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: none !important;
    display: block;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .scroll-to-top svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* Zalo Button */
.discord-button {
    position: fixed !important;
    bottom: 9.5rem;
    right: 2rem;
    min-width: 3rem;
    height: 3rem;
    background-color: #ffffff !important;
    background-image: none !important;
    border: none !important;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9999;
    overflow: visible;
    padding: 0 0.75rem;
    margin: 0;
    text-decoration: none;
}

.discord-button:hover {
    background-color: #f0f0f0 !important;
    background-image: none !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.discord-icon {
    width: 2.0125rem;
    height: 2.0125rem;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.discord-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #000000;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.discord-button:hover .discord-text,
.discord-button.text-visible .discord-text {
    opacity: 1;
    max-width: 200px;
}

.zalo-button {
    position: fixed !important;
    bottom: 5.5rem;
    right: 2rem;
    min-width: 3rem;
    height: 3rem;
    background-color: #ffffff !important;
    background-image: none !important;
    border: none !important;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9999;
    overflow: visible;
    padding: 0 0.75rem;
    margin: 0;
    text-decoration: none;
}

.zalo-button:hover {
    background-color: #f0f0f0 !important;
    background-image: none !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.zalo-icon {
    width: 2.0125rem;
    height: 2.0125rem;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.zalo-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #000000;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.zalo-button:hover .zalo-text,
.zalo-button.text-visible .zalo-text {
    opacity: 1;
    max-width: 200px;
}

@media (max-width: 768px) {
    .discord-button {
        bottom: 8.5rem;
        right: 1.5rem;
        min-width: 2.5rem;
        height: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .discord-icon {
        width: 1.725rem;
        height: 1.725rem;
    }

    .discord-text {
        font-size: 0.6875rem;
    }

    .zalo-button {
        bottom: 4.5rem;
        right: 1.5rem;
        min-width: 2.5rem;
        height: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .zalo-icon {
        width: 1.725rem;
        height: 1.725rem;
    }

    .zalo-text {
        font-size: 0.6875rem;
    }
}

/* Login Modal */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
}

.login-modal.show {
    display: flex;
}

.login-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.login-modal-content {
    position: relative;
    background-color: rgba(10, 10, 15, 0.95);
    border-radius: 1.5rem;
    padding: 5.25rem 3rem;
    max-width: 600px;
    width: 100%;
    min-height: 550px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10001;
    display: flex;
    flex-direction: column;
}

.login-modal-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    z-index: 10002;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
}

.login-modal-close svg {
    width: 20px;
    height: 20px;
}

.login-modal-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    margin: 0 0 0.5rem 0;
}

.login-modal-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin: 0 0 2rem 0;
}

/* Radio buttons for form switching - From Uiverse.io by Yaya12085 */
.radio-inputs {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    box-shadow: 0 0 0px 1px rgba(255, 255, 255, 0.1);
    padding: 0.25rem;
    width: 100%;
    font-size: 14px;
    margin-bottom: 2rem;
}

.radio-inputs .radio {
    flex: 1 1 auto;
    text-align: center;
}

.radio-inputs .radio input {
    display: none;
}

.radio-inputs .radio .name {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    border: none;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.15s ease-in-out;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
}

.radio-inputs .radio input:checked + .name {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
    color: #ffffff;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
    min-height: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-hint {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 0.25rem 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group-small {
    flex: 1;
}

.form-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
}

.form-input {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

/* Prevent browser auto-fill from changing colors */
.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus,
.form-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.05) inset !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

.form-input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.08) inset !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper .form-input {
    padding-right: 2.5rem;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.password-icon {
    width: 14px;
    height: 14px;
    display: block;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(30%) opacity(0.7);
}

.password-toggle.active .password-icon {
    filter: brightness(0) saturate(100%) invert(100%) opacity(1);
}

.form-warning {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.6875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin: 0.5rem 0 0 0;
    line-height: 1.4;
}

.form-tip {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.form-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #4ce3f7;
}

.checkbox-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

/* Submit button in login modal uses btn-primary style */
.login-form .btn-primary {
    width: 100%;
}

.form-cancel-btn {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
    text-align: center;
    padding: 0.5rem;
}

.form-cancel-btn:hover {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .login-modal-content {
        padding: 3rem 2.25rem;
    }
    
    .login-modal-title {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Slide Up Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide Down Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide Left Animation */
@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide Right Animation */
@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale In Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Fade In Up with Stagger */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Text Animation */
@keyframes heroTextReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Classes - Use transitions for scroll animations */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.animated {
    opacity: 1;
}

/* Fade In */
.fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

/* Slide Up */
.slide-up {
    animation: slideUp 0.4s ease-out forwards;
}

.animate-on-scroll.slide-up {
    transform: translateY(20px);
}

.animate-on-scroll.slide-up.animated {
    transform: translateY(0);
}

/* Slide Down */
.slide-down {
    animation: slideDown 0.4s ease-out forwards;
}

/* Slide Left */
.slide-left {
    animation: slideLeft 0.4s ease-out forwards;
}

/* Slide Right */
.slide-right {
    animation: slideRight 0.4s ease-out forwards;
}

/* Scale In */
.scale-in {
    animation: scaleIn 0.4s ease-out forwards;
}

.animate-on-scroll.scale-in {
    transform: scale(0.9);
}

.animate-on-scroll.scale-in.animated {
    transform: scale(1);
}

/* Fade In Up */
.fade-in-up {
    animation: fadeInUp 0.4s ease-out forwards;
}

.animate-on-scroll.fade-in-up {
    transform: translateY(20px);
}

.animate-on-scroll.fade-in-up.animated {
    transform: translateY(0);
}

/* Stagger Delay Classes */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Hero Section Animations - Only on initial load */
.hero {
    /* No transform needed - let it stay in normal flow */
}

.hero-headline {
    opacity: 0;
    animation: heroTextReveal 0.6s ease-out 0.2s forwards;
}

.hero-headline .headline-line {
    opacity: 0;
    animation: heroTextReveal 0.5s ease-out forwards;
}

.hero-headline .headline-line:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-headline .headline-line:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-subtitle-text {
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.6s forwards;
}

.hero-cta-wrapper {
    opacity: 0;
    animation: slideUp 0.5s ease-out 0.7s forwards;
}

.video-container {
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.8s forwards;
}

/* Don't apply scroll animations to hero section */
.hero.animate-on-scroll {
    opacity: 1 !important;
}

/* Header Animation */
@keyframes headerSlideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.header {
    animation: headerSlideDown 0.6s ease-out;
}

/* Card Hover Enhancements */
.course-card-wrapper,
.editor-type-card,
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card-wrapper:hover,
.editor-type-card:hover {
    transform: translateY(-4px) scale(1.01);
}

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

/* Button Pulse Animation Enhancement */
@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.btn:hover {
    animation: buttonPulse 1.5s ease-in-out infinite;
}

/* Section Header Animation */
.section-header {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.section-header.animated {
    opacity: 1;
}

/* Feature Check Items Animation */
.feature-check-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-check-item.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Checklist Items Animation */
.checklist-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.checklist-item.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Smooth Scroll Behavior */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

