/* Keywords Pages Styles (Video & Live Keywords) */

/* Keywords Header */
.keywords-header {
    margin-top: 80px;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.keywords-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateX(-50px) translateY(-50px); }
    100% { transform: translateX(50px) translateY(50px); }
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #4299e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.header-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: #4299e1;
}

.feature-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
    background: #f7fafc;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 700;
}

.how-it-works > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.work-item {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.work-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(66, 153, 225, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.work-item:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.work-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #4299e1;
}

.work-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(66, 153, 225, 0.3);
}

.work-icon {
    width: 80px;
    height: 80px;
    background: #f7fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
}

.work-item:hover .work-icon {
    border-color: #4299e1;
    background: rgba(66, 153, 225, 0.1);
}

.work-icon i {
    font-size: 2rem;
    color: #4299e1;
}

.work-item h3 {
    font-size: 1.4rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 700;
}

.work-item p {
    color: #718096;
    font-size: 1rem;
    line-height: 1.6;
}

/* Platform Services */
.platform-services {
    padding: 120px 0;
    background: white;
}

.platform-services h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a365d;
    margin-bottom: 50px;
    font-weight: 700;
}

.platform-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.platform-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: #718096;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.platform-tab:hover {
    border-color: #4299e1;
    color: #4299e1;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(66, 153, 225, 0.2);
}

.platform-tab.active {
    background: #4299e1;
    border-color: #4299e1;
    color: white;
    box-shadow: 0 10px 30px rgba(66, 153, 225, 0.3);
}

.platform-tab i {
    font-size: 1.2rem;
}

.platform-content {
    display: none;
}

.platform-content.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
    padding: 40px;
    background: #f7fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.platform-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.platform-icon.youtube {
    background: #ff0000;
}

.platform-icon.tiktok {
    background: linear-gradient(45deg, #ff0050, #00f2ea);
}

.platform-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.platform-icon.facebook {
    background: #1877f2;
}

.platform-icon i {
    font-size: 2.5rem;
    color: white;
}

.platform-header h3 {
    font-size: 2.2rem;
    color: #1a365d;
    margin-bottom: 10px;
    font-weight: 700;
}

.platform-header p {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.6;
}

/* Service Packages */
.service-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(66, 153, 225, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.package-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #4299e1;
}

.package-card.featured {
    border-color: #4299e1;
    border-width: 3px;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 25px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(66, 153, 225, 0.3);
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.package-header h4 {
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 700;
}

.package-price {
    font-size: 2.5rem;
    color: #4299e1;
    font-weight: 800;
    margin-bottom: 10px;
}

.package-features {
    margin-bottom: 30px;
}

.package-features .feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #2d3748;
    line-height: 1.5;
}

.package-features .feature::before {
    content: '✓';
    color: #48bb78;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1rem;
}

.package-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.package-btn:hover {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(66, 153, 225, 0.3);
}

/* Success Stories */
.success-stories {
    padding: 120px 0;
    background: #f7fafc;
}

.success-stories h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 700;
}

.success-stories > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.story-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(66, 153, 225, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.story-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #4299e1;
}

.story-platform {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.story-platform i {
    font-size: 1.5rem;
    color: #4299e1;
}

.story-platform span {
    font-weight: 600;
    color: #718096;
}

.story-card h3 {
    font-size: 1.4rem;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 700;
}

.story-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #4299e1;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
    margin-top: 5px;
}

.story-card p {
    color: #2d3748;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-keywords {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.keyword-tag {
    background: #e2e8f0;
    color: #4299e1;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Keywords CTA */
.keywords-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.keywords-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: float 20s linear infinite reverse;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #4299e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    border: 2px solid #4299e1;
    box-shadow: 0 10px 30px rgba(66, 153, 225, 0.3);
}

.cta-btn.primary:hover {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(66, 153, 225, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.cta-guarantees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.guarantee-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.guarantee-item i {
    font-size: 2.5rem;
    color: #4299e1;
    margin-bottom: 15px;
}

.guarantee-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.guarantee-item p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalAppear 0.3s ease;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close {
    color: #a0aec0;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #4299e1;
}

.modal-content h2 {
    color: #1a365d;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2d3748;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(66, 153, 225, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Live Streaming Specific Styles */

/* Live Benefits */
.live-benefits {
    padding: 120px 0;
    background: white;
}

.live-benefits h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a365d;
    margin-bottom: 60px;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(66, 153, 225, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.benefit-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #4299e1;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.benefit-card p {
    color: #718096;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Live Tips */
.live-tips {
    padding: 120px 0;
    background: #f7fafc;
}

.live-tips h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a365d;
    margin-bottom: 60px;
    font-weight: 700;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tip-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(66, 153, 225, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.tip-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #4299e1;
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tip-icon i {
    font-size: 1.5rem;
    color: white;
}

.tip-card h3 {
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 700;
}

.tip-card p {
    color: #718096;
    font-size: 1rem;
    line-height: 1.6;
}

/* Live Analytics */
.live-analytics {
    padding: 120px 0;
    background: white;
}

.live-analytics h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1a365d;
    margin-bottom: 60px;
    font-weight: 700;
}

.analytics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.analytics-text h3 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 30px;
    font-weight: 700;
}

.analytics-features {
    list-style: none;
    margin-bottom: 40px;
}

.analytics-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #2d3748;
}

.analytics-features i {
    color: #4299e1;
    font-size: 1.2rem;
    width: 20px;
}

.analytics-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.analytics-btn:hover {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(66, 153, 225, 0.3);
}

.analytics-visual {
    position: relative;
}

.analytics-dashboard {
    background: #1a365d;
    border-radius: 20px;
    padding: 30px;
    color: white;
    box-shadow: 0 20px 60px rgba(26, 54, 93, 0.3);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.live-indicator {
    color: #ff4757;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.metric-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.metric-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4299e1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.metric-change {
    font-size: 0.8rem;
    font-weight: 600;
}

.metric-change.positive {
    color: #48bb78;
}

.metric-change.negative {
    color: #f56565;
}

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

    .header-content p {
        font-size: 1.1rem;
    }

    .header-features {
        gap: 20px;
    }

    .feature-item {
        padding: 15px;
        min-width: 120px;
    }

    .how-it-works,
    .platform-services,
    .success-stories,
    .keywords-cta {
        padding: 80px 0;
    }

    .works-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .work-item {
        padding: 30px 20px;
    }

    .platform-tabs {
        gap: 10px;
    }

    .platform-tab {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .platform-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .platform-header h3 {
        font-size: 1.8rem;
    }

    .service-packages {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-card {
        padding: 25px 20px;
    }

    .package-card.featured {
        transform: none;
    }

    .package-card.featured:hover {
        transform: translateY(-10px);
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-stats {
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-guarantees {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .keywords-header {
        padding: 80px 0;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    .header-content p {
        font-size: 1rem;
    }

    .header-features {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 100%;
        max-width: 200px;
    }

    .how-it-works,
    .platform-services,
    .success-stories,
    .keywords-cta {
        padding: 60px 0;
    }

    .how-it-works h2,
    .platform-services h2,
    .success-stories h2 {
        font-size: 2.2rem;
    }

    .work-item {
        padding: 25px 15px;
    }

    .work-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .work-icon {
        width: 60px;
        height: 60px;
    }

    .work-icon i {
        font-size: 1.5rem;
    }

    .platform-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 20px;
    }

    .platform-tab {
        flex-shrink: 0;
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .platform-header {
        padding: 20px 15px;
    }

    .platform-icon {
        width: 60px;
        height: 60px;
    }

    .platform-icon i {
        font-size: 2rem;
    }

    .platform-header h3 {
        font-size: 1.5rem;
    }

    .platform-header p {
        font-size: 1rem;
    }

    .package-card {
        padding: 20px 15px;
    }

    .package-header h4 {
        font-size: 1.3rem;
    }

    .package-price {
        font-size: 2rem;
    }

    .story-card {
        padding: 25px 20px;
    }

    .story-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-guarantees {
        grid-template-columns: 1fr;
    }

    .guarantee-item {
        padding: 15px;
    }

    .guarantee-item i {
        font-size: 2rem;
    }

    .modal-content {
        margin: 5% auto;
        padding: 20px 15px;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }
}