#services {
    scroll-margin-top: 20px; 
}

.footer-company-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    white-space: nowrap;
    margin-top: 40px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #404041;
    text-decoration: none;
    transition: color 0.25s ease;
}

.social-links a svg {
    width: 26px;
    height: 26px;
    display: block;
}

.social-links a:hover {
    color: #f06922;
}

.footer-social-desktop { 
    display: inline-flex; 
    align-items: center; 
    gap: 20px; 
}

.footer-social-mobile { 
    display: none; 
}

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

body {
    font-family: "Alumni Sans SC", sans-serif;
    overflow-x: hidden;
}

.hero {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background-image: url('/img/brp-main.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    min-height: 770px;
}

.hero_about {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background-image: url(img/about-bg.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    min-height: 600px;
}

.hero_manage {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background-image: url(img/manage-bg.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    min-height: 600px;
}

.hero_emerge {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background-image: url(img/emerge-bg.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    min-height: 600px;
}

.hero_improve {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background-image: url(img/improve-bg.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    min-height: 600px;
}

.hero_tech {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background-image: url(img/tech-bg.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    min-height: 600px;
}

.hero-container {
    width: 80vw;
    height: 90vh;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.header {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.logo {
    flex-shrink: 0;
}

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

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

.menu a {
    color: #404041;
    text-decoration: none;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.menu a:hover {
    color: #f06922;
}

.language-selector {
    position: relative;
}

.lang-dropdown-btn {
    background: transparent;
    border: none;
    padding: 8px 20px;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.lang-dropdown-btn:focus {
    outline: none;
}

.flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
}

.current-lang a {
    color: #404041;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.current-lang a:hover {
    color: #f06922;
}

.arrow-icon {
    width: 12px;
    height: 8px;
    transition: transform 0.3s;
    margin-left: 4px;
}

.language-selector.open .arrow-icon {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px;
    min-width: 140px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 100;
}

.language-selector.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
}

.lang-option:hover {
    background: #f5f5f5;
}

.lang-option.active {
    background: #f0f0f0;
}

.emergency {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 25px;
    white-space: nowrap;
}

.emergency-text {
    color: #000;
    font-size: 26px;
    font-weight: 500;
    white-space: nowrap;
}

.emergency-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: -5px;
}

.phone-icon {
    width: 30px;
    height: 30px;
    color: #ff0000;
}

.phone-number {
    color: #ff0000;
    font-size: 26px;
    font-weight: 500;
    margin-left: -10px;
}

.phone-number a {
    color: #ff0000 !important;
    text-decoration: none !important;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 70px;
    z-index: 2;
}

.hero-title {
    color: #404041;
    font-weight: 700;
    line-height: 0.7;
    max-width: 900px;
}

.hero-content h1 {
    color: #404041;
    font-size: clamp(56px, 5.5vw, 70px);
    font-weight: 700;
    line-height: 0.65;
    margin-bottom: 30px;
    max-width: 900px;
    letter-spacing: -3px;
}

.hero-content h2 {
    padding-top: 5px;
    padding-bottom: 7px;
    color: #000000;
    font-size: 34px;
    font-weight: 300;
    line-height: 0.7;
    margin-bottom: 60px;
    max-width: 800px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 10%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 100%);
}

.hero-content2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0px;
}

.hero-content2 h1 {
    color: #404041;
    font-size: clamp(56px, 6vw, 80px);
    font-weight: 700;
    line-height: 0.7;
    margin-bottom: 30px;
    max-width: 900px;
    letter-spacing: -3px;
}

.hero-content2 h2 {
    color: #000000;
    font-size: 34px;
    font-weight: 300;
    line-height: 0.7;
    margin-bottom: 60px;
    max-width: 650px;
    letter-spacing: -0.5px;
}

.hero-content-manage {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0px;
}

.hero-content-manage h1 {
    color: #404041;
    font-size: clamp(56px, 6vw, 80px);
    font-weight: 700;
    line-height: 0.7;
    margin-bottom: 30px;
    max-width: 900px;
    letter-spacing: -3px;
}

.hero-content-manage h2 {
    color: #000000;
    font-size: 34px;
    font-weight: 300;
    line-height: 0.7;
    margin-bottom: 60px;
    max-width: 650px;
    letter-spacing: -0.5px;
    z-index: 3;
}

.cta-button {
    font-family: "Alumni Sans SC", sans-serif;
    background-color: #f06922;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 18px 80px;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
    text-transform: uppercase;
    min-width: 400px;
    z-index: 1;
}

.cta-button:hover {
    background-color: #d95a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 105, 34, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .hero-content-manage h2 {
        max-width: 550px;
    }

    .header {
        gap: 30px;
    }

    .menu {
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        width: 95vw;
        padding: 30px 30px;
    }

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

    .header {
        flex-wrap: wrap;
        gap: 20px;
    }

    .menu {
        gap: 20px;
    }

    .menu a {
        font-size: 16px;
    }

    .emergency-text {
        color: #000;
        font-size: 16px;
        font-weight: 500;
        white-space: nowrap;
    }

    .phone-number {
        color: #ff0000;
        font-size: 20px;
        font-weight: 500;
        margin-left: -10px;
    }

    .phone-icon {
        width: 20px;
        height: 20px;
        color: #ff0000;
    }

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

    .emergency {
        margin-top: 20px;
    }

    .hero-content h1 {
        font-size: 55px;
        line-height: 0.7;
        letter-spacing: -2px;
    }

    .hero-content h2 {
        font-size: 28px;
        line-height: 0.7;
        letter-spacing: -0.8px;
        max-width: 650px;
    }

    .hero-content2 h1 {
        font-size: 55px;
        line-height: 0.7;
        letter-spacing: -2px;
    }

    .hero-content2 h2 {
        font-size: 28px;
        line-height: 0.7;
        letter-spacing: -0.8px;
    }
}

@media (max-width: 768px) {
    .hero-content-manage {
        margin-bottom: -120px !important;
    }
    
    .hero-container {
        width: 95vw;
        padding: 20px;
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
        padding-top: max(20px, env(safe-area-inset-top));
    }

    .hero-content-manage h1 {
        color: #404041;
        font-size: 38px;
        font-weight: 700;
        padding-top: 10px;
        padding-bottom: 50px;
        margin-bottom: -20px;
        max-width: 900px;
        line-height: 0.7;
        letter-spacing: -0.3px;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 10%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 100%);
    }

    .hero-content-manage h2 {
        color: #000000;
        font-size: 28px;
        font-weight: 300;
        line-height: 0.7;
        margin-bottom: -150px;
        max-width: 650px;
        letter-spacing: -0.5px;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .menu {
        display: none;
    }

    .language-selector {
        display: none;
    }

    .emergency {
        margin-top: 0px;
    }

    .emergency-text {
        color: #000;
        font-size: 20px;
        font-weight: 600;
        white-space: nowrap;
    }

    .phone-number {
        color: #ff0000;
        font-size: 22px;
        font-weight: 500;
        margin-left: -10px;
    }

    .emergency {
        margin-left: 0;
        align-items: flex-start;
    }

    .hero-title {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .hero-content {
        align-items: flex-start;
    }

    .hero-content h1 {
        padding-top: 5px;
        padding-bottom: 7px;
        font-size: 31px;
        line-height: 0.7;
        letter-spacing: -1px;
        align-self: flex-start;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 10%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 100%);
    }

    .hero-content2 h1 {
        padding-top: 5px;
        padding-bottom: 7px;
        font-size: 38px;
        line-height: 0.7;
        letter-spacing: -1px;
        align-self: flex-start;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 10%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 100%);
    }

    .hero-content h2 {
        font-size: 28px;
        line-height: 0.7;
        letter-spacing: -0.3px;
        font-weight: 400;
        align-self: flex-start;
        z-index: 2;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 26px;
        font-weight: 700;
        width: 80vw;
        max-width: 400px;
        min-width: 300px;
        letter-spacing: -0.5px;
        margin: 0 auto;
        align-self: center;
    }

    .footer-social-desktop {
        display: none;
    }

    .footer-social-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 10px;
        margin-top: 10px;
        border-top: none;
    }

    .footer-company-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-social-desktop {
        order: 2;
    }
}

.hero-content-manage {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 100px;
}

@media (max-width: 420px) {
    .hero_about {
        position: relative;
        width: 100vw;
        min-height: 100vh;
        background-image: url(img/about-bg.png);
        background-size: auto 100%;
        background-position: -320px -20px;
        background-repeat: no-repeat;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .hero_manage {
        position: relative;
        width: 100vw;
        min-height: 100vh;
        background-image: url(img/manage-bg.png);
        background-size: auto 100%;
        background-position: -320px 0px;
        background-repeat: no-repeat;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .hero_emerge {
        position: relative;
        width: 100vw;
        min-height: 100vh;
        background-image: url(img/emerge-bg.png);
        background-size: auto 100%;
        background-position: -300px -20px;
        background-repeat: no-repeat;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .hero_improve {
        position: relative;
        width: 100vw;
        min-height: 100vh;
        background-image: url(img/improve-bg.png);
        background-size: auto 100%;
        background-position: -300px -20px;
        background-repeat: no-repeat;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .hero_tech {
        position: relative;
        width: 100vw;
        min-height: 100vh;
        background-image: url(img/tech-bg.png);
        background-size: auto 100%;
        background-position: -300px -20px;
        background-repeat: no-repeat;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
}

.about-section {
    position: relative;
    width: 100vw;
    background-color: #f8fbfc;
    margin-top: -150px;
    padding: 100px 0 120px;
    clip-path: polygon(0 4.3%, 100% 0, 100% 100%, 0 100%);
    overflow: visible;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60vw;
    height: calc(100% - 70px);
    background-image: url('/img/about1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: polygon(0 4.3%, 100% 0, 100% 85%, 0 80%);
    z-index: 1;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 790px;
    position: relative;
    z-index: 2;
}

.about-image {
    display: none;
}

.about-container > .about-title {
    display: none;
}

.about-content {
    max-width: 670px;
    padding-left: 50px;
    padding-right: 20px;
    position: relative;
    z-index: 3;
    background: linear-gradient(to right, rgba(248, 251, 252, 0) 0%, rgba(248, 251, 252, 0.5) 20px, rgba(248, 251, 252, 0.9) 50px, #f8fbfc 80px);
}

.about-content > .about-title {
    display: block;
}

.about-title {
    font-family: "Alumni Sans SC", sans-serif;
    color: #404041;
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 700;
    line-height: 0.7;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.about-text {
    color: #404041;
    font-size: 34px;
    line-height: 0.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.about-text p {
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.about-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 6px;
    font-size: 30px;
    font-weight: 500;
    color: #404041;
}

.about-list li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: #f06922;
    font-weight: 700;
}

.about-cta {
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

@media (max-width: 1024px) {
    .about-section {
        margin-top: -100px;
        padding: 80px 0 100px;
    }

    .about-section::before {
        width: 60vw;
    }

    .about-container {
        padding: 0 40px;
        height: auto;
        min-height: 450px;
    }

    .about-content {
        max-width: 550px;
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .about-section {
        margin-top: -80px;
        padding: 70px 0 80px;
        clip-path: polygon(0 4.3%, 100% 0, 100% 100%, 0 100%);
    }

    .about-section::before {
        display: none;
    }

    .about-container {
        padding: 0 20px;
        min-height: auto;
        height: auto;
        flex-direction: column;
        align-items: stretch;
    }

    .about-container > .about-title {
        display: block;
        order: 1;
        font-size: 34px;
        line-height: 0.7;
        letter-spacing: -1px;
        margin-bottom: -30px;
        z-index: 3;
        position: relative;
    }

    .about-content .about-title {
        display: none;
    }

    .about-image {
        display: block;
        width: 100vw;
        height: 350px;
        overflow: hidden;
        border-radius: 0;
        order: 2;
        position: relative;
        z-index: 2;
        margin-left: -20px;
        margin-right: -20px;
    }

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

    .about-content {
        order: 3;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        background: transparent;
        margin-top: -30px;
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-text {
        font-size: 28px;
        line-height: 0.8;
        letter-spacing: 0.1px;
        background: linear-gradient(to bottom, rgba(248, 251, 252, 0) 0%, rgba(248, 251, 252, 0.5) 15px, rgba(248, 251, 252, 0.9) 30px, #f8fbfc 50px);
        padding-top: 20px;
        margin-bottom: 20px;
        font-weight: 400;
        width: 100%;
    }

    .about-list {
        background: #f8fbfc;
        width: 100%;
    }

    .about-list li {
        font-size: 30px;
        letter-spacing: -0.8px;
    }

    .about-cta {
        z-index: 3;
        margin-top: 20px;
        align-self: center;
    }
}

.services-section {
    position: relative;
    width: 100vw;
    background-color: #f8fbfc;
    padding: 0px 0 120px;
    overflow: visible;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.services-text {
    flex: 0 0 40%;
    max-width: 500px;
}

.services-title {
    font-family: "Alumni Sans SC", sans-serif;
    color: #404041;
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 700;
    line-height: 0.7;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.services-description {
    color: #404041;
    font-size: 34px;
    line-height: 0.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.services-button {
    font-family: "Alumni Sans SC", sans-serif;
    background-color: transparent;
    color: #000000bd;
    border: 1px solid #00000026;
    border-radius: 14px;
    padding: 12px 40px;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.5px;
    width: fit-content;
    text-transform: uppercase;
    pointer-events: none;
    width: 90%;
}

.services-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 0 0 1px rgba(64, 64, 65, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(240, 105, 34, 0.25);
}

@media (hover: none) and (pointer: coarse) {
    .service-card:hover {
        transform: none;
        box-shadow: 0 0 0 1px rgba(64, 64, 65, 0.1);
    }
    
    .service-card:active {
        transform: scale(0.98);
        box-shadow: 0 5px 15px rgba(240, 105, 34, 0.2);
    }
}

.service-card::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    pointer-events: none;
    z-index: 2;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(240, 105, 34, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #ffffff;
    font-family: "Alumni Sans SC", sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 0.7;
    letter-spacing: -1px;
    z-index: 3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.service-card:hover .service-title {
    transform: translateY(-5px);
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

@media (max-width: 1024px) {
    .services-container {
        padding: 0 40px;
        flex-direction: column;
        gap: 40px;
    }

    .services-text {
        flex: none;
        max-width: 100%;
    }

    .services-button {
        display: none;
    }

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

    .service-title {
        font-size: 50px;
        bottom: 30px;
        left: 30px;
    }
}

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

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

    .services-title {
        font-size: 34px;
        line-height: 0.7;
        letter-spacing: -1px;
    }

    .services-description {
        font-size: 28px;
        line-height: 0.8;
        letter-spacing: 0.1px;
        font-weight: 400;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .service-card {
        aspect-ratio: 16/9;
        min-height: 200px;
    }

    .service-title {
        font-size: 28px;
        bottom: 20px;
        left: 20px;
    }
}

.clients-section {
    position: relative;
    width: 100vw;
    background-color: #f8fbfc;
    padding: 0px 0 120px;
    overflow: visible;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.clients-title {
    font-family: "Alumni Sans SC", sans-serif;
    color: #404041;
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 700;
    line-height: 0.7;
    margin-bottom: 60px;
    letter-spacing: -1px;
    text-align: center;
}

.clients-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.clients-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
}

.client-logo {
    height: 70px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
    cursor: default;
}

.client-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
    filter: drop-shadow(0 8px 16px rgba(240, 105, 34, 0.2));
}

@media (max-width: 1024px) {
    .clients-section {
        padding: 0px 0 100px;
    }

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

    .clients-title {
        margin-bottom: 50px;
    }

    .clients-grid {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .clients-row {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 100px;
    }

    .client-logo {
        height: 65px;
        max-width: 200px;
        width: auto;
    }
}

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

    .clients-container {
        padding: 0 20px;
    }

    .clients-title {
        font-size: 34px;
        line-height: 0.7;
        letter-spacing: -1px;
        margin-bottom: 40px;
    }

    .clients-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 30px;
        max-width: 500px;
        margin: 0 auto;
    }

    .clients-row {
        display: contents;
    }

    .client-logo {
        height: 55px;
        max-width: 140px;
        width: auto;
        justify-self: center;
        grid-column: span 3;
    }

    .client-logo.last-row {
        grid-column: span 2;
    }
}

.testimonials-section {
    position: relative;
    width: 100vw;
    background-color: #f8fbfc;
    padding: 60px 0 120px;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.testimonials-title {
    font-family: "Alumni Sans SC", sans-serif;
    color: #404041;
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 700;
    line-height: 0.7;
    margin-bottom: 80px;
    letter-spacing: -1px;
    text-align: center;
}

.testimonials-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.testimonials-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-item {
    flex: 0 0 calc((100% - 60px) / 3);
    min-width: 0;
    max-width: calc((100% - 60px) / 3);
    position: relative;
    padding-top: 25px;
}

.testimonial-item .stars-badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f06922;
    border-radius: 10px;
    padding: 10px 20px;
    display: flex;
    gap: 6px;
    z-index: 3;
    width: 60%;
    justify-content: center;
}

.testimonial-item .star {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.testimonial-item .testimonial-text-wrapper {
    border: 1px solid #f4bc9f;
    border-radius: 20px;
    padding: 40px 25px 25px 25px;
    min-height: 200px;
    display: flex;
    align-items: flex-start;
}

.testimonial-item .testimonial-text {
    font-size: 18px;
    line-height: 1.3;
    color: #333;
    width: 100%;
    font-weight: 400;
}

.testimonial-item .author-section {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 15px;
}

.testimonial-item .author-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-top: -16px;
    margin-left: 20px;
}

.testimonial-item .author-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 2px;
}

.testimonial-item .author-name {
    font-weight: 500;
    font-size: 26px;
    color: #000;
    line-height: 1;
}

.testimonial-item .author-position {
    font-size: 16px;
    color: #3e3e3e;
    line-height: 0.8;
}

.testimonial-nav {
    width: 40px;
    height: 40px;
    background-color: #f06922;
    opacity: 0.9;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 100;
    position: relative;
}

.testimonial-nav svg {
    width: 24px;
    height: 24px;
}

.testimonial-nav svg path {
    stroke: #f8fbfc;
    fill: none;
}

.testimonial-nav:hover {
    opacity: 1;
    transform: scale(1.1);
}

.testimonial-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 1024px) {
    .testimonials-section {
        padding: 40px 0 100px;
    }

    .testimonials-container {
        padding: 0 40px;
    }

    .testimonials-title {
        margin-bottom: 60px;
    }

    .testimonial-item {
        flex: 0 0 calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }

    .testimonials-slider-wrapper {
        gap: 20px;
    }

    .testimonials-track {
        gap: 20px;
    }

    .testimonial-nav {
        width: 45px;
        height: 45px;
    }

    .testimonial-nav svg {
        width: 20px;
        height: 20px;
    }

    .testimonial-item .testimonial-text {
        font-size: 16px;
        line-height: 1.25;
    }

    .testimonial-item .testimonial-text-wrapper {
        padding: 35px 20px 20px 20px;
        min-height: 180px;
    }

    .testimonial-item .stars-badge {
        padding: 8px 18px;
        gap: 5px;
    }

    .testimonial-item .star {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 30px 0 80px;
    }

    .testimonials-container {
        padding: 0 20px;
    }

    .testimonials-title {
        font-size: 34px;
        line-height: 0.7;
        letter-spacing: -1px;
        margin-bottom: 50px;
    }

    .testimonials-slider-wrapper {
        gap: 15px;
    }

    .testimonial-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .testimonials-track {
        gap: 15px;
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
    }

    .testimonial-nav svg {
        width: 18px;
        height: 18px;
    }

    .testimonial-item .testimonial-text {
        font-size: 16px;
        line-height: 1.25;
    }

    .testimonial-item .testimonial-text-wrapper {
        padding: 30px 18px 18px 18px;
        min-height: 160px;
    }

    .testimonial-item .stars-badge {
        padding: 8px 15px;
        gap: 4px;
        width: 60%;
    }

    .testimonial-item .star {
        width: 16px;
        height: 16px;
    }

    .testimonial-item .author-image {
        width: 50px;
        height: 50px;
    }

    .testimonial-item .author-name {
        font-size: 18px;
    }

    .testimonial-item .author-position {
        font-size: 16px;
    }
}

.cta-final-section {
    position: relative;
    width: 100vw;
    background-color: #f8fbfc;
    padding: 80px 0 0px;
    overflow: visible;
}

.cta-final-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-final-title {
    font-family: "Alumni Sans SC", sans-serif;
    color: #404041;
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 700;
    line-height: 0.7;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.cta-final-description {
    color: #404041;
    font-size: 34px;
    line-height: 0.8;
    margin-bottom: 50px;
    font-weight: 300;
}

.cta-final-container .cta-button {
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .cta-final-section {
        padding: 60px 0 0px;
    }

    .cta-final-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .cta-final-section {
        padding: 50px 0 0px;
    }

    .cta-final-container {
        padding: 0 20px;
    }

    .cta-final-title {
        font-size: 34px;
        line-height: 0.7;
        letter-spacing: -1px;
    }

    .cta-final-description {
        font-size: 28px;
        line-height: 0.8;
        letter-spacing: -0.3px;
        font-weight: 400;
        margin-bottom: 40px;
    }
}

.footer {
    position: relative;
    width: 100vw;
    padding: 80px 0 40px;
    overflow: visible;
    margin-top: -60px;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/footer-bg.png');
    background-size: cover;
    background-position: -100px -20px;
    background-repeat: no-repeat;
    z-index: -1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
    margin-top: 400px;
}

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

.footer-column h3 {
    font-family: "Alumni Sans SC", sans-serif;
    color: #404041;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1;
    white-space: nowrap;
}

.footer-column p {
    color: #404041;
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 4px;
    font-weight: 400;
}

.footer a {
    color: #404041;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.footer a:hover {
    color: #f06922;
}

.social-links,
.mobile-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-direction: row-reverse;
}

.social-links a,
.mobile-social-links a {
    color: #404041;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.social-links a:hover,
.mobile-social-links a:hover {
    color: #f06922;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    padding-top: 25px;
    border-top: 1px solid rgba(64, 64, 65, 0.081);
    margin-top: 10px;
}

.mobile-social-links {
    margin-top: auto;
    padding: 10px;
}

.footer-company {
    position: relative;
}

.footer-company .footer-copyright {
    display: block;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.footer-company .footer-copyright p {
    color: #666666;
    font-size: 16px;
    font-weight: 300;
}

.footer-copyright-mobile {
    display: none;
}

.footer-emergency {
    display: flex;
    flex-direction: column;
}

.footer-emergency-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.footer-phone-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(87%) saturate(5432%) hue-rotate(358deg) brightness(97%) contrast(118%);
}

.footer-phone-number {
    color: #ff0000;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}

.footer-phone-number a {
    color: #ff0000 !important;
    text-decoration: none !important;
    font-size: 36px !important;
}

@media (max-width: 1024px) {
    .footer {
        padding: 60px 0 35px;
    }

    .footer-container {
        padding: 0 40px;
    }

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

    .footer-column h3 {
        font-size: 28px;
    }

    .footer-column p {
        font-size: 20px;
    }

    .footer-phone-number {
        font-size: 28px;
    }

    .footer-phone-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 768px) {
    .current-lang a {
        font-size: 26px;
    }

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 90vh;
        background-image: url(img/footer-bg.png);
        background-size: cover;
        background-position: -400px 60px;
        background-repeat: no-repeat;  
        z-index: -1;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }

    .footer-company {
        grid-column: 2;
        order: 1;
    }

    .footer-company .footer-copyright {
        display: none;
    }

    .footer-social-desktop {
        display: none !important;
    }

    .footer-location {
        order: 2;
    }

    .footer-location:first-of-type {
        grid-column: 1;
        grid-row: 1;
    }

    .footer-location:last-of-type {
        grid-column: 2;
        grid-row: 2;
    }

    .footer-emergency {
        grid-column: 1 / -1;
        order: 3;
        align-items: center;
        text-align: center;
        margin-top: 20px;
    }

    .footer-emergency h3 {
        text-align: center;
    }

    .footer-emergency-phone {
        justify-content: center;
    }

    .footer-copyright-mobile {
        display: block;
        text-align: center;
        margin-top: 30px;
        padding-top: 25px;
        padding-bottom: env(safe-area-inset-bottom);
        border-top: 1px solid rgba(64, 64, 65, 0.3);
    }

    .footer-copyright-mobile p {
        color: #666666;
        font-size: 16px;
        font-weight: 300;
    }

    .footer-column h3 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .footer-column p {
        font-size: 23px;
        line-height: 0.8;
    }

    .footer-phone-number {
        font-size: 30px;
    }

    .footer-phone-icon {
        width: 26px;
        height: 26px;
    }

    .footer-social {
        justify-content: center;
        border-top: 1px solid rgba(64, 64, 65, 0.3);
        padding-top: 25px;
        margin-top: 10px;
        display: flex !important;
    }

    .social-links a {
        font-size: 20px;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    margin-left: auto;
    top: -115px;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: #404041;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-toggle.active .burger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

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

.mobile-menu-toggle.active .burger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    height: 100dvh;
    height: -webkit-fill-available;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    height: 100dvh;
    height: -webkit-fill-available;
    background: #e8e8e8;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding-bottom: calc(30px + env(safe-area-inset-bottom));
}

.mobile-menu-logo {
    margin-bottom: 25px;
    text-align: center;
}

.mobile-menu-logo img {
    height: 30px;
    width: auto;
}

.mobile-menu-lang {
    display: flex;
    font-size: 30px;
    font-weight: 500;
    color: #404041;
    padding: 8px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-item {
    display: flex;
    flex-direction: column;
}

.mobile-menu-link {
    color: #404041;
    text-decoration: none;
    font-size: 26px;
    font-weight: 600;
    padding: 18px 0;
    border-bottom: 1px solid rgba(64, 64, 65, 0.15);
    transition: color 0.3s, padding-left 0.3s;
    display: block;
    letter-spacing: -0.5px;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    color: #f06922;
    padding-left: 10px;
}

.mobile-submenu {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.mobile-submenu-link {
    color: #666;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 8px 0;
    transition: color 0.3s, padding-left 0.3s;
    display: block;
    line-height: 0.8;
}

.mobile-submenu-link:hover,
.mobile-submenu-link:active {
    color: #f06922;
    padding-left: 10px;
}

.mobile-menu-emergency {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(64, 64, 65, 0.15);
    text-align: center;
}

.mobile-emergency-text {
    color: #404041;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.mobile-emergency-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-phone-icon {
    width: 26px;
    height: 26px;
}

.mobile-phone-number {
    color: #ff0000;
    font-size: 28px;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-overlay {
        display: none;
        pointer-events: none;
    }
    
    .mobile-menu-overlay.active {
        display: block;
        pointer-events: auto;
    }

    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
    }
}

.management-section {
    position: relative;
    width: 100vw;
    background-color: #f8fbfc;
    margin-top: -150px;
    padding: 100px 0 120px;
    clip-path: polygon(0 4.3%, 100% 0, 100% 100%, 0 100%);
    overflow: visible;
    z-index: 2;
}

.management-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 20px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.management-image {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.management-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.management-container > .management-title {
    display: none;
}

.management-content {
    grid-column: 2;
    grid-row: 1 / 3;
    padding-left: 20px;
    position: relative;
}

.management-content > .management-title {
    display: block;
}

.management-title {
    font-family: "Alumni Sans SC", sans-serif;
    color: #404041;
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 700;
    line-height: 0.7;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.management-text {
    color: #404041;
    font-size: 34px;
    line-height: 0.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.management-text p {
    margin-bottom: 20px;
}

.management-cta {
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

@media (max-width: 1024px) {
    .management-section {
        margin-top: -160px;
        padding: 160px 0 100px;
    }

    .management-container {
        padding: 0 30px;
        grid-template-columns: 40% 60%;
        gap: 40px;
    }

    .management-content {
        padding-left: 0px;
        margin-right: 40px;
    }

    .management-image img {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .footer {
        margin-top: -160px;
    }

    .management-section {
        margin-top: -150px;
        padding: 70px 0 80px;
        clip-path: polygon(0 1.3%, 100% 0, 100% 100%, 0 100%);
    }

    .management-container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .management-container > .management-title {
        display: block;
        order: 1;
        font-size: 34px;
        line-height: 0.7;
        letter-spacing: -1px;
        margin-bottom: 30px;
        z-index: 3;
        position: relative;
    }

    .management-content .management-title {
        display: none;
    }

    .management-image {
        display: block;
        width: 100%;
        order: 2;
        position: relative;
        z-index: 2;
        margin-bottom: 30px;
    }

    .management-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .management-content {
        order: 3;
        padding-left: 0;
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-right: 0px;
    }

    .management-text {
        font-size: 26px;
        line-height: 0.8;
        letter-spacing: 0.1px;
        margin-bottom: 20px;
        font-weight: 300;
        width: 100%;
    }

    .management-cta {
        z-index: 3;
        margin-top: 20px;
        align-self: center;
    }
}