/* ============================================
   PressLab - Modern Journalism Courses
   Main Stylesheet
   ============================================ */

:root {
    --primary-color: #18181b;
    --primary-dark: #09090b;
    --primary-light: #27272a;
    --secondary-color: #3f3f46;
    --accent-color: #52525b;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --bg-dark: #18181b;
    --bg-light: #fafafa;
    --text-dark: #18181b;
    --text-light: #52525b;
    --text-muted: #a1a1aa;
    --border-color: #e4e4e7;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

/* ============== Typography ============== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.8em;
}

h1 {
    font-size: 3rem;
    color: var(--text-dark);
}

h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
}

h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* ============== Container ============== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============== Header ============== */
.header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    gap: 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    cursor: pointer;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: var(--primary-dark);
}

.nav {
    display: flex;
    gap: 2rem;
    flex: 1;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* ============== Hero Section - 2026 Design ============== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem 0;
}

/* Animated Background Orbs */
.hero-bg-animated {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #27272a, #3f3f46);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3f3f46, #52525b);
    bottom: -100px;
    right: -100px;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #52525b, #27272a);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Floating Geometric Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: shapeFloat 15s infinite ease-in-out;
}

.shape-1 {
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(45deg);
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    border-radius: 50%;
    top: 60%;
    left: 15%;
    animation-delay: 3s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    border: 3px solid var(--secondary-color);
    top: 30%;
    right: 15%;
    animation-delay: 6s;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.shape-4 {
    width: 70px;
    height: 70px;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    bottom: 20%;
    right: 20%;
    animation-delay: 9s;
}

.shape-5 {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--secondary-color), transparent);
    bottom: 15%;
    left: 20%;
    animation-delay: 12s;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.2;
    }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Left Side - Text Content */
.hero-text-content {
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.badge-icon {
    font-size: 1.2rem;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, #3f3f46 0%, #52525b 50%, #71717a 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

/* Hero Action Buttons */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.hero-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;
}

.hero-btn:hover:before {
    width: 300px;
    height: 300px;
}

.hero-btn span,
.hero-btn svg {
    position: relative;
    z-index: 1;
}

.hero-btn.primary {
    background: var(--text-dark);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, white, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Right Side - Visual Cards */
.hero-visual {
    position: relative;
    height: 600px;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Glass Morphism Cards */
.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: cardFloat 6s infinite ease-in-out;
    z-index: 2;
}

.glass-card:hover {
    transform: translateY(-10px) !important;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.card-1 {
    top: 50px;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 200px;
    right: 50px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 80px;
    left: 50px;
    animation-delay: 4s;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.card-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.card-content {
    color: white;
}

.card-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.card-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Main Image */
.hero-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    z-index: 1;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 30px;
    z-index: -1;
    animation: decorationPulse 3s infinite ease-in-out;
}

@keyframes decorationPulse {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.5;
    }
    50% {
        transform: translate(10px, 10px);
        opacity: 0.3;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    color: rgba(255, 255, 255, 0.6);
}

.scroll-arrow svg {
    stroke: currentColor;
}

.hero-bg {
    display: none;
}

/* ============== CTA Button ============== */
.cta-button,
.submit-btn,
.form-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(24, 24, 27, 0.3);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
}

.cta-button:before,
.submit-btn:before,
.form-submit:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    z-index: -1;
    transition: width 0.3s ease;
}

.cta-button:hover,
.submit-btn:hover,
.form-submit:hover {
    transform: translateY(-3px) translateX(-2px);
    box-shadow: 0 8px 25px rgba(24, 24, 27, 0.4);
}

.cta-button:hover:before,
.submit-btn:hover:before,
.form-submit:hover:before {
    width: 100%;
}

.cta-button:active,
.submit-btn:active,
.form-submit:active {
    transform: translateY(-1px);
}

/* ============== Features Section ============== */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.features-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.features-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    clip-path: polygon(0 0, 85% 0, 100% 100%, 15% 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 95% 0, 100% 8%, 100% 100%, 0 92%);
}

.feature-card:nth-child(2n) {
    clip-path: polygon(5% 0, 100% 0, 100% 92%, 0 100%, 0 8%);
}

.feature-card:nth-child(3n) {
    clip-path: polygon(0 0, 100% 5%, 95% 100%, 0 95%);
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.feature-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(63, 63, 70, 0.05), rgba(82, 82, 91, 0.1));
    border-radius: 50%;
    clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
}

.feature-card:hover {
    transform: translateY(-8px) rotate(0.5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
    animation: float 3s ease-in-out infinite;
}

.feature-icon:hover {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

/* ============== Courses Section ============== */
.courses-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.courses-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.courses-preview h2:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.courses-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.course-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
}

.course-card:nth-child(2n) {
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 5% 100%);
}

.course-card:nth-child(3n) {
    clip-path: polygon(0 0, 90% 0, 100% 15%, 100% 100%, 0 90%);
}

.course-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 10;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.course-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(82, 82, 91, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.course-card:hover {
    transform: translateY(-12px) skewY(-1deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.course-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.course-card:hover img {
    transform: scale(1.08);
}

.course-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.95) 100%);
}

.course-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.course-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.course-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ============== Testimonials ============== */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.testimonials h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-10deg);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 0;
    border-left: none;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
}

.testimonial-card:nth-child(2n) {
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}

.testimonial-card:nth-child(3n) {
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
}

.testimonial-card:before {
    content: '❝';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    color: rgba(82, 82, 91, 0.1);
    z-index: 0;
}

.testimonial-card:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color), transparent);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 3px solid var(--primary-color);
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ============== CTA Big Section ============== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    padding: 5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
    pointer-events: none;
}

.cta-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cta-form {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 0;
    padding: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    position: relative;
    overflow: hidden;
}

.cta-form:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
    pointer-events: none;
}

.cta-form input {
    flex: 1;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    outline: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-form input:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.cta-form input::placeholder {
    color: var(--text-muted);
}

.cta-image {
    position: relative;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 5% 100%);
}

/* ============== FAQ Section ============== */
.faq {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.faq h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--primary-color));
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: white;
    border: none;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 96% 100%, 0 100%);
}

.faq-item:nth-child(2n) {
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 4% 100%);
}

.faq-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 10;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.faq-item:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(82, 82, 91, 0.06) 0%, transparent 70%);
    z-index: 1;
}

.faq-question {
    width: 100%;
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.95) 100%);
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.faq-question:hover {
    background: linear-gradient(135deg, #fafafa 0%, white 100%);
    padding-left: 2rem;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, white 100%);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

/* ============== Footer ============== */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-dark) 100%);
    color: white;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.footer-content {
    padding: 4rem 0 2rem 0;
    position: relative;
    z-index: 2;
}

.footer-section {
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 2rem;
}

.footer-section:not(:last-child):after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section p:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
}

.footer-section a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-section a:hover:after {
    width: 100%;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.container .footer-content .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
}

/* ============== Cookie Popup ============== */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    opacity: 0;
    visibility: hidden;
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    color: var(--text-light);
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.accept-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.accept-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ============== Page Hero ============== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

/* ============== About Page ============== */
.mission-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.section-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text h2 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.mission-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.mission-image {
    position: relative;
}

.mission-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    clip-path: polygon(0 0, 100% 5%, 95% 100%, 0 100%);
}

/* ============== Timeline ============== */
.timeline-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.timeline-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.timeline-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.timeline-item {
    padding: 2rem;
    margin-bottom: 2rem;
    margin-left: 100px;
    background: white;
    border-radius: 0;
    border-left: none;
    border-radius: 0;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 97% 100%, 0 100%);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(2n) {
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 3% 100%);
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -40px;
    top: 2rem;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--primary-color), 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.timeline-item:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(82, 82, 91, 0.05) 0%, transparent 70%);
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-date {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

/* ============== Values Section ============== */
.values-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.values-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(15deg);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 0;
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 94% 100%, 0 100%);
    transition: all 0.3s ease;
}

.value-card:nth-child(2n) {
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 92%);
}

.value-card:nth-child(3n) {
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 92%);
}

.value-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    z-index: 10;
}

.value-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(82, 82, 91, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.value-card:hover {
    transform: translateY(-12px) skewX(-2deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}

.value-card h3 {
    position: relative;
    z-index: 2;
}

/* ============== Team Section ============== */
.team-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.team-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 96% 100%, 0 100%);
}

.team-member:nth-child(2n) {
    clip-path: polygon(0 12%, 100% 0, 100% 100%, 4% 100%);
}

.team-member:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    z-index: 10;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.team-member:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(82, 82, 91, 0.06) 0%, transparent 70%);
    z-index: 1;
}

.team-member:hover {
    transform: translateY(-15px) rotate(-2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

.member-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.95) 100%);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-bio {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============== Stats Section ============== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    padding: 4rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,0 50,50 T100,50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
    font-weight: 600;
}

.stat {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    clip-path: polygon(0 0, 95% 0, 100% 8%, 100% 100%, 5% 100%, 0 92%);
    transition: all 0.3s ease;
}

.stat:nth-child(2n) {
    clip-path: polygon(5% 0, 100% 0, 100% 92%, 0 100%, 0 8%);
}

.stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* ============== Courses Page ============== */
.filter-section {
    padding: 2rem 0;
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.7rem 1.5rem;
    border-radius: 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
}

.filter-btn:nth-child(2n) {
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.filter-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.filter-btn:hover:before,
.filter-btn.active:before {
    transform: scaleX(1);
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
}

.courses-grid {
    padding: 3rem 0;
}

.course-full {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 97% 100%, 0 100%);
}

.course-full:nth-child(2n) {
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 3% 100%);
}

.course-full:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    z-index: 10;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.course-full:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
    transform: translateY(-8px);
}

.course-image {
    overflow: hidden;
    position: relative;
}

.course-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(24, 24, 27, 0) 0%, rgba(24, 24, 27, 0.1) 100%);
    z-index: 1;
}

.course-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-full:hover .course-image img {
    transform: scale(1.08) rotate(1deg);
}

.course-details {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.95) 100%);
    position: relative;
    z-index: 2;
}

.course-header {
    margin-bottom: 1.5rem;
}

.course-header h2 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    position: relative;
}

.course-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.course-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.course-description h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 0.5rem;
}

.course-description h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.course-description ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.course-description li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.course-description li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.course-description li:hover {
    color: var(--text-dark);
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.course-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
}

.course-btn:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    z-index: -1;
    transition: width 0.3s ease;
}

.course-btn:hover {
    transform: translateX(5px);
}

.course-btn:hover:before {
    width: 100%;
}

.course-full.hidden {
    display: none;
}

/* ============== Comparison Table ============== */
.comparison-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.comparison-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.comparison-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 97% 100%, 0 100%);
}

table:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    z-index: 10;
}

thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    position: relative;
}

th:nth-child(odd) {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

th:nth-child(even) {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

td {
    padding: 1.2rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

tbody tr {
    transition: all 0.3s ease;
}

tbody tr:hover {
    background: linear-gradient(135deg, rgba(82, 82, 91, 0.03) 0%, rgba(82, 82, 91, 0.06) 100%);
    transform: translateX(5px);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.03);
}

tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.01);
}

/* ============== Contact Page ============== */
.contact-section {
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper h2 {
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form-wrapper h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    clip-path: polygon(0 0, 97% 0, 100% 100%, 3% 100%);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(24, 24, 27, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.form-group.checkbox {
    display: flex;
    gap: 0.8rem;
}

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox label {
    margin: 0;
    text-transform: none;
}

.contact-info-wrapper h2 {
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info-wrapper h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.info-block {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(250, 250, 250, 0.5) 0%, rgba(245, 245, 245, 0.5) 100%);
    border-radius: 0;
    border-left: 4px solid var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 100% 92%, 97% 100%, 0 100%);
    transition: all 0.3s ease;
}

.info-block:hover {
    border-left-color: var(--secondary-color);
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.info-block h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.info-block p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.social-links h3 {
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 15% 100%);
}

.social-icon:nth-child(2n) {
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ============== FAQ Page ============== */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* ============== Thanks Page ============== */
.thanks-section {
    padding: 6rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 0;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 94%, 96% 100%, 0 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.thanks-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    z-index: 10;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.thanks-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
    animation: popIn 0.6s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thanks-section h1 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.thanks-section h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.thanks-message {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-details {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.next-steps {
    text-align: left;
    background: linear-gradient(135deg, rgba(250, 250, 250, 0.6) 0%, rgba(245, 245, 245, 0.6) 100%);
    padding: 2rem;
    border-radius: 0;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 100% 95%, 97% 100%, 0 100%);
}

.next-steps h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.next-steps li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.next-steps li:hover {
    color: var(--text-dark);
}

.next-steps li:hover:before {
    transform: translateX(5px);
}

.back-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.back-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
}

.back-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    z-index: -1;
    transition: left 0.3s ease;
}

.back-btn:hover:before {
    left: 0;
}

.back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.back-btn.secondary {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.back-btn.secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--secondary-color);
}

/* ============== Policy Pages ============== */
.policy-section {
    padding: 4rem 0;
    min-height: 70vh;
}

.policy-header {
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 2rem;
}

.policy-header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.policy-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 0;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 93%, 97% 100%, 0 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.policy-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    z-index: 10;
}

.policy-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.policy-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.policy-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 1rem;
}

.policy-content h3:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.policy-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.policy-content li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
    transition: color 0.3s ease;
}

.policy-content li:before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.7rem;
}

.policy-content li:hover {
    color: var(--text-dark);
    padding-left: 2rem;
}

/* ============== Links ============== */
.link-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
}

.link-button:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    z-index: -1;
    transition: width 0.3s ease;
}

.link-button:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.link-button:hover:after {
    width: 100%;
}

.section-link {
    text-align: center;
    margin-top: 2rem;
}

/* ============== Responsive ============== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .nav-link {
        padding: 0.5rem 0;
    }

    /* Hero Responsive */
    .hero-section {
        min-height: auto;
        padding: 6rem 0 3rem 0;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 1.5rem;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-visual {
        height: 400px;
        order: -1;
    }

    .hero-image-container {
        width: 280px;
        height: 280px;
    }

    .glass-card {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .card-icon {
        font-size: 1.8rem;
    }

    .card-title {
        font-size: 0.85rem;
    }

    .card-subtitle {
        font-size: 0.75rem;
    }

    .gradient-orb {
        filter: blur(60px);
    }

    .orb-1 {
        width: 300px;
        height: 300px;
    }

    .orb-2 {
        width: 250px;
        height: 250px;
    }

    .orb-3 {
        width: 200px;
        height: 200px;
    }

    .shape {
        display: none;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .courses-carousel {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-section .container {
        grid-template-columns: 1fr;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-form input,
    .cta-form button {
        width: 100%;
    }

    .section-wrapper {
        grid-template-columns: 1fr;
    }

    .timeline {
        margin-left: 0;
    }

    .timeline:before {
        left: 0;
    }

    .timeline-item {
        margin-left: 0;
        padding-left: 2rem;
    }

    .timeline-item:before {
        left: -10px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .course-full {
        grid-template-columns: 1fr;
    }

    .course-image img {
        height: 200px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .back-buttons {
        flex-direction: column;
    }

    .back-btn {
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-content p {
        font-size: 0.9rem;
    }
    
    .accept-btn {
        width: 100%;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.8rem 0.5rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .page-hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1rem;
    }

    .header-content {
        padding: 0.8rem 0;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav {
        font-size: 0.9rem;
        gap: 0.8rem;
    }

    .nav-link {
        padding: 0.3rem 0;
    }

    /* Hero Mobile */
    .hero-section {
        padding: 5rem 0 2rem 0;
    }

    .hero-container {
        padding: 0 15px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-divider {
        height: 30px;
    }

    .hero-visual {
        height: 320px;
    }

    .hero-image-container {
        width: 220px;
        height: 220px;
    }

    .glass-card {
        padding: 0.8rem;
        border-radius: 12px;
    }

    .card-icon {
        font-size: 1.5rem;
    }

    .card-title {
        font-size: 0.75rem;
    }

    .card-subtitle {
        font-size: 0.7rem;
    }

    .image-decoration {
        top: -10px;
        right: -10px;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .course-details {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    .social-icons {
        gap: 0.7rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* ============================================
   Cookie Notification Styles
   ============================================ */

.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(24, 24, 27, 0.95);
    border: 1px solid rgba(82, 82, 91, 0.4);
    border-radius: 12px;
    padding: 20px;
    max-width: 350px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease-out;
    display: none;
}

.cookie-popup.show {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.cookie-content {
    width: 100%;
}

.cookie-content p {
    color: #a1a1aa;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: #52525b;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-content a:hover {
    color: #a1a1aa;
}

.accept-btn {
    background: linear-gradient(135deg, #52525b 0%, #3f3f46 100%);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-end;
}

.accept-btn:hover {
    background: linear-gradient(135deg, #3f3f46 0%, #27272a 100%);
    transform: translateY(-2px);
}

.accept-btn:active {
    transform: translateY(0);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .cookie-popup {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
