:root {
    --primary: #0A1628;
    --secondary: #1E3A5F;
    --accent: #2563EB;
    --accent-hover: #1D4ED8;
    --highlight: #D4A853;
    --background: #FAFBFC;
    --surface: #FFFFFF;
    --text-primary: #1A1A2E;
    --text-secondary: #64748B;
    --border: #E2E8F0;
    --shadow-sm: 0 4px 20px rgba(10, 22, 40, 0.06);
    --shadow-md: 0 20px 60px rgba(10, 22, 40, 0.08);
    --shadow-lg: 0 30px 80px rgba(10, 22, 40, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

picture {
    display: block;
    max-width: 100%;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.highlight {
    color: var(--accent);
    position: relative;
}

.hero-title .subtitle {
    display: block;
    font-size: 24px;
    font-weight: 500;
    color: var(--text);
    margin-top: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    height: auto;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 16px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 28px;
    color: var(--accent);
}

.logo-accent {
    color: var(--accent);
}

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

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--primary);
    color: white !important;
    border-radius: var(--radius-sm);
}

.nav-cta:hover {
    background: var(--accent);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.hero-background {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/ledu.webp');
    background-image: -webkit-image-set(url('../images/ledu.webp') 1x, url('../images/ledu.jpeg') 1x);
    background-image: image-set(url('../images/ledu.webp') type('image/webp') 1x, url('../images/ledu.jpeg') type('image/jpeg') 1x);
    background-size: cover;
    background-position: center top;
    z-index: -1;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.5) 100%);
}

.center-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-top {
    width: 400px !important;
    height: auto;
    margin: 0 auto 32px !important;
    display: block !important;
}

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

.hero-text {
    flex: 1;
    max-width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-text {
    flex: 1;
    max-width: 550px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-logo-side {
    flex-shrink: 0;
}

.hero-logo-side .hero-logo {
    width: 500px;
    height: auto;
}

.btn-light {
    border-color: rgba(255,255,255,0.5);
    color: white;
}

.btn-light:hover {
    background: white;
    color: var(--primary);
}



.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.hero-logo {
    display: block;
}

.hero-brand-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.hero-brand-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.hero-logo-img {
    height: 240px;
    margin: 0 auto 24px;
    object-fit: contain;
    display: block;
}

.hero-brand {
    display: block;
    font-size: 80px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -2px;
    padding-right: 10px;
}

.hero-brand::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--highlight), var(--accent));
    border-radius: 2px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--accent);
    background: linear-gradient(120deg, var(--accent), #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.blog-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--accent-hover);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--background) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-desc {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: var(--text-primary);
    transition: var(--transition);
}

.contact-item:hover {
    color: var(--accent);
}

.contact-icon {
    font-size: 20px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.social-link:hover svg {
    color: white;
}

.contact-form {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.custom-form .form-group {
    margin-bottom: 24px;
}

.custom-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.custom-form .form-group input,
.custom-form .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.custom-form .form-group input:focus,
.custom-form .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.custom-form .form-group input::placeholder,
.custom-form .form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-success, .form-error {
    text-align: center;
    padding: 60px 40px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.success-icon, .error-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
}

.success-icon {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
}

.error-icon {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
}

.form-success h3, .form-error h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 12px;
}

.form-success p, .form-error p {
    color: var(--text-secondary);
    font-size: 16px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: #1A1A2E;
    padding: 30px 0;
}

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

.footer-main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.footer-email,
.footer-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: var(--transition);
}

.footer-email:hover,
.footer-link:hover {
    color: white;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.footer-social-link:hover svg {
    color: white;
}

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

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Scroll Animations */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero shapes - prevent overflow */
.hero-shape,
.hero-gradient,
.hero-pattern {
    position: absolute;
    pointer-events: none;
}

.hero-shape {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-list {
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .nav-list {
        gap: 16px;
    }

    .nav-link {
        font-size: 14px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .services-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        max-width: 100%;
        padding: 0 16px;
    }

    #main-content {
        width: 100%;
        overflow-x: hidden;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--surface);
        padding: 80px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
    }

    .nav.active {
        right: 0;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(10, 22, 40, 0.5);
        z-index: 1000;
        backdrop-filter: blur(4px);
    }

    .nav-overlay.active {
        display: block;
    }

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

    .nav-link {
        font-size: 18px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero {
        padding: 100px 0 60px;
        overflow: hidden;
    }

    .hero-shape {
        display: none;
    }

    .hero-bg-image {
        background-position: 70% center;
    }

    .hero-scroll {
        display: none;
    }

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

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

    .service-card,
    .testimonial-card {
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item {
        padding: 16px 12px;
    }

    .stat-number {
        font-size: 28px;
    }

    .schools-section {
        padding: 60px 0;
    }

    .schools-text {
        max-width: 100%;
    }

    .services {
        padding: 60px 0;
    }

    .services-square-grid {
        grid-template-columns: 1fr;
    }

    .projects {
        padding: 60px 0;
    }

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

    .project-image {
        height: 180px;
    }

    .team {
        padding: 60px 0;
    }

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

    .contact {
        padding: 60px 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 16px;
        max-width: 100%;
    }

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

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

    .btn {
        padding: 14px 20px;
        font-size: 13px;
        width: 100%;
    }

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .hero-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
    }

    .schools-features li {
        font-size: 14px;
    }

    .team-content {
        padding: 24px;
    }

    .team-name {
        font-size: 20px;
    }

    .project-content {
        padding: 20px;
    }

    .project-title {
        font-size: 18px;
    }
}

/* Stats Bar */
.stats-bar {
    background: #FFFFFF;
    padding: 60px 0;
    position: relative;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.stats-bar::before {
    display: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    min-width: 0;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Projects Section */
.projects {
    padding: 120px 0;
    background: var(--surface);
    position: relative;
}

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

/* Schools Section (Featured) */
.schools-section {
    padding: 100px 0;
    background: var(--surface);
}

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

.schools-text {
    max-width: 500px;
}

.schools-desc {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.schools-features {
    list-style: none;
    margin-bottom: 32px;
}

.schools-features li {
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.schools-image {
    position: relative;
}

.schools-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.services-square-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F7 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--highlight));
}

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

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

.service-card {
    background: var(--surface);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--highlight));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 22, 40, 0.1);
    border-color: var(--accent);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.service-title {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-hover);
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.partners .section-header {
    margin-bottom: 56px;
}

.partners-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.partner-logo-img {
    width: auto;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.75;
}

.partner-logo-img:hover {
    transform: scale(1.08);
    opacity: 1;
}

@media (max-width: 768px) {
    .partners-wall {
        gap: 20px;
    }
    .partner-logo-img {
        max-height: 50px !important;
    }
}

@media (max-width: 480px) {
    .partners-wall {
        gap: 16px;
    }
    .partner-logo-img {
        max-height: 40px !important;
    }
}

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

.project-card {
    background: var(--background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02), transparent);
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 22, 40, 0.1);
}

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

.project-image {
    height: 220px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 28px;
}

.project-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    background: rgba(37, 99, 235, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.project-title {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
}

.project-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* Team Section */
.team {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--background) 0%, var(--surface) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.team-image {
    height: 300px;
    overflow: hidden;
    background: var(--background);
}

.team-image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.team-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team-content {
    padding: 32px;
}

.team-name {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 8px;
}

.team-role {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

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

/* Form select */
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.privacy-consent {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label .consent-text {
    font-size: 14px;
}

.checkbox-label .consent-text a {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 500;
}

.checkbox-label .consent-text a:hover {
    color: var(--accent-hover);
}

/* Stats responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 28px;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .team-image {
        height: 250px;
    }

    .schools-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .schools-text {
        order: 2;
        max-width: 100%;
    }

    .schools-image {
        order: 1;
    }

    .schools-image img {
        width: 100%;
        height: auto;
    }

    .services-square-grid {
        grid-template-columns: 1fr;
    }

    .partners {
        padding: 40px 0;
    }

    .contact-wrapper {
        gap: 32px;
    }

    .form-success,
    .form-error {
        padding: 40px 24px;
    }
}

/* Privacy Policy Page */
.privacy-hero {
    min-height: 40vh;
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.privacy-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.privacy-content {
    padding: 80px 0 120px;
    background: var(--background);
}

.privacy-content .container {
    max-width: 800px;
}

.privacy-text {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.privacy-text h2 {
    font-size: 28px;
    color: var(--primary);
    margin: 50px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.privacy-text h2:first-of-type {
    margin-top: 0;
}

.privacy-text h3 {
    font-size: 20px;
    color: var(--primary);
    margin: 30px 0 16px;
}

.privacy-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.privacy-text ul {
    margin: 16px 0 24px 0;
    padding-left: 24px;
}

.privacy-text ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 10px;
    position: relative;
    list-style: disc;
}

.privacy-text ul li::marker {
    color: var(--accent);
}

.privacy-text ul li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.privacy-text a {
    color: var(--accent);
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.privacy-text a:hover {
    color: var(--accent-hover);
    border-bottom-color: var(--accent);
}

.privacy-text a.btn {
    border: none;
}

.privacy-client-zone {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.03) 100%);
    border: 2px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.privacy-client-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--highlight));
}

.privacy-client-zone-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), #3B82F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: white;
}

.privacy-client-zone h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
}

.privacy-client-zone p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-contact-card {
    background: linear-gradient(135deg, #F8FAFC 0%, #EEF2F7 100%);
    border-radius: var(--radius-md);
    padding: 32px;
    margin-top: 40px;
    border: 1px solid var(--border);
}

.privacy-contact-card h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-contact-card h3::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent);
}

.privacy-contact-card ul {
    margin: 0;
    padding: 0;
}

.privacy-contact-card ul li {
    list-style: none;
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.privacy-contact-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.privacy-toc {
    background: rgba(37, 99, 235, 0.05);
    border-left: 4px solid var(--accent);
    padding: 24px 32px;
    margin: 30px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.privacy-toc h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 16px;
}

.privacy-toc ul {
    margin: 0;
    padding: 0;
}

.privacy-toc ul li {
    list-style: none;
    margin-bottom: 8px;
}

.privacy-toc ul li a {
    color: var(--text-secondary);
    font-size: 15px;
    transition: var(--transition);
}

.privacy-toc ul li a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .privacy-content {
        padding: 60px 0 80px;
    }

    .privacy-text {
        padding: 32px 24px;
        border-radius: var(--radius-md);
    }

    .privacy-text h2 {
        font-size: 24px;
        margin: 40px 0 16px;
    }

    .privacy-text h3 {
        font-size: 18px;
    }

    .privacy-client-zone {
        padding: 32px 24px;
    }

    .privacy-client-zone-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}

/* ========== METHODOLOGY ========== */
.methodology {
    padding: 120px 0;
    background: var(--surface);
    position: relative;
}

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

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    margin-top: 48px;
}

.methodology-step {
    text-align: center;
    position: relative;
}

.methodology-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.08);
    line-height: 1;
    margin-bottom: 16px;
    transition: var(--transition);
}

.methodology-step:hover .methodology-number {
    color: rgba(37, 99, 235, 0.2);
}

.methodology-content {
    padding: 0 8px;
}

.methodology-title {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
}

.methodology-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.methodology-connector {
    display: none;
}

@media (max-width: 1024px) {
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .methodology-number {
        font-size: 48px;
    }
}

/* ========== FAQ ========== */
.faq {
    padding: 60px 0 120px;
    background: linear-gradient(180deg, var(--surface) 0%, var(--background) 100%);
}

.faq-grid {
    max-width: 800px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    transition: var(--transition);
    line-height: 1;
}

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

.faq-item.active .faq-question {
    color: var(--accent);
}

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

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

.faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq {
        padding: 40px 0 80px;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 16px;
    }

    .methodology {
        padding: 60px 0;
    }

    .footer-main {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-divider {
        display: none;
    }

    .hero-logo-img {
        height: 160px;
    }

    .hero-logo-top {
        width: 280px !important;
    }

}

/* ========== FORM SUCCESS/ERROR HIDE ========== */
.contact-form [data-fs-success],
.contact-form [data-fs-error] {
    display: none !important;
}

/* ========== NEWSLETTER CONSENT ========== */
.newsletter-consent {
    margin-bottom: 20px;
    padding-top: 4px;
}

.newsletter-consent .consent-text {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ========== ANIMATIONS ========== */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }