/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Funnel Display', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-left: -20px;
}

.logo img {
    height: 48px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-right: -20px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-button {
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-button img {
    height: 40px;
    width: auto;
}

.nav-button:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #000;
    background-image: url('Hero Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 120px 0 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 24px;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-logo {
    height: 150px;
}

.hero-title span {
    font-size: 120px;
    font-weight: 700;
    letter-spacing: -2px;
}

.hero-description {
    font-size: 24px;
    opacity: 0.8;
    margin-bottom: 60px;
    line-height: 1.6;
}

.button-image {
    display: inline-block;
    transition: transform 0.3s ease;
}

.button-image img {
    height: 50px;
    width: auto;
}

.button-image:hover {
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator img {
    width: auto;
    height: 60px;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Speed Section */
.speed-section {
    background: white;
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subsection-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 48px 32px;
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FC603D 0%, #FC3D53 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(2) contrast(2);
}

.feature-icon img[src="smart_toy.png"] {
    height: 28px;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Products Section */
.products-section {
    background: #FAFAFA;
    padding: 100px 0;
}

.section-title.dark {
    color: #000;
}

.product-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(199, 65, 224, 0.15);
}

.product-card:last-child {
    margin-bottom: 0;
}

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

.product-showcase.reverse {
    grid-template-columns: 1fr 1fr;
}

.product-showcase.reverse .product-image {
    order: 1;
}

.product-showcase.reverse .product-content {
    order: 2;
}

.product-content h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.product-heading {
    width: 150px;
    height: auto;
    margin-bottom: 16px;
}

.homi-heading {
    width: 100px;
}

.policy-heading {
    width: 220px;
}

.product-tagline {
    font-size: 20px;
    color: #000;
    margin-bottom: 24px;
}

.product-description {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 32px;
}

.product-features {
    list-style: none;
    margin-bottom: 40px;
}

.product-features li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features li img {
    width: 16px;
    height: 16px;
}

.product-cta {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B6B 0%, #E74B8C 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(231, 75, 140, 0.3);
}

.product-cta.pink {
    background: linear-gradient(135deg, #E74B8C 0%, #C341E0 100%);
}

.product-image img {
    width: 100%;
    height: auto;
}

/* Desktop: Show desktop image, hide mobile image */
.desktop-image {
    display: block;
}

.mobile-image {
    display: none;
}

/* Newsletter Section */
.newsletter-section {
    background: #000;
    background-image: url('Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.newsletter-section p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 48px;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.email-input-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.email-icon {
    position: absolute;
    left: 20px;
    color: #666;
    z-index: 1;
}

.newsletter-form input {
    width: 100%;
    padding: 16px 24px 16px 50px;
    border-radius: 24px;
    border: none;
    background: #F5F5F5;
    color: #333;
    font-size: 16px;
}

.newsletter-form input::placeholder {
    color: #999;
}

.try-free-button {
    display: inline-block;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.try-free-button img {
    height: 50px;
    width: auto;
}

.try-free-button:hover {
    transform: translateY(-2px);
}

.newsletter-submit {
    padding: 0;
}

.sign-up-button {
    display: inline-block;
    transition: transform 0.3s ease;
}

.sign-up-button img {
    height: 50px;
    width: auto;
}

.sign-up-button:hover {
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    background: #FAFAFA;
    padding: 120px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
    line-height: 1.6;
}

.get-in-touch-button {
    display: inline-block;
    transition: transform 0.3s ease;
}

.get-in-touch-button img {
    height: 60px;
    width: auto;
}

.get-in-touch-button:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.footer-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-location {
    margin-top: 24px;
}

.footer-copyright {
    margin-top: 32px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

/* Responsive Design */
/* Tablet (iPad) and Mobile */
@media (max-width: 1024px) {
    .product-showcase,
    .product-showcase.reverse {
        grid-template-columns: 1fr !important;
        gap: 40px;
        direction: ltr !important;
    }
    
    .product-showcase .product-content,
    .product-showcase.reverse .product-content {
        order: 1 !important;
    }
    
    .product-showcase .product-image,
    .product-showcase.reverse .product-image {
        order: 2 !important;
    }
    
    /* Hide desktop image, show mobile image */
    .desktop-image {
        display: none !important;
    }
    
    .mobile-image {
        display: block !important;
        width: 100%;
        height: auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header {
        display: none;
    }
    
    .nav-container {
        display: none;
    }
    
    .logo {
        margin-left: 20px;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .nav-links a:not(.cta-button) {
        display: none;
    }
    
    .hero {
        padding-bottom: 120px;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero-title span {
        font-size: 64px;
    }
    
    .hero-logo {
        height: 60px;
    }
    
    .hero-description {
        margin-bottom: 40px;
    }
    
    .scroll-indicator {
        bottom: 60px;
    }
    
    .scroll-indicator img {
        height: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-title.dark {
        font-size: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}