/* ═══════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════ */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
/*    background: linear-gradient( 120deg, rgba(41, 32, 117, 0.92) 0%, rgba(41, 32, 117, 0.75) 55%, rgba(41, 32, 117, 0.4) 100% );*/
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 9999px;
    background: rgba(244, 187, 68, 0.18);
    border: 1px solid rgba(244, 187, 68, 0.45);
    color: var(--color-accent);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Heading */
.hero-title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

    .hero-title .highlight {
        color: var(--color-accent);
    }

.hero-description {
    font-family: "Inter", sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    max-width: 520px;
    margin-bottom: 32px;
}

/* Buttons */
.btn-explore {
    background: var(--color-accent);
    color: var(--color-text-on-accent);
    border: none;
    padding: 13px 28px;
    border-radius: var(--btn-radius);
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 18px rgba(244, 187, 68, 0.35);
}

    .btn-explore:hover {
        background: var(--btn-accent-hover-bg);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(244, 187, 68, 0.45);
    }

.btn-contact {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 13px 28px;
    border-radius: var(--btn-radius);
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .btn-contact:hover {
        border-color: #fff;
        background: rgba(255, 255, 255, 0.1);
    }

/* Hero card (right column) */
.hero-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(244, 187, 68, 0.25);
    max-width: 420px;
    margin-left: auto;
}

.hero-card-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-card-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(41, 32, 117, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 187, 68, 0.35);
    padding: 10px 16px;
    border-radius: 12px;
}

.hero-card-badge-icon {
    width: 34px;
    height: 34px;
    background: var(--color-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-on-accent);
    font-size: 18px;
}

.hero-card-badge-text {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

/* ═══════════════════════════════════════════════════════
   FEATURES SECTION
═══════════════════════════════════════════════════════ */
.features-section {
    background: var(--color-surface);
    padding: 80px 0;
}

.features-header-title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.features-header-desc {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Feature cards */
.feature-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .feature-card:hover {
        box-shadow: 0 16px 40px rgba(41, 32, 117, 0.1);
        transform: translateY(-4px);
        border-color: var(--color-primary);
    }

    .feature-card.offset {
        border-color: rgba(244, 187, 68, 0.35);
    }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 26px;
}

    .feature-icon.primary {
        background: rgba(41, 32, 117, 0.1);
        color: var(--color-primary);
    }

    .feature-icon.secondary {
        background: rgba(244, 187, 68, 0.2);
        color: var(--color-accent-dim);
    }

    .feature-icon.tertiary {
        background: rgba(41, 32, 117, 0.06);
        color: var(--color-primary-light);
    }

.feature-title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 8px;
}

.feature-desc {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   STATS SECTION
═══════════════════════════════════════════════════════ */
.stats-section {
    position: relative;
    background: var(--color-primary);
    overflow: hidden;
    padding: 64px 0;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-value {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-accent);
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    margin: 6px 0 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stats-gradient {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(244, 187, 68, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   COURSES SECTION
═══════════════════════════════════════════════════════ */
.courses-section {
    background: var(--color-bg);
    padding: 80px 0;
}

.courses-header h2 {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 6px;
}

.courses-header p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: var(--color-text-muted);
    margin: 0;
}

.courses-view-all {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 10px 20px;
    border-radius: var(--btn-radius);
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

    .courses-view-all:hover {
        background: var(--color-primary);
        color: #fff;
    }

/* Course card */
.course-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

    .course-card:hover {
        box-shadow: 0 20px 48px rgba(41, 32, 117, 0.12);
        transform: translateY(-4px);
        border-color: var(--color-primary);
    }

.course-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

    .course-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-accent);
    color: var(--color-text-on-accent);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 9999px;
}

.course-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 8px;
}

.course-desc {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
    flex-grow: 1;
}

.course-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.course-price {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
}

.course-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

    .course-btn:hover {
        background: var(--color-primary-light);
        transform: scale(1.1);
    }

/* ═══════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════ */
.about-section {
    background: var(--color-primary);
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.about-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(244, 187, 68, 0.12);
    border: 2px solid rgba(244, 187, 68, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 auto 32px;
}

@media (min-width: 768px) {
    .about-circle {
        width: 260px;
        height: 260px;
        margin: 0;
    }
}

.about-circle-content {
    text-align: center;
}

.about-circle-value {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin: 0;
    line-height: 1;
}

.about-circle-text {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin: 8px 0 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about-divider {
    width: 40px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 9999px;
    margin: 12px auto 0;
}

.about-content h2 {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
}

.about-content > p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 24px;
}

.about-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-checklist-icon {
    color: var(--color-accent);
    font-size: 20px;
    flex-shrink: 0;
}

.about-checklist-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
}

.btn-story {
    background: var(--color-accent);
    color: var(--color-text-on-accent);
    border: none;
    padding: 13px 28px;
    border-radius: var(--btn-radius);
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 18px rgba(244, 187, 68, 0.3);
}

    .btn-story:hover {
        background: var(--btn-accent-hover-bg);
        transform: translateY(-2px);
    }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════════════════════ */
.testimonials-section {
    background: var(--color-surface);
    padding: 80px 0;
}

.testimonials-title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 40px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

    .testimonial-card:hover {
        box-shadow: 0 16px 40px rgba(41, 32, 117, 0.1);
        transform: translateY(-2px);
    }

.testimonials-stars {
    display: flex;
    gap: 2px;
    color: var(--color-accent);
    margin-bottom: 16px;
    font-size: 18px;
}

.testimonial-quote {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-muted);
    font-style: italic;
    margin: 0 0 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}

    .testimonial-avatar.primary {
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    }

    .testimonial-avatar.secondary {
        background: linear-gradient(135deg, var(--color-accent-dim) 0%, var(--color-accent) 100%);
    }

.testimonial-name {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.testimonial-title {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 2px 0 0;
}

/* ═══════════════════════════════════════════════════════
   OUR STUDENTS SECTION
═══════════════════════════════════════════════════════ */
.students-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.students-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-family: "Inter", sans-serif;
}

.students-title .highlight-gold {
    color: var(--color-accent);
}

.students-description {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.students-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.students-stat-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.students-stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(66, 135, 245, 0.1);
    border-radius: 8px;
    color: var(--color-primary);
    font-size: 20px;
    flex-shrink: 0;
}

.students-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.students-stat-label {
    font-size: 12px;
    color: var(--color-text-muted);
    margin: 4px 0 0;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    padding: 20px;
}

@media (min-width: 992px) {
    .companies-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }
}

.company-logo-card {
    background: #fff;
    border: 1px solid rgba(66, 135, 245, 0.15);
    border-radius: 12px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 160px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.company-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(66, 135, 245, 0.15);
    border-color: rgba(66, 135, 245, 0.3);
}

.company-logo {
    max-width: 90%;
    max-height: 60px;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.company-logo-card:hover .company-logo {
    opacity: 1;
}

.company-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-primary);
    text-align: center;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .students-title {
        font-size: 32px;
    }

    .students-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* ═══════════════════════════════════════════════════════ 
   NEWSLETTER SECTION
═══════════════════════════════════════════════════════ */
.newsletter-section {
    background: var(--color-bg);
    padding: 80px 0;
}

.newsletter-card {
    position: relative;
    background: var(--color-primary);
    border-radius: 24px;
    padding: 48px 40px;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(244, 187, 68, 0.2);
}

@media (max-width: 767px) {
    .newsletter-card {
        padding: 32px 20px;
    }
}

.newsletter-card h2 {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.newsletter-card p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 480px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--input-radius);
    padding: var(--input-padding);
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    transition: border-color 0.2s;
}

    .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .newsletter-input:focus {
        outline: none;
        border-color: var(--color-accent);
        box-shadow: var(--input-shadow-focus);
    }

.newsletter-btn {
    background: var(--color-accent);
    color: var(--color-text-on-accent);
    border: none;
    padding: 12px 24px;
    border-radius: var(--btn-radius);
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(244, 187, 68, 0.3);
}

    .newsletter-btn:hover {
        background: var(--btn-accent-hover-bg);
        transform: translateY(-1px);
    }

.newsletter-blur {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(244, 187, 68, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
