/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ef4444;
    --primary-dark: #dc2626;
    --primary-light: #f87171;
    --primary-lighter: #fee2e2;
    --primary-rgba-03: rgba(239, 68, 68, 0.3);
    --primary-rgba-1: rgba(239, 68, 68, 0.1);
    --primary-rgba-15: rgba(239, 68, 68, 0.15);
    --secondary-color: #f59e0b;
    --secondary-dark: #d97706;
    --secondary-lighter: #fef3c7;
    --secondary-rgba-1: rgba(245, 158, 11, 0.1);
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    --accent-lighter: #fef3c7;
    --accent-lightest: #fde68a;
    --text-dark: #0f172a;
    --text-medium: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(239, 68, 68, 0.3), 0 0 40px rgba(245, 158, 11, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(245, 158, 11, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: white;
    padding: 24px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-light);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.cookie-content a:hover {
    border-bottom-color: var(--accent-light);
}

.cookie-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
    position: relative;
    overflow: hidden;
}

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

.cookie-btn:hover::before {
    left: 100%;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    position: relative;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: -0.5px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover::after {
    width: 100%;
}

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

.nav-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-list a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.3;
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.1s;
}

.nav-list a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-list a:hover::before,
.nav-list a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: rgba(37, 99, 235, 0.1);
}

.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--primary-color);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--primary-color);
}

@media (max-width: 968px) {
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid var(--border-color);
        z-index: 999;
    }

    .nav.active {
        max-height: 500px;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        padding: 24px;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

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

    .nav-list a {
        display: block;
        padding: 16px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    background: linear-gradient(135deg, #ef4444 0%, #f59e0b 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-mesh::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Running Text Lines */
.running-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.running-line {
    position: absolute;
    width: 200%;
    display: flex;
    white-space: nowrap;
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.running-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
}

.running-content span {
    display: inline-block;
}

.running-line-1 {
    top: 15%;
    transform: rotate(-12deg);
    animation: runLine1 40s linear infinite;
}

.running-line-2 {
    top: 50%;
    transform: rotate(10deg);
    animation: runLine2 35s linear infinite;
}

.running-line-3 {
    top: 85%;
    transform: rotate(-8deg);
    animation: runLine3 45s linear infinite;
}

@keyframes runLine1 {
    0% {
        transform: rotate(-12deg) translateX(0);
    }
    100% {
        transform: rotate(-12deg) translateX(-50%);
    }
}

@keyframes runLine2 {
    0% {
        transform: rotate(10deg) translateX(0);
    }
    100% {
        transform: rotate(10deg) translateX(-50%);
    }
}

@keyframes runLine3 {
    0% {
        transform: rotate(-8deg) translateX(0);
    }
    100% {
        transform: rotate(-8deg) translateX(-50%);
    }
}

/* Ensure seamless loop */
.running-line-1 {
    left: 0;
}

.running-line-2 {
    left: 0;
}

.running-line-3 {
    left: 0;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 600px;
}

.hero-main {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.badge-text {
    color: rgba(255, 255, 255, 1);
}

.badge-divider {
    color: rgba(255, 255, 255, 0.7);
}

.hero-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -1px;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(0, 0, 0, 0.1);
}

.title-accent {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 30px rgba(255, 107, 107, 0.4));
}

.title-accent::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(12px);
    opacity: 0.6;
    z-index: -1;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    font-size: 14px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.feature-badge svg {
    width: 16px;
    height: 16px;
    color: #fbbf24;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: #ef4444;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.stats-showcase {
    display: flex;
    gap: 32px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    justify-content: space-around;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
    isolation: isolate;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
    text-shadow: 
        0 0 1px rgba(0, 0, 0, 0.8),
        0 1px 2px rgba(0, 0, 0, 0.6);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    letter-spacing: -0.5px;
}

.stat-text {
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 
        0 0 1px rgba(0, 0, 0, 0.7),
        0 1px 2px rgba(0, 0, 0, 0.5);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.languages-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    width: 100%;
}

.lang-tag {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.lang-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

/* Transition from hero to sections */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(248, 250, 252, 0.1) 50%, #f8fafc 100%);
    z-index: 1;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .stats-showcase {
        padding: 32px 24px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .running-line {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: clamp(40px, 8vw, 56px);
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .stats-showcase {
        flex-direction: column;
        gap: 24px;
        padding: 32px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .running-line {
        font-size: 18px;
        opacity: 0.08;
    }
    
    .running-content {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .feature-badge {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .lang-tag {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .running-line {
        font-size: 16px;
        opacity: 0.06;
    }
    
    .running-content {
        gap: 15px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: blur(1px);
    transform: scale(1.1);
    transition: transform 20s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(37, 99, 235, 0.85) 0%, rgba(124, 58, 237, 0.75) 50%, rgba(245, 158, 11, 0.1) 100%),
        radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(124, 58, 237, 0.25) 0%, transparent 50%);
    z-index: 2;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.95;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    color: white;
    position: relative;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out;
}

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

.title-line {
    display: block;
    position: relative;
}

.title-line.highlight {
    background: linear-gradient(135deg, #ef4444 0%, #f59e0b 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    filter: drop-shadow(0 2px 10px rgba(245, 158, 11, 0.4));
    animation: shimmer 3s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #ef4444 0%, #f59e0b 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4), 0 0 20px rgba(245, 158, 11, 0.2);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.5), 0 0 30px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

/* Language Accordion */
.hero-interactive {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-interactive::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.language-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accordion-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.accordion-item.active {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(245, 158, 11, 0.3);
    border-color: rgba(245, 158, 11, 0.5);
    transform: translateX(12px) scale(1.02);
}

.accordion-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    color: white;
    transition: var(--transition);
    position: relative;
}

.accordion-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-light));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::before {
    transform: scaleY(1);
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.1);
}

.accordion-header h3 {
    flex: 1;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.flag-icon {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: var(--transition);
}

.accordion-item.active .flag-icon {
    transform: scale(1.2) rotate(5deg);
}

.accordion-arrow {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    font-weight: bold;
    opacity: 0.8;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
    padding: 0 24px;
    color: rgba(255, 255, 255, 0.95);
}

.accordion-item.active .accordion-content {
    max-height: 400px;
    padding: 0 24px 24px;
}

.accordion-content p {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.accordion-content ul {
    list-style: none;
    padding-left: 0;
}

.accordion-content li {
    padding: 8px 0;
    font-size: 14px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.accordion-content li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23f59e0b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    font-size: 28px;
    margin-top: 12px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

/* Transition from dark hero to light sections */
.hero-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(248, 250, 252, 0.1) 50%, #f8fafc 100%);
    z-index: 1;
    pointer-events: none;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 32px auto 0;
    line-height: 1.7;
    font-weight: 400;
}

/* About Section */
.about {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

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

.about-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        0 0 30px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
    flex-shrink: 0;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--secondary-color);
    filter: drop-shadow(0 6px 12px rgba(239, 68, 68, 0.3));
}

.about-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* Courses Section */
.courses {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
    padding: 120px 0;
}

.courses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.courses-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.08;
}

.courses-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.courses .container {
    position: relative;
    z-index: 2;
}

.courses-slider {
    position: relative;
}

.slider-container {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 30px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.course-card {
    min-width: 380px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    scroll-snap-align: start;
    border: 1px solid var(--border-color);
    position: relative;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.course-card:hover::before {
    opacity: 1;
}

.course-card:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
}

.course-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.course-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-card:hover .course-image img {
    transform: scale(1.15) rotate(2deg);
}

.course-content {
    padding: 32px;
    position: relative;
    z-index: 2;
}

.course-level {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.course-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.3;
}

.course-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
}

.course-features {
    list-style: none;
    margin-bottom: 24px;
}

.course-features li {
    padding: 10px 0;
    color: var(--text-light);
    padding-left: 32px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
}

.course-features li::before {
    content: '▸';
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    transition: var(--transition);
}

.course-card:hover .course-features li::before {
    transform: translateX(4px);
    color: var(--secondary-color);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    font-weight: bold;
}

.slider-btn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

/* Methods Section */
.methods {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.methods-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.method-item {
    margin-bottom: 48px;
    padding: 32px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.method-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.method-item:hover::before {
    transform: scaleY(1);
}

.method-item:hover {
    transform: translateX(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(37, 99, 235, 0.3);
}

.method-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 800;
}

.method-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

.methods-visual {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    border: 1px solid var(--border-color);
}

.methods-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.methods-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.methods-visual:hover .methods-image {
    transform: scale(1.05);
}

/* Teachers Section */
.teachers {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
    padding: 120px 0;
}

.teachers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.teachers-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.06;
}

.teachers-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.teachers .container {
    position: relative;
    z-index: 2;
}

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

.teacher-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.teacher-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.teacher-card:hover::before {
    transform: scaleX(1);
}

.teacher-card:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.teacher-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 5px solid;
    border-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) 1;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(37, 99, 235, 0.2);
    transition: var(--transition);
    position: relative;
}

.teacher-card:hover .teacher-photo {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(37, 99, 235, 0.3);
}

.teacher-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.teacher-card:hover .teacher-photo img {
    transform: scale(1.15);
}

.teacher-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 800;
}

.teacher-role {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.teacher-bio {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* Reviews Section */
.reviews {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.review-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border-left: 5px solid;
    border-image: linear-gradient(180deg, var(--accent-color), var(--accent-light)) 1;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    color: rgba(245, 158, 11, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        0 0 30px rgba(245, 158, 11, 0.2);
}

.review-stars {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.review-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 16px;
}

.review-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* Contact Section */
.contact {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.08;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    padding: 32px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(37, 99, 235, 0.3);
}

.info-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 800;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.info-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.1),
        0 4px 12px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 80px 0 32px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 24px;
    color: white;
    font-weight: 800;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 15px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.footer-section a:hover {
    color: var(--accent-light);
    transform: translateX(4px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Policy Pages */
.policy-page {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    min-height: 100vh;
}

.policy-content {
    max-width: 850px;
    margin: 0 auto;
    background: white;
    padding: 80px;
    border-radius: 24px;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    position: relative;
}

.policy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 24px 24px 0 0;
}

.policy-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: var(--text-dark);
    font-weight: 900;
    letter-spacing: -1px;
}

.policy-content h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.policy-content h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: var(--text-light);
    font-size: 16px;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 20px;
    padding-left: 32px;
    color: var(--text-light);
}

.policy-content li {
    margin-bottom: 12px;
    line-height: 1.8;
    font-size: 16px;
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.policy-content a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%),
        radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.3) 0%, transparent 50%);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.thanks-page::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.thanks-content {
    text-align: center;
    color: white;
    max-width: 650px;
    position: relative;
    z-index: 1;
}

.thanks-content h1 {
    font-size: 56px;
    margin-bottom: 32px;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.thanks-content p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-title {
        font-size: 48px;
    }

    .methods-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .course-card {
        min-width: 100%;
    }

    .policy-content {
        padding: 50px 32px;
    }

    .contact-form {
        padding: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 90vh;
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-btn {
        width: 100%;
    }

    .thanks-content h1 {
        font-size: 40px;
    }
}

/* ============================================
   NEW THEMATIC PAGES STYLES
   ============================================ */

/* Page Hero Styles */
.page-hero {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    filter: blur(40px);
    animation: floatCircle 20s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: -7s;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 20%;
    animation-delay: -14s;
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.page-hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.page-hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-light);
    line-height: 1.7;
}

.content-section {
    padding: 100px 0;
    position: relative;
}

.section-header-left {
    margin-bottom: 60px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title-left {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-title-center {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */

.about-hero {
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--bg-light) 100%);
}

/* Timeline Section */
.history-section {
    background: var(--bg-white);
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-items {
    position: relative;
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 120px;
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin: 0 40px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* Values Section */
.values-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

.value-card-main {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 20px 40px var(--primary-rgba-03);
    position: sticky;
    top: 120px;
}

.value-icon-main {
    font-size: 64px;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.value-card-main h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.value-card-main p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 24px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.value-number {
    flex: 0 0 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    border-radius: 12px;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 4px 12px var(--primary-rgba-03);
}

.value-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.value-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Achievements Section */
.achievements-section {
    background: var(--bg-white);
}

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

.achievement-card {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.achievement-card:hover::before {
    transform: scaleX(1);
}

.achievement-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.achievement-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.achievement-number {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.achievement-label {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
}

/* Team Section */
.team-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.team-structure {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.team-category-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary-color);
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.team-member-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.member-avatar {
    font-size: 64px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.team-member-card h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-box {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-value {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-text {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
}

.team-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
}

.cta-box {
    text-align: center;
    color: var(--bg-white);
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-box .btn {
    background: var(--bg-white);
    color: var(--primary-color);
    font-weight: 700;
    padding: 18px 40px;
    font-size: 18px;
}

.cta-box .btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ============================================
   LEARNING METHODS PAGE STYLES
   ============================================ */

.methods-hero {
    background: linear-gradient(135deg, var(--accent-lighter) 0%, var(--bg-light) 100%);
}

.methods-hero-content {
    text-align: center;
    margin-bottom: 60px;
}

.methods-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--accent-color), #f97316);
    color: var(--bg-white);
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.methods-hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.methods-hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-light);
    line-height: 1.7;
}

.methods-hero-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-method-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.hero-method-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.card-icon-large {
    font-size: 48px;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.hero-method-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Method Detail Sections */
.method-detail-section {
    background: var(--bg-white);
}

.method-section-alt {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.method-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.method-grid-reverse {
    grid-template-columns: 1fr 1fr;
}

.method-grid-reverse .method-detail-visual {
    order: 2;
}

.method-grid-reverse .method-detail-content {
    order: 1;
}

.method-number {
    display: inline-block;
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.2;
}

.method-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.method-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.method-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.method-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
}

.feature-check {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
}

/* Visual Elements */
.method-detail-visual {
    position: relative;
    min-height: 400px;
}

.visual-card {
    position: absolute;
    background: var(--bg-white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.visual-card:hover {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: var(--shadow-xl);
}

.visual-card-1 {
    top: 0;
    left: 0;
    animation: floatCard 3s ease-in-out infinite;
}

.visual-card-2 {
    top: 20%;
    right: 0;
    animation: floatCard 3s ease-in-out infinite 0.5s;
}

.visual-card-3 {
    bottom: 20%;
    left: 10%;
    animation: floatCard 3s ease-in-out infinite 1s;
}

.visual-card-4 {
    bottom: 0;
    right: 20%;
    animation: floatCard 3s ease-in-out infinite 1.5s;
}

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

.visual-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.visual-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Game Elements */
.game-elements-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.game-element {
    position: absolute;
    font-size: 48px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: bounceElement 2s ease-in-out infinite;
}

.game-element-1 { top: 10%; left: 10%; animation-delay: 0s; }
.game-element-2 { top: 20%; right: 20%; animation-delay: 0.3s; }
.game-element-3 { top: 50%; left: 50%; animation-delay: 0.6s; }
.game-element-4 { bottom: 30%; left: 20%; animation-delay: 0.9s; }
.game-element-5 { bottom: 20%; right: 10%; animation-delay: 1.2s; }
.game-element-6 { top: 70%; right: 30%; animation-delay: 1.5s; }

@keyframes bounceElement {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.media-item {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: var(--bg-white);
    transition: var(--transition);
    box-shadow: 0 10px 25px var(--primary-rgba-03);
}

.media-item:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 40px var(--primary-rgba-03);
}

.media-icon {
    font-size: 48px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.media-label {
    font-size: 16px;
    font-weight: 700;
}

/* Method Stats */
.method-stats {
    display: flex;
    gap: 32px;
}

.method-stat {
    flex: 1;
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
    border-radius: 16px;
    border: 2px solid var(--border-color);
}

.stat-value {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.method-benefits {
    display: flex;
    gap: 24px;
}

.benefit-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, var(--accent-lighter), var(--accent-lightest));
    border-radius: 16px;
    border: 2px solid var(--accent-color);
}

.benefit-icon {
    font-size: 32px;
}

.benefit-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.benefit-text strong {
    display: block;
    font-size: 20px;
    color: var(--accent-color);
}

.media-stats-row {
    display: flex;
    gap: 24px;
}

.media-stat {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 2px solid var(--border-color);
}

.media-stat-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.media-stat-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
}

/* Adaptive Visual */
.adaptive-visual {
    position: relative;
    width: 100%;
    height: 400px;
}

.adaptive-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-rgba-1), var(--secondary-rgba-1));
    border: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseCircle 3s ease-in-out infinite;
}

.adaptive-circle-1 {
    top: 0;
    left: 20%;
    animation-delay: 0s;
}

.adaptive-circle-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.adaptive-circle-3 {
    bottom: 0;
    left: 50%;
    animation-delay: 2s;
}

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

.circle-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    padding: 8px;
}

.adaptive-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    box-shadow: 0 10px 30px var(--primary-rgba-03);
    animation: pulseCenter 2s ease-in-out infinite;
}

@keyframes pulseCenter {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

.center-icon {
    font-size: 48px;
    margin-bottom: 8px;
}

.center-text {
    font-size: 14px;
    font-weight: 700;
}

.adaptive-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-lighter), #f3f4f6);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

.result-icon {
    font-size: 32px;
}

.result-content {
    display: flex;
    flex-direction: column;
}

.result-content strong {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.result-content span {
    font-size: 14px;
    color: var(--text-light);
}

/* ============================================
   CERTIFICATES PAGE STYLES
   ============================================ */

.certificates-hero {
    background: linear-gradient(135deg, var(--secondary-lighter) 0%, var(--bg-light) 100%);
}

.certificates-hero-content {
    text-align: center;
    margin-bottom: 60px;
}

.cert-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--bg-white);
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.cert-hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.cert-hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-light);
    line-height: 1.7;
}

.cert-hero-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-cert-item {
    text-align: center;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    flex: 1;
}

.hero-cert-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.cert-icon {
    font-size: 48px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.cert-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Accreditations Section */
.accreditations-section {
    background: var(--bg-white);
}

.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.accreditation-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.accreditation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.accreditation-card:hover::before {
    transform: scaleX(1);
}

.accreditation-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.accreditation-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.accreditation-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.accreditation-org {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.accreditation-desc {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 20px;
}

.accreditation-year {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-rgba-1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

/* Partnerships Section */
.partnerships-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.partnerships-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.partnership-category-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--secondary-color);
}

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

.partner-item {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.partner-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.partner-logo {
    font-size: 48px;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.partner-item h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.partner-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
}

/* Student Certificates Section */
.student-certificates-section {
    background: var(--bg-white);
}

.certificates-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.certificate-type {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.certificate-type-reverse {
    grid-template-columns: 1fr 1fr;
}

.certificate-type-reverse .certificate-visual {
    order: 2;
}

.certificate-type-reverse .certificate-info {
    order: 1;
}

.certificate-visual {
    position: relative;
}

.cert-preview {
    background: linear-gradient(135deg, var(--bg-white), var(--bg-light));
    border: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow-2xl);
    transform: rotate(-2deg);
    transition: var(--transition);
}

.cert-preview:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.cert-preview-premium {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, var(--accent-lighter), var(--bg-white));
}

.cert-header {
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: 4px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 20px;
}

.cert-body {
    text-align: center;
    margin-bottom: 30px;
}

.cert-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cert-name {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cert-course {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.cert-level {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.cert-score {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
}

.cert-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--border-color);
    padding-top: 20px;
}

.cert-date {
    font-size: 14px;
    color: var(--text-light);
}

.cert-signature {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-color);
    border-top: 2px solid var(--primary-color);
    padding-top: 8px;
}

.certificate-info h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.certificate-info p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 24px;
}

.cert-features {
    list-style: none;
    padding: 0;
}

.cert-features li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 16px;
    border-bottom: 1px solid var(--border-color);
}

.cert-features li:last-child {
    border-bottom: none;
}

/* Student Achievements Section */
.student-achievements-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.achievements-stories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.story-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.story-avatar {
    font-size: 48px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.story-info h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.story-info span {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

.story-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 20px;
    font-style: italic;
}

.story-result {
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-rgba-1), var(--secondary-rgba-1));
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.result-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.result-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
}

.achievements-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.achievement-stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.stat-number {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

/* Responsive Styles for New Pages */
@media (max-width: 968px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card-main {
        position: static;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        flex: 0 0 60px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .methods-hero-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .method-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .method-grid-reverse .method-detail-visual,
    .method-grid-reverse .method-detail-content {
        order: 0;
    }
    
    .accreditations-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certificate-type {
        grid-template-columns: 1fr;
    }
    
    .certificate-type-reverse .certificate-visual,
    .certificate-type-reverse .certificate-info {
        order: 0;
    }
    
    .achievements-stories {
        grid-template-columns: 1fr;
    }
    
    .achievements-stats {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
    }
    
    .methods-hero-cards {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .method-stats {
        flex-direction: column;
    }
    
    .method-benefits {
        flex-direction: column;
    }
    
    .media-stats-row {
        flex-direction: column;
    }
}

/* ============================================
   PRICING PAGE STYLES
   ============================================ */

.pricing-section {
    padding: 100px 0;
    background: #f8fafc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card-popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card-popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid #f1f5f9;
}

.pricing-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-description {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 8px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-dark);
}

.pricing-features li svg {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 2px;
}

.pricing-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.individual-pricing-section {
    padding: 100px 0;
    background: white;
}

.individual-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.individual-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.individual-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.individual-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.individual-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.individual-price {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.savings {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}

.individual-card p:last-child {
    color: var(--text-light);
    font-size: 14px;
}

.corporate-pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.corporate-pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.corporate-text h2 {
    margin-bottom: 24px;
}

.corporate-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.corporate-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.corporate-features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    color: var(--text-dark);
    font-size: 16px;
}

.corporate-features li svg {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 2px;
}

.corporate-visual {
    display: flex;
    gap: 24px;
    flex-direction: column;
}

.corporate-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.corporate-number {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.corporate-card p {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 600;
}

.payment-section {
    padding: 100px 0;
    background: white;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.payment-method {
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.payment-method svg {
    color: var(--primary-color);
    margin-bottom: 24px;
}

.payment-method h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.payment-method p {
    color: var(--text-light);
    font-size: 14px;
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */

.faq-section {
    padding: 100px 0;
    background: #f8fafc;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 60px;
}

.faq-category-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.faq-category-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
}

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

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 32px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 24px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

.faq-cta {
    margin-top: 80px;
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 24px;
    color: white;
}

.faq-cta-content h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 16px;
    color: white;
}

.faq-cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

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

.faq-cta .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

.blog-categories-section {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.blog-category-btn {
    padding: 12px 24px;
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-category-btn:hover {
    background: #f1f5f9;
}

.blog-category-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.featured-article-section {
    padding: 80px 0;
    background: white;
}

.featured-article {
    display: flex;
    gap: 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.featured-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.featured-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: white;
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.featured-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 14px;
}

.article-category {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-date {
    color: var(--text-light);
}

.featured-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.blog-section {
    padding: 100px 0;
    background: #f8fafc;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: white;
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-card-content {
    padding: 32px;
}

.blog-card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.blog-card-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-card-link:hover {
    gap: 12px;
}

.blog-load-more {
    text-align: center;
    margin-top: 60px;
}

.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

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

.newsletter-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.newsletter-content h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 16px;
    color: white;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    background: white;
    color: var(--text-dark);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form button {
    white-space: nowrap;
    background: white;
    color: var(--primary-color);
}

.newsletter-form button:hover {
    background: #f8fafc;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-popular {
        transform: scale(1);
    }

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

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

    .corporate-visual {
        flex-direction: row;
    }

    .featured-article {
        flex-direction: column;
    }

    .featured-image {
        min-height: 250px;
    }

    .featured-content {
        padding: 32px;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}
