/* --- Overlay Navigation --- */
.hero-overlay-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: transparent !important;
    border-bottom: none; /* Remove if your nav currently has a border */
}

/* --- Video Hero Container --- */
.video-hero {
    position: relative;
    height: 100vh; /* Fills the vertical viewport */
    min-height: 600px;
    display: flex;
    align-items: center; /* Vertically centers the content */
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video scales without distortion */
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* Adjust opacity to match video brightness */
    z-index: 2;
}

/* --- Hero Content & Typography --- */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 5%;
    color: white;
    text-align: left; /* Matches the Shopify layout */
}

.hero-content h1 {
    font-size: clamp(3rem, 5vw, 4.5rem); /* Responsive scaling */
    line-height: 1.1;
    font-weight: 500; /* Slightly lighter weight like Shopify */
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-content .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 400;
    opacity: 0.9;
}

/* --- Hero Buttons --- */
.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-solid-white {
    background-color: white;
    color: #000;
    padding: 0.8rem 1.75rem;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-solid-white:hover {
    background-color: #f5f5f5;
    transform: scale(1.02);
}

.btn-outline-white {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: white;
    padding: 0.8rem 1.75rem;
    border: 1px solid white;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* --- Billing Toggle Repositioning --- */
.billing-toggle-container {
    padding: 4rem 5% 2rem 5%;
    text-align: center;
    background-color: var(#fff); /* Match your site's background */
}
/* --- Omnichannel Showcase Section --- */
.omnichannel-showcase {
    background-color: #000000; /* Fondo negro profundo como en la imagen */
    color: #ffffff;
    padding: 6rem 5%;
    overflow: hidden;
}

.omnichannel-header {
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    text-align: left; /* Alineado a la izquierda según la referencia */
}

.omnichannel-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin: 0;
}

/* Efecto de texto atenuado para replicar el estilo de Shopify */
.text-dimmed {
    color: #888888;
}

/* --- Showcase Grid --- */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5; /* Mantiene proporciones consistentes en las imágenes */
    background-color: #111;
    transition: transform 0.3s ease;
}

.showcase-card:hover {
    transform: translateY(-5px);
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Las imágenes que pongas dentro de las tarjetas */
.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.showcase-card:hover .showcase-img {
    opacity: 1;
}

/* Etiqueta descriptiva en la parte inferior de cada imagen */
.card-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.5);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Replicando el texto gigante sobre la imagen (como el "Glossier" en tu ejemplo) */
.card-floating-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin: 0;
    color: #ffffff;
    text-shadow: 0px 4px 12px rgba(0,0,0,0.3);
    z-index: 2;
}

/* --- Responsivo --- */
@media (max-width: 900px) {
    .showcase-grid {
        grid-template-columns: 1fr; /* Apila las imágenes en móviles */
        gap: 2rem;
    }

    .showcase-card {
        aspect-ratio: 16/9; /* Cambia la proporción en móvil para no ocupar tanta pantalla vertical */
    }
}

/* --- Base Dark Sections --- */
.seika-dark-section {
    background-color: #000000;
    color: #ffffff;
    position: relative;
    padding: 8rem 5%; /* Padding amplio para respirar */
    overflow: hidden;
}

/* Tipografía gigante estilo Shopify */
.massive-heading {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

/* --- Destellos Rojos (Glows) --- */
.glow-bg-red {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(209, 52, 56, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.glow-top-right { top: -100px; right: -100px; }
.glow-center-left { top: 50%; left: -200px; transform: translateY(-50%); width: 800px; height: 800px; }
.glow-bottom-center { bottom: -200px; left: 50%; transform: translateX(-50%); width: 1000px; height: 500px; background: radial-gradient(ellipse, rgba(209, 52, 56, 0.2) 0%, rgba(0, 0, 0, 0) 70%); }

/* --- Layouts de Doble Columna (Split) --- */
.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.split-container.align-start {
    align-items: start;
}

/* --- Dark Form Component --- */
.dark-form-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.dark-theme-form .form-input-group {
    margin-bottom: 1rem;
}

.dark-input, .dark-select {
    width: 100%;
    background: #111111;
    border: 1px solid #333333;
    color: #ffffff;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.dark-input:focus, .dark-select:focus {
    outline: none;
    border-color: #D13438;
}

.dark-input::placeholder { color: #666666; }

.dark-phone-group {
    display: flex;
    gap: 0.5rem;
}

.dark-phone-group .dark-select { width: 120px; }
.dark-phone-group .dark-input { flex: 1; }

.btn-solid-red {
    background-color: #D13438;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-solid-red:hover {
    background-color: #e63f44;
    transform: scale(1.02);
}

/* --- Stat Blocks (Estilo Ventajas) --- */
.stats-column {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.stat-block {
    position: relative;
    padding-left: 2rem;
}

.stat-accent {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #D13438 0%, rgba(209, 52, 56, 0) 100%);
    border-radius: 3px;
}

.stat-block h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #ffffff;
}

.stat-block p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* --- CTA Enterprise Final --- */
.enterprise-massive {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Responsivo --- */
@media (max-width: 992px) {
    .split-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .split-text {
        position: relative !important;
        top: 0 !important;
    }

    .dark-form-card {
        padding: 2rem;
    }
}

/* --- Estilos para la imagen del apretón de manos --- */
.lead-split-content {
    display: flex;
    flex-direction: column;
    gap: 3rem; /* Espacio entre la imagen y el bloque de texto */
    align-items: flex-start;
}

.handshake-visual {
    position: relative;
    max-width: 500px; /* Limitamos el tamaño para que no compita con el título gigante */
    border-radius: 20px;
    /* Un borde sutil que se ilumina con el brillo rojo */
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    /* Efecto de sombra roja para integrarlo en el tema */
    box-shadow: 0 10px 30px rgba(209, 52, 56, 0.15);
    background-color: #111; /* Fondo para cuando carga la imagen */
}

/* El pseudo-elemento para el brillo integrado sobre la imagen */
.handshake-visual::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(209, 52, 56, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(30px);
    pointer-events: none;
    z-index: 1;
}

.handshake-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* Hacemos la imagen ligeramente más oscura por defecto para integrarla */
    opacity: 0.9;
    transition: opacity 0.3s ease;
    z-index: 0;
    position: relative;
}

.handshake-visual:hover .handshake-img {
    opacity: 1; /* Ilumina la imagen al pasar el mouse */
}

/* Ajustes responsivos */
@media (max-width: 992px) {
    .lead-split-content {
        align-items: center;
        text-align: center;
    }

    .handshake-visual {
        max-width: 100%; /* Ocupa todo el ancho en móviles */
    }
}

/* --- Dark Theme Footer --- */
.seikaindexfooter {
    background-color: #000000;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.08); /* Línea sutil de separación */
    padding: 4rem 5% 2rem 5%;
}

.seikaindexfooter-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.seikaindexfooter-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.seikaindexfooter-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.seikaindexfooter-tagline {
    font-size: 0.95rem;
    color: #888888; /* Mantiene el estilo atenuado del resto de la página */
}

.seikaindexfooter-links {
    display: flex;
    gap: 2rem;
}

.seikaindexfooter-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.seikaindexfooter-links a:hover {
    color: #D13438; /* El rojo corporativo de Seika al pasar el mouse */
}

/* Área de Copyright en la parte inferior */
.seikaindexfooter-copyright {
    width: 100%; /* Obliga a saltar a la siguiente línea */
    text-align: center;
    font-size: 0.85rem;
    color: #555555;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Segunda línea aún más sutil */
}

/* --- Ajustes Responsivos --- */
@media (max-width: 768px) {
    .seikaindexfooter-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .seikaindexfooter-links {
        flex-direction: column;
        gap: 1rem;
    }

    .seikaindexfooter-copyright {
        text-align: left; /* Alineado a la izquierda en móviles para mejor lectura */
    }
}