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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}

/* Header */
header {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 20px;
    color: #333;
}

.logo img {
    height: 80px;
    width: auto;
}

nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #c41e3a;
}

.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.lang-btn:hover {
    opacity: 0.9;
    transform: scale(1.1);
}

.lang-btn.active {
    opacity: 1;
    transform: scale(1.15);
}

.btn-waitlist {
    background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
    border: none;
    cursor: pointer;
}

.btn-waitlist:hover {
    background: linear-gradient(135deg, #a01830 0%, #8a1628 100%);
    box-shadow: 0 6px 16px rgba(196, 30, 58, 0.4);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 80px 0;
}

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

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    background: linear-gradient(135deg, #1a1a1a 0%, #c41e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
}

.gradient-box {
    position: absolute;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-box.gradient-1 {
    width: 280px;
    height: 180px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15) 0%, rgba(196, 30, 58, 0.05) 100%);
    top: 20px;
    left: 60px;
    animation: float 6s ease-in-out infinite;
}

.gradient-box.gradient-2 {
    width: 240px;
    height: 140px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.1) 0%, rgba(26, 26, 26, 0.02) 100%);
    top: 120px;
    left: 20px;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.gradient-box.gradient-3 {
    width: 200px;
    height: 160px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.08) 0%, rgba(196, 30, 58, 0.02) 100%);
    top: 200px;
    right: 40px;
    animation: float 7s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.automation-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 50px;
    padding: 12px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    z-index: 10;
}

.automation-icon {
    width: 20px;
    height: 20px;
    color: #c41e3a;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Features Section */
.features {
    background-color: white;
    padding: 80px 0;
}

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

.feature {
    text-align: center;
    padding: 32px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 1px solid #f0f0f0;
}

.feature:hover {
    box-shadow: 0 12px 40px rgba(196, 30, 58, 0.1);
    border-color: #c41e3a;
    transform: translateY(-4px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.25) 0%, rgba(196, 30, 58, 0.12) 100%);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.15);
    border: 1px solid rgba(196, 30, 58, 0.15);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.feature-icon .youtube-icon {
    stroke: #000000;
}

.feature h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.pricing .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.pricing-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
    background: linear-gradient(135deg, #1a1a1a 0%, #c41e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-plan {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pricing-plan:hover {
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.1);
    border-color: #c41e3a;
}

.pricing-plan h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #c41e3a;
}

.pricing-plan p {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.pricing-plan ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.pricing-plan li {
    font-size: 14px;
    color: #666;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.pricing-plan li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c41e3a;
    font-weight: bold;
}

.pricing-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pricing-form h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #c41e3a;
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-group small {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

.btn-keep {
    background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.btn-keep:hover {
    background: linear-gradient(135deg, #a01830 0%, #8a1628 100%);
    box-shadow: 0 6px 16px rgba(196, 30, 58, 0.4);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 40px 0;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

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

.footer-copyright {
    font-size: 14px;
    color: #fff;
}

@media (max-width: 768px) {
    header {
        padding: 16px 20px;
        flex-direction: column;
        gap: 16px;
    }

    .container {
        padding: 0 20px;
    }

    nav {
        gap: 20px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .features {
        grid-template-columns: 1fr;
        padding: 40px 0;
    }

    .pricing {
        padding: 40px 0;
    }

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

    footer {
        padding: 20px 0;
    }

    .language-switcher {
        margin-top: 12px;
        gap: 6px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
}
