/* Marketing Page Styles */

/* Marketing Hero Section */
.marketing-hero {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.marketing-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideUp 0.8s ease-out;
}

.marketing-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.marketing-hero .cta-buttons {
    animation: slideUp 0.8s ease-out 0.4s both;
}

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background-color: white;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    border-color: #f093fb;
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.2);
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #f093fb;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-right: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #f093fb;
    font-weight: bold;
}

/* Strategy Section */
.strategy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.strategy-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.strategy-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.timeline-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s;
}

.timeline-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.timeline-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: white;
    color: #f093fb;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.timeline-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: white;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    opacity: 0.95;
    font-size: 0.95rem;
}

/* Case Studies */
.case-studies {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.case-studies h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.case-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.case-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.case-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 1.5rem;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.case-tag {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.case-card h3 {
    padding: 1.5rem;
    color: #333;
    margin-bottom: 0;
    font-size: 1.2rem;
}

.case-card p {
    padding: 0 1.5rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.case-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
}

.result {
    text-align: center;
}

.result strong {
    display: block;
    font-size: 1.5rem;
    color: #f093fb;
    margin-bottom: 0.5rem;
}

.result span {
    font-size: 0.85rem;
    color: #666;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    border-color: #f093fb;
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.2);
}

.pricing-card.featured {
    border-color: #f093fb;
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.2);
    transform: scale(1.05);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.badge {
    position: absolute;
    top: -30px;
    right: 50%;
    transform: translateX(50%);
    background: #f093fb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    color: #f093fb;
    font-weight: bold;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    color: #666;
}

.plan-features li:before {
    content: attr(data-checkmark);
    margin-right: 0.5rem;
}

.pricing-card .btn {
    width: 100%;
}

/* Consultation Section */
.consultation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    text-align: center;
}

.consultation-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.consultation-section > .container > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.consultation-form {
    max-width: 700px;
    margin: 2rem auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    color: #333;
}

.consultation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.consultation-form .form-group {
    margin-bottom: 1.5rem;
    text-align: right;
}

.consultation-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.consultation-form input,
.consultation-form textarea,
.consultation-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.consultation-form input:focus,
.consultation-form textarea:focus,
.consultation-form select:focus {
    outline: none;
    border-color: #f093fb;
    box-shadow: 0 0 0 3px rgba(240, 147, 251, 0.1);
}

.consultation-form .btn {
    width: 100%;
}

/* FAQ Section */
.marketing-faq {
    padding: 80px 0;
    background-color: white;
}

.marketing-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.marketing-faq .faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.marketing-faq .faq-question {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s;
}

.marketing-faq .faq-question:hover {
    opacity: 0.9;
}

.marketing-faq .faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.marketing-faq .faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.marketing-faq .faq-answer {
    padding: 1.5rem;
    color: #666;
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.marketing-faq .faq-item.active .faq-answer {
    max-height: 500px;
}

/* Marketing CTA */
.marketing-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.marketing-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.marketing-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.marketing-cta .cta-buttons {
    gap: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .marketing-hero h1 {
        font-size: 2rem;
    }

    .marketing-hero p {
        font-size: 1rem;
    }

    .services-grid,
    .benefits-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .strategy-timeline {
        grid-template-columns: 1fr 1fr;
    }

    .case-results {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .consultation-form .form-row {
        grid-template-columns: 1fr;
    }

    .consultation-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .marketing-hero {
        padding: 40px 0;
    }

    .marketing-hero h1 {
        font-size: 1.5rem;
    }

    .marketing-hero .cta-buttons {
        flex-direction: column;
    }

    .services-overview,
    .strategy-section,
    .benefits-section,
    .case-studies,
    .pricing-section,
    .consultation-section,
    .marketing-faq {
        padding: 40px 0;
    }

    .strategy-timeline {
        grid-template-columns: 1fr;
    }
}
