* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Verdana, Geneva, sans-serif;
    background: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* ===== HERO SECTION ===== */
.agency-hero-section {
    background: linear-gradient(135deg, #f8f6ff 0%, #fff5fc 100%);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(137, 115, 223, 0.1);
}

.agency-hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.agency-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2a156f, #8973df);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.agency-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2a156f;
    margin-bottom: 20px;
    line-height: 1.2;
}

.agency-hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.agency-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.agency-stat-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(137, 115, 223, 0.1);
    border: 2px solid rgba(137, 115, 223, 0.1);
    transition: all 0.3s ease;
}

.agency-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(137, 115, 223, 0.2);
    border-color: rgba(137, 115, 223, 0.3);
}

.agency-stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fd49a0, #8973df);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.agency-stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

/* ===== TABS SECTION ===== */
.agency-tabs-section {
    padding: 80px 20px;
    background: #ffffff;
}

.agency-tabs-container {
    max-width: 1300px;
    margin: 0 auto;
}

.agency-tabs-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.agency-tab-button {
    background: white;
    border: 3px solid rgba(137, 115, 223, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Verdana, Geneva, sans-serif;
    text-align: center;
}

.agency-tab-button:hover {
    border-color: rgba(137, 115, 223, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(137, 115, 223, 0.15);
}

.agency-tab-button.active {
    background: linear-gradient(135deg, rgba(137, 115, 223, 0.08), rgba(253, 73, 160, 0.08));
    border-color: #fd49a0;
    box-shadow: 0 8px 30px rgba(253, 73, 160, 0.2);
}

.agency-tab-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2a156f, #8973df);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.agency-tab-button.active .agency-tab-icon {
    background: linear-gradient(135deg, #fd49a0, #ff6fb5);
    transform: scale(1.1);
}

.agency-tab-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2a156f;
}

.agency-tabs-content {
    position: relative;
    min-height: 500px;
}

.agency-tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.agency-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.agency-panel-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    background: white;
    border: 2px solid rgba(137, 115, 223, 0.2);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(137, 115, 223, 0.08);
}

.agency-panel-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2a156f;
    margin-bottom: 20px;
    line-height: 1.3;
}

.agency-panel-lead {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.agency-panel-lead strong {
    color: #2a156f;
    font-weight: 700;
}

.agency-info-box {
    background: linear-gradient(135deg, rgba(137, 115, 223, 0.05), rgba(253, 73, 160, 0.05));
 
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.agency-info-box h4 {
    color: #2a156f;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.agency-info-box h4 i {
    color: #fd49a0;
}

.agency-info-box p {
    color: #555;
    line-height: 1.7;
}

.agency-example-box {
    background: white;
    border: 2px solid rgba(253, 73, 160, 0.2);
    border-radius: 15px;
    padding: 25px;
}

.agency-example-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fd49a0, #ff6fb5);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.agency-example-box h4 {
    color: #2a156f;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.agency-example-box p {
    color: #555;
    line-height: 1.7;
}

.agency-panel-benefits {
    background: linear-gradient(135deg, #2a156f, #8973df);
    color: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(137, 115, 223, 0.3);
    
}

.agency-panel-benefits h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.agency-benefits-list {
    list-style: none;
}

.agency-benefits-list li {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.agency-benefits-list li:last-child {
    border-bottom: none;
}

.agency-benefits-list i {
    color: #06e286;
    font-size: 1.3rem;
}

/* ===== CAROUSEL SECTION ===== */
.agency-x-carousel-section {
    padding: 80px 20px;
  
}

.agency-x-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
}

.agency-x-carousel-header {
    text-align: center;
    margin-bottom: 60px;
}

.agency-x-carousel-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fd49a0, #ff6fb5);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.agency-x-carousel-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2a156f;
    margin-bottom: 15px;
}

.agency-x-carousel-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.agency-x-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.agency-x-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.agency-x-carousel-slide {
    min-width: 100%;
    padding: 20px;
}

.agency-x-carousel-card {
    background: white;
    border: 2px solid rgba(137, 115, 223, 0.2);
    border-radius: 25px;
    overflow: hidden;

    transition: all 0.3s ease;
}



.agency-x-card-header {
    background: linear-gradient(135deg, rgba(137, 115, 223, 0.08), rgba(253, 73, 160, 0.08));
    padding: 35px 40px;
    border-bottom: 2px solid rgba(137, 115, 223, 0.15);
}

.agency-x-industry-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2a156f, #8973df);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.agency-x-card-title {
    font-size: 1.8rem;
    color: #2a156f;
    font-weight: 800;
}

.agency-x-card-body {
    padding: 40px;
}

.agency-x-problem,
.agency-x-solution,
.agency-x-results {
    margin-bottom: 30px;
}

.agency-x-problem:last-child,
.agency-x-solution:last-child,
.agency-x-results:last-child {
    margin-bottom: 0;
}

.agency-x-card-body h4 {
    font-size: 1.1rem;
    color: #2a156f;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 800;
}

.agency-x-problem h4 i {
    color: #ff6b6b;
}

.agency-x-solution h4 i {
    color: #8973df;
}

.agency-x-results h4 i {
    color: #06e286;
}

.agency-x-card-body p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.agency-x-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.agency-x-metric {
    background: linear-gradient(135deg, rgba(137, 115, 223, 0.08), rgba(253, 73, 160, 0.08));
    border: 2px solid rgba(137, 115, 223, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.agency-x-metric:hover {
    background: linear-gradient(135deg, rgba(137, 115, 223, 0.12), rgba(253, 73, 160, 0.12));
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(137, 115, 223, 0.15);
}

.agency-x-metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fd49a0;
    margin-bottom: 5px;
}

.agency-x-metric-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.agency-x-card-footer {
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(137, 115, 223, 0.03), rgba(253, 73, 160, 0.03));
    border-top: 2px solid rgba(137, 115, 223, 0.1);
    text-align: center;
}

.agency-x-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fd49a0, #ff6fb5);
    color: white;
    padding: 16px 35px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(253, 73, 160, 0.3);
}

.agency-x-cta-button:hover {
    background: linear-gradient(135deg, #ff5eb0, #ff7ec0);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(253, 73, 160, 0.45);
}

.agency-x-cta-button i {
    transition: transform 0.3s ease;
}

.agency-x-cta-button:hover i {
    transform: translateX(5px);
}

.agency-x-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
}

.agency-x-carousel-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a156f, #8973df);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(137, 115, 223, 0.3);
}

.agency-x-carousel-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 30px rgba(137, 115, 223, 0.5);
}

.agency-x-carousel-dots {
    display: flex;
    gap: 12px;
}

.agency-x-carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(137, 115, 223, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.agency-x-carousel-dot:hover {
    background: rgba(137, 115, 223, 0.5);
}

.agency-x-carousel-dot.active {
    background: #fd49a0;
    width: 40px;
    border-radius: 7px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .agency-panel-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .agency-panel-benefits {
        order: -1;
    }
}

@media (max-width: 900px) {
    .agency-hero-title {
        font-size: 2.2rem;
    }
    
    .agency-hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .agency-tabs-header {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .agency-x-metrics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .agency-hero-section {
        padding: 60px 20px;
    }
    
    .agency-hero-title {
        font-size: 1.8rem;
    }
    
    .agency-hero-subtitle {
        font-size: 1rem;
    }
    
    .agency-tabs-section {
        padding: 60px 20px;
    }
    
    .agency-panel-layout {
        padding: 30px 25px;
    }
    
    .agency-panel-text h2 {
        font-size: 1.6rem;
    }
    
    .agency-x-carousel-section {
        padding: 60px 15px;
    }
    
    .agency-x-carousel-title {
        font-size: 2rem;
    }
    
    .agency-x-card-header,
    .agency-x-card-body,
    .agency-x-card-footer {
        padding: 25px;
    }
    
    .agency-x-card-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .agency-hero-title {
        font-size: 1.5rem;
    }
    
    .agency-stat-number {
        font-size: 2.2rem;
    }
    
    .agency-x-carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}