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

body {
    font-family: 'Libre Franklin', -apple-system, Roboto, Helvetica, sans-serif;
    background-color: #151517;
    color: #F3F3F3;
    overflow-x: hidden;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    min-height: 100vh;
}

/* Header */
.header {
    width: 100%;
    padding: 48px 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

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

.header-phone {
    color: #57FF90;
    text-align: right;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.header-phone a {
    color: #57FF90;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header-phone a:hover {
    opacity: 0.8;
}

.header-phone.mobile {
    display: none;
}

/* Burger Button */
.burger-button {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: #57FF90;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-button.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-button.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-button.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Header Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

@media (min-width: 769px) {
    .header-nav {
        display: flex !important;
        position: relative !important;
        right: auto !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        flex-direction: row !important;
        padding: 0 !important;
        box-shadow: none !important;
        visibility: visible !important;
    }
    
    .header-nav.active {
        display: flex !important;
        position: relative !important;
        right: auto !important;
    }
}

.nav-link {
    color: #F3F3F3;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #57FF90;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #57FF90;
    transition: width 0.3s ease;
}

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

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-link-dropdown {
    cursor: pointer;
}

.nav-link-dropdown.nav-link-active {
    color: #57FF90;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: #151517;
    border: 1px solid rgba(87, 255, 144, 0.2);
    border-radius: 8px;
    min-width: 280px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 24px;
    color: #F3F3F3;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(87, 255, 144, 0.1);
    color: #57FF90;
}

.dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

/* Mobile dropdown - hide on mobile, show in mobile menu */
@media (max-width: 768px) {
    .nav-dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0;
        margin-left: 20px;
        border: none;
        box-shadow: none;
        padding: 8px 0;
    }
    
    .dropdown-item {
        padding: 8px 0;
        font-size: 14px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 144px);
    padding: 0 96px;
    display: flex;
    align-items: center;
    gap: 120px;
    overflow: hidden;
}

/* Background Elements */
.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-image {
    width: 100%;
    height: 985px;
    opacity: 0.1;
    position: absolute;
    top: 311px;
    left: 0;
    object-fit: cover;
}

.hero-gradient-blur {
    width: 794px;
    height: 794px;
    border-radius: 85px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(125, 125, 134, 0.43) 0%, rgba(125, 125, 134, 0.13) 100%);
    filter: blur(67.45px);
    position: absolute;
    right: 0;
    top: 0;
}

/* Hero Content */
.hero-content {
    display: flex;
    width: 100%;
    max-width: 1776px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    gap: 120px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 600px;
    padding-top: 100px;
}

.hero-title {
    color: #F3F3F3;
    font-size: 56px;
    font-weight: 400;
    line-height: 64px;
    letter-spacing: -1.68px;
}

.hero-title .highlight {
    color: #57FF90;
}

.hero-subtitle {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

.hero-button {
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 8px;
    background: #57FF90;
    color: #151517;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.32px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    width: fit-content;
}

.hero-button:hover {
    opacity: 0.9;
}

.hero-button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Hero Image */
.hero-image-wrapper {
    flex: 1;
    max-width: 840px;
    height: 791px;
    position: relative;
    margin-top: 100px;
}

.hero-image-mask {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-image-gradient {
    width: 100%;
    height: 396px;
    background: linear-gradient(180deg, rgba(35, 35, 37, 0.53) 0%, rgba(35, 35, 37, 0.00) 100%);
    background-blend-mode: multiply;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1440px) {
    .hero {
        padding: 0 48px;
        gap: 60px;
    }

    .hero-title {
        font-size: 48px;
        line-height: 56px;
    }

    .hero-image-wrapper {
        max-width: 600px;
        height: 600px;
    }
}

@media (max-width: 1024px) {
    .header {
        padding: 32px 48px;
    }

    .header-nav {
        gap: 24px;
    }

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

    .hero {
        flex-direction: column;
        padding: 40px 48px;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
        padding-top: 0;
    }

    .hero-title {
        font-size: 40px;
        line-height: 48px;
    }

    .hero-image-wrapper {
        max-width: 100%;
        height: 500px;
        margin-top: 0;
    }

    .hero-gradient-blur {
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 24px;
        position: relative;
    }

    .burger-button {
        display: flex;
    }

    .header-nav {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #151517;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    }

    .header-nav.active {
        display: flex;
        right: 0;
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .nav-link {
        font-size: 20px;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(158, 158, 168, 0.2);
    }

    .nav-link::after {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .header-phone.mobile {
        display: block;
        margin-top: auto;
        padding-top: 24px;
        border-top: 1px solid rgba(158, 158, 168, 0.2);
        width: 100%;
    }

    .header-phone.mobile a {
        font-size: 18px;
    }

    .hero {
        padding: 40px 24px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        min-height: auto;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
        padding-top: 0;
        gap: 24px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 48px;
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 26px;
    }

    .hero-button {
        align-self: flex-start;
    }

    .hero-image-wrapper {
        width: calc(100% + 48px);
        max-width: none;
        height: auto;
        min-height: 450px;
        margin: 0 -24px;
    }

    .hero-image-mask {
        height: 400px;
    }

    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center bottom;
    }

    .hero-gradient-blur {
        display: none;
    }

    .hero-bg-image {
        top: auto;
        bottom: 0;
        height: 600px;
        opacity: 0.15;
    }
}

/* About Us Section */
.about-section {
    width: 100%;
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-content {
    max-width: 1776px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.label-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: #57FF90;
}

.label-text {
    color: #9E9EA8;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    text-transform: uppercase;
}

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

.about-title {
    flex: 1;
    max-width: 748px;
    min-width: 300px;
    color: #F3F3F3;
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: -1.44px;
}

.about-description {
    flex: 1;
    max-width: 768px;
    min-width: 300px;
    color: #F3F3F3;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.about-images {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    background: #D9D9D9;
}

.about-image {
    position: absolute;
    object-fit: cover;
}

.about-image-1 {
    width: 2052px;
    height: 1368px;
    left: -132px;
    top: -311px;
}

.about-image-2 {
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
}

/* Services Section */
.services-section {
    width: 100%;
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-content {
    max-width: 1776px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.services-title {
    flex: 0 0 auto;
    max-width: 400px;
    min-width: 280px;
    color: #F3F3F3;
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: -1.44px;
}

.services-description {
    flex: 1;
    max-width: 768px;
    min-width: 300px;
    color: #F3F3F3;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.services-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(58, 58, 62, 0.00) 0%, #3A3A3E 50%, rgba(58, 58, 62, 0.00) 100%);
}

.services-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-intro {
    color: #57FF90;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.services-cards {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.service-card {
    width: 438px;
    height: 438px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    position: relative;
}

.service-card-dark {
    background: rgba(58, 58, 62, 0.40);
}

.service-card-green {
    background: #57FF90;
}

.service-card-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.service-number {
    display: flex;
    width: 32px;
    height: 32px;
    padding: 5px 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    border: 1px solid #57FF90;
}

.service-number-green {
    border-color: #151517;
}

.service-number-text {
    color: #57FF90;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.42px;
}

.service-number-text-green {
    color: #151517;
}

.service-icon {
    width: 188px;
    height: 188px;
    flex-shrink: 0;
}

.service-icon-small {
    width: 120px;
    height: 120px;
}

.service-title {
    color: #F3F3F3;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.72px;
}

.service-title-green {
    color: #151517;
}

.service-description {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 335px;
}

.service-desc-text {
    color: #151517;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.service-desc-text-hidden {
    display: none;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.service-card-link.service-card-dark:hover {
    background: #57FF90 !important;
}

.service-card-link:hover .service-title {
    color: #151517;
}

.service-card-link:hover .service-number {
    border-color: #151517;
}

.service-card-link:hover .service-number-text {
    color: #151517;
}

.service-card-link:hover .service-icon {
    width: 120px;
    height: 120px;
    transition: width 0.3s ease, height 0.3s ease;
}

.service-card-link:hover .service-desc-text-hidden {
    display: block;
}

/* Изменение иконки при ховере - градиенты меняются через JavaScript */

/* Плавные переходы для всех элементов */
.service-card-dark,
.service-title,
.service-number,
.service-number-text {
    transition: all 0.3s ease;
}

.services-cta {
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #57FF90;
}

.services-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.services-cta-text {
    flex: 1;
    max-width: 737px;
    min-width: 280px;
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
}

.services-cta-button {
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 8px;
    background: #57FF90;
    color: #151517;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.32px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.services-cta-button:hover {
    opacity: 0.9;
}

.services-cta-button svg {
    width: 24px;
    height: 24px;
}

/* Responsive for new sections */
@media (max-width: 1440px) {
    .about-section,
    .services-section {
        padding: 60px 48px;
    }

    .about-title,
    .services-title {
        font-size: 40px;
        line-height: 48px;
    }

    .about-header,
    .services-header {
        flex-direction: column;
        gap: 24px;
    }

    .about-title,
    .about-description,
    .services-title,
    .services-description {
        width: 100%;
    }

    .services-cards {
        justify-content: center;
    }

    .service-card {
        width: calc(50% - 4px);
        max-width: 438px;
    }
}

@media (max-width: 1024px) {
    .about-section,
    .services-section {
        padding: 40px 48px;
    }

    .services-content {
        gap: 60px;
    }

    .service-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 400px;
    }

    .services-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-cta-text {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-section,
    .services-section {
        padding: 32px 24px;
    }

    .about-title,
    .services-title {
        font-size: 32px;
        line-height: 40px;
    }

    .about-description,
    .services-description {
        font-size: 16px;
        line-height: 24px;
    }

    .about-images {
        height: 300px;
    }

    .services-content {
        gap: 40px;
    }

    .service-card {
        min-height: 350px;
    }

    .service-icon {
        width: 120px;
        height: 120px;
    }

    .services-cta {
        padding: 32px 24px;
    }

    .services-cta-text {
        font-size: 20px;
        line-height: 28px;
    }
}

/* Advanced Equipment Section */
.advanced-section {
    width: 100%;
    padding: 120px 72px 240px;
    position: relative;
    overflow: hidden;
}

.advanced-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #D9D9D9;
    z-index: 0;
}

.advanced-blur-effects {
    position: absolute;
    right: 0;
    top: -334px;
    width: 1001px;
    height: 1330px;
    pointer-events: none;
}

.blur-circle {
    position: absolute;
    border-radius: 85px;
    filter: blur(103.2px);
}

.blur-circle-1 {
    width: 419px;
    height: 419px;
    background: radial-gradient(50% 50% at 50% 50%, #7D7D86 0%, rgba(125, 125, 134, 0.50) 100%);
    left: 0;
    top: 911px;
}

.blur-circle-2 {
    width: 473px;
    height: 473px;
    background: radial-gradient(50% 50% at 50% 50%, #7D7D86 0%, rgba(125, 125, 134, 0.50) 100%);
    left: 107px;
    top: 0;
}

.blur-circle-3 {
    width: 473px;
    height: 473px;
    background: radial-gradient(50% 50% at 50% 50%, #7D7D86 0%, rgba(125, 125, 134, 0.50) 100%);
    left: 528px;
    top: 270px;
}

.blur-circle-dark {
    width: 433px;
    height: 516px;
    background: radial-gradient(50% 50% at 50% 50%, #151517 0%, #151517 100%);
    filter: blur(82.85px);
    left: 280px;
    top: 291px;
}

.advanced-sphere {
    position: absolute;
    width: 1562px;
    height: 1476px;
    transform: rotate(-45deg);
    left: -114px;
    top: -226px;
    background-blend-mode: overlay;
    object-fit: contain;
}

.advanced-content {
    position: relative;
    z-index: 2;
    max-width: 1776px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.advanced-title {
    max-width: 582px;
    color: #F3F3F3;
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: -1.44px;
}

.advanced-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.advanced-description {
    max-width: 387px;
    color: #F3F3F3;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

.advanced-card {
    max-width: 880px;
    padding: 48px;
    border-radius: 8px;
    background: rgba(58, 58, 62, 0.14);
    backdrop-filter: blur(27.5px);
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.advanced-tags {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.advanced-tag {
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #57FF90;
    color: #57FF90;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.advanced-card-text {
    max-width: 665px;
    color: #F3F3F3;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.72px;
}

/* Product Categories Section */
.products-section {
    width: 100%;
    padding: 0 24px;
}

.products-wrapper {
    width: 100%;
    padding: 80px 48px;
    background: #F3F3F3;
    border-radius: 0;
}

.products-content {
    max-width: 1776px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.products-title {
    flex: 1;
    max-width: 672px;
    color: #151517;
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: -1.44px;
}

.products-title .highlight {
    color: #11B144;
}

.products-cards {
    flex: 1;
    max-width: 880px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card {
    padding: 32px 32px 0;
    border-radius: 8px;
    border: 1px solid #9E9EA8;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #57FF90;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(87, 255, 144, 0.2);
}

.product-card-active {
    border: 2px solid #11B144;
}

.product-card-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 198px;
    max-width: 400px;
}

.product-card-title {
    color: #151517;
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: -0.96px;
}

.product-card-title-active {
    color: #11B144;
}

.product-card-desc {
    color: #7D7D86;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}

.product-card-desc-active {
    color: #151517;
}

.product-card-image {
    width: 347px;
    height: 230px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.product-card-image img {

    object-fit: contain;
}

/* Industry Expertise Section */
.industry-section {
    width: 100%;
    padding: 0 0 24px 24px;
}

.industry-wrapper {
    width: 100%;
    padding: 80px 72px 80px 48px;
    background: #F3F3F3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.industry-content {
    max-width: 1776px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 72px;
}

.industry-left {
    flex: 1;
    max-width: 815px;
    display: flex;
    flex-direction: column;
    gap: 506px;
}

.industry-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.industry-title {
    color: #151517;
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: -1.44px;
}

.industry-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 463px;
}

.industry-item {
    color: rgba(21, 21, 23, 0.70);
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.72px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding-left: 0;
}

.industry-item:hover {
    color: #11B144;
}

.industry-item-active {
    color: #11B144;
    padding-left: 48px;
}

.industry-divider {
    width: 1px;
    height: 800px;
    background: linear-gradient(180deg, rgba(158, 158, 168, 0.00) 0%, #9E9EA8 50%, rgba(158, 158, 168, 0.00) 100%);
    flex-shrink: 0;
}

.industry-right {
    flex: 1;
    max-width: 816px;
    display: flex;
    flex-direction: column;
    gap: 130px;
}

.industry-image-wrapper {
    width: 100%;
    height: 486px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background: #57FF90;
}

.industry-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.industry-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.industry-details-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.industry-number {
    color: #151517;
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.96px;
}

.industry-dot {
    width: 6px;
    height: 6px;
    border-radius: 1px;
    background: #151517;
}

.industry-details-title {
    color: #151517;
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.96px;
}

.industry-details-desc {
    color: rgba(21, 21, 23, 0.70);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

.label-dot-green {
    background: #11B144;
}

/* Responsive for new sections */
@media (max-width: 1440px) {
    .advanced-section {
        padding: 80px 48px 160px;
    }

    .advanced-body {
        flex-direction: column;
    }

    .advanced-description,
    .advanced-card {
        max-width: 100%;
    }

    .products-header {
        flex-direction: column;
    }

    .products-title,
    .products-cards {
        max-width: 100%;
    }

    .industry-content {
        flex-direction: column;
        gap: 40px;
    }

    .industry-left {
        max-width: 100%;
        gap: 40px;
    }

    .industry-divider {
        display: none;
    }

    .industry-right {
        max-width: 100%;
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .advanced-section {
        padding: 60px 48px 120px;
    }

    .advanced-title {
        font-size: 40px;
        line-height: 48px;
    }

    .advanced-content {
        gap: 60px;
    }

    .products-wrapper,
    .industry-wrapper {
        padding: 60px 32px;
    }

    .products-title,
    .industry-title {
        font-size: 40px;
        line-height: 48px;
    }

    .product-card {
        flex-direction: column;
        gap: 24px;
    }

    .product-card-info {
        height: auto;
        gap: 16px;
    }

    .product-card-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .advanced-section {
        padding: 40px 24px 80px;
    }

    .advanced-title {
        font-size: 32px;
        line-height: 40px;
    }

    .advanced-card {
        padding: 32px 24px;
        gap: 32px;
    }

    .advanced-card-text {
        font-size: 20px;
        line-height: 28px;
    }

    .products-section,
    .industry-section {
        padding: 0;
    }

    .products-wrapper,
    .industry-wrapper {
        padding: 40px 24px;
    }

    .products-title,
    .industry-title {
        font-size: 32px;
        line-height: 40px;
    }

    .product-card-title,
    .industry-details-title,
    .industry-number {
        font-size: 24px;
        line-height: 32px;
    }

    .industry-image-wrapper {
        height: 300px;
    }

    .industry-item {
        font-size: 18px;
        line-height: 26px;
    }

    .industry-item-active {
        padding-left: 24px;
    }
}

/* Contact Section */
.contact-section {
    width: 100%;
    display: flex;
}

.contact-image-side {
    width: 50%;
    height: 960px;
    position: relative;
    overflow: hidden;
    background: #232325;
}

.contact-bg-image {
    width: 1220px;
    height: 1220px;
    transform: rotate(-11.254deg);
    position: absolute;
    left: -372px;
    top: -249px;
    object-fit: cover;
}

.contact-image-gradient-top {
    width: 100%;
    height: 288px;
    background: linear-gradient(180deg, rgba(35, 35, 37, 0.71) 0%, rgba(35, 35, 37, 0.00) 100%);
    position: absolute;
    top: 0;
    left: 0;
}

.contact-image-gradient-bottom {
    width: 100%;
    height: 350px;
    background: linear-gradient(0deg, rgba(35, 35, 37, 0.71) 0%, rgba(35, 35, 37, 0.00) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}

.contact-form-side {
    width: 50%;
    min-height: 960px;
    padding: 80px 72px;
    background: #57FF90;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-title {
    color: #151517;
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: -1.44px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact-fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}

.contact-field input,
.contact-field textarea {
    position: relative;
    z-index: 1;
}

.contact-field-label {
    color: rgba(21, 21, 23, 0.60);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 4px;
}

.contact-field-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #151517;
    font-family: 'Libre Franklin', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    padding: 8px 0;
    cursor: text;
    pointer-events: auto;
    -webkit-user-select: text;
    user-select: text;
}

.contact-field-input::placeholder {
    color: rgba(21, 21, 23, 0.40);
}

.contact-field-input:focus {
    outline: none;
}

.contact-field-textarea {
    min-height: 60px;
    resize: vertical;
    cursor: text;
    pointer-events: auto;
    -webkit-user-select: text;
    user-select: text;
}

.contact-field-divider {
    height: 1px;
    background: rgba(21, 21, 23, 0.24);
    transition: background 0.3s ease;
    pointer-events: none;
    position: relative;
    z-index: 0;
}

.contact-field:focus-within .contact-field-divider {
    background: #151517;
}

.contact-form-footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 56px;
}

.contact-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(21, 21, 23, 0.60);
    flex-shrink: 0;
    cursor: pointer;
    background: transparent;
}

.contact-checkbox-label {
    flex: 1;
    color: rgba(21, 21, 23, 0.60);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.contact-checkbox-label a {
    color: rgba(21, 21, 23, 0.60);
    text-decoration: underline;
}

.contact-submit {
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 8px;
    background: #151517;
    color: #F3F3F3;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.32px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.contact-submit:hover {
    opacity: 0.9;
}

.contact-submit svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    width: 100%;
    background: #F3F3F3;
}

.footer-content {
    padding: 80px 72px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1920px;
    margin: 0 auto;
}

.footer-logo img {
    width: 317px;
    height: 64px;
}

.footer-main {
    display: flex;
    align-items: flex-start;
    gap: 234px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 152px;
    max-width: 401px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-address {
    color: #151517;
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.64px;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-phone {
    color: #151517;
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.64px;
}

.footer-emails {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-email {
    color: #151517;
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.64px;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-copyright-text {
    color: #151517;
    font-size: 15px;
    font-weight: 400;
}

.footer-rights {
    color: #9E9EA8;
    font-size: 15px;
    font-weight: 400;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 135px;
    max-width: 181px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-link {
    color: #151517;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.72px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-privacy {
    color: #9E9EA8;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
}

.footer-privacy:hover {
    text-decoration: underline;
}

.footer-bar {
    height: 32px;
    background: #57FF90;
}

/* Responsive for contact and footer */
@media (max-width: 1440px) {
    .contact-section {
        flex-direction: column;
    }

    .contact-image-side,
    .contact-form-side {
        width: 100%;
    }

    .contact-image-side {
        height: 500px;
    }

    .contact-form-side {
        min-height: auto;
        padding: 60px 48px;
        gap: 48px;
    }

    .footer-main {
        gap: 80px;
    }

    .footer-info {
        gap: 80px;
    }
}

@media (max-width: 1024px) {
    .contact-title {
        font-size: 40px;
        line-height: 48px;
    }

    .footer-content {
        flex-direction: column;
        gap: 60px;
        padding: 60px 48px;
    }

    .footer-main {
        flex-direction: column;
        gap: 60px;
    }

    .footer-address,
    .footer-phone,
    .footer-email {
        font-size: 24px;
        line-height: 32px;
    }
}

@media (max-width: 768px) {
    .contact-image-side {
        height: 300px;
    }

    .contact-form-side {
        padding: 40px 24px;
    }

    .contact-title {
        font-size: 32px;
        line-height: 40px;
    }

    .footer-content {
        padding: 40px 24px;
    }

    .footer-address,
    .footer-phone,
    .footer-email {
        font-size: 20px;
        line-height: 28px;
    }

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

    .footer-info {
        gap: 40px;
    }

    .footer-nav {
        gap: 40px;
    }

    .footer-links {
        gap: 24px;
    }
}
