/* Marketing Section Styles */
.marketing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.marketing-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: backgroundMove 20s linear infinite;
    z-index: 0;
}

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.marketing-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.coming-soon-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(124, 58, 237, 0.1);
    color: #7C3AED;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
    }
}

.marketing-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.marketing-text {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* 3D Countdown Styles */
.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    perspective: 1000px;
}

.countdown-item {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 20px;
    border-radius: 16px;
    min-width: 100px;
    box-shadow:
        0 10px 25px -5px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(124, 58, 237, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid #f1f5f9;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float 3s ease-in-out infinite;
}

.countdown-item:nth-child(1) {
    animation-delay: 0s;
}

.countdown-item:nth-child(2) {
    animation-delay: 0.2s;
}

.countdown-item:nth-child(3) {
    animation-delay: 0.4s;
}

.countdown-item:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotateX(0deg);
    }

    50% {
        transform: translateY(-10px) rotateX(5deg);
    }
}

.countdown-item:hover {
    transform: translateY(-15px) rotateX(10deg) scale(1.05);
    box-shadow:
        0 20px 40px -10px rgba(124, 58, 237, 0.3),
        0 0 0 1px rgba(124, 58, 237, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.countdown-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7C3AED, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(124, 58, 237, 0.2);
}

.countdown-label {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 5px;
}

/* 3D Waitlist Form */
.waitlist-form-container {
    max-width: 500px;
    margin: 0 auto 60px;
    background: white;
    padding: 8px;
    border-radius: 100px;
    box-shadow:
        0 20px 50px -10px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(124, 58, 237, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.waitlist-form-container:hover {
    box-shadow:
        0 25px 60px -10px rgba(124, 58, 237, 0.2),
        0 0 0 1px rgba(124, 58, 237, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.waitlist-input {
    flex: 1;
    border: none;
    padding: 16px 24px;
    font-size: 1rem;
    border-radius: 100px;
    outline: none;
    background: transparent;
}

.waitlist-submit {
    background: linear-gradient(135deg, #7C3AED, #6d28d9);
    color: white;
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.waitlist-submit::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;
}

.waitlist-submit:hover::before {
    left: 100%;
}

.waitlist-submit:hover {
    background: linear-gradient(135deg, #6d28d9, #5b21b6);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
}

.waitlist-submit:active {
    transform: translateY(0);
}

/* Social Sharing - 3D Style */
.social-sharing {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.share-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    transform-style: preserve-3d;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.share-btn:hover::before {
    opacity: 0.6;
}

.share-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.share-btn.facebook {
    background: linear-gradient(135deg, #1877F2, #0C63D4);
}

.share-btn.instagram {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
}

.share-btn.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.share-btn:hover {
    transform: translateY(-8px) scale(1.1) rotateZ(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.share-btn:active {
    transform: translateY(-4px) scale(1.05);
}

/* Response Message */
#waitlist-msg {
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#waitlist-msg.success {
    color: #10b981;
}

#waitlist-msg.error {
    color: #ef4444;
}

@media (max-width: 640px) {
    .marketing-title {
        font-size: 2.5rem;
    }

    .countdown-grid {
        gap: 10px;
    }

    .countdown-item {
        padding: 15px;
        min-width: 70px;
    }

    .countdown-value {
        font-size: 1.8rem;
    }

    .waitlist-form-container {
        border-radius: 20px;
        flex-direction: column;
        padding: 16px;
    }

    .waitlist-submit {
        width: 100%;
        margin-top: 12px;
    }

    .share-btn {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
}