/* Componentes complejos que requieren estilos personalizados */
/* Estos estilos complementan Tailwind CSS */

/* Header */
.header {
    @apply fixed top-1 left-0 right-0 z-[1000] transition-all duration-300;
    transform: translateY(0);
}

.header.has-background {
    @apply bg-graphite/95 backdrop-blur-md;
}

.header.hidden {
    transform: translateY(-100%);
}

.header__content {
    @apply flex items-center justify-between py-4;
    min-height: 70px;
}

.header__logo {
    @apply flex items-center;
    height: 100%;
    max-height: 70px;
}

.logo {
    @apply inline-flex items-center;
    line-height: 0;
    height: 100%;
    max-height: 70px;
}

.logo__image,
.logo img,
.custom-logo-link img {
    max-height: 70px;
    height: auto;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.nav__list {
    @apply flex items-center gap-12;
}

.nav__link {
    @apply font-medium text-white py-2 relative text-sm uppercase tracking-wider;
    font-family: 'Neue Haas Grotesk Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.nav__link:hover {
    @apply opacity-80;
}

.nav__link::after {
    content: '';
    @apply absolute bottom-0 left-0 w-0 h-0.5 bg-white transition-all duration-300;
}

.nav__link:hover::after {
    @apply w-full;
}

.nav__item--has-mega {
    @apply relative;
}

/* Mega Menu */
.mega-menu {
    @apply absolute top-full left-1/2 -translate-x-1/2 bg-graphite rounded-none shadow-2xl p-0;
    min-width: 1200px;
    max-width: 1400px;
    width: 90vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%) translateY(-10px);
    z-index: 1000;
    margin-top: 1rem;
    overflow: hidden;
}

.nav__item--has-mega:hover .mega-menu {
    @apply opacity-100 visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu__container {
    @apply grid grid-cols-[1fr_2fr];
    min-height: 600px;
}

.mega-menu__left {
    @apply p-xl bg-graphite text-white flex flex-col gap-lg;
}

.mega-menu__main-title {
    @apply text-3xl text-white m-0 leading-tight;
    font-family: 'Neue Haas Grotesk Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 100;
    font-style: normal;
    -webkit-text-stroke: 0.5px currentColor;
    letter-spacing: 0.01em;
}

.mega-menu__description {
    @apply text-base text-white/90 leading-relaxed m-0;
    font-family: 'Neue Haas Grotesk Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
}

.mega-menu__button {
    @apply inline-flex items-center gap-2 px-md py-sm bg-red text-white font-semibold uppercase text-sm tracking-wider rounded transition-all duration-300 w-fit;
}

.mega-menu__button:hover {
    @apply bg-red-dark;
    transform: translateX(5px);
}

.mega-menu__additional {
    @apply mt-auto;
}

.mega-menu__additional-title {
    @apply text-xs font-semibold text-white/70 uppercase tracking-wider mb-md;
}

.mega-menu__info-item {
    @apply flex gap-sm mb-md;
}

.mega-menu__info-item:last-child {
    @apply mb-0;
}

.mega-menu__info-image {
    @apply w-20 h-20 flex-shrink-0 rounded overflow-hidden;
}

.mega-menu__info-image img {
    @apply w-full h-full object-cover;
}

.mega-menu__info-content {
    @apply flex-1;
}

.mega-menu__info-title {
    @apply text-[15px] text-white mb-1;
    font-family: 'Neue Haas Grotesk Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 100;
    font-style: normal;
    -webkit-text-stroke: 0.5px currentColor;
    letter-spacing: 0.01em;
}

.mega-menu__info-text {
    @apply text-sm text-white/80 leading-normal m-0;
}

.mega-menu__right {
    @apply bg-white p-xl flex flex-col;
}

.mega-menu__tabs {
    @apply flex gap-md mb-lg border-b border-border;
}

.mega-menu__tab {
    @apply bg-transparent border-0 py-sm text-sm font-semibold text-text-light uppercase tracking-wider cursor-pointer relative transition-all duration-300;
    font-family: 'Neue Haas Grotesk Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
}

.mega-menu__tab::after {
    content: '';
    @apply absolute -bottom-px left-0 w-0 h-0.5 bg-red transition-all duration-300;
}

.mega-menu__tab--active {
    @apply text-red;
}

.mega-menu__tab--active::after {
    @apply w-full;
}

.mega-menu__tab:hover {
    @apply text-red;
}

.mega-menu__grid {
    @apply grid-cols-3 gap-md hidden;
}

.mega-menu__grid--active {
    @apply grid;
}

.mega-menu__card {
    @apply flex flex-col no-underline transition-all duration-300;
}

.mega-menu__card:hover {
    transform: translateY(-5px);
}

.mega-menu__card-image {
    @apply w-full h-44 overflow-hidden rounded mb-sm;
}

.mega-menu__card-image img {
    @apply w-full h-full object-cover transition-transform duration-500;
}

.mega-menu__card:hover .mega-menu__card-image img {
    @apply scale-110;
}

.mega-menu__card-title {
    @apply text-base text-primary m-0;
    font-family: 'Neue Haas Grotesk Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 100;
    font-style: normal;
    -webkit-text-stroke: 0.5px currentColor;
    letter-spacing: 0.01em;
}

.header__actions {
    @apply flex items-center gap-md;
}

.menu-toggle {
    @apply hidden flex-col gap-1.5 bg-transparent border-0 cursor-pointer p-2;
}

.menu-toggle span {
    @apply w-6 h-0.5 bg-white transition-all duration-300;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    @apply opacity-0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menú móvil - oculto en desktop */
.nav#nav {
    display: none;
}

.nav-mobile-stitch {
    display: none;
}

@media (max-width: 1024px) {
    .hero__card {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        cursor: pointer;
        color: white;
    }

    .nav__list--desktop {
        display: none;
    }

    .nav#nav {
        display: flex !important;
    }

    .nav-mobile-stitch {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-height: 0;
        position: relative;
        background: rgba(45, 55, 72, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        min-height: 100vh;
        min-height: 100dvh;
        z-index: 9999;
        background: transparent;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .nav.active {
        transform: translateX(0) !important;
    }

    .nav-mobile-stitch__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: max(1rem, env(safe-area-inset-top)) 1.5rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(45, 55, 72, 0.4);
        flex-shrink: 0;
    }

    body.admin-bar .nav-mobile-stitch__header {
        padding-top: max(calc(46px + 1rem), env(safe-area-inset-top));
    }

    .nav-mobile-stitch__spacer {
        width: 40px;
    }

    .nav-mobile-stitch__title {
        font-size: 1.125rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: white;
        margin: 0;
    }

    .nav-mobile-stitch__close {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        cursor: pointer;
        color: white;
        border-radius: 9999px;
        transition: background 0.2s;
    }

    .nav-mobile-stitch__close:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-mobile-stitch__content {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        touch-action: pan-y;
    }

    .nav-mobile-stitch__accordions {
        display: flex;
        flex-direction: column;
    }

    .nav-mobile-stitch__item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-mobile-stitch__item summary::-webkit-details-marker {
        display: none;
    }

    .nav-mobile-stitch__summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 1.5rem;
        list-style: none;
        cursor: pointer;
        transition: background 0.2s;
    }

    .nav-mobile-stitch__summary:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .nav-mobile-stitch__label {
        font-size: 1.25rem;
        font-weight: 300;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: white;
    }

    .nav-mobile-stitch__icon {
        color: rgba(255, 255, 255, 0.4);
        display: flex;
        transition: transform 0.3s;
    }

    .nav-mobile-stitch__item[open] .nav-mobile-stitch__icon--expand {
        transform: rotate(180deg);
    }

    .nav-mobile-stitch__panel {
        background: rgba(0, 0, 0, 0.2);
        padding: 1.5rem;
    }

    .nav-mobile-stitch__panel-inner {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-mobile-stitch__intro {
        margin-bottom: 0.5rem;
    }

    .nav-mobile-stitch__panel-title {
        font-size: 0.875rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #dc2626;
        margin: 0 0 0.5rem;
    }

    .nav-mobile-stitch__panel-desc {
        font-size: 0.875rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 300;
        margin: 0;
    }

    .nav-mobile-stitch__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
        background: #dc2626;
        color: white;
        font-size: 0.875rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        border-radius: 0.5rem;
        text-decoration: none;
        transition: background 0.2s;
        box-shadow: 0 4px 14px rgba(220, 38, 38, 0.2);
    }

    .nav-mobile-stitch__btn:hover {
        background: #b91c1c;
        color: white;
    }

    .nav-mobile-stitch__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 0.5rem;
    }

    .nav-mobile-stitch__card {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0.75rem;
        text-decoration: none;
        color: white;
        transition: background 0.2s;
    }

    .nav-mobile-stitch__card:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .nav-mobile-stitch__card-img {
        aspect-ratio: 1;
        width: 100%;
        border-radius: 0.5rem;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .nav-mobile-stitch__card-title {
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        text-align: center;
    }

    .nav-mobile-stitch__link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-decoration: none;
        color: white;
        transition: background 0.2s;
    }

    .nav-mobile-stitch__link:hover {
        background: rgba(255, 255, 255, 0.05);
        color: white;
    }

    .nav-mobile-stitch__blur {
        position: fixed;
        border-radius: 9999px;
        pointer-events: none;
    }

    .nav-mobile-stitch__blur--bottom {
        bottom: -6rem;
        right: -6rem;
        width: 16rem;
        height: 16rem;
        background: rgba(220, 38, 38, 0.1);
        filter: blur(100px);
    }

    .nav-mobile-stitch__blur--top {
        top: -6rem;
        left: -6rem;
        width: 16rem;
        height: 16rem;
        background: rgba(255, 255, 255, 0.05);
        filter: blur(80px);
    }
}

body.menu-open {
    overflow: hidden;
}

/* Company Presentation Section */
.company-presentation {
    @apply grid grid-cols-1 lg:grid-cols-2 gap-0;
    min-height: 600px;
}

.company-presentation__media {
    @apply relative w-full h-full min-h-[400px] lg:min-h-[600px] overflow-hidden;
}

.company-presentation__image,
.company-presentation__video {
    @apply w-full h-full object-cover;
}

.company-presentation__content {
    @apply bg-white p-xl lg:p-2xl flex flex-col justify-center;
}

.company-presentation__title {
    @apply text-3xl lg:text-4xl xl:text-5xl text-text mb-lg leading-tight;
    font-family: 'Neue Haas Grotesk Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 100;
    font-style: normal;
    -webkit-text-stroke: 0.5px currentColor;
    letter-spacing: 0.01em;
}

.company-presentation__paragraph {
    @apply text-base lg:text-lg text-text mb-md leading-relaxed;
    text-align: justify;
    font-family: 'Neue Haas Grotesk Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
}

.company-presentation__paragraph:last-of-type {
    @apply mb-xl;
}

.company-presentation__cta {
    @apply inline-flex items-center gap-md no-underline transition-all duration-300;
    margin-top: auto;
}

.company-presentation__cta:hover {
    transform: translateX(5px);
}

.company-presentation__cta-icon {
    @apply w-12 h-12 rounded-full bg-red text-white flex items-center justify-center flex-shrink-0;
    transition: all 0.3s ease;
}

.company-presentation__cta:hover .company-presentation__cta-icon {
    @apply bg-red-dark;
    transform: scale(1.05);
}

.company-presentation__cta-icon svg {
    @apply w-5 h-5;
}

.company-presentation__cta-text {
    @apply text-red font-semibold text-base lg:text-lg uppercase tracking-wider;
    font-family: 'Neue Haas Grotesk Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
}

/* Company Presentation Media Wrapper */
.company-presentation__media-wrapper {
    @apply relative w-full h-full overflow-hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.company-presentation__steel-pattern {
    @apply absolute inset-0 pointer-events-none z-[2];
    width: 36%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 8px,
            rgba(200, 200, 200, 0.04) 8px,
            rgba(200, 200, 200, 0.04) 9px
        ),
        linear-gradient(
            135deg,
            rgba(220, 220, 220, 0.08) 0%,
            rgba(180, 180, 180, 0.12) 25%,
            rgba(200, 200, 200, 0.06) 50%,
            rgba(190, 190, 190, 0.1) 75%,
            rgba(210, 210, 210, 0.08) 100%
        );
    mix-blend-mode: soft-light;
    opacity: 0.8;
}

/* Company Presentation Video Play Button */
.company-presentation__play-btn {
    @apply absolute flex items-center justify-center border-0 cursor-pointer z-[3];
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(220, 38, 38, 0.9);
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.company-presentation__play-btn:hover {
    background-color: rgba(220, 38, 38, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.company-presentation__play-btn svg {
    width: 36px;
    height: 36px;
    margin-left: 5px;
}

/* Video Lightbox - Movido a input.css para compilación con Tailwind */

/* Plant Presentation Section */
.section--plant-presentation {
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding: 0;
}

.plant-presentation {
    position: relative;
    width: 100%;
    height: 100%;
    height: 100vh;
}

.plant-presentation__video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
}

.plant-presentation__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.plant-presentation__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.7) 25%,
        rgba(45, 55, 72, 0.5) 50%,
        rgba(45, 55, 72, 0.3) 75%,
        rgba(45, 55, 72, 0) 100%
    );
    z-index: 1;
}

.plant-presentation__steel-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 36%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 8px,
            rgba(200, 200, 200, 0.04) 8px,
            rgba(200, 200, 200, 0.04) 9px
        ),
        linear-gradient(
            135deg,
            rgba(220, 220, 220, 0.08) 0%,
            rgba(180, 180, 180, 0.12) 25%,
            rgba(200, 200, 200, 0.06) 50%,
            rgba(190, 190, 190, 0.1) 75%,
            rgba(210, 210, 210, 0.08) 100%
        );
    mix-blend-mode: soft-light;
    opacity: 0.8;
}

.plant-presentation__content {
    position: relative;
    z-index: 3;
    height: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
}

.plant-presentation__text-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
    width: 100%;
}

.plant-presentation__left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-right: 2rem;
}

.plant-presentation__title {
    font-family: 'Neue Haas Grotesk Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 4.5rem;
    font-weight: 100;
    font-style: normal;
    -webkit-text-stroke: 0.5px currentColor;
    letter-spacing: 0.01em;
    color: #ffffff;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin: 0;
    display: flex;
    flex-direction: column;
}

.plant-presentation__title-line {
    display: block;
}

.plant-presentation__title-line--highlight {
    font-size: 1.1em;
}

.plant-presentation__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.plant-presentation__play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(220, 38, 38, 0.9);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.plant-presentation__play-button:hover {
    background-color: rgba(220, 38, 38, 1);
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.plant-presentation__play-button svg {
    width: 36px;
    height: 36px;
    margin-left: 5px;
}

.plant-presentation__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ffffff;
    font-family: 'Neue Haas Grotesk Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plant-presentation__cta:hover {
    transform: translateX(5px);
}

.plant-presentation__cta-arrow {
    width: 24px;
    height: 24px;
    color: #dc2626;
    transition: transform 0.3s ease;
}

.plant-presentation__cta:hover .plant-presentation__cta-arrow {
    transform: translateX(5px);
}

.plant-presentation__cta-text {
    color: #ffffff;
}

.plant-presentation__right {
    display: flex;
    align-items: flex-start;
    padding-left: 2rem;
}

.plant-presentation__description {
    font-family: 'Neue Haas Grotesk Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.75;
    margin: 0;
    max-width: 500px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive - Plant Presentation Mobile */
@media (max-width: 767px) {
    .section--plant-presentation {
        height: auto;
        min-height: 70vh;
    }

    .plant-presentation {
        height: auto;
        min-height: 70vh;
    }

    .plant-presentation__content {
        height: auto;
        min-height: 70vh;
        padding-bottom: var(--spacing-xl);
        padding-top: var(--spacing-xl);
    }

    .plant-presentation__title {
        font-size: 2rem;
    }

    .plant-presentation__text-wrapper {
        gap: var(--spacing-md);
    }

    .plant-presentation__actions {
        flex-wrap: wrap;
    }

    .plant-presentation__play-button {
        width: 56px;
        height: 56px;
    }

    .plant-presentation__play-button svg {
        width: 24px;
        height: 24px;
    }
}

/* Responsive */
@media (max-width: 1023px) {
    .company-presentation {
        @apply grid-cols-1;
    }

    .company-presentation__media {
        @apply order-1;
    }

    .company-presentation__content {
        @apply order-2;
    }

    .company-presentation__media-wrapper {
        border-radius: 12px;
    }

    .company-presentation__play-btn {
        width: 60px;
        height: 60px;
    }

    .company-presentation__play-btn svg {
        width: 28px;
        height: 28px;
        margin-left: 4px;
    }

    .section--plant-presentation {
        height: 100vh;
    }

    .plant-presentation {
        height: 100vh;
    }

    .plant-presentation__video-wrapper {
        border-radius: 0;
    }

    .plant-presentation__content {
        height: 100vh;
        padding-bottom: 60px;
    }

    .plant-presentation__text-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .plant-presentation__left {
        padding-right: 0;
    }

    .plant-presentation__right {
        padding-left: 0;
    }

    .plant-presentation__title {
        font-size: 2.5rem;
    }

    .plant-presentation__description {
        font-size: 1rem;
    }

    .plant-presentation__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .plant-presentation__play-button {
        width: 60px;
        height: 60px;
    }

    .plant-presentation__play-button svg {
        width: 28px;
        height: 28px;
        margin-left: 4px;
    }
}

/* CTA Section / Contact Form */
.section--cta {
    @apply relative py-2xl;
    min-height: 600px;
    overflow: hidden;
    position: relative;
}

.cta__background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.cta__background-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center center;
}

.cta__background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.1);
}

.cta__background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(45, 55, 72, 0.88) 0%,
        rgba(45, 55, 72, 0.78) 50%,
        rgba(45, 55, 72, 0.88) 100%
    );
    z-index: 1;
}

.cta {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: calc(var(--spacing-xl) * 2);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    min-height: 600px;
    padding: var(--spacing-xl) 0;
}

.cta__content {
    padding-top: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-heading);
    font-style: normal;
    -webkit-text-stroke: 0.5px currentColor;
    letter-spacing: 0.01em;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.cta__description {
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    max-width: 500px;
}

.cta__map-wrapper {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta__map {
    width: 100%;
    height: 250px;
    border: 0;
    display: block;
}

.cta__form-wrapper {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: var(--spacing-xl);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta__form-steel-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 36%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.04) 0px,
            transparent 1px,
            transparent 3px,
            rgba(0, 0, 0, 0.015) 3px,
            rgba(0, 0, 0, 0.015) 4px,
            transparent 4px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02) 0px,
            transparent 1px,
            transparent 8px,
            rgba(0, 0, 0, 0.01) 8px,
            rgba(0, 0, 0, 0.01) 9px,
            transparent 9px
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.08) 0%,
            transparent 30%,
            rgba(0, 0, 0, 0.03) 70%,
            transparent 100%
        );
    background-size: 100% 6px, 12px 100%, 100% 100%;
    mix-blend-mode: soft-light;
    opacity: 0.85;
}

.cta__form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.cta__form-group {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-xs) * 0.5);
}

.cta__form-group--checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--spacing-xs);
    margin-top: calc(var(--spacing-xs) * 0.5);
}

.cta__form-input,
.cta__form-select,
.cta__form-textarea {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text);
    background-color: var(--color-bg);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
}

.cta__form-input::placeholder,
.cta__form-textarea::placeholder {
    color: var(--color-text-light);
    opacity: 0.6;
}

.cta__form-input:focus,
.cta__form-select:focus,
.cta__form-textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.cta__form-input:invalid:not(:placeholder-shown),
.cta__form-select:invalid:not(:placeholder-shown),
.cta__form-textarea:invalid:not(:placeholder-shown),
.cta__form-input.error,
.cta__form-select.error,
.cta__form-textarea.error {
    border-color: #dc2626;
}

.cta__form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: var(--font-primary);
    line-height: 1.6;
}

.cta__form-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--spacing-md) center;
    padding-right: calc(var(--spacing-xl) + 8px);
    color: var(--color-text);
    min-height: 44px;
}

.cta__form-select option {
    color: var(--color-text);
    background-color: var(--color-bg);
    padding: var(--spacing-sm);
}

.cta__form-select:not([value=""]) {
    color: var(--color-text);
}

.cta__form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    cursor: pointer;
}

.cta__form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #dc2626;
    flex-shrink: 0;
}

.cta__form-checkbox-text {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.cta__form-link {
    color: #dc2626;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cta__form-link:hover {
    color: #b91c1c;
}

.cta__form-error {
    font-size: 0.8125rem;
    color: #dc2626;
    display: none;
    margin-top: calc(var(--spacing-xs) * 0.5);
}

.cta__form-group:has(.cta__form-input:invalid:not(:placeholder-shown):not(:focus)) .cta__form-error,
.cta__form-group:has(.cta__form-select:invalid:not(:placeholder-shown):not(:focus)) .cta__form-error,
.cta__form-group:has(.cta__form-textarea:invalid:not(:placeholder-shown):not(:focus)) .cta__form-error {
    display: block;
}

.cta__form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-xl);
    background-color: #dc2626;
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: var(--spacing-sm);
    width: fit-content;
    min-width: 200px;
}

.cta__form-submit:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3);
}

.cta__form-submit:active {
    transform: translateY(0);
}

.cta__form-submit svg {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

.cta__form-submit:hover svg {
    transform: translateX(4px);
}

.cta__form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cta__form-submit:disabled:hover {
    transform: none;
}

.cta__form-message {
    padding: var(--spacing-md);
    border-radius: 8px;
    font-size: 0.9375rem;
    text-align: center;
    display: none;
    margin-top: var(--spacing-sm);
}

.cta__form-message--success {
    display: block;
    background-color: #10b981;
    color: var(--color-white);
}

.cta__form-message--error {
    display: block;
    background-color: #dc2626;
    color: var(--color-white);
}

@media (max-width: 1024px) {
    .cta {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .cta__content {
        padding-top: 0;
    }

    .cta__description {
        max-width: none;
    }

    .cta__form-wrapper {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .section--cta {
        padding: var(--spacing-lg) 0;
        min-height: auto;
    }

    .section--cta .container {
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }

    .cta__background-wrapper {
        height: 100%;
    }

    .cta__background-media {
        height: 100%;
        top: 0;
    }

    .cta {
        gap: var(--spacing-lg);
        min-height: auto;
        padding: 0;
    }

    .cta__title {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-md);
    }

    .cta__description {
        font-size: 0.9375rem;
    }

    .cta__form-wrapper {
        padding: var(--spacing-md);
    }

    .cta__form-submit {
        width: 100%;
        min-width: auto;
    }
}

