/* Hero Communication */
.hero-communication {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #03a0e1 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-communication::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(3,160,225,0.1)"/></svg>');
    opacity: 0.3;
}

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

.hero-tag {
    display: inline-block;
    background: rgba(3, 160, 225, 0.2);
    border: 2px solid #03a0e1;
    color: #03a0e1;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-comm-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-lead {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #03a0e1;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.services-checks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    text-align: left;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.check-item:hover {
    background: rgba(3, 160, 225, 0.1);
    transform: translateX(5px);
}

.check-item span {
    font-size: 1rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: #000;
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f5f5f5, #ffffff);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: #03a0e1;
}

.problem-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    color: #000;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.problem-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.solution-banner {
    background: linear-gradient(135deg, #03a0e1, #0286c2);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(3, 160, 225, 0.3);
}

.solution-banner h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.solution-banner p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #03a0e1, #0286c2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #03a0e1;
}

.pricing-card.featured {
    border-color: #03a0e1;
    border-width: 3px;
    box-shadow: 0 10px 40px rgba(3, 160, 225, 0.2);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #03a0e1;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-amount {
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #03a0e1;
    display: block;
}

.period {
    font-size: 1rem;
    color: #666;
    display: block;
    margin-top: 5px;
}

.pricing-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    min-height: 60px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    color: #333;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #03a0e1;
    text-align: center;
}

.pricing-note p {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-comm-content h1 {
        font-size: 2.5rem;
    }

    .hero-lead {
        font-size: 1.4rem;
    }

    .services-checks {
        grid-template-columns: 1fr;
    }

    .problems-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-comm-content h1 {
        font-size: 2rem;
    }

    .solution-banner {
        padding: 30px 20px;
    }

    .solution-banner h3 {
        font-size: 1.5rem;
    }

    .pricing-card {
        padding: 30px 20px;
    }
}