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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Logo-closeup-le.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.countdown {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 25px;
    border: 2px solid #000;
    background: #fff;
    z-index: 3;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-content .subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    background: #000;
    color: #fff;
    padding: 3px 8px;
    font-weight: bold;
}

/* Section Styling */
.section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: -1px;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.portfolio-item {
    text-align: center;
}

.portfolio-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #f0f0f0;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.portfolio-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 30px;
    color: #000;
}

.play-button:hover {
    background: #fff;
    transform: scale(1.1);
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.portfolio-placeholder:hover {
    transform: scale(1.02);
}

.portfolio-label {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.portfolio-description {
    color: #666;
    line-height: 1.5;
}

.expertise-statement {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 40px;
    border: 2px solid #000;
    background: #f8f8f8;
    margin-top: 40px;
}

/* Assets Package */
.assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.asset-item {
    padding: 30px;
    border: 1px solid #ddd;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.asset-item:hover {
    border-color: #000;
    transform: translateY(-5px);
}

.asset-icon {
    width: 60px;
    height: 60px;
    background: #000;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.asset-icon i {
    font-size: 24px;
    color: #fff;
    transition: all 0.3s ease;
}

.asset-item:hover .asset-icon {
    background: #fff;
    border: 2px solid #000;
}

.asset-item:hover .asset-icon i {
    color: #000;
}

/* Two Phase Strategy */
.phase-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.phase-card {
    padding: 40px;
    border: 2px solid #000;
    position: relative;
    overflow: hidden;
}

.phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
    transition: left 0.6s ease;
}

.phase-card:hover::before {
    left: 100%;
}

.phase-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ccc;
    position: absolute;
    top: 10px;
    right: 20px;
}

.phase-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.phase-benefits {
    list-style: none;
}

.phase-benefits li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.phase-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Timeline */
.timeline {
    position: relative;
    margin: 60px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #000;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    background: #f8f8f8;
    padding: 30px;
    border: 1px solid #ddd;
    width: 45%;
    position: relative;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Risk Elimination */
.risk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.risk-column h3 {
    text-align: center;
    margin-bottom: 30px;
    padding: 15px;
    border: 1px solid #000;
}

.risk-avoided {
    background: #f8f8f8;
}

.risk-guaranteed {
    background: #000;
    color: #fff;
}

.risk-list {
    list-style: none;
}

.risk-list li {
    padding: 15px;
    margin-bottom: 10px;
    border-left: 4px solid #000;
    background: #f9f9f9;
}

.risk-guaranteed .risk-list li {
    border-left-color: #fff;
    background: #333;
}

/* Footer CTA */
.cta-section {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ccc;
}

/* Robot Showcase Section */
.robot-showcase {
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.robot-showcase .section-title {
    color: #fff;
    font-size: 2.8rem;
    font-weight: bold;
}

.showcase-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.showcase-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border: 3px solid #fff;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.showcase-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-text h3 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: #fff;
    line-height: 1.2;
}

.showcase-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 35px;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
    color: #fff;
    padding: 15px 0;
    border-left: 3px solid #fff;
    padding-left: 20px;
}

.feature-text {
    font-weight: 500;
    line-height: 1.4;
}

.inspiration-statement {
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    font-style: italic;
    color: #fff;
    padding: 50px;
    border: 3px solid #fff;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 50px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .phase-comparison {
        grid-template-columns: 1fr;
    }
    
    .countdown {
        position: static;
        margin-bottom: 30px;
        display: inline-block;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        padding-left: 60px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .showcase-video {
        order: -1;
    }
    
    .robot-showcase .section-title {
        font-size: 2.2rem;
    }
    
    .showcase-text h3 {
        font-size: 1.8rem;
    }
    
    .inspiration-statement {
        font-size: 1.3rem;
        padding: 35px 25px;
    }
}
