/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography */
h1, h2, h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Buttons */
.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0056b3;
    color: #fff !important;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.cta-btn:hover {
    background-color: #004494;
    text-decoration: none;
    color: #fff !important;
}

.cta-btn.secondary {
    background-color: #fff;
    color: #0056b3 !important;
    border: 2px solid #0056b3;
}

.cta-btn.secondary:hover {
    background-color: #f0f8ff;
}

/* Header & Nav */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0056b3;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #333;
    font-weight: 500;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 0;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.dynamic-globe {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0056b3, #00d2ff);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.3);
    animation: pulse 3s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 10px 30px rgba(0, 86, 179, 0.3); }
    100% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(0, 86, 179, 0.5); }
}

/* Features */
.features {
    padding: 4rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 1rem;
}

/* Streaming */
.streaming {
    padding: 4rem 0;
}

.streaming-card {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.streaming-text {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.streaming-text p {
    margin-bottom: 1.5rem;
}

.streaming-logos {
    flex: 1;
    background: #eef2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Pricing */
.pricing {
    padding: 4rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.price-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: relative;
}

.price-card.popular {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 2px solid #0056b3;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0056b3;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #1a1a1a;
    margin: 1.5rem 0;
}

.price span {
    font-size: 1.5rem;
    color: #666;
}

.price-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.price-card li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.price-card li::before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
}

/* Articles */
.seo-articles {
    padding: 4rem 0;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.article-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.article-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.article-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* FAQ */
.faq {
    padding: 4rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    font-style: italic;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.testimonial-card span {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: bold;
    color: #0056b3;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: #fff;
}

.friend-links a:hover {
    color: #fff !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .streaming-card {
        flex-direction: column;
    }
    
    .nav-links {
        display: none; /* In a real app, implement a hamburger menu */
    }
    
    .price-card.popular {
        transform: scale(1);
    }
}
