/* Marketing Page Specific Styles */

/* Hero Section */
.marketing-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0a;
}

.marketing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(112, 72, 232, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 234, 255, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.marketing-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.marketing-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, #00eaff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.marketing-subtitle {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Service Cards */
.marketing-services {
    padding: 100px 0;
    background: #0b0f14;
}

.m-service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.m-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00eaff, #7048e8);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.m-service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.m-service-card:hover::before {
    opacity: 1;
}

.m-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #00eaff, #7048e8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.m-card-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.m-card-desc {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
}

/* Timeline/Process Section */
.marketing-process {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.process-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-right: 30px;
    min-width: 100px;
    font-family: 'Montserrat', sans-serif;
}

.process-content h3 {
    color: #00eaff;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
}

.process-content p {
    color: #ccc;
    font-size: 1.1rem;
    max-width: 600px;
}

/* CTA Section */
.marketing-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    text-align: center;
    position: relative;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112, 72, 232, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

    .marketing-subtitle {
        font-size: 1.2rem;
    }

    .process-step {
        flex-direction: column;
    }

    .process-number {
        margin-bottom: 15px;
        font-size: 4rem;
    }
}