/* World Radio specific styles - completely isolated */
.wr-features {
    padding: 6rem 0;
    background: #fff;
}

.wr-features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.wr-features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.wr-features-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.wr-features-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.wr-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.wr-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.wr-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(65, 105, 255, 0.1);
}

.wr-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(65, 105, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.wr-feature-icon svg {
    width: 24px;
    height: 24px;
    color: #4169FF;
}

.wr-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.wr-feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .wr-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wr-features {
        padding: 4rem 1.5rem;
    }

    .wr-features-header h2 {
        font-size: 2rem;
    }

    .wr-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Quick Start Section */
.wr-quickstart {
    padding: 6rem 0;
    background: var(--background-light, #F8F9FF);
}

.wr-quickstart .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.wr-quickstart-header {
    text-align: center;
    margin-bottom: 4rem;
}

.wr-quickstart-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.wr-quickstart-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.wr-quickstart-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.wr-guide-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wr-guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(65, 105, 255, 0.1);
}

.wr-guide-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A1A1A;
    letter-spacing: -0.01em;
}

.wr-guide-card p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
}

.wr-learn-more {
    color: #4169FF;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: 0.5rem;
}

/* CTA Section */
.wr-cta {
    padding: 6rem 0;
    background: white;
    text-align: center;
}

.wr-cta .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.wr-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.wr-cta-content p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

.wr-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #4169FF 0%, #8A6FFF 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(65, 105, 255, 0.2);
}

.wr-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(65, 105, 255, 0.3);
}

.wr-cta-button .chrome-icon {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .wr-quickstart-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wr-quickstart,
    .wr-cta {
        padding: 4rem 1.5rem;
    }

    .wr-quickstart-header h2,
    .wr-cta-content h2 {
        font-size: 2rem;
    }

    .wr-quickstart-grid {
        grid-template-columns: 1fr;
    }

    .wr-cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Advertise Section */
.wr-advertise {
    padding: 6rem 0;
    background: white;
    text-align: center;
}

.wr-advertise .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.wr-advertise-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(22, 163, 74, 0.1);
    color: #16A34A;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.wr-badge-dot {
    width: 8px;
    height: 8px;
    background: #16A34A;
    border-radius: 50%;
}

.wr-advertise-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.wr-advertise-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.wr-advertise-header p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
}

.wr-advertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.wr-advertise-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.wr-advertise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(22, 163, 74, 0.1);
}

.wr-advertise-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.wr-advertise-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.wr-advertise-cta {
    margin-top: 3rem;
}

.wr-advertise-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #16A34A;
    color: white;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.wr-advertise-button:hover {
    background: #15803D;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(22, 163, 74, 0.2);
}

.wr-advertise-button svg {
    transition: transform 0.2s ease;
}

.wr-advertise-button:hover svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .wr-advertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .wr-advertise {
        padding: 4rem 1.5rem;
    }

    .wr-advertise-header h2 {
        font-size: 2rem;
    }

    .wr-advertise-grid {
        grid-template-columns: 1fr;
    }

    .wr-advertise-button {
        width: 100%;
        justify-content: center;
    }
} 