:root {
    --accent: #3b82f6;
    --accent2: #8b5cf6;
    --accent-rgb: 59,130,246;
    --green: #4ade80;
    --gold: #fbbf24;
    --red: #ef4444;
    --muted: #71717a;
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --card: #ffffff;
    --border: #e5e7eb;
    --dark: #1a1a2e;
    --radius: 12px;
    --shadow: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 30px rgba(59,130,246,0.12);
    --gradient: linear-gradient(135deg, var(--accent), var(--accent2));
    --gradient-soft: linear-gradient(135deg, rgba(168,227,249,0.5), rgba(224,213,250,0.5), rgba(244,201,221,0.5));
}

* { box-sizing: border-box; }

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #050708;
    background: var(--bg);
    line-height: 1.7;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent2); }

/* === HEADER === */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.navbar-brand img { height: 40px; }
.navbar { padding: 12px 0; }
.navbar-nav .nav-link { font-weight: 500; font-size: 15px; color: #333; padding: 8px 16px !important; }
.navbar-nav .nav-link:hover { color: var(--accent); }
.btn-get-started {
    background: var(--gradient) !important;
    border: none !important;
    color: white !important;
    font-weight: 600;
    padding: 10px 24px !important;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-get-started:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(59,130,246,0.3); }

/* === HERO === */
.hero-section {
    padding: 80px 0 60px;
    background: var(--gradient-soft);
    position: relative;
    overflow: hidden;
}
.hero-section h1 {
    font-size: 48px; font-weight: 800; line-height: 1.15; margin-bottom: 16px;
}
.hero-section .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-section .lead { font-size: 18px; color: #555; max-width: 600px; margin: 0 auto 24px; }
.hero-stats { display: flex; gap: 40px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 32px; font-weight: 800; color: var(--accent); }
.hero-stat .label { font-size: 14px; color: var(--muted); }

/* === PLATFORM GRID === */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin: 30px 0;
}
.platform-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}
.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.platform-card .icon { font-size: 32px; margin-bottom: 8px; }
.platform-card .name { font-weight: 600; font-size: 14px; }

/* === SERVICE CARDS === */
.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.3s;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card .platform-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 16px;
    background: var(--gradient);
}
.service-card h5 { font-weight: 700; margin-bottom: 8px; }
.service-card .price { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.service-card .price strong { color: var(--accent); font-size: 20px; }
.service-card .features { list-style: none; padding: 0; margin: 0 0 16px; font-size: 14px; }
.service-card .features li { padding: 4px 0; color: #555; }
.service-card .features li::before { content: "✓"; color: var(--green); margin-right: 8px; font-weight: bold; }
.service-card .btn { width: 100%; }

/* === PRICING TABLE === */
.pricing-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.pricing-table th {
    background: var(--bg-alt); padding: 14px 16px; text-align: left;
    font-weight: 600; font-size: 14px; border-bottom: 2px solid var(--border);
}
.pricing-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); }
.pricing-table tr:hover { background: var(--bg-alt); }
.pricing-table .price-cell { font-weight: 700; color: var(--accent); font-size: 18px; }
.pricing-table .btn { padding: 8px 20px; font-size: 14px; }

/* === TOOL CARDS === */
.tool-card {
    background: white; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 20px; text-align: center; transition: all 0.3s; text-decoration: none !important;
    display: block; color: #333 !important;
}
.tool-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--accent); color: var(--accent) !important; }
.tool-card .icon { font-size: 28px; margin-bottom: 10px; }
.tool-card .name { font-weight: 600; font-size: 14px; }

/* === SECTION TITLES === */
.section-title { font-size: 32px; font-weight: 800; text-align: center; margin-bottom: 12px; }
.section-subtitle { text-align: center; color: var(--muted); font-size: 16px; margin-bottom: 40px; }

/* === WHY US === */
.feature-card {
    text-align: center; padding: 30px 20px;
}
.feature-card .icon {
    width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center; font-size: 28px;
    background: var(--gradient); color: white;
}
.feature-card h5 { font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 14px; margin: 0; }

/* === HOW IT WORKS === */
.steps-section { background: var(--bg-alt); padding: 60px 0; }
.step-card { text-align: center; }
.step-card .step-num {
    width: 48px; height: 48px; border-radius: 50%; background: var(--gradient);
    color: white; font-weight: 700; font-size: 20px;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.step-card h5 { font-weight: 700; margin-bottom: 6px; }
.step-card p { color: var(--muted); font-size: 14px; }

/* === TESTIMONIALS === */
.testimonial-card {
    background: white; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 28px; height: 100%;
}
.testimonial-card .stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; }
.testimonial-card .text { font-size: 15px; color: #444; margin-bottom: 16px; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; color: white; font-weight: 600; }
.testimonial-card .author .name { font-weight: 600; font-size: 14px; }
.testimonial-card .author .role { font-size: 12px; color: var(--muted); }

/* === FAQ === */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    padding: 18px 0; cursor: pointer; font-weight: 600; font-size: 16px;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: "+"; font-size: 22px; color: var(--accent); transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s; color: #555; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 18px; }

/* === CTA === */
.cta-section {
    background: var(--gradient); border-radius: 20px; padding: 50px 40px;
    text-align: center; color: white; margin: 40px 0;
}
.cta-section h2 { color: white; font-weight: 800; margin-bottom: 12px; }
.cta-section p { opacity: 0.9; margin-bottom: 24px; }
.cta-section .btn { background: white; color: var(--accent); font-weight: 700; padding: 12px 32px; border-radius: 50px; }

/* === FOOTER === */
.site-footer { background: var(--dark); color: #a0a0b0; padding: 50px 0 20px; margin-top: 60px; }
.site-footer h5, .site-footer h6 { color: white; }
.site-footer a { color: #a0a0b0; font-size: 14px; }
.site-footer a:hover { color: white; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: 8px; }
.footer-brand { font-size: 22px; font-weight: 800; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 30px; padding-top: 20px; font-size: 13px; }

/* === SERVICE PAGE === */
.service-hero { padding: 40px 0; }
.service-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.service-hero .starting-price { font-size: 20px; color: var(--accent); font-weight: 700; }

/* === BLOG === */
.blog-card {
    background: white; border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; transition: all 0.3s; height: 100%;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card .blog-img { height: 200px; background: var(--gradient-soft); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-card .blog-body { padding: 20px; }
.blog-card .blog-meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.blog-card h5 { font-weight: 700; margin-bottom: 8px; }
.blog-card .blog-excerpt { font-size: 14px; color: #555; }

/* === TOOL PAGE === */
.tool-container { max-width: 700px; margin: 0 auto; }
.tool-input { width: 100%; padding: 14px 18px; border: 2px solid var(--border); border-radius: var(--radius); font-size: 16px; transition: border-color 0.2s; }
.tool-input:focus { outline: none; border-color: var(--accent); }
.tool-btn { background: var(--gradient); color: white; border: none; padding: 14px 32px; border-radius: var(--radius); font-weight: 600; cursor: pointer; transition: transform 0.2s; }
.tool-btn:hover { transform: translateY(-2px); }
.tool-results { margin-top: 24px; }
.tool-result-item {
    background: var(--bg-alt); border: 1px solid var(--border); border-radius: 8px;
    padding: 12px 16px; margin-bottom: 8px; display: flex; justify-content: space-between; align-items: center;
}
.tool-copy-btn { background: none; border: 1px solid var(--border); border-radius: 6px; padding: 4px 12px; font-size: 12px; cursor: pointer; color: var(--accent); }
.tool-copy-btn:hover { background: var(--accent); color: white; }

/* === BADGES === */
.badge-platform { font-size: 11px; padding: 4px 10px; border-radius: 20px; font-weight: 600; }
.badge-youtube { background: #ffe0e0; color: #c00; }
.badge-instagram { background: #ffe0f0; color: #c026d3; }
.badge-tiktok { background: #e0e0e0; color: #000; }
.badge-x { background: #e0e0f0; color: #1a1a2e; }
.badge-spotify { background: #e0ffe0; color: #1db954; }
.badge-threads { background: #e0e0ff; color: #4f46e5; }
.badge-facebook { background: #e0eaff; color: #1877f2; }
.badge-linkedin { background: #e0eaff; color: #0a66c2; }
.badge-pinterest { background: #ffe0ea; color: #e60023; }
.badge-telegram { background: #e0f0ff; color: #0088cc; }
.badge-twitch { background: #f0e0ff; color: #9146ff; }

/* === TRUSTPILOT === */
.trustpilot-wrapper { display: flex; align-items: center; gap: 16px; }
.trustpilot-stars { color: #00b67a; font-size: 24px; letter-spacing: 2px; }
.trustpilot-text { font-size: 14px; color: var(--muted); }
.trustpilot-text strong { color: #00b67a; }

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .hero-section h1 { font-size: 36px; }
    .section-title { font-size: 26px; }
}
@media (max-width: 767px) {
    .hero-section { padding: 50px 0 40px; }
    .hero-section h1 { font-size: 28px; }
    .hero-stats { gap: 20px; }
    .hero-stat .num { font-size: 24px; }
    .platform-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
    .platform-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === BLOG STYLES === */
.article-content { line-height: 1.8; font-size: 17px; }
.article-content h2 { margin-top: 2rem; margin-bottom: 1rem; font-weight: 700; }
.article-content h3 { margin-top: 1.5rem; margin-bottom: 0.75rem; font-weight: 600; }
.article-content p { margin-bottom: 1.25rem; }
.article-content ul, .article-content ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.article-content li { margin-bottom: 0.5rem; }
.article-content blockquote { border-left: 4px solid var(--accent); padding-left: 1rem; margin: 1.5rem 0; color: #666; font-style: italic; }
.article-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 1rem 0; }

/* === ANIMATIONS === */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.wow { animation: fadeInUp 0.6s ease-out; }
.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* === STICKY CTA BAR (mobile) === */
.sticky-cta { display: none; }
@media (max-width: 767px) {
    .sticky-cta {
        display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
        background: white; border-top: 1px solid var(--border); padding: 12px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    }
    .sticky-cta .btn { width: 100%; }
    body { padding-bottom: 60px; }
}

/* === LOADING SPINNER === */
.page-load { display: flex; justify-content: center; padding: 40px; }
.spinner { width: 40px; height: 40px; border: 4px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* === SCROLL TO TOP === */
.scroll-top {
    position: fixed; bottom: 20px; right: 20px; z-index: 999;
    width: 44px; height: 44px; border-radius: 50%; background: var(--gradient);
    color: white; border: none; cursor: pointer; opacity: 0; transition: opacity 0.3s;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.scroll-top.visible { opacity: 1; }

/* === TRUST BADGES === */
.trust-badges { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin: 20px 0; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.trust-badge .check { width: 20px; height: 20px; border-radius: 50%; background: var(--green); color: white; display: flex; align-items: center; justify-content: center; font-size: 12px; }

/* === COUNT-UP STATS === */
.stat-counter { font-size: 48px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* === IMPROVED NAV === */
.navbar-nav .dropdown-menu { border: none; box-shadow: 0 8px 30px rgba(0,0,0,0.1); border-radius: 12px; padding: 8px; }
.navbar-nav .dropdown-item { padding: 10px 16px; border-radius: 8px; font-size: 14px; transition: background 0.2s; }
.navbar-nav .dropdown-item:hover { background: var(--bg-alt); color: var(--accent); }

/* === CARD HOVER EFFECT === */
.card { transition: transform 0.3s, box-shadow 0.3s; border-radius: var(--radius); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* === BADGE PLATFORM IMPROVED === */
.badge-platform { font-size: 11px; padding: 4px 12px; border-radius: 20px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
