:root {
    --color-primary: #383B73;
    --color-accent: #FD6262;
    --color-light: #F6F7FB;
    --color-white: #FFFFFF;
    --color-dark: #1a1a2e;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-border: #e0e0e0;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --max-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #e04d4d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(253,98,98,0.3);
}

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

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    height: var(--header-height);
}

.site-header .container {
    max-width: 100%;
    padding: 0 40px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.logo {
    flex-shrink: 0;
    margin-right: auto;
}

.logo img {
    height: 26px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 10px 18px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-dark);
    border-top: 3px solid transparent;
    transition: all 0.2s ease;
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--color-accent);
    border-top-color: var(--color-accent);
}

.submenu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-item.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 100;
}

.submenu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--color-text);
    transition: all 0.15s ease;
}

.submenu li a:hover {
    background: var(--color-light);
    color: var(--color-accent);
}

.btn-cta {
    margin-left: 16px;
    white-space: nowrap;
}

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

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: all 0.3s ease;
}

.section {
    padding: 0px 0;
}

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

.section-dark {
    background: var(--color-primary);
    color: var(--color-white);
}

.section-light {
    background: var(--color-light);
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}

.section-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-light);
}

.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    max-width: 560px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-text);
    margin-bottom: 8px;
}

.hero-desc p {
    margin-bottom: 12px;
}

.hero-cta {
    margin-top: 28px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual img {
    max-width: 100%;
    border-radius: 12px;
}

.hero {
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 12px;
    padding: 32px 24px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.9;
}

.feature-divider {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    margin-top: 20px;
}

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

.about-image img {
    border-radius: 12px;
    width: 100%;
}

.about-text p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
    padding: 32px 16px;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--color-accent);
}

.stat-label {
    font-size: 14px;
    margin-top: 8px;
}

.stat-divider {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    margin: 16px auto 0;
}

.languages-grid {
    display: grid;
    grid-template-columns: 1fr repeat(4, auto);
    gap: 24px;
    align-items: center;
}

.lang-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
}

.lang-item {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
}

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

.cta-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 24px;
}

.cta-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.partners-header {
    margin-bottom: 48px;
}

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

.partners-header p {
    font-size: 16px;
    line-height: 1.8;
}

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

.partner-card {
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-light);
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-4px);
}

.partner-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.partner-info {
    padding: 20px;
}

.partner-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.partner-info a {
    font-size: 15px;
    color: var(--color-accent);
    text-decoration: underline;
}

.page-hero {
    padding: 140px 0 80px;
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 640px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 0;
}

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

.content-grid.reverse .content-image {
    order: -1;
}

.content-image img {
    border-radius: 12px;
    width: 100%;
}

.content-text h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-primary);
}

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

.solution-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.solution-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
}

.solution-card .icon {
    width: 56px;
    height: 56px;
    background: var(--color-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.solution-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

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

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 24px;
}

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.contact-detail p, .contact-detail a {
    font-size: 18px;
    color: var(--color-dark);
}

.contact-form {
    padding: 40px;
    border-radius: 12px;
}

.contact-form h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 24px;
}

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

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

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

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

.blog-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
}

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

.blog-card-body {
    padding: 24px;
}

.blog-card-body time {
    font-size: 13px;
    color: var(--color-text-light);
}

.blog-card-body h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0 12px;
    line-height: 1.4;
}

.blog-card-body p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 40px;
}

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

.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-logo img {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-contact p {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

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

.footer-nav li {
    margin-bottom: 18px;
}

.footer-nav a {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--color-accent);
}

.footer-newsletter h3, .footer-social h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--color-white);
}

.newsletter-field {
    display: flex;
    gap: 8px;
}

.newsletter-field input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
}

.newsletter-field input:focus {
    outline: 2px solid var(--color-accent);
}

.newsletter-field .btn {
    padding: 12px 20px;
    font-size: 14px;
}

.newsletter-message {
    font-size: 14px;
    margin-top: 8px;
    color: var(--color-accent);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.2s;
}

.social-links a:hover {
    color: var(--color-accent);
    background: rgba(255,255,255,0.1);
}

.footer-legal {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-legal a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--color-accent);
}

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

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .languages-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .lang-item {
        font-size: 22px;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .solution-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-list {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 16px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        gap: 0;
    }
    .nav-list.open {
        display: flex;
    }
    .nav-link {
        padding: 14px 16px;
        border-top: none;
        border-left: 3px solid transparent;
    }
    .nav-link:hover, .nav-item.active .nav-link {
        border-top: none;
        border-left-color: var(--color-accent);
    }
    .submenu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 24px;
        display: none;
    }
    .nav-item.has-submenu.open .submenu {
        display: block;
    }
    .submenu-toggle {
        display: inline-block;
    }
    .btn-cta {
        margin-left: auto;
    }
    .hero {
        padding: 120px 0 60px;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-desc {
        font-size: 17px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .about-grid, .content-grid, .cta-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .content-grid.reverse .content-image {
        order: 0;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    .partners-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .section-title {
        font-size: 36px;
    }
    .page-hero h1 {
        font-size: 32px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .solution-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero {
        padding: 100px 0 40px;
    }
    .hero-title {
        font-size: 24px;
    }
    .section {
        padding: 60px 0;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-field {
        flex-direction: column;
    }
    .section-title {
        font-size: 28px;
    }
    .section-subtitle {
        font-size: 22px;
    }
}

/* ============================================
   HOME PAGE - Specific Styles (from index.php inline)
   ============================================ */

/* ---------- Hero Home (main page header) ---------- */
.hero-home {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 80vh;
    background: url('assets/img/main-page-header.jpg') no-repeat center right / cover;
    display: flex;
    align-items: center;
    padding: 80px 0;
    box-sizing: border-box;
}
.hero-home .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.hero-home .hero-inner {
    display: flex;
    align-items: center;
    width: 100%;
}
.hero-home .hero-content {
    max-width: 650px;
}
.hero-home .hero-title {
    font-size: 2.2rem;
    color: #3B3B6D;
    margin-bottom: 20px;
    font-weight: 400;
}
.hero-home .hero-desc p {
    font-size: 1.1rem;
    color: #2D2D2D;
    line-height: 1.6;
    margin-bottom: 20px;
}
.hero-home .btn-primary {
    background-color: #3B3B6D;
    color: #FFFFFF;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
}

/* ---------- Features ---------- */
.features-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 40px 0;
}
.features-text {
    flex: 0 0 45%;
    max-width: 520px;
}
.features-title {
    font-size: 2rem;
    color: #3B3B6D;
    margin-bottom: 24px;
    line-height: 1.3;
    font-weight: 400;
}
.features-desc p {
    font-size: 1.05rem;
    color: #2D2D2D;
    line-height: 1.7;
    margin-bottom: 16px;
}
.features-desc p strong {
    color: #3B3B6D;
    font-weight: 600;
}
.features-text .btn-primary {
    margin-top: 12px;
    background-color: #3B3B6D;
    color: #FFFFFF;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
}

.features-grid-staggered {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    position: relative;
}
.features-grid-staggered .feature-card-staggered:nth-child(odd) {
    transform: translateY(-30px);
}
.features-grid-staggered .feature-card-staggered:nth-child(even) {
    transform: translateY(30px);
}

.feature-card-staggered {
    background: #3B3B6D;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(59, 59, 109, 0.08);
    border: 1px solid rgba(59, 59, 109, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card-staggered:hover {
    transform: translateY(calc(var(--current-y, 0px) - 8px));
    box-shadow: 0 12px 32px rgba(59, 59, 109, 0.15);
}
.features-grid-staggered .feature-card-staggered:nth-child(odd):hover {
    transform: translateY(-38px);
}
.features-grid-staggered .feature-card-staggered:nth-child(even):hover {
    transform: translateY(22px);
}

.feature-card-staggered .feature-icon {
    width: 56px;
    height: 56px;
    background: #FFFFFF;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.feature-card-staggered .feature-icon svg {
    width: 28px;
    height: 28px;
}
.feature-card-staggered h3 {
    font-size: 1.15rem;
    color: #FFFFFF;
    margin-bottom: 12px;
    font-weight: 600;
}
.feature-card-staggered p {
    font-size: 0.95rem;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
}

/* ---------- About Split ---------- */
.about-split {
    padding: 0;
    margin: 0;
}
.about-split-wrapper {
    display: flex;
    width: 100%;
    min-height: 600px;
}
.about-split-left {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}
.about-split-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.about-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-split-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    padding: 40px;
    box-sizing: border-box;
}
.about-split-overlay h2 {
    color: #FFFFFF;
    font-size: 2.4rem;
    font-weight: 200;
    text-align: center;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.about-split-right {
    flex: 0 0 50%;
    background-color: #3B3B6D;
    display: flex;
    align-items: center;
    padding: 60px 50px;
    box-sizing: border-box;
}
.about-split-content {
    max-width: 560px;
}
.about-split-content p {
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 18px;
    opacity: 0.92;
    font-weight: 300;
}
.about-split-content p:last-of-type {
    margin-bottom: 28px;
}
.btn-light {
    background-color: #FF6B6B;
    color: #FFFFFF;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    font-weight: 600;
    transition: background-color 0.25s ease, color 0.25s ease;
}
.btn-light:hover {
    background-color: #F0F0F5;
    color: #2A2A55;
}

/* ---------- Stats ---------- */
.stats-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}
.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.stats-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.stats-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 30, 0.75);
}
.stats-container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.stats-title {
    text-align: center;
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}
.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 30px;
}
.stat-item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: #E85D5D;
    line-height: 1;
    margin-bottom: 12px;
}
.stat-label {
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 16px;
    opacity: 0.9;
}
.stat-divider {
    width: 80px;
    height: 3px;
    background-color: #FFFFFF;
    opacity: 0.6;
    border-radius: 2px;
}

/* ---------- Languages ---------- */
.languages-header {
    background-color: #0A0A0A;
    padding: 0;
}
.languages-header .container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}
.lang-title-wrapper {
    flex: 0 0 20%;
    display: flex;
    align-items: center;
    padding: 50px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.lang-title-wrapper h2 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}
.lang-list {
    flex: 1;
    display: flex;
}
.lang-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 300;
    padding: 50px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: background-color 0.3s ease;
}
.lang-item:last-child {
    border-right: none;
}
.lang-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* ---------- CTA Split ---------- */
.cta-split-wrapper {
    display: flex;
    width: 100%;
    min-height: 500px;
}
.cta-split-left {
    flex: 0 0 60%;
    position: relative;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
}
.cta-overlay h2 {
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
.cta-split-right {
    flex: 0 0 40%;
    background-color: #0A0A0A;
    display: flex;
    align-items: center;
    padding: 60px 50px;
    box-sizing: border-box;
}
.cta-content {
    max-width: 400px;
}
.cta-content p {
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0.9;
}
.btn-cta {
    background-color: #FF6B6B;
    color: #FFFFFF;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color 0.25s ease, transform 0.2s ease;
}
.btn-cta:hover {
    background-color: #E85D5D;
    transform: translateY(-2px);
}

/* ---------- Partners ---------- */
.partners-section {
    background-color: #1a1a2e;
    padding: 80px 0;
}
.partners-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}
.partners-title {
    color: #FFFFFF;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.partners-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}
.partners-header p:last-child {
    margin-bottom: 0;
}
.partners-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.partner-card {
    flex: 0 0 380px;
    max-width: 380px;
    background: #1a1a2e;
}
.partner-card-inner {
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.partner-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}
.partner-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}
.partner-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, #1a1a2e, transparent);
    pointer-events: none;
}
.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.partner-card-inner:hover .partner-image img {
    transform: scale(1.08);
}
.partner-info {
    padding: 24px 28px 28px;
}
.partner-info h3 {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 14px;
}
.partner-info a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FF6B6B;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.25s ease;
}
.partner-info a:hover {
    color: #FF8E8E;
}
.partner-info a svg {
    transition: transform 0.25s ease;
}
.partner-info a:hover svg {
    transform: translate(2px, -2px);
}

/* ============================================
   Media Queries - Home Page
   ============================================ */
@media (max-width: 992px) {
    .features-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .features-text {
        flex: none;
        max-width: 100%;
        text-align: center;
    }
    .features-grid-staggered {
        width: 100%;
        gap: 16px;
    }
    .features-grid-staggered .feature-card-staggered:nth-child(odd) {
        transform: translateY(-15px);
    }
    .features-grid-staggered .feature-card-staggered:nth-child(even) {
        transform: translateY(15px);
    }
    .features-grid-staggered .feature-card-staggered:nth-child(odd):hover {
        transform: translateY(-23px);
    }
    .features-grid-staggered .feature-card-staggered:nth-child(even):hover {
        transform: translateY(7px);
    }

    .about-split-wrapper {
        flex-direction: column;
        min-height: auto;
    }
    .about-split-left,
    .about-split-right {
        flex: none;
        width: 100%;
    }
    .about-split-left {
        min-height: 320px;
    }
    .about-split-right {
        padding: 50px 30px;
    }
    .about-split-overlay h2 {
        font-size: 2rem;
    }

    .languages-header .container {
        flex-direction: column;
    }
    .lang-title-wrapper {
        flex: none;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 35px 25px;
        justify-content: center;
        text-align: center;
    }
    .lang-title-wrapper h2 br {
        display: none;
    }
    .lang-list {
        flex-wrap: wrap;
    }
    .lang-item {
        flex: 0 0 50%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    .lang-item:nth-child(2) {
        border-right: none;
    }
    .lang-item:nth-child(3),
    .lang-item:nth-child(4) {
        border-bottom: none;
    }

    .cta-split-wrapper {
        flex-direction: column;
        min-height: auto;
    }
    .cta-split-left,
    .cta-split-right {
        flex: none;
        width: 100%;
    }
    .cta-split-left {
        min-height: 350px;
    }
    .cta-split-right {
        padding: 50px 30px;
        justify-content: center;
    }
    .cta-content {
        max-width: 100%;
        text-align: center;
    }
    .cta-overlay h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }
    .stats-grid {
        flex-wrap: wrap;
        gap: 40px 20px;
    }
    .stat-item {
        flex: 0 0 45%;
    }
    .stat-number {
        font-size: 2.8rem;
    }
    .stats-title {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .partners-section {
        padding: 60px 0;
    }
    .partners-title {
        font-size: 1.8rem;
    }
    .partner-card {
        flex: 0 0 100%;
        max-width: 400px;
    }
    .partner-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .features-grid-staggered {
        grid-template-columns: 1fr;
    }
    .features-grid-staggered .feature-card-staggered:nth-child(n) {
        transform: none;
    }
    .features-grid-staggered .feature-card-staggered:nth-child(n):hover {
        transform: translateY(-8px);
    }

    .about-split-left {
        min-height: 260px;
    }
    .about-split-overlay h2 {
        font-size: 1.6rem;
    }
    .about-split-right {
        padding: 40px 20px;
    }
    .about-split-content p {
        font-size: 0.95rem;
    }

    .lang-item {
        flex: 0 0 100%;
        border-right: none;
    }
    .lang-item:nth-child(3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .cta-split-left {
        min-height: 280px;
    }
    .cta-overlay h2 {
        font-size: 1.4rem;
    }
    .cta-split-right {
        padding: 40px 25px;
    }
    .cta-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .stat-item {
        flex: 0 0 100%;
    }
    .stats-grid {
        gap: 35px;
    }
}
