/* ==========================================================================
   EntopLearning — Premium Theme Styles
   A complete design system for a professional e-learning platform
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS (CSS Custom Properties)
   ========================================================================== */
:root {
    /* Brand Colors — Professional Minimalist */
    --el-primary: #1e40af;
    --el-primary-dark: #1e3a8a;
    --el-primary-light: #3b82f6;
    --el-primary-50: #eff6ff;
    --el-primary-100: #dbeafe;
    --el-secondary: #334155;
    --el-secondary-dark: #1e293b;
    --el-accent: #0891b2;
    --el-accent-hover: #0e7490;
    --el-success: #059669;
    --el-warning: #d97706;
    --el-danger: #dc2626;

    /* Neutrals */
    --el-dark: #0f172a;
    --el-dark-800: #1e293b;
    --el-dark-700: #334155;
    --el-text: #475569;
    --el-text-light: #64748b;
    --el-text-muted: #94a3b8;
    --el-heading: #0f172a;
    --el-border: #e2e8f0;
    --el-border-light: #f1f5f9;

    /* Backgrounds */
    --el-bg: #ffffff;
    --el-bg-alt: #f8fafc;
    --el-bg-card: #ffffff;
    --el-bg-dark: #0f172a;
    --el-bg-dark-alt: #1e293b;

    /* Gradients */
    --el-gradient: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    --el-gradient-warm: linear-gradient(135deg, #0891b2 0%, #059669 100%);
    --el-gradient-cool: linear-gradient(135deg, #0891b2 0%, #1e40af 100%);
    --el-gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --el-gradient-hero: linear-gradient(135deg, #0c1929 0%, #111827 30%, #0f172a 100%);

    /* Shadows */
    --el-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --el-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --el-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --el-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --el-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    --el-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --el-shadow-glow: 0 0 30px rgba(30, 64, 175, 0.12);
    --el-shadow-glow-lg: 0 0 60px rgba(30, 64, 175, 0.15);

    /* Border Radius */
    --el-radius-sm: 8px;
    --el-radius: 12px;
    --el-radius-lg: 20px;
    --el-radius-xl: 28px;
    --el-radius-full: 9999px;

    /* Typography */
    --el-font-heading: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    --el-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions */
    --el-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --el-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --el-transition: all 0.3s var(--el-ease);
    --el-transition-fast: all 0.15s var(--el-ease);
    --el-transition-slow: all 0.5s var(--el-ease);

    /* Layout */
    --el-container: 1200px;
    --el-container-lg: 1400px;
    --el-header-height: 80px;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
.entop-theme *,
.entop-theme *::before,
.entop-theme *::after {
    box-sizing: border-box;
}

.entop-theme {
    font-family: var(--el-font-body);
    color: var(--el-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.entop-theme h1,
.entop-theme h2,
.entop-theme h3,
.entop-theme h4,
.entop-theme h5,
.entop-theme h6 {
    font-family: var(--el-font-heading);
    color: var(--el-heading);
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 0.5em;
}

.entop-theme p {
    margin: 0 0 1em;
}

.entop-theme a {
    color: var(--el-primary);
    text-decoration: none;
    transition: var(--el-transition-fast);
}

.entop-theme a:hover {
    color: var(--el-primary-dark);
}

.entop-theme img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom scrollbar */
.entop-theme ::-webkit-scrollbar {
    width: 8px;
}

.entop-theme ::-webkit-scrollbar-track {
    background: var(--el-bg-alt);
}

.entop-theme ::-webkit-scrollbar-thumb {
    background: var(--el-text-muted);
    border-radius: 4px;
}

.entop-theme ::-webkit-scrollbar-thumb:hover {
    background: var(--el-text-light);
}

/* ==========================================================================
   3. LAYOUT UTILITIES
   ========================================================================== */
.entop-container {
    width: 100%;
    max-width: var(--el-container);
    margin: 0 auto;
    padding: 0 24px;
}

.entop-container--lg {
    max-width: var(--el-container-lg);
}

.entop-main {
    position: relative;
}

/* Section spacing */
.entop-features,
.entop-courses-section,
.entop-how-it-works,
.entop-testimonials,
.entop-about-mission,
.entop-about-values,
.entop-about-team,
.entop-contact-section {
    padding: 100px 0;
}

.entop-features,
.entop-how-it-works,
.entop-about-values {
    background: var(--el-bg-alt);
}

/* Section headers */
.entop-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.entop-section-label {
    display: inline-block;
    font-family: var(--el-font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--el-primary);
    background: var(--el-primary-50);
    padding: 6px 16px;
    border-radius: var(--el-radius-full);
    margin-bottom: 16px;
}

.entop-section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--el-heading);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.entop-section-title--left {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    color: var(--el-heading);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.entop-section-subtitle {
    font-size: 17px;
    color: var(--el-text-light);
    line-height: 1.7;
    margin: 0;
}

.entop-gradient-text {
    background: var(--el-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */
.entop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--el-font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: var(--el-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--el-transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.entop-btn svg {
    transition: transform 0.3s var(--el-ease);
    flex-shrink: 0;
}

.entop-btn:hover svg {
    transform: translateX(4px);
}

.entop-btn--primary {
    background: var(--el-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.entop-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
    color: #fff;
}

.entop-btn--outline {
    background: transparent;
    color: var(--el-primary);
    border-color: var(--el-primary);
}

.entop-btn--outline:hover {
    background: var(--el-primary);
    color: #fff;
    transform: translateY(-2px);
}

.entop-btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.entop-btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    transform: translateY(-2px);
}

.entop-btn--white {
    background: #fff;
    color: var(--el-primary);
    border-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.entop-btn--white:hover {
    background: #f8fafc;
    color: var(--el-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.entop-btn--ghost-white {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.entop-btn--ghost-white:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.entop-btn--sm {
    padding: 8px 20px;
    font-size: 14px;
    border-radius: var(--el-radius-sm);
}

.entop-btn--lg {
    padding: 16px 36px;
    font-size: 16px;
}

.entop-btn--full {
    width: 100%;
}

/* ==========================================================================
   5. PAGE LOADER
   ========================================================================== */
.entop-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--el-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s var(--el-ease), visibility 0.5s;
}

.entop-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.entop-loader__spinner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.entop-loader__ring {
    width: 60px;
    height: 60px;
    border: 3px solid var(--el-border);
    border-top-color: var(--el-primary);
    border-radius: 50%;
    animation: entop-spin 0.8s linear infinite;
}

.entop-loader__text {
    position: absolute;
    font-family: var(--el-font-heading);
    font-weight: 700;
    font-size: 12px;
    color: var(--el-primary);
    letter-spacing: 0.05em;
}

@keyframes entop-spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   6. HEADER / NAVIGATION
   ========================================================================== */
.entop-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--el-header-height);
    transition: var(--el-transition);
}

/* Default state for homepage: transparent */
.entop-home .entop-header {
    background: transparent;
}

/* Default state for inner pages: solid */
.entop-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--el-border-light);
}

/* Scrolled state: frosted glass */
.entop-header.is-scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--el-shadow-sm);
    border-bottom: 1px solid var(--el-border);
}

.entop-header__inner {
    max-width: var(--el-container-lg);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Logo */
.entop-header__logo {
    flex-shrink: 0;
    text-decoration: none;
}

.entop-header__logo-text {
    font-family: var(--el-font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--el-heading);
    letter-spacing: -0.02em;
    transition: var(--el-transition-fast);
}

.entop-header__logo-mark {
    background: var(--el-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.entop-home .entop-header:not(.is-scrolled) .entop-header__logo-text {
    color: #fff;
}

.entop-home .entop-header:not(.is-scrolled) .entop-header__logo-mark {
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.entop-header__nav {
    display: none;
}

@media (min-width: 768px) {
    .entop-header__nav {
        display: flex;
    }
}

.entop-header__menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.entop-header__menu-item a {
    display: block;
    padding: 10px 18px;
    font-family: var(--el-font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--el-dark-700);
    text-decoration: none;
    border-radius: var(--el-radius-sm);
    transition: var(--el-transition-fast);
    position: relative;
}

.entop-header__menu-item a:hover,
.entop-header__menu-item.is-active a {
    color: var(--el-primary);
    background: var(--el-primary-50);
}

.entop-home .entop-header:not(.is-scrolled) .entop-header__menu-item a {
    color: rgba(255, 255, 255, 0.85);
}

.entop-home .entop-header:not(.is-scrolled) .entop-header__menu-item a:hover,
.entop-home .entop-header:not(.is-scrolled) .entop-header__menu-item.is-active a {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Header actions */
.entop-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.entop-header__login-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--el-dark-700);
    padding: 8px 16px;
    text-decoration: none;
    transition: var(--el-transition-fast);
}

.entop-header__login-link:hover {
    color: var(--el-primary);
}

.entop-home .entop-header:not(.is-scrolled) .entop-header__login-link {
    color: rgba(255, 255, 255, 0.85);
}

.entop-home .entop-header:not(.is-scrolled) .entop-header__login-link:hover {
    color: #fff;
}

.entop-home .entop-header:not(.is-scrolled) .entop-btn--primary.entop-btn--sm {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.entop-home .entop-header:not(.is-scrolled) .entop-btn--primary.entop-btn--sm:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Cart */
.entop-header__cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--el-radius-sm);
    color: var(--el-dark-700);
    transition: var(--el-transition-fast);
}

.entop-header__cart:hover {
    background: var(--el-primary-50);
    color: var(--el-primary);
}

.entop-home .entop-header:not(.is-scrolled) .entop-header__cart {
    color: rgba(255, 255, 255, 0.85);
}

.entop-header__cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--el-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger */
.entop-header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 1001;
}

@media (min-width: 768px) {
    .entop-header__hamburger {
        display: none;
    }
}

.entop-header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--el-heading);
    border-radius: 2px;
    transition: var(--el-transition);
    transform-origin: center;
}

.entop-home .entop-header:not(.is-scrolled) .entop-header__hamburger span {
    background: #fff;
}

.entop-header__hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.entop-header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.entop-header__hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.entop-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--el-transition-slow);
}

.entop-mobile-menu.is-active {
    opacity: 1;
    visibility: visible;
}

.entop-mobile-menu__inner {
    text-align: center;
    padding: 24px;
    transform: translateY(20px);
    transition: transform 0.5s var(--el-ease);
}

.entop-mobile-menu.is-active .entop-mobile-menu__inner {
    transform: translateY(0);
}

.entop-mobile-menu__nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.entop-mobile-menu__nav ul li {
    margin: 0;
}

.entop-mobile-menu__nav ul li a {
    display: block;
    font-family: var(--el-font-heading);
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    padding: 16px 0;
    text-decoration: none;
    transition: var(--el-transition-fast);
}

.entop-mobile-menu__nav ul li a:hover {
    color: var(--el-primary-light);
}

.entop-mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 300px;
    margin: 0 auto;
}

/* ==========================================================================
   7. HERO SECTION
   ========================================================================== */
.entop-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.entop-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--el-gradient-hero);
    z-index: 0;
}

.entop-hero__gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.entop-hero__gradient-orb--1 {
    width: 600px;
    height: 600px;
    background: var(--el-primary);
    top: -10%;
    right: -5%;
    animation: entop-float-slow 15s ease-in-out infinite;
}

.entop-hero__gradient-orb--2 {
    width: 400px;
    height: 400px;
    background: var(--el-secondary);
    bottom: -10%;
    left: 10%;
    animation: entop-float-slow 12s ease-in-out infinite reverse;
}

.entop-hero__gradient-orb--3 {
    width: 300px;
    height: 300px;
    background: var(--el-accent);
    top: 40%;
    left: 40%;
    opacity: 0.2;
    animation: entop-float-slow 18s ease-in-out infinite;
}

.entop-hero__grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

@keyframes entop-float-slow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.entop-hero .entop-container {
    position: relative;
    z-index: 1;
}

.entop-hero__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .entop-hero__content {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

/* Hero text */
.entop-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 18px;
    border-radius: var(--el-radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
}

.entop-hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--el-success);
    border-radius: 50%;
    animation: entop-pulse 2s ease-in-out infinite;
}

@keyframes entop-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.entop-hero__title {
    font-size: clamp(36px, 5.5vw, 60px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.entop-hero__subtitle {
    font-size: clamp(16px, 1.8vw, 19px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
}

.entop-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

/* Hero trust indicators */
.entop-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.entop-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.entop-hero__trust-item svg {
    color: var(--el-success);
    flex-shrink: 0;
}

/* Hero visual / floating cards */
.entop-hero__visual {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .entop-hero__visual {
        display: block;
    }
}

.entop-hero__card--main {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--el-radius-lg);
    padding: 0;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.entop-hero__card-header {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.entop-hero__card-dots {
    display: flex;
    gap: 8px;
}

.entop-hero__card-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.entop-hero__card-dots span:nth-child(1) { background: #ef4444; }
.entop-hero__card-dots span:nth-child(2) { background: #d97706; }
.entop-hero__card-dots span:nth-child(3) { background: #10b981; }

.entop-hero__card-body {
    padding: 28px 28px 24px;
}

.entop-hero__card-icon {
    width: 56px;
    height: 56px;
    background: rgba(79, 70, 229, 0.15);
    border-radius: var(--el-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--el-primary-light);
}

.entop-hero__card-body h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.entop-hero__card-body p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 24px;
}

.entop-hero__card-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.entop-hero__card-progress-bar {
    height: 100%;
    background: var(--el-gradient);
    border-radius: 3px;
    transition: width 1.5s var(--el-ease);
}

.entop-hero__card-progress-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* Floating mini cards */
.entop-hero__float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 18px;
    border-radius: var(--el-radius);
    box-shadow: var(--el-shadow-lg);
    font-size: 13px;
    font-weight: 600;
    color: var(--el-heading);
    white-space: nowrap;
}

.entop-hero__float-card--1 {
    top: 10%;
    right: -20px;
    animation: entop-float-card 6s ease-in-out infinite;
}

.entop-hero__float-card--2 {
    bottom: 30%;
    left: -30px;
    animation: entop-float-card 7s ease-in-out infinite 1s;
}

.entop-hero__float-card--3 {
    bottom: 5%;
    right: 10%;
    animation: entop-float-card 5s ease-in-out infinite 0.5s;
}

@keyframes entop-float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.entop-hero__float-card-avatars {
    display: flex;
}

.entop-hero__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    margin-right: -8px;
    border: 2px solid #fff;
}

.entop-hero__avatar:last-child {
    margin-right: 0;
}

/* ==========================================================================
   8. SOCIAL PROOF BAR
   ========================================================================== */
.entop-social-proof {
    padding: 40px 0;
    background: var(--el-bg);
    border-bottom: 1px solid var(--el-border-light);
}

.entop-social-proof .entop-container {
    text-align: center;
}

.entop-social-proof__label {
    font-size: 13px;
    font-weight: 500;
    color: var(--el-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.entop-social-proof__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.5;
}

.entop-social-proof__logo-item {
    transition: var(--el-transition);
}

.entop-social-proof__logo-item:hover {
    opacity: 0.8;
}

/* ==========================================================================
   9. FEATURES SECTION
   ========================================================================== */
.entop-features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .entop-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .entop-features__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.entop-feature-card {
    position: relative;
    background: var(--el-bg-card);
    padding: 36px 28px;
    border-radius: var(--el-radius-lg);
    border: 1px solid var(--el-border);
    transition: var(--el-transition);
    overflow: hidden;
}

.entop-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--el-shadow-lg);
    border-color: transparent;
}

.entop-feature-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--el-radius);
    background: var(--icon-bg);
    color: var(--icon-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--el-transition);
}

.entop-feature-card:hover .entop-feature-card__icon {
    transform: scale(1.1);
}

.entop-feature-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.entop-feature-card__text {
    font-size: 14px;
    color: var(--el-text-light);
    line-height: 1.7;
    margin: 0;
}

.entop-feature-card__glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.entop-feature-card:hover .entop-feature-card__glow {
    opacity: 1;
}

/* ==========================================================================
   10. COURSES SECTION
   ========================================================================== */
.entop-courses-section {
    background: var(--el-bg);
}

.entop-courses__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .entop-courses__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .entop-courses__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.entop-course-card {
    background: var(--el-bg-card);
    border-radius: var(--el-radius-lg);
    border: 1px solid var(--el-border);
    overflow: hidden;
    transition: var(--el-transition);
}

.entop-course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--el-shadow-lg);
    border-color: transparent;
}

.entop-course-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.entop-course-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--el-bg-alt);
}

.entop-course-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--el-ease);
}

.entop-course-card:hover .entop-course-card__image img {
    transform: scale(1.05);
}

.entop-course-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--el-bg-alt);
    color: var(--el-text-muted);
}

.entop-course-card__category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 12px;
    border-radius: var(--el-radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--el-primary);
    backdrop-filter: blur(10px);
}

.entop-course-card__content {
    padding: 20px;
}

.entop-course-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--el-heading);
    margin-bottom: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.entop-course-card__meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.entop-course-card__meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--el-text-light);
}

.entop-course-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--el-border-light);
}

.entop-course-card__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--el-heading);
}

.entop-course-card__rating-count {
    font-weight: 400;
    color: var(--el-text-muted);
    font-size: 13px;
}

.entop-course-card__price {
    font-family: var(--el-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--el-primary);
}

.entop-course-card__coming-soon {
    font-size: 13px;
    font-weight: 600;
    color: var(--el-accent);
    background: rgba(249, 115, 22, 0.1);
    padding: 4px 12px;
    border-radius: var(--el-radius-full);
}

.entop-courses__cta {
    text-align: center;
}

/* ==========================================================================
   11. HOW IT WORKS SECTION
   ========================================================================== */
.entop-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .entop-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.entop-step {
    position: relative;
    text-align: center;
    padding: 40px 24px;
}

.entop-step__number {
    font-family: var(--el-font-heading);
    font-size: 56px;
    font-weight: 800;
    background: var(--el-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: -10px;
}

.entop-step__connector {
    display: none;
}

@media (min-width: 768px) {
    .entop-step__connector {
        display: block;
        position: absolute;
        top: 50%;
        right: -16px;
        width: 32px;
        height: 2px;
        background: var(--el-border);
    }

    .entop-step:last-child .entop-step__connector {
        display: none;
    }
}

.entop-step__icon {
    width: 72px;
    height: 72px;
    background: var(--el-bg-card);
    border: 2px solid var(--el-border);
    border-radius: var(--el-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--el-primary);
    transition: var(--el-transition);
}

.entop-step:hover .entop-step__icon {
    background: var(--el-primary);
    border-color: var(--el-primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.entop-step__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.entop-step__text {
    font-size: 15px;
    color: var(--el-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   12. TESTIMONIALS SECTION
   ========================================================================== */
.entop-testimonials {
    background: var(--el-bg);
}

.entop-testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .entop-testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.entop-testimonial-card {
    background: var(--el-bg-card);
    padding: 32px;
    border-radius: var(--el-radius-lg);
    border: 1px solid var(--el-border);
    transition: var(--el-transition);
}

.entop-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--el-shadow-md);
    border-color: transparent;
}

.entop-testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
}

.entop-testimonial-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--el-dark-700);
    margin: 0 0 24px;
    font-style: normal;
}

.entop-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.entop-testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.entop-testimonial-card__photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--el-border-light);
}

.entop-testimonial-card__author strong {
    display: block;
    font-size: 15px;
    color: var(--el-heading);
}

.entop-testimonial-card__author span {
    display: block;
    font-size: 13px;
    color: var(--el-text-muted);
}

/* ==========================================================================
   13. STATS SECTION
   ========================================================================== */
.entop-stats {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.entop-stats__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--el-gradient-hero);
}

.entop-stats .entop-container {
    position: relative;
    z-index: 1;
}

.entop-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .entop-stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.entop-stat {
    text-align: center;
    padding: 24px;
}

.entop-stat__number {
    font-family: var(--el-font-heading);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: inline;
}

.entop-stat__suffix {
    font-family: var(--el-font-heading);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--el-primary-light);
    display: inline;
}

.entop-stat__label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    font-weight: 500;
}

/* ==========================================================================
   14. CTA SECTION
   ========================================================================== */
.entop-cta {
    padding: 80px 0;
    background: var(--el-bg-alt);
}

.entop-cta__inner {
    position: relative;
    background: var(--el-gradient);
    border-radius: var(--el-radius-xl);
    padding: 64px 40px;
    text-align: center;
    overflow: hidden;
}

.entop-cta__bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.entop-cta__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.entop-cta__shape--1 {
    width: 300px;
    height: 300px;
    background: #fff;
    top: -100px;
    right: -50px;
}

.entop-cta__shape--2 {
    width: 200px;
    height: 200px;
    background: #fff;
    bottom: -80px;
    left: 10%;
}

.entop-cta__content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.entop-cta__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.entop-cta__text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}

.entop-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* ==========================================================================
   15. FOOTER
   ========================================================================== */
.entop-footer {
    position: relative;
    background: var(--el-bg-dark);
    color: rgba(255, 255, 255, 0.7);
}

.entop-footer__wave {
    color: var(--el-bg-dark);
    line-height: 0;
    margin-top: -1px;
}

.entop-footer__wave svg {
    width: 100%;
    height: 40px;
}

.entop-footer__main {
    padding: 64px 0 40px;
}

.entop-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 640px) {
    .entop-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .entop-footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.entop-footer__col--brand .entop-header__logo-text {
    color: #fff;
    font-size: 22px;
}

.entop-footer__logo {
    display: inline-block;
    margin-bottom: 16px;
    text-decoration: none;
}

.entop-footer__tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.entop-footer__social {
    display: flex;
    gap: 12px;
}

.entop-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: var(--el-radius-sm);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--el-transition);
}

.entop-footer__social a:hover {
    background: var(--el-primary);
    border-color: var(--el-primary);
    color: #fff;
    transform: translateY(-3px);
}

.entop-footer__heading {
    font-family: var(--el-font-heading);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.entop-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.entop-footer__links li {
    margin-bottom: 10px;
}

.entop-footer__links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--el-transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.entop-footer__links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.entop-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.entop-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.entop-footer__contact li svg {
    flex-shrink: 0;
    color: var(--el-primary-light);
    margin-top: 2px;
}

.entop-footer__contact a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.entop-footer__contact a:hover {
    color: #fff;
}

/* Newsletter */
.entop-footer__newsletter p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.entop-footer__newsletter-form {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--el-radius);
    overflow: hidden;
    transition: var(--el-transition);
}

.entop-footer__newsletter-form:focus-within {
    border-color: var(--el-primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.entop-footer__newsletter-form input {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
    outline: none;
    min-width: 0;
}

.entop-footer__newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.entop-footer__newsletter-form button {
    background: var(--el-primary);
    border: none;
    padding: 12px 16px;
    color: #fff;
    cursor: pointer;
    transition: var(--el-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.entop-footer__newsletter-form button:hover {
    background: var(--el-primary-dark);
}

/* Footer Bottom */
.entop-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
}

.entop-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.entop-footer__bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.entop-footer__bottom-links {
    display: flex;
    gap: 24px;
}

.entop-footer__bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.entop-footer__bottom-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Back to Top */
.entop-back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--el-bg-card);
    border: 1px solid var(--el-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--el-heading);
    cursor: pointer;
    box-shadow: var(--el-shadow-md);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--el-transition);
}

.entop-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.entop-back-to-top:hover {
    background: var(--el-primary);
    color: #fff;
    border-color: var(--el-primary);
    transform: translateY(-2px);
}

/* ==========================================================================
   16. PAGE HERO (Inner pages)
   ========================================================================== */
.entop-page-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    text-align: center;
}

.entop-page-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--el-gradient-hero);
    z-index: 0;
}

.entop-page-hero .entop-container {
    position: relative;
    z-index: 1;
}

.entop-page-hero__content {
    max-width: 720px;
    margin: 0 auto;
}

.entop-page-hero__title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.entop-page-hero__subtitle {
    font-size: clamp(16px, 1.8vw, 18px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   17. ABOUT PAGE SECTIONS
   ========================================================================== */
/* Mission */
.entop-about-mission__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .entop-about-mission__grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 80px;
    }
}

.entop-about-mission__content p {
    font-size: 16px;
    color: var(--el-text);
    line-height: 1.8;
}

.entop-about-mission__highlights {
    margin-top: 28px;
}

.entop-about-mission__highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--el-dark-700);
    font-weight: 500;
}

.entop-about-mission__highlight svg {
    flex-shrink: 0;
}

.entop-about-mission__visual {
    position: relative;
}

.entop-about-mission__image-frame {
    position: relative;
    background: var(--el-bg-alt);
    border-radius: var(--el-radius-lg);
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 1px solid var(--el-border);
}

.entop-about-mission__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--el-primary-50), #ede9fe);
}

.entop-about-mission__float-stat {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--el-bg-card);
    padding: 20px 28px;
    border-radius: var(--el-radius);
    box-shadow: var(--el-shadow-lg);
    text-align: center;
    border: 1px solid var(--el-border-light);
}

.entop-about-mission__float-stat-number {
    display: block;
    font-family: var(--el-font-heading);
    font-size: 32px;
    font-weight: 800;
    background: var(--el-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.entop-about-mission__float-stat-label {
    display: block;
    font-size: 13px;
    color: var(--el-text-light);
    font-weight: 500;
}

/* Values */
.entop-about-values__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .entop-about-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .entop-about-values__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.entop-value-card {
    background: var(--el-bg-card);
    padding: 36px 28px;
    border-radius: var(--el-radius-lg);
    border: 1px solid var(--el-border);
    transition: var(--el-transition);
    text-align: center;
}

.entop-value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--el-shadow-lg);
    border-color: transparent;
}

.entop-value-card__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--el-radius-lg);
    background: color-mix(in srgb, var(--value-color) 10%, transparent);
    color: var(--value-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--el-transition);
}

.entop-value-card:hover .entop-value-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.entop-value-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.entop-value-card p {
    font-size: 14px;
    color: var(--el-text-light);
    line-height: 1.7;
    margin: 0;
}

/* Team */
.entop-about-team__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 1024px) {
    .entop-about-team__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.entop-team-card {
    text-align: center;
    padding: 36px 20px;
    background: var(--el-bg-card);
    border-radius: var(--el-radius-lg);
    border: 1px solid var(--el-border);
    transition: var(--el-transition);
}

.entop-team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--el-shadow-lg);
    border-color: transparent;
}

.entop-team-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.entop-team-card__photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid var(--el-border-light);
}

.entop-team-card__name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.entop-team-card__role {
    font-size: 13px;
    color: var(--el-primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.entop-team-card__bio {
    font-size: 13px;
    color: var(--el-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   18. CONTACT PAGE SECTIONS
   ========================================================================== */
.entop-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .entop-contact__grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 64px;
    }
}

.entop-contact__form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.entop-contact__form-subtitle {
    font-size: 15px;
    color: var(--el-text-light);
    margin-bottom: 32px;
}

/* Form styles */
.entop-contact-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .entop-contact-form__row {
        grid-template-columns: 1fr 1fr;
    }
}

.entop-form-group {
    margin-bottom: 20px;
}

.entop-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--el-heading);
    margin-bottom: 8px;
}

.entop-form-group label span {
    color: var(--el-danger);
}

.entop-form-group input,
.entop-form-group select,
.entop-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--el-font-body);
    font-size: 15px;
    color: var(--el-heading);
    background: var(--el-bg-alt);
    border: 1.5px solid var(--el-border);
    border-radius: var(--el-radius);
    outline: none;
    transition: var(--el-transition);
    -webkit-appearance: none;
    appearance: none;
}

.entop-form-group input:focus,
.entop-form-group select:focus,
.entop-form-group textarea:focus {
    border-color: var(--el-primary);
    background: var(--el-bg);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.entop-form-group input::placeholder,
.entop-form-group textarea::placeholder {
    color: var(--el-text-muted);
}

.entop-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.entop-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact sidebar */
.entop-contact__info-card {
    background: var(--el-bg-card);
    padding: 32px;
    border-radius: var(--el-radius-lg);
    border: 1px solid var(--el-border);
    margin-bottom: 24px;
}

.entop-contact__info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.entop-contact__info-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--el-border-light);
}

.entop-contact__info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.entop-contact__info-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--el-radius);
    background: color-mix(in srgb, var(--info-color) 10%, transparent);
    color: var(--info-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.entop-contact__info-item strong {
    display: block;
    font-size: 14px;
    color: var(--el-heading);
    margin-bottom: 2px;
}

.entop-contact__info-item a,
.entop-contact__info-item span {
    font-size: 14px;
    color: var(--el-text-light);
}

.entop-contact__info-item a:hover {
    color: var(--el-primary);
}

/* FAQ */
.entop-contact__faq {
    background: var(--el-bg-card);
    padding: 32px;
    border-radius: var(--el-radius-lg);
    border: 1px solid var(--el-border);
}

.entop-contact__faq h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.entop-faq-item {
    border-bottom: 1px solid var(--el-border-light);
}

.entop-faq-item:last-child {
    border-bottom: none;
}

.entop-faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--el-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--el-heading);
    text-align: left;
    transition: var(--el-transition-fast);
}

.entop-faq-item__question:hover {
    color: var(--el-primary);
}

.entop-faq-item__question svg {
    flex-shrink: 0;
    transition: transform 0.3s var(--el-ease);
    color: var(--el-text-muted);
}

.entop-faq-item.is-open .entop-faq-item__question svg {
    transform: rotate(180deg);
}

.entop-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--el-ease);
}

.entop-faq-item.is-open .entop-faq-item__answer {
    max-height: 300px;
}

.entop-faq-item__answer p {
    font-size: 14px;
    color: var(--el-text-light);
    line-height: 1.7;
    padding-bottom: 16px;
    margin: 0;
}

.entop-faq-item__answer a {
    color: var(--el-primary);
    font-weight: 500;
}

/* ==========================================================================
   19. SCROLL ANIMATIONS
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--el-ease), transform 0.7s var(--el-ease);
}

.animate-on-scroll[data-animation="fade-left"] {
    transform: translateX(40px);
}

.animate-on-scroll[data-animation="fade-right"] {
    transform: translateX(-40px);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ==========================================================================
   20. TUTOR LMS OVERRIDES
   ========================================================================== */
/* Make Tutor LMS pages match our design language */
.entop-theme .tutor-wrap {
    font-family: var(--el-font-body);
}

.entop-theme .tutor-course-listing-wrap {
    padding-top: calc(var(--el-header-height) + 40px);
}

.entop-theme .tutor-btn,
.entop-theme .tutor-button {
    font-family: var(--el-font-heading);
    border-radius: var(--el-radius);
    transition: var(--el-transition);
}

.entop-theme .tutor-btn-primary,
.entop-theme .tutor-button.tutor-success {
    background: var(--el-gradient) !important;
    border: none !important;
}

.entop-theme .tutor-btn-primary:hover,
.entop-theme .tutor-button.tutor-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.entop-theme .tutor-card {
    border-radius: var(--el-radius-lg);
    border: 1px solid var(--el-border);
    transition: var(--el-transition);
}

.entop-theme .tutor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--el-shadow-md);
}

.entop-theme .tutor-course-details-page {
    padding-top: var(--el-header-height);
}

/* Dashboard styling */
.entop-theme .tutor-dashboard-content-inner {
    font-family: var(--el-font-body);
}

.entop-theme .tutor-dashboard-header {
    background: var(--el-gradient) !important;
    border-radius: var(--el-radius-lg) var(--el-radius-lg) 0 0;
}

/* ==========================================================================
   21. WOOCOMMERCE OVERRIDES
   ========================================================================== */
.entop-theme .woocommerce {
    font-family: var(--el-font-body);
    padding-top: calc(var(--el-header-height) + 20px);
}

.entop-theme .woocommerce .button,
.entop-theme .woocommerce button.button,
.entop-theme .woocommerce a.button {
    font-family: var(--el-font-heading);
    background: var(--el-gradient) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--el-radius) !important;
    padding: 12px 28px !important;
    font-weight: 600;
    transition: var(--el-transition);
}

.entop-theme .woocommerce .button:hover,
.entop-theme .woocommerce button.button:hover,
.entop-theme .woocommerce a.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.entop-theme .woocommerce-checkout .form-row input,
.entop-theme .woocommerce-checkout .form-row select,
.entop-theme .woocommerce-checkout .form-row textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--el-border);
    border-radius: var(--el-radius);
    font-family: var(--el-font-body);
}

.entop-theme .woocommerce-checkout .form-row input:focus,
.entop-theme .woocommerce-checkout .form-row select:focus {
    border-color: var(--el-primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.entop-theme .woocommerce table.shop_table {
    border-radius: var(--el-radius);
    border: 1px solid var(--el-border);
    overflow: hidden;
}

/* ==========================================================================
   22. RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
    .entop-features,
    .entop-courses-section,
    .entop-how-it-works,
    .entop-testimonials,
    .entop-about-mission,
    .entop-about-values,
    .entop-about-team,
    .entop-contact-section {
        padding: 60px 0;
    }

    .entop-section-header {
        margin-bottom: 40px;
    }

    .entop-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .entop-hero__title {
        font-size: 32px;
    }

    .entop-hero__ctas {
        flex-direction: column;
    }

    .entop-hero__ctas .entop-btn {
        width: 100%;
        justify-content: center;
    }

    .entop-hero__trust {
        flex-direction: column;
        gap: 10px;
    }

    .entop-cta__inner {
        padding: 48px 24px;
    }

    .entop-stats {
        padding: 60px 0;
    }

    .entop-page-hero {
        padding: 120px 0 60px;
    }

    .entop-header__actions .entop-btn--sm,
    .entop-header__login-link {
        display: none;
    }

    .entop-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .entop-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .entop-about-team__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .entop-container {
        padding: 0 16px;
    }

    .entop-feature-card,
    .entop-testimonial-card,
    .entop-value-card {
        padding: 28px 20px;
    }

    .entop-contact__info-card,
    .entop-contact__faq {
        padding: 24px 20px;
    }
}

/* ==========================================================================
   23. UTILITY CLASSES
   ========================================================================== */
.entop-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.entop-text-center { text-align: center; }
.entop-text-left { text-align: left; }
.entop-mb-0 { margin-bottom: 0; }
.entop-mt-0 { margin-top: 0; }

/* ==========================================================================
   24. PRINT STYLES
   ========================================================================== */
@media print {
    .entop-header,
    .entop-footer,
    .entop-back-to-top,
    .entop-loader {
        display: none !important;
    }

    .entop-hero {
        background: #fff !important;
        color: #000 !important;
    }

    .entop-hero__title,
    .entop-hero__subtitle {
        color: #000 !important;
    }
}
