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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Header - Minimal Navigation */
header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(15, 23, 42, 0.95);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logo {
    height: 5rem;
    width: auto;
    vertical-align: middle;
}

.tagline {
    display: none;
}

/* Hero Section - Optimized Above the Fold */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: auto;
    height: auto;
    max-height: 500px;
    max-width: 100%;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(196, 30, 58, 0.2);
    border: 1px solid rgba(196, 30, 58, 0.5);
    color: #fca5a5;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-text h2 {
    font-size: 3.25rem;
    margin-bottom: 16px;
    color: #ffffff;
    line-height: 1.1;
    font-weight: 900;
}

.hero-text h2 span {
    background: linear-gradient(135deg, #c41e3a 0%, #f56565 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 28px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: #e2e8f0;
}

.hero-feature-item::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(72, 187, 120, 0.2);
    border: 1px solid rgba(72, 187, 120, 0.5);
    border-radius: 50%;
    color: #48bb78;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.75rem;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    font-size: 1.125rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #c41e3a 0%, #a01629 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(196, 30, 58, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn-large {
    padding: 24px 56px;
    font-size: 1.25rem;
}

.price-tag {
    display: inline-block;
    background: rgba(72, 187, 120, 0.2);
    border: 1px solid rgba(72, 187, 120, 0.5);
    color: #48bb78;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 80px;
    color: #0f172a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature {
    background: white;
    padding: 48px 36px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border-color: #cbd5e1;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #c41e3a;
}

.feature p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* Specifications Section */
.specifications {
    padding: 120px 0;
    background: white;
}

.specifications h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 80px;
    color: #0f172a;
}

.specs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.specs-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.specs-list ul {
    list-style: none;
}

.specs-list li {
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1.125rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-list strong {
    color: #0f172a;
    font-weight: 600;
    min-width: 140px;
}

.specs-list li span {
    color: #64748b;
}

/* Video Demo Section */
.video-demo {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.video-demo h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 80px;
    color: #0f172a;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-wrapper {
    display: flex;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 400px;
    height: 710px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(2.5);
    width: 560px;
    height: 315px;
    border: none;
}

.video-features h3 {
    font-size: 2rem;
    margin-bottom: 32px;
    color: #0f172a;
    font-weight: 700;
}

.video-feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.video-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.video-feature:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    border-color: #cbd5e1;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c41e3a 0%, #a01629 100%);
    border-radius: 12px;
}

.feature-text h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
    color: #0f172a;
    font-weight: 600;
}

.feature-text p {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.gallery h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 80px;
    color: #0f172a;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    background: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border-color: #cbd5e1;
}

.gallery-item:first-child img {
    max-width: 600px;
}

.gallery-item img {
    width: auto;
    height: auto;
    max-height: 400px;
    max-width: 350px;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(196, 30, 58, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.contact-content p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #cbd5e1;
}

.contact-info {
    margin: 48px 0;
}

.contact-info a {
    color: #fca5a5;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: #fecaca;
}

.buy-section {
    margin-top: 48px;
}

/* Footer */
footer {
    background-color: #020617;
    color: #64748b;
    text-align: center;
    padding: 40px 0;
    font-size: 0.9375rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 3rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        max-height: 350px;
        max-width: 300px;
    }

    .gallery-item:first-child img {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.25rem;
    }

    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.125rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .specs-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .features,
    .specifications,
    .gallery,
    .video-demo,
    .contact {
        padding: 80px 0;
    }

    .features h2,
    .specifications h2,
    .gallery h2,
    .video-demo h2,
    .contact h2 {
        font-size: 2.25rem;
        margin-bottom: 48px;
    }

    .video-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .video-container {
        width: 350px;
        height: 620px;
    }

    .video-container iframe {
        transform: translate(-50%, -50%) scale(2.3);
    }

    .video-features h3 {
        font-size: 1.75rem;
    }

    .gallery-item img {
        max-height: 320px;
        max-width: 280px;
    }

    .gallery-item:first-child img {
        max-width: 400px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.125rem;
    }

    .hero {
        padding: 70px 0 40px;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .features,
    .specifications,
    .gallery,
    .video-demo,
    .contact {
        padding: 60px 0;
    }

    .features h2,
    .specifications h2,
    .gallery h2,
    .video-demo h2,
    .contact h2 {
        font-size: 1.875rem;
    }

    .video-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-container {
        width: 300px;
        height: 530px;
    }

    .video-container iframe {
        transform: translate(-50%, -50%) scale(2);
    }

    .video-features h3 {
        font-size: 1.5rem;
    }

    .feature-text h4 {
        font-size: 1rem;
    }

    .feature-text p {
        font-size: 0.875rem;
    }

    .gallery-item img {
        max-height: 280px;
        max-width: 250px;
    }

    .gallery-item:first-child img {
        max-width: 350px;
    }

    .feature {
        padding: 32px 24px;
    }
}
