/* MARKETING AGENT PAGE SPECIFIC STYLES */

/* MARKETING HERO */
.marketing-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.marketing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234c67f6' fill-opacity='0.04'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2L78 40h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.3;
}

.marketing-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-color);
    padding: 0.75rem;
    background: rgba(0, 242, 254, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 242, 254, 0.1);
}

.feature-item i {
    color: #00f2fe;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.cta-button.large {
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 30px;
}

/* MARKETING MOCKUP */
.hero-demo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.marketing-mockup {
    width: 450px;
    background: var(--primary-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.marketing-interface {
    background: var(--dark-bg);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 242, 254, 0.2);
}

.marketing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.marketing-header h4 {
    color: var(--text-color);
    margin: 0;
    font-size: 1.1rem;
}

.status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status.active {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.marketing-campaigns {
    margin-bottom: 1.5rem;
}

.campaign-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: rgba(0, 242, 254, 0.05);
    border: 1px solid rgba(0, 242, 254, 0.1);
}

.campaign-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.campaign-item.social i {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.campaign-item.email i {
    background: linear-gradient(135deg, #ea4335, #fbbc05);
}

.campaign-item.content i {
    background: linear-gradient(135deg, #8e44ad, #3498db);
}

.campaign-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.campaign-details .platform {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.85rem;
}

.campaign-details .action {
    color: var(--text-light);
    font-size: 0.8rem;
}

.campaign-status {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.campaign-status.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.campaign-status.in-progress {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
    border: 1px solid rgba(255, 193, 7, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.marketing-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 242, 254, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 242, 254, 0.1);
}

.stat .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00f2fe;
    margin-bottom: 0.25rem;
}

.stat .label {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: var(--dark-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 242, 254, 0.03), transparent);
    transform: rotate(45deg);
    pointer-events: none;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 242, 254, 0.15);
    border-color: rgba(0, 242, 254, 0.3);
}

.service-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    background: none;
    -webkit-text-fill-color: initial;
    position: relative;
    z-index: 2;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.service-features {
    position: relative;
    z-index: 2;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    background: rgba(0, 242, 254, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 242, 254, 0.1);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-features li:last-child {
    margin-bottom: 0;
}

.service-features li::before {
    content: '✓';
    background: var(--accent-gradient);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* PLATFORMS SECTION */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-category {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.platform-category h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: none;
    -webkit-text-fill-color: initial;
}

.platform-category h3 i {
    color: #00f2fe;
    font-size: 1.2rem;
}

.platform-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(0, 242, 254, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 242, 254, 0.1);
    transition: all 0.3s ease;
    font-size: 0.85rem;
    color: var(--text-light);
}

.platform-item:hover {
    background: rgba(0, 242, 254, 0.1);
    border-color: rgba(0, 242, 254, 0.2);
    color: var(--text-color);
}

.platform-item i {
    color: #00f2fe;
    font-size: 1rem;
    width: 16px;
    flex-shrink: 0;
}

/* PRICING MODULES */
.pricing-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-module {
    background: var(--primary-bg);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.pricing-module::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 242, 254, 0.02), transparent);
    transform: rotate(45deg);
    pointer-events: none;
}

.pricing-module:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-module.featured {
    border-color: #00f2fe;
    box-shadow: 0 15px 40px rgba(0, 242, 254, 0.2);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.module-header {
    padding: 2rem 2rem 1rem 2rem;
    position: relative;
    z-index: 2;
}

.module-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.module-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    background: none;
    -webkit-text-fill-color: initial;
}

.module-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.module-pricing {
    padding: 1rem 2rem;
    position: relative;
    z-index: 2;
}

.price-breakdown {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(0, 242, 254, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 242, 254, 0.1);
}

.setup-price, .monthly-price {
    text-align: center;
}

.setup-price .price, .monthly-price .price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00f2fe;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.setup-price .label, .monthly-price .label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.module-features {
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.module-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.module-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.module-features li i {
    color: #4CAF50;
    font-size: 0.8rem;
    width: 14px;
    flex-shrink: 0;
}

.module-button {
    width: calc(100% - 4rem);
    margin: 2rem;
    background: var(--accent-gradient);
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.module-button:hover {
    background: linear-gradient(135deg, #0099cc, #3d5afe);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.3);
}

.module-button.featured {
    background: linear-gradient(135deg, #00f2fe, #4c67f6);
    font-size: 1.1rem;
    padding: 18px 24px;
}

.module-button.selected {
    background: #4CAF50;
    color: white;
}

.module-button.selected:hover {
    background: #45a049;
}

/* PRICING CALCULATOR */
.pricing-calculator {
    margin-top: 4rem;
    background: var(--dark-bg);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid var(--border-color);
    text-align: center;
}

.pricing-calculator h3 {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    background: none;
    -webkit-text-fill-color: initial;
}

.calculator-content {
    max-width: 600px;
    margin: 0 auto;
}

.selected-modules {
    margin-bottom: 2rem;
}

.no-selection {
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

.selected-module {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 242, 254, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 242, 254, 0.1);
    margin-bottom: 0.75rem;
}

.selected-module:last-child {
    margin-bottom: 0;
}

.module-name {
    color: var(--text-color);
    font-weight: 500;
}

.module-cost {
    color: #00f2fe;
    font-weight: 600;
}

.remove-module {
    background: none;
    border: none;
    color: #f44336;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remove-module:hover {
    background: rgba(244, 67, 54, 0.1);
}

.total-pricing {
    background: rgba(0, 242, 254, 0.1);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(0, 242, 254, 0.2);
    margin-bottom: 2rem;
}

.total-setup, .total-monthly {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.total-monthly {
    margin-bottom: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 242, 254, 0.2);
}

.total-setup .label, .total-monthly .label {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
}

.total-setup .price, .total-monthly .price {
    color: #00f2fe;
    font-weight: 700;
    font-size: 1.5rem;
}

.total-monthly .price {
    font-size: 2rem;
}

/* WORKFLOW STEPS */
.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.workflow-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background: var(--dark-bg);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.workflow-step h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.workflow-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.workflow-arrow {
    font-size: 2rem;
    color: var(--text-light);
    flex-shrink: 0;
}

/* CONTACT CTA */
#contact {
    text-align: center;
    background: var(--accent-gradient);
}

#contact h2 {
    color: #fff;
    margin-bottom: 1rem;
}

#contact h2::after {
    background: #fff;
}

#contact p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    background: #fff;
    color: #4c67f6;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: var(--dark-bg);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-button.secondary:hover {
    background: #fff;
    color: #4c67f6;
}

/* PRICING NOTE */
.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(0, 242, 254, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 242, 254, 0.2);
}

.pricing-note p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.pricing-note i {
    color: #00f2fe;
    margin-right: 0.5rem;
}

/* SECTION SUBTITLE */
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin: -2rem auto 3rem auto;
    max-width: 800px;
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .marketing-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .marketing-mockup {
        width: 400px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .workflow-steps {
        flex-direction: column;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .pricing-modules {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .platform-list {
        grid-template-columns: 1fr;
    }
    
    .price-breakdown {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .marketing-hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .marketing-mockup {
        width: 320px;
        padding: 1.5rem;
    }
    
    .pricing-calculator {
        padding: 2rem 1.5rem;
    }
    
    .service-item {
        padding: 2rem;
    }
}
