/* Styling for BibleForAI - Boost Your Social Media! */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #07080a;
    --bg-card: rgba(18, 20, 26, 0.7);
    --bg-card-hover: rgba(26, 29, 38, 0.85);
    --bg-modal: rgba(10, 11, 15, 0.95);
    --primary: #8b5cf6; /* Electric Purple */
    --primary-hover: #7c3aed;
    --primary-glow: rgba(139, 92, 246, 0.35);
    --accent: #06b6d4; /* Neon Cyan */
    --accent-glow: rgba(6, 182, 212, 0.3);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(139, 92, 246, 0.4);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.15) 0%, rgba(7, 8, 10, 0) 50%),
                radial-gradient(circle at 0% 100%, rgba(6, 182, 212, 0.08) 0%, rgba(7, 8, 10, 0) 40%),
                var(--bg-dark);
    background-attachment: fixed;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Header styling */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 8, 10, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(7, 8, 10, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-container nav {
    margin: 0 auto;
}

.logo-group {
    display: flex;
    flex-direction: column;
    margin-right: 3.5rem;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 40%, var(--primary) 70%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: -2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: #ffffff;
    text-shadow: 0 0 10px var(--primary-glow);
}

.btn-icon-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 0.6rem;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--primary-glow);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-left: 0.5rem;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

.btn-icon .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

/* User profile tag */
.user-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.user-profile:hover {
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.1);
}

.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Main Container Section */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 7rem 2rem 4rem 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

/* Platform Quick Links */
.platform-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover, .filter-btn.active {
    color: #ffffff;
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.filter-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, var(--primary-glow) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.product-card:hover::before {
    opacity: 1;
}

.product-info {
    position: relative;
    z-index: 1;
}

.product-cat {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.24rem; /* 1.4 * 0.8 * 2 = 2.24rem to keep cards perfectly uniform */
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: #fbbf24; /* Gold */
    margin-bottom: 1.5rem;
}

.product-rating span {
    color: var(--text-muted);
}

.product-footer {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.product-price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

/* Review Section */
.reviews-section {
    margin-bottom: 6rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

.section-title span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reviews-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 350px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    scroll-snap-align: start;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 600;
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.review-product {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto 6rem auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: var(--transition);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--border-hover);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.25rem;
}

/* Footer Section */
footer {
    border-top: 1px solid var(--border);
    background: rgba(10, 11, 15, 0.95);
    padding: 4rem 2rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ffffff 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 350px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: var(--bg-modal);
    border: 1px solid var(--border);
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: #ffffff;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Form Styling */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-input, select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.form-input:focus, select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

.invalid-feedback {
    color: #ef4444; /* Red */
    font-size: 0.8rem;
    display: none;
}

.form-input.is-invalid {
    border-color: #ef4444;
}

.form-input.is-invalid + .invalid-feedback {
    display: block;
}

.price-display-box {
    background: rgba(139, 92, 246, 0.08);
    border: 1px dashed var(--primary);
    padding: 1.25rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-display-label {
    font-weight: 600;
}

.price-display-val {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
}

/* Dashboard Order History */
.orders-table-container {
    overflow-x: auto;
    width: 100%;
    margin-top: 1rem;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: left;
}

.orders-table th, .orders-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.orders-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-muted);
}

.status-badge {
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.status-badge.completed {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

/* Success Overlay Alert */
.alert-popup {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #10b981;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    z-index: 2000;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
}

.alert-popup.active {
    transform: translateY(0);
    opacity: 1;
}

/* Checkout Button loading */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Filter tabs styling */
.filter-tabs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border, rgba(255, 255, 255, 0.07));
    padding-bottom: 1rem;
}

.filter-tab {
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.filter-tab:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.filter-tab.active {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* Pagination styling */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    width: 100%;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    border: 1px solid var(--border);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    min-width: 2.5rem;
    text-align: center;
}

.pagination-btn:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.2);
}

.pagination-btn.active {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Intro & SMM Growth Solution Story Section */
.intro-section {
    padding: 5rem 0 3rem 0;
    position: relative;
}

.segment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.segment-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    transition: var(--transition);
    cursor: pointer;
}

.segment-card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.12);
}

.segment-icon {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
}

.segment-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.segment-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    margin-bottom: 4rem;
}

.stat-card {
    text-align: center;
    padding: 1rem;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Trust cards */
.trust-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.trust-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
}

.trust-card:hover {
    border-style: solid;
    border-color: var(--accent);
    background: rgba(6, 182, 212, 0.02);
}

.trust-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.15);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: bold;
}

.trust-card-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Promo Banners Grid */
.promo-banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 4rem;
}

.promo-card {
    border-radius: 16px;
    padding: 2.25rem 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Gradients for each brand type */
.promo-insta {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.08) 0%, rgba(240, 94, 35, 0.08) 100%),
                radial-gradient(circle at 100% 0%, rgba(225, 48, 108, 0.15) 0%, transparent 60%),
                var(--bg-card);
}
.promo-insta:hover {
    border-color: rgba(225, 48, 108, 0.35);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.12);
}

.promo-youtube {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05) 0%, rgba(31, 31, 31, 0.1) 100%),
                radial-gradient(circle at 100% 0%, rgba(255, 0, 0, 0.12) 0%, transparent 60%),
                var(--bg-card);
}
.promo-youtube:hover {
    border-color: rgba(255, 0, 0, 0.35);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.1);
}

.promo-combo {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%),
                radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
                var(--bg-card);
}
.promo-combo:hover {
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.12);
}

.promo-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    width: max-content;
}

.promo-insta .promo-tag {
    background: rgba(225, 48, 108, 0.12);
    color: #e1306c;
}

.promo-youtube .promo-tag {
    background: rgba(255, 0, 0, 0.12);
    color: #ff0000;
}

.promo-combo .promo-tag {
    background: rgba(6, 182, 212, 0.12);
    color: #00f0ff;
}

.promo-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.promo-text {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.promo-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: max-content;
}

.promo-btn:hover {
    background: var(--text-main);
    color: var(--bg-dark);
    border-color: var(--text-main);
}

/* Brand logo icon markers in promo header */
.promo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.promo-header .promo-tag {
    margin-bottom: 0;
}

.brand-icons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.promo-insta .brand-icons {
    color: #e1306c;
}

.promo-youtube .brand-icons {
    color: #ff0000;
}

.promo-combo .brand-icons {
    color: #00f0ff;
}

.brand-icons svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Stats Layout with Graph */
.stats-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .stats-wrapper {
        grid-template-columns: 1fr 1.2fr;
    }
}

/* Stats Section Header */
.stats-header {
    text-align: center;
    margin-top: 6rem;
    margin-bottom: 3.5rem;
    padding: 0 1rem;
}

.stats-subtitle-badge {
    display: inline-block;
    padding: 0.45rem 1rem;
    background: rgba(99, 102, 241, 0.08);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.05);
}

.stats-main-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 40%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* SMM Growth Chart Card */
.growth-chart-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.growth-chart-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.06);
}

/* Card Header */
.chart-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    z-index: 2;
}

.chart-header-left {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.chart-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-icon-box svg {
    width: 22px;
    height: 22px;
}

.chart-header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chart-order-lbl {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-main);
}

.chart-since-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Chart Container & Accent Arrow */
.chart-container {
    position: relative;
    width: 100%;
}

.chart-accent-arrow {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 150px;
    height: 150px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.45;
    transform: rotate(-3deg);
}

.chart-accent-arrow svg {
    width: 100%;
    height: 100%;
}

/* Bar Chart Wrapper & Grid Lines */
.bar-chart-wrapper {
    position: relative;
    height: 240px;
    margin-top: 3.5rem; /* space for absolute bubble badge */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.grid-lines-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%; /* align lines with bars height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.grid-line {
    width: 100%;
    height: 1px;
    background: var(--border);
    opacity: 0.1;
}

/* Bars */
.bars-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 180px;
    width: 100%;
    padding: 0 10px;
}

.bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 12%;
    height: 100%;
    justify-content: flex-end;
}

.bar-value-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px 6px 0 0;
}

.bar-fill {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px 6px 0 0;
    transition: height 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Active Highlighted Column */
.bar-col.active {
    position: relative;
}

.bar-fill.active {
    background: linear-gradient(180deg, #6366f1 0%, #a855f7 100%);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}

.bar-label {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.bar-label.active {
    color: #a855f7;
    font-weight: 700;
}

/* Speech Bubble Badge */
.repurchase-bubble-badge {
    position: absolute;
    bottom: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #ffffff;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    z-index: 10;
    animation: bounce-badge 2.5s infinite ease-in-out;
}

.repurchase-bubble-badge .bubble-arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #a855f7;
}

@keyframes bounce-badge {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-6px);
    }
}

/* Mobile Navigation Hamburger Drawer */
@media (max-width: 868px) {
    .logo-group {
        margin-right: 1.5rem;
    }

    .menu-toggle {
        display: flex;
    }
    
    .header-container nav {
        position: fixed;
        top: 0;
        right: -100%; /* Slide out of screen */
        width: 280px;
        height: 100vh;
        background: rgba(10, 11, 14, 0.96);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--border);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        padding: 6rem 2rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        display: block;
        margin: 0;
    }

    .header-container nav.active {
        right: 0; /* Slide in */
    }

    .nav-links {
        flex-direction: column;
        gap: 1.75rem;
        align-items: flex-start;
    }

    .nav-links a {
        font-size: 1.15rem;
        display: block;
        padding: 0.5rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    /* Transform hamburger into X when active */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Unified left hamburger/service drawer */
.header-container {
    justify-content: flex-start;
    gap: 1rem;
}
.logo-group {
    margin-right: auto;
}
.menu-toggle {
    display: flex !important;
    order: -1;
    margin-left: 0 !important;
    margin-right: 0.85rem;
    z-index: 260;
}
.header-container nav {
    position: fixed !important;
    top: 0 !important;
    left: -320px !important;
    right: auto !important;
    width: 300px !important;
    max-width: 86vw;
    height: 100vh !important;
    z-index: 1000;
    background: rgba(10, 11, 14, 0.96);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--border);
    border-left: 0 !important;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    padding: 5rem 1.25rem 2rem !important;
    transition: left 0.3s ease !important;
    display: block !important;
    overflow-y: auto;
}
.header-container nav.active {
    left: 0 !important;
    right: auto !important;
}
.unified-service-menu {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.15rem !important;
}
.unified-service-menu .mobile-menu-heading {
    margin: 1rem 0 0.35rem;
    padding: 0.2rem 0.35rem;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
}
.unified-service-menu a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem 0.35rem;
    border-radius: 10px;
    font-size: 0.9rem;
}
.unified-service-menu a:hover {
    background: rgba(255,255,255,0.06);
}
.unified-service-menu i {
    width: 1.1rem;
    color: var(--primary);
    text-align: center;
}

