/* LANDING SMT-120VP STYLES */

/* High Tech Variables */
:root {
    --tech-primary: #0f172a;
    /* Deep Space Blue */
    --tech-accent: #2dd4bf;
    /* Medical Teal/Cyan */
    --tech-glow: rgba(45, 212, 191, 0.4);
    --tech-text: #e2e8f0;
    --tech-white: #ffffff;
    --medical-green: #10b981;
    --gradient-tech: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-glow: linear-gradient(90deg, #2dd4bf 0%, #38bdf8 100%);
    --glass-panel: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Base Overrides for Landing */
body.landing-page {
    background-color: var(--tech-primary);
    color: var(--tech-text);
    font-family: 'Outfit', sans-serif;
    padding-top: 0;
    /* Nav is different here */
}

h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.03em;
}

/* Navigation - Transparent & Floating */
.landing-nav {
    position: absolute;
    /* Overlays hero */
    top: 0;
    left: 0;
    width: 100%;
    background: transparent !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
    z-index: 100;
    padding-top: 1rem;
}

.landing-nav .logo-img {
    filter: brightness(0) invert(1);
    /* White logo for dark bg */
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-phone {
    color: var(--tech-white);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Hero - Cinematic Tech */
.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, #1e293b 0%, #0f172a 60%);
    overflow: hidden;
    padding-top: 80px;
}

.tech-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(45, 212, 191, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 212, 191, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
    animation: panGrid 60s linear infinite;
}

@keyframes panGrid {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 40px;
    }
}

.landing-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15%;
    background: linear-gradient(to top, var(--tech-primary), transparent);
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 3;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(45, 212, 191, 0.1);
    color: var(--tech-accent);
    border: 1px solid var(--tech-accent);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 3.5rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    color: white;
    margin-bottom: 2rem;
}

.text-gradient {
    background: linear-gradient(to right, #ffffff 20%, #2dd4bf 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(45, 212, 191, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    /* Extra contrast against background */
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.6;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 4s infinite alternate;
}

.hero-product-img {
    max-width: 120%;
    transform: perspective(1000px) rotateY(-10deg);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s;
    animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {

    0%,
    100% {
        transform: perspective(1000px) rotateY(-10deg) translateY(0);
    }

    50% {
        transform: perspective(1000px) rotateY(-5deg) translateY(-20px);
    }
}

.hero-product-img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    animation-play-state: paused;
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 4;
}

.card-1 {
    top: 10%;
    right: 0;
    animation: float 6s infinite ease-in-out;
}

.card-2 {
    bottom: 10%;
    left: 0;
    animation: float 6s infinite ease-in-out 2s;
}

.float-card .icon {
    font-size: 1.5rem;
}

.float-card .text strong {
    display: block;
    color: white;
    font-size: 1.1rem;
}

.float-card .text small {
    color: var(--tech-accent);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: #0b1120;
    /* Darker than hero */
}

.problem-text {
    font-size: 2rem;
    font-family: 'Space Grotesk', sans-serif;
    color: #cbd5e1;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
}

.highlight-red {
    color: #ef4444;
    font-weight: 700;
}

.highlight-white {
    color: white;
    font-weight: 700;
    border-bottom: 2px solid var(--tech-accent);
}

/* Solution Section - NOW DARK */
.solution-section {
    background: #0f172a;
    color: white;
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(45, 212, 191, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.solution-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.solution-item h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.solution-item p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.solution-item:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.8);
    border-color: var(--tech-accent);
    box-shadow: 0 0 30px rgba(45, 212, 191, 0.15);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--tech-accent);
}




/* Benefits Dark Mode */
.benefits-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: 0.3s;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--tech-accent);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #94a3b8;
    margin-bottom: 0;
}

/* Target Section - NOW DARK */
.target-section {
    background: #0b1120;
    color: white;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.target-section .section-title {
    color: white;
    font-size: 2.5rem !important;
    margin-bottom: 3rem;
}

.target-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.target-content {
    flex: 1;
}

.target-image {
    flex: 1;
    position: relative;
}

.target-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--tech-accent), transparent, var(--tech-accent));
    border-radius: 22px 2px 22px 2px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
}

.rounded-tech {
    border-radius: 20px 0 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    /* Removed old solid shadow */
    box-shadow: none;
}

.check-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.check-list li:hover {
    background: rgba(45, 212, 191, 0.05);
    border-color: rgba(45, 212, 191, 0.3);
    transform: translateX(10px);
}

.check-list strong {
    color: white;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.check-list p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.95rem;
}

.check-icon {
    background: rgba(45, 212, 191, 0.2);
    color: var(--tech-accent);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 0 10px rgba(45, 212, 191, 0.2);
}

/* Gallery */
.gallery-section {
    background: #0f172a;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-weight: 500;
}

/* Trust Bar */
.trust-section {
    background: #1e293b;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-text {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin: 0;
}

/* Video */
.video-section {
    background: #0f172a;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(45, 212, 191, 0.1);
}

.video-placeholder {
    padding-bottom: 56.25%;
    /* 16:9 */
    background: #1e293b;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.video-placeholder .play-button {
    font-size: 4rem;
    color: var(--tech-accent);
    cursor: pointer;
    transition: transform 0.2s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-placeholder:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

/* CTA Strong */
.cta-strong-section {
    background: var(--tech-primary);
    padding: 6rem 0;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Contact Form */
.contact-section {
    position: relative;
}

/* Contact Form - Clean White (Simple) */
.contact-wrapper-landing {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    border: none;
}

.contact-wrapper-landing .section-title {
    color: var(--tech-primary) !important;
}

.contact-wrapper-landing p {
    color: #64748b;
}

.landing-form label {
    color: var(--tech-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.landing-form input,
.landing-form textarea {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: var(--tech-primary);
    width: 100%;
}

.landing-form input:focus,
.landing-form textarea:focus {
    background: #ffffff;
    border-color: var(--tech-accent);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}

.form-footer-text {
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 1rem;
}

/* Flexible Model Bar */
.flexible-model-bar {
    background: #f1f5f9;
    padding: 1rem 0;
    border-top: 1px solid #e2e8f0;
    color: var(--tech-primary);
}

/* Footer */
.landing-footer {
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #64748b;
    padding: 3rem 0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes pulseGlow {
    from {
        opacity: 0.3;
        transform: scale(1);
    }

    to {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transition: 1s;
}

.fade-in.visible {
    opacity: 1;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: 0.8s;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* New Scroll Reveal Logic */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(10px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal-delay-100 {
    transition-delay: 0.1s;
}

.reveal-delay-200 {
    transition-delay: 0.2s;
}

.reveal-delay-300 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {

    .heroes-grid,
    .benefits-wrapper,
    .target-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 4rem;
        text-align: center;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .float-card {
        display: none;
        /* Hide on mobile for cleanliness */
    }

    .benefits-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .target-image {
        display: none;
    }

    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* Specs on mobile */
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .landing-nav .nav-container {
        justify-content: center;
    }

    .nav-actions {
        display: none;
    }
}

/* Showcase & Specs Revolutionary Styles */
.showcase-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
    align-items: center;
}

.super-spec-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.super-spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.super-spec-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #22d3ee;
    box-shadow: 0 20px 40px -10px rgba(6, 182, 212, 0.3);
}

.super-spec-card:hover::before {
    opacity: 1;
}

.spec-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(34, 211, 238, 0.4));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.super-spec-card:hover .spec-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 25px rgba(34, 211, 238, 0.8));
}

.spec-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.spec-label {
    font-size: 1.1rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.spec-detail {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

/* Mobile Adjustments for Showcase */
@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-stack {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .showcase-stack>div {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .showcase-stack {
        flex-direction: column;
    }

    .showcase-stack>div {
        min-width: 100%;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem !important;
    }

    .spec-value {
        font-size: 2rem;
    }
}

/* Specs Section Styling - REVOLUTIONARY UPDATE */
.specs-container {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.9));
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(94, 234, 212, 0.2);
    /* Teal hint */
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    margin-top: 3rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.spec-card {
    background: transparent;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spec-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--tech-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

.spec-card h4 {
    color: var(--tech-accent);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    /* Larger title */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(45, 212, 191, 0.3);
    border-bottom: 2px solid rgba(94, 234, 212, 0.3);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.spec-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-card li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    /* Larger text */
    color: #e2e8f0;
    /* High contrast white-ish */
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.spec-card li:last-child {
    border-bottom: none;
}

.spec-card li strong {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Gallery Update for Impact */
.gallery-grid {
    gap: 2rem;
}

.gallery-item {
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Showcase Images Fix */
.showcase-grid img {
    object-fit: contain;
    /* Ensures the whole image is seen without cropping */
    width: 100%;
    height: 100%;
    min-height: 250px;
    display: block;
    background: radial-gradient(circle at center, rgba(30, 41, 59, 1), #020617);
    /* Darker backdrop for images */
}

/* Partner Cards Hover */
.partner-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: var(--tech-accent) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}