/* ============================================
   Etsy Insight Pro - Main Stylesheet
   ============================================ */

/* CSS Custom Properties */
:root {
    --primary: #8b5cf6;
    --primary-hover: #7c3aed;
    --orange: #f97316;
    --orange-hover: #ea580c;
    --background: #090d16;
    --surface: #131b2e;
    --surface-secondary: #1e293b;
    --text: #f8fafc;
    --text-secondary: #94a3b8;
    --border: #1e293b;
    --success: #10b981;
    --purple-glow: rgba(139, 92, 246, 0.15);
    --orange-glow: rgba(249, 115, 22, 0.15);
    --background-rgb: 9, 13, 22;
    --surface-rgb: 19, 27, 46;
    --surface-secondary-rgb: 30, 41, 59;
    --text-rgb: 248, 250, 252;
    --text-secondary-rgb: 148, 163, 184;
    --border-rgb: 30, 41, 59;
}

/* Light Theme Variables (toggled via JS) */
.light-theme {
    --primary: #7c3aed;
    --primary-hover: #6d28d9;
    --orange: #ea580c;
    --orange-hover: #dc2626;
    --background: #f8fafc;
    --surface: #ffffff;
    --surface-secondary: #f1f5f9;
    --text: #0f172a;
    --text-secondary: #475569;
    --border: #e2e8f0;
    --success: #059669;
    --purple-glow: rgba(124, 58, 237, 0.08);
    --orange-glow: rgba(234, 88, 12, 0.08);
    --background-rgb: 248, 250, 252;
    --surface-rgb: 255, 255, 255;
    --surface-secondary-rgb: 241, 245, 249;
    --text-rgb: 15, 23, 42;
    --text-secondary-rgb: 71, 85, 105;
    --border-rgb: 226, 232, 240;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, var(--purple-glow) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, var(--orange-glow) 0%, transparent 40%);
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ NAVBAR ============ */
nav {
    padding: 15px 0;
    border-bottom: 1px solid rgba(var(--text-rgb), 0.08);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(var(--background-rgb), 0.7);
    transition: background 0.3s, box-shadow 0.3s;
}

.nav-scrolled {
    background: rgba(var(--background-rgb), 0.95) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.logo-text span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

/* Language Selector */
.lang-select {
    background-color: var(--surface-secondary);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    outline: none;
    cursor: pointer;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: var(--surface-secondary);
    border: 1px solid var(--border);
    color: var(--text);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
}

.theme-toggle-btn:hover {
    background: var(--surface);
    border-color: var(--primary);
    transform: scale(1.1);
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-orange {
    background-color: var(--orange);
    color: white;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.btn-orange:hover {
    background-color: var(--orange-hover);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    background-color: var(--surface);
}

.hero {
    padding: 60px 0 80px 0;
    text-align: center;
    position: relative;
}

.hero-tag {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #a78bfa;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 46px;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 50px;
}

.hero-mockup {
    background-color: rgba(var(--surface-secondary-rgb), 0.5);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hero-mockup img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.social-proof {
    padding: 50px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-section-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-number {
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: rgba(var(--text-rgb), 0.02);
    border-radius: 12px;
    border: 1px solid rgba(var(--text-rgb), 0.04);
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 6px;
}

.video-section {
    padding: 80px 0;
    text-align: center;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    aspect-ratio: 16/9;
    background: #000;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.features {
    padding: 80px 0;
    background-color: rgba(var(--text-rgb), 0.01);
    border-top: 1px solid rgba(var(--text-rgb), 0.02);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.blog-snippets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.blog-snippet-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-snippet-card .feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, transform 0.2s;
}

.blog-snippet-card:hover .feature-card {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.how-section {
    padding: 80px 0;
    border-top: 1px solid rgba(var(--text-rgb), 0.02);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 950px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--orange));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 20px auto;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.testimonials-section {
    padding: 80px 0;
    background-color: rgba(var(--text-rgb), 0.01);
    border-top: 1px solid rgba(var(--text-rgb), 0.02);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.testi-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.testi-stars {
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s;
}

.price-card.popular {
    border-color: var(--primary);
    box-shadow: 0 20px 25px -5px rgba(139, 92, 246, 0.15);
    transform: scale(1.03);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), #a78bfa);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 36px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    margin: 15px 0 25px 0;
    display: flex;
    align-items: baseline;
}

.price-amount span {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 400;
    margin-left: 4px;
}

.price-features {
    list-style: none;
    margin-bottom: 35px;
    flex: 1;
}

.price-features li {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.price-features li::before {
    content: "\2713";
    color: var(--success);
    font-weight: bold;
}

.trust-section {
    padding: 50px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.trust-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--surface-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.3s, transform 0.2s;
    min-width: 220px;
    flex: 1 1 280px;
    max-width: 380px;
}

.trust-badge-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}

.trust-badge>div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-badge>div strong {
    font-size: 14px;
    color: var(--text);
    font-weight: 700;
}

.trust-badge>div span {
    font-size: 12px;
    color: var(--text-secondary);
}

.trust-badge:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.support-page {
    padding: 80px 0;
    background-color: rgba(var(--text-rgb), 0.01);
    border-top: 1px solid rgba(var(--text-rgb), 0.02);
}

.support-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    background-color: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.tab-content {
    display: none;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeIn 0.4s ease-out;
}

.tab-content.active {
    display: block;
}

.faq-search-box {
    margin-bottom: 30px;
    width: 100%;
}

.faq-search-box input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    background-color: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 14px;
    outline: none;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: rgba(var(--text-rgb), 0.02);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    color: var(--text-secondary);
    font-size: 14px;
    border-top: 1px solid transparent;
}

.faq-item.open .faq-answer {
    padding: 20px;
    max-height: 500px;
    border-top-color: var(--border);
}

.faq-toggle-icon {
    transition: transform 0.3s;
}

.faq-item.open .faq-toggle-icon {
    transform: rotate(180deg);
}

.support-form-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    background-color: var(--surface-secondary);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(var(--text-rgb), 0.02);
    border: 1px dashed var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s;
    color: var(--text-secondary);
}

.file-upload-label:hover {
    background: rgba(var(--text-rgb), 0.04);
    color: var(--text);
}

.image-preview {
    margin-top: 10px;
    display: none;
    position: relative;
    max-width: 150px;
}

.image-preview img {
    width: 100%;
    border-radius: 6px;
    border: 1px solid var(--border);
}

.image-preview-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    font-weight: bold;
}

.chat-widget-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--orange));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4), 0 0 0 0 rgba(139, 92, 246, 0.4);
    z-index: 1000;
    transition: transform 0.2s;
    animation: pulseGlow 2s infinite;
}

.chat-widget-button:hover {
    transform: scale(1.05);
}

.chat-widget-container {
    position: fixed;
    bottom: 105px;
    right: 100px;
    left: auto;
    width: 380px;
    height: 450px;
    border-radius: 16px;
    background-color: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: chatSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Live Chat Status Indicator */
.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 5px;
    background-color: #808080;
}

.status-indicator.online {
    background-color: #10b981;
}

.chat-widget-container.open {
    display: flex;
}

/* Emoji Picker */
.chat-emoji-btn {
    cursor: pointer;
    font-size: 18px;
    color: var(--text-secondary);
    background: none;
    border: none;
    padding: 0 4px;
    line-height: 1;
}

#chat-active {
    position: relative;
}

.emoji-picker {
    position: absolute;
    bottom: 62px;
    right: 12px;
    display: none;
    flex-direction: column;
    width: 224px;
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    z-index: 1200;
    overflow: hidden;
}

@media (max-width:768px) {
    .emoji-picker {
        right: 12px;
        bottom: 62px;
    }
}

.emoji-picker.open {
    display: flex;
}

.emoji-picker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.emoji-picker-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.emoji-picker-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 8px;
    gap: 4px;
}

.emoji-picker-item {
    cursor: pointer;
    font-size: 20px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background-color 0.15s;
}

.emoji-picker-item:hover {
    background-color: var(--border);
}

.chat-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background-color: rgba(var(--text-rgb), 0.02);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.chat-header-info p {
    font-size: 12px;
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 6px;
}

.chat-header-info p::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--success);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-bubble {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13.5px;
    line-height: 1.4;
    word-break: break-word;
}

.chat-bubble.user {
    background-color: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-bubble.support {
    background-color: var(--surface-secondary);
    color: var(--text);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    border: 1px solid var(--border);
}

.chat-bubble img {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 6px;
    display: block;
}

.chat-input-area {
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: rgba(var(--text-rgb), 0.01);
}

.chat-input-area textarea {
    flex: 1;
    padding: 8px 12px;
    background-color: var(--surface-secondary);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 8px;
    outline: none;
    resize: none;
    height: 38px;
    font-family: inherit;
    font-size: 13.5px;
}

.chat-welcome-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 30px;
    text-align: center;
}

.chat-welcome-screen h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.chat-welcome-screen p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 24px;
}

#typingIndicator {
    font-size: 12px;
    color: var(--text-secondary);
    padding: 8px 16px;
    font-style: italic;
}

@keyframes dotPulse {

    0%,
    20% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    80%,
    100% {
        opacity: 0;
    }
}

.typing-dots .dot {
    animation: dotPulse 1.5s infinite;
}

.typing-dots .dot:nth-child(2) {
    animation-delay: 0.3s;
}

.typing-dots .dot:nth-child(3) {
    animation-delay: 0.6s;
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--success);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 1100;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
    line-height: 1;
    padding: 0 2px;
}

.toast-close:hover {
    opacity: 1;
}

.blog-section {
    padding: 80px 0;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.blog-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--surface-secondary);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.article-featured-image {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 30px;
    background-color: var(--surface-secondary);
    border: 1px solid var(--border);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.blog-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, border-color 0.3s;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-meta {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-link {
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-view {
    max-width: 800px;
    margin: 60px auto 100px auto;
    background-color: rgba(var(--surface-rgb), 0.4);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.article-meta {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.article-title {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5e1;
}

.article-content h3 {
    color: var(--text);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
}

.article-content p {
    margin-bottom: 20px;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 30px;
    transition: color 0.2s;
}

.back-to-blog:hover {
    color: var(--text);
}

.blog-search-box {
    max-width: 500px;
    margin: 0 auto 30px;
}

.blog-search-input {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background-color: var(--surface);
    color: var(--text);
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.blog-search-input:focus {
    border-color: var(--primary);
}

.blog-search-input::placeholder {
    color: var(--text-secondary);
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination-pages {
    display: flex;
    gap: 6px;
    align-items: center;
}

.pagination-page,
.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background-color: var(--surface);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    cursor: pointer;
    font-weight: 500;
    box-sizing: border-box;
}

.pagination-page:hover,
.pagination-btn:hover {
    border-color: var(--primary);
    color: var(--text);
    background-color: var(--surface-secondary);
}

.pagination-page.active {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
    font-weight: 700;
    cursor: default;
    pointer-events: none;
}

.pagination-btn {
    gap: 6px;
    white-space: nowrap;
}

.share-buttons {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface-secondary);
    border: 1px solid var(--border);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    color: var(--text);
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.share-btn:hover {
    transform: translateY(-2px);
    border-color: currentColor;
}

.share-btn.twitter {
    color: #1DA1F2;
}

.share-btn.twitter:hover {
    background: rgba(29, 161, 242, 0.15);
    border-color: #1DA1F2;
}

.share-btn.facebook {
    color: #1877F2;
}

.share-btn.facebook:hover {
    background: rgba(24, 119, 242, 0.15);
    border-color: #1877F2;
}

.share-btn.linkedin {
    color: #0A66C2;
}

.share-btn.linkedin:hover {
    background: rgba(10, 102, 194, 0.15);
    border-color: #0A66C2;
}

.compare-section {
    padding: 60px 0;
}

.compare-table-container {
    overflow-x: auto;
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 600px;
}

.compare-table th,
.compare-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.compare-table th {
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
    background-color: var(--surface-secondary);
}

.compare-table td {
    font-size: 14px;
    color: var(--text-secondary);
}

.compare-table tr:hover {
    background-color: rgba(var(--text-rgb), 0.02);
}

.compare-table td.highlight-column {
    color: var(--text);
    font-weight: 600;
    background-color: rgba(139, 92, 246, 0.05);
}

.compare-table th.highlight-column-header {
    color: white;
    background-color: var(--primary);
    text-align: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.compare-table td.highlight-column-body {
    text-align: center;
    background-color: rgba(139, 92, 246, 0.08);
    color: white;
    font-weight: 600;
}

.check-icon {
    color: #10b981;
    font-weight: bold;
    font-size: 18px;
}

.cross-icon {
    color: #ef4444;
    font-weight: bold;
    font-size: 18px;
}

footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 13px;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content-calc {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease-out;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
    outline: none;
}

.feature-card,
.price-card,
.blog-card {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.feature-card:hover,
.blog-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3) !important;
}

.price-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4) !important;
}

.price-card.popular:hover {
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.25);
    border-color: rgba(249, 115, 22, 0.5) !important;
}

.glow-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), rgba(249, 115, 22, 0.3), transparent);
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.2);
    width: 80%;
    margin: 40px auto;
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--surface-secondary);
    transition: .3s;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary);
}

input:checked+.slider:before {
    transform: translateX(22px);
}

.browser-link {
    transition: color 0.2s, transform 0.2s;
}

.browser-link:hover {
    color: white !important;
    transform: translateY(-2px) scale(1.05);
}

.sim-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.sim-tab-btn {
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.sim-tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(139, 92, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    }
}

.update-banner {
    background: linear-gradient(135deg, var(--primary), #6c5ce7);
    color: #fff;
    text-align: center;
    padding: 12px 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1000;
    flex-wrap: wrap;
}

.update-banner.hidden {
    display: none;
}

.banner-dismiss {
    background: rgba(var(--text-rgb), 0.2);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
}

.banner-dismiss:hover {
    background: rgba(var(--text-rgb), 0.35);
    transform: scale(1.15);
}

.light-theme .update-banner {
    background: linear-gradient(135deg, var(--primary), #6c5ce7);
}

@keyframes chatSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width:768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 24px;
        background-color: rgba(var(--background-rgb), 0.95);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        z-index: 99;
        min-width: 200px;
        align-items: stretch;
        text-align: center;
        backdrop-filter: blur(16px);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links .lang-select {
        width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
    }

    .price-card.popular {
        transform: none;
    }

    .compare-table-container {
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .hero h1 {
        font-size: 32px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .blog-header h1 {
        font-size: 30px;
    }

    .article-title {
        font-size: 26px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .blog-snippets-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 30px;
    }

    .stat-section-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .trust-badge {
        min-width: 160px;
        padding: 12px 16px;
    }

    .chat-widget-container {
        width: calc(100% - 30px);
        right: 15px;
        bottom: 105px;
        height: 480px;
    }
}

@media (max-width:480px) {
    .hero h1 {
        font-size: 26px;
    }

    .stat-number {
        font-size: 24px;
    }
}

[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .nav-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-actions {
    justify-content: flex-start;
}

[dir="rtl"] .feature-card,
[dir="rtl"] .testi-card,
[dir="rtl"] .price-card,
[dir="rtl"] .blog-card {
    text-align: right;
}

[dir="rtl"] .faq-question {
    text-align: right;
}

[dir="rtl"] .faq-answer {
    text-align: right;
}

[dir="rtl"] .faq-toggle-icon {
    margin-left: 0;
    margin-right: auto;
}

[dir="rtl"] .chat-widget-button {
    right: 30px;
    left: auto;
}

[dir="rtl"] .chat-widget-container {
    right: 100px;
    left: auto;
}

[dir="rtl"] .share-buttons {
    justify-content: flex-start;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 200px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}


/* Live Chat Status Indicator */

/* Live Chat Status Indicator */
.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 5px;
    background-color: #808080;
}

.status-indicator.online {
    background-color: #10b981;
}

.cookie-btn {
    padding: 10px 22px;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.cookie-btn-accept {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.cookie-btn-accept:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-secondary);
}

.cookie-btn-decline:hover {
    background: var(--surface-secondary);
    color: var(--text);
}

[dir="rtl"] .back-to-blog {
    display: inline-block;
    margin-bottom: 20px;
}

[dir="rtl"] .testi-stars {
    direction: ltr;
    display: inline-block;
}

[dir="rtl"] .lang-select {
    text-align: right;
}

[dir="rtl"] .stat-section-grid {
    direction: ltr;
}

.contact-section {
    padding: 80px 0;
    min-height: 60vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.contact-card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.contact-card-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-card-response {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 5px;
}

.contact-link {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.contact-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.contact-card-btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--orange);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}

.contact-card-btn:hover {
    background: #e06b15;
}

.contact-social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
}

.contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: var(--surface-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: background 0.2s, border-color 0.2s;
}

.contact-social-link:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--orange);
    color: var(--orange);
}

@media (max-width:768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 25px 20px;
    }
}

/* Blog Promo Banner Styling */
.blog-promo-banner {
    margin: 50px 0 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(249, 115, 22, 0.12));
    border: 1px solid rgba(var(--text-rgb), 0.1);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.blog-promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.blog-promo-banner:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.blog-promo-banner.seo:hover,
.blog-promo-banner.marketing_ads:hover,
.blog-promo-banner.pricing_competitor:hover {
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.blog-promo-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin-bottom: 12px;
    z-index: 2;
}

.blog-promo-banner.seo .blog-promo-badge,
.blog-promo-banner.marketing_ads .blog-promo-badge,
.blog-promo-banner.pricing_competitor .blog-promo-badge {
    background: rgba(249, 115, 22, 0.2);
    color: var(--orange);
    border-color: rgba(249, 115, 22, 0.3);
}

.blog-promo-content {
    flex: 1;
    z-index: 2;
}

.blog-promo-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.blog-promo-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.blog-promo-action {
    z-index: 2;
    flex-shrink: 0;
}

.blog-promo-action .btn {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-promo-action .btn:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
        gap: 20px;
    }

    .blog-promo-action {
        width: 100%;
    }

    .blog-promo-action .btn {
        width: 100%;
        display: block;
    }
}

/* Live Chat Status Indicator */
.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 5px;
    background-color: #808080;
}

.status-indicator.online {
    background-color: #10b981;
}