/* ===============================================
   MODERN SMM BOOST WEBSITE - COMPLETE STYLESHEET
   =============================================== */

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

:root {
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --secondary-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --dark: #1f2937;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 250px;
    padding: 0.5rem 0;
    display: none;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1.5rem;
    color: var(--dark);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

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

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--dark);
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger-color);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    display: flex;
}

.btn-danger {
    background: var(--danger-color);
    color: var(--white);
}

/* Flash Messages */
.flash-message {
    padding: 1rem;
    margin-bottom: 0;
    text-align: center;
    font-weight: 500;
}

.flash-success {
    background: #d1fae5;
    color: #065f46;
    border-bottom: 2px solid var(--secondary-color);
}

.flash-error {
    background: #fee2e2;
    color: #991b1b;
    border-bottom: 2px solid var(--danger-color);
}

.flash-info {
    background: #dbeafe;
    color: #1e40af;
    border-bottom: 2px solid var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

/* Categories Section */
.categories {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

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

.category-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.category-icon i {
    font-size: 2rem;
    color: var(--white);
}

.category-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.category-card p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* Page Header */
.page-header {
    background: var(--light-gray);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Platforms/Products Grid */
.platforms, .products {
    padding: 4rem 0;
}

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

.platform-card, .product-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.platform-card:hover, .product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.platform-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.platform-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Product Details */
.product-details {
    padding: 4rem 0;
}

.product-details .container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

.product-description, .product-features {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features i {
    color: var(--secondary-color);
}

/* Packages Section */
.packages-section {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.packages-form .form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--gray);
    font-size: 0.875rem;
}

/* Package Options */
.packages-list {
    margin-bottom: 2rem;
}

.package-option {
    display: block;
    cursor: pointer;
    margin-bottom: 1rem;
}

.package-option input[type="radio"] {
    display: none;
}

.package-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.package-option input[type="radio"]:checked + .package-content {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
}

.package-option:hover .package-content {
    border-color: var(--primary-color);
}

.package-info h3 {
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.package-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.delivery-time {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
    font-weight: 500;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Cart Section */
.cart-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart i {
    font-size: 5rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

.cart-items h2 {
    margin-bottom: 2rem;
    color: var(--dark);
}

.cart-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.item-details h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.item-details p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.url-form {
    margin-top: 1rem;
}

.url-input-group {
    display: flex;
    gap: 0.5rem;
}

.url-input-group input {
    flex: 1;
}

.item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-remove {
    color: var(--danger-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-remove:hover {
    text-decoration: underline;
}

/* Cart Summary */
.cart-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.cart-summary h2 {
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-row.discount {
    color: var(--secondary-color);
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    border-bottom: none;
    padding-top: 1rem;
}

.remove-promo {
    margin-left: 0.5rem;
    color: var(--danger-color);
    font-size: 0.85rem;
}

.promo-form {
    margin: 1.5rem 0;
}

.promo-input-group {
    display: flex;
    gap: 0.5rem;
}

.promo-input-group input {
    flex: 1;
}

/* Checkout Section */
.checkout-section {
    padding: 4rem 0;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

.checkout-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
    border-bottom: none;
}

.login-prompt {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    gap: 1rem;
}

.payment-option {
    display: block;
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.payment-option input[type="radio"]:checked + .payment-content {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
}

.payment-content i {
    font-size: 2rem;
    color: var(--primary-color);
}

.secure-notice {
    text-align: center;
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Order Summary */
.order-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.summary-items {
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-item:last-child {
    border-bottom: none;
}

.item-info h4 {
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.item-info p {
    color: var(--gray);
    font-size: 0.85rem;
}

.summary-totals {
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

/* Payment Page */
.payment-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.payment-container {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.payment-container h1 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.payment-container .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0 2rem;
}

.card-element {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: var(--white);
    margin-bottom: 1rem;
}

.error-message {
    color: var(--danger-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    min-height: 20px;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s linear infinite;
}

.hidden {
    display: none;
}

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

/* Success Page */
.success-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.success-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon i {
    font-size: 4rem;
    color: var(--white);
}

.success-container h1 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.order-info {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    text-align: left;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.next-steps {
    text-align: left;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.next-steps i {
    color: var(--secondary-color);
}

/* Auth Pages */
.auth-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.auth-container {
    max-width: 450px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.auth-container h1 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.auth-container > p {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2rem;
}

.auth-form {
    margin-top: 2rem;
}

.auth-switch {
    text-align: center;
    margin-top: 2rem;
    color: var(--gray);
}

.auth-switch a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Dashboard */
.dashboard-section {
    padding: 4rem 0;
}

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

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-info h3 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.stat-info p {
    color: var(--gray);
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.dashboard-main {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-state i {
    font-size: 4rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.orders-list {
    margin-bottom: 2rem;
}

.order-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

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

.order-date {
    color: var(--gray);
    font-size: 0.9rem;
}

.badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-pending {
    background: #fef3c7;
    color: #92400e;
}

.badge-processing {
    background: #dbeafe;
    color: #1e40af;
}

.badge-completed {
    background: #d1fae5;
    color: #065f46;
}

.badge-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.badge-paid {
    background: #d1fae5;
    color: #065f46;
}

.badge-unpaid {
    background: #fee2e2;
    color: #991b1b;
}

.order-body {
    margin-bottom: 1rem;
}

.order-footer {
    display: flex;
    justify-content: flex-end;
}

/* Dashboard Sidebar */
.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.profile-card, .quick-links {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.profile-card h3, .quick-links h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.profile-card p {
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.quick-links ul {
    list-style: none;
}

.quick-links li {
    margin-bottom: 0.5rem;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem;
    border-radius: var(--radius);
    transition: var(--transition);
    color: var(--dark);
}

.quick-links a:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

/* Orders Page */
.orders-section {
    padding: 4rem 0;
}

.orders-table-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow-x: auto;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table thead {
    background: var(--light-gray);
}

.orders-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--dark);
}

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

.orders-table tbody tr:hover {
    background: var(--light-gray);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-link {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.pagination-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination-link.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Order Details Page */
.order-details-section {
    padding: 4rem 0;
}

.order-info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--radius);
}

.info-item label {
    display: block;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.order-items-list {
    margin: 2rem 0;
}

.order-item-card {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.order-totals {
    max-width: 400px;
    margin-left: auto;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: var(--radius);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-hover);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 968px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
        padding: 1rem 0;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid var(--border-color);
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        display: block;
        padding: 1rem 1.5rem;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--border-color);
        background: var(--light-gray);
        padding: 0;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .header-actions .btn-outline {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .cart-layout,
    .checkout-layout,
    .dashboard-content,
    .product-details .container {
        grid-template-columns: 1fr;
    }

    .cart-summary,
    .order-summary,
    .packages-section {
        position: static;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .categories-grid,
    .platforms-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        flex-direction: column;
    }
    
    .item-actions {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
}

/* ===============================================
   NEW CONVERSION-OPTIMIZED STYLES
   =============================================== */

/* Trust Badge Top */
.trust-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.trust-badge-top i {
    font-size: 1.1rem;
}

/* Enhanced Hero */
.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1f2937 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.hero-stats .stat span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Social Proof Banner */
.social-proof-banner {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
}

.proof-ticker {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    animation: ticker 80s linear infinite;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    will-change: transform;
}

/* Pause animation on hover for better UX */
.proof-ticker:hover {
    animation-play-state: paused;
}

.proof-ticker i {
    color: #10b981;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    font-size: 1rem;
}

.proof-ticker .separator {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    font-size: 1.2rem;
}

.proof-ticker strong {
    font-weight: 700;
}

/* Smooth infinite scrolling animation */
@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Enhanced Features */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.feature-icon i {
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-card {
    position: relative;
}

.feature-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

/* Testimonials Section */
.testimonials {
    background: var(--light-gray);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card .stars {
    color: #f59e0b;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
    font-size: 1rem;
}

.testimonial-author span {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
}

/* Enhanced How It Works */
.step-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.cta-box {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: var(--radius-lg);
}

.cta-guarantee {
    margin-top: 15px;
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-guarantee i {
    color: var(--secondary-color);
}

/* Guarantees Section */
.guarantees {
    padding: 80px 0;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.guarantee-card {
    text-align: center;
    padding: 30px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.guarantee-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.guarantee-icon i {
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.guarantee-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.guarantee-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #1f2937 0%, #6366f1 100%);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ffffff;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-secondary-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
}

.btn-secondary-outline:hover {
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.95;
}

.badge-item i {
    font-size: 1.5rem;
    color: #ffffff;
}

/* Enhanced Buttons */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn i {
    margin-right: 8px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-stats .stat strong {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .trust-badges {
        gap: 20px;
    }
}

/* ===============================================
   FAQ PAGE STYLES
   =============================================== */

.page-hero {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.faq-section {
    padding: 80px 0;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.faq-cat-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-cat-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.faq-cat-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-question h3 i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.faq-question > i {
    font-size: 1.2rem;
    color: var(--gray);
    transition: var(--transition);
}

.faq-item.active .faq-question > i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 2000px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer ul, .faq-answer ol {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    color: var(--gray);
    margin-bottom: 10px;
    line-height: 1.6;
}

.faq-answer strong {
    color: var(--dark);
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.comparison-column {
    padding: 20px;
    border-radius: var(--radius);
}

.comparison-column.good {
    background: #d1fae5;
    border: 2px solid #10b981;
}

.comparison-column.bad {
    background: #fee2e2;
    border: 2px solid #ef4444;
}

.comparison-column h4 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-column.good h4 i {
    color: #10b981;
}

.comparison-column.bad h4 i {
    color: #ef4444;
}

.comparison-column ul {
    list-style: none;
    padding: 0;
}

.comparison-column li {
    padding: 8px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.why-us-item {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--radius);
}

.why-us-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.why-us-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.why-us-item p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

.faq-cta {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 60px;
}

.faq-cta h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.faq-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .faq-categories {
        flex-direction: column;
    }

    .faq-cat-btn {
        width: 100%;
        justify-content: center;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================================
   PRODUCT PAGE ENHANCEMENTS
   =============================================== */

.product-hero {
    padding: 40px 0;
    background: linear-gradient(135deg, #f3f4f6 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
    margin-top: 20px;
}

.product-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.product-tagline {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 25px;
}

.product-trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    box-shadow: var(--shadow);
}

.trust-badge i {
    color: var(--secondary-color);
}

.product-details {
    padding: 60px 0;
}

.product-details .container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
}

.product-value h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

.value-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
}

.product-benefits {
    margin: 40px 0;
}

.product-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.product-features {
    margin: 40px 0;
}

.product-features h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
}

.features-list li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.how-it-works-product {
    margin: 40px 0;
    padding: 30px;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
}

.how-it-works-product h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.steps-mini {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.step-mini {
    flex: 1;
    text-align: center;
}

.step-mini-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-mini p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

.step-mini-arrow {
    color: var(--gray);
    font-size: 1.5rem;
}

.product-guarantee {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: var(--radius-lg);
    margin-top: 40px;
}

/* Product page guarantee badge - green 80x80px square */
.product-guarantee .guarantee-badge {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    max-width: 80px !important;
    background: linear-gradient(135deg, #10b981, #059669) !important;
    border-radius: 12px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 !important;
    gap: 0 !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.product-guarantee .guarantee-badge i {
    font-size: 2.5rem;
    color: white;
}

.guarantee-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.guarantee-content p {
    color: var(--dark);
    line-height: 1.6;
    margin: 0;
}

/* Packages Section */
.packages-section {
    position: sticky;
    top: 100px;
}

.packages-header {
    margin-bottom: 30px;
}

.packages-header h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.urgency-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 12px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.urgency-banner i {
    color: #f59e0b;
    font-size: 1.2rem;
}

.form-help {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    margin-top: 8px;
}

.form-help i {
    color: var(--secondary-color);
}

.packages-list {
    margin: 25px 0;
}

.package-option {
    position: relative;
    display: block;
    cursor: pointer;
    margin-bottom: 15px;
}

.package-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.package-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.package-option:hover .package-content {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.package-option input:checked ~ .package-content {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    box-shadow: var(--shadow-lg);
}

.package-option.most-popular .package-content {
    border-color: var(--primary-color);
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

.package-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.package-quantity {
    font-size: 1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-quantity i {
    color: var(--secondary-color);
}

.delivery-time {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.delivery-label {
    font-weight: 600;
    color: var(--text-color);
}

.delivery-value {
    color: var(--secondary-color);
    font-weight: 500;
}

.delivery-sep {
    color: var(--gray);
    margin: 0 4px;
}

.package-features-mini {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.package-features-mini span {
    font-size: 0.75rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-features-mini i {
    color: var(--primary-color);
}

.package-price-area {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.package-regular-price {
    font-size: 1rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.package-regular-price del {
    text-decoration: line-through;
    opacity: 0.6;
}

.package-savings {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 5px;
}

.price-per-unit {
    font-size: 0.85rem;
    color: var(--gray);
}

.savings-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 8px;
}

.order-summary {
    background: var(--light-gray);
    padding: 20px;
    border-radius: var(--radius);
    margin: 25px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.selected-price {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.summary-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray);
}

.summary-features i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.pulse-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(99, 102, 241, 0.5); }
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray);
}

.security-badge i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

@media (max-width: 968px) {
    .product-details .container {
        grid-template-columns: 1fr;
    }

    .packages-section {
        position: static;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .steps-mini {
        flex-direction: column;
    }

    .step-mini-arrow {
        transform: rotate(90deg);
    }

    .package-content {
        flex-direction: column;
    }

    .package-price-area {
        text-align: left;
    }
}

/* ===============================================
   LEGAL PAGES & CONTACT PAGE STYLES
   =============================================== */

.legal-content {
    padding: 60px 0;
}

.legal-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.legal-box .intro-text {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light-gray);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius);
}

.legal-box h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.legal-box h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin: 25px 0 15px 0;
}

.legal-box p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--gray);
}

.legal-box ul, .legal-box ol {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.legal-box li {
    margin-bottom: 10px;
    color: var(--gray);
}

.legal-box a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-acceptance {
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
}

.legal-acceptance p {
    margin: 0;
    color: var(--dark);
    font-size: 1.05rem;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-form-box, .contact-info-box {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-box h2, .contact-info-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-form-box p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-method:last-of-type {
    border-bottom: none;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-details p {
    margin-bottom: 5px;
    color: var(--gray);
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.response-time {
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
}

.trust-banner {
    display: flex;
    gap: 15px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 25px;
}

.trust-banner i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.trust-banner strong {
    display: block;
    color: var(--dark);
    margin-bottom: 5px;
}

.trust-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Quick Help Section */
.quick-help {
    padding: 60px 0;
    background: var(--light-gray);
}

.quick-help h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.help-card {
    background: white;
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.help-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.help-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.help-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.help-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

/* About Page */
.about-content {
    padding: 60px 0;
}

.about-section {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.about-section .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.mission-section, .values-section, .stats-section {
    background: var(--light-gray);
    padding: 50px;
    border-radius: var(--radius-lg);
}

.mission-grid, .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.mission-card, .value-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
}

.mission-card i, .value-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mission-card h3, .value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.mission-card p, .value-card p {
    font-size: 0.95rem;
    color: var(--gray);
    margin: 0;
}

.why-us-list {
    margin-top: 30px;
}

.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--radius);
}

.why-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.why-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.why-item p {
    font-size: 0.95rem;
    color: var(--gray);
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-box {
    text-align: center;
    background: white;
    padding: 40px 20px;
    border-radius: var(--radius);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
}

.about-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: var(--radius-lg);
    color: white;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* 404 Error Page */
.error-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.error-content {
    text-align: center;
    max-width: 600px;
}

.error-icon {
    font-size: 6rem;
    color: var(--warning-color);
    margin-bottom: 20px;
}

.error-content h1 {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
}

.error-content h2 {
    font-size: 2rem;
    margin: 20px 0 15px;
    color: var(--dark);
}

.error-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.popular-links {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.popular-links h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.links-grid a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: var(--radius);
    color: var(--dark);
    transition: var(--transition);
}

.links-grid a:hover {
    background: var(--primary-color);
    color: white;
}

.links-grid a i {
    font-size: 1.2rem;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-text a {
    color: #93c5fd;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-buttons .btn {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }

    .error-content h1 {
        font-size: 5rem;
    }

    .error-actions {
        flex-direction: column;
    }

    .legal-box {
        padding: 30px 20px;
    }
}

/* ===============================================
   COMPREHENSIVE MOBILE FIXES
   =============================================== */

/* Small Tablets and Large Phones */
@media (max-width: 768px) {
    /* Typography */
    body {
        font-size: 15px;
    }
    
    h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    /* Header adjustments */
    .logo span {
        font-size: 0.9rem;
    }
    
    .header-content {
        padding: 0.75rem 0;
    }
    
    /* Hero section */
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .trust-badge-top {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding-top: 20px;
    }
    
    .hero-stats .stat strong {
        font-size: 1.3rem;
    }
    
    /* Social proof ticker */
    .social-proof-banner {
        padding: 10px 0;
    }
    
    .proof-ticker {
        font-size: 0.85rem;
        gap: 20px;
    }
    
    /* Sections */
    .features,
    .testimonials,
    .guarantees,
    .categories,
    .how-it-works {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Feature cards */
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .feature-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 20px;
        min-height: auto;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    /* Guarantee cards */
    .guarantee-card {
        padding: 20px;
    }
    
    .guarantee-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .guarantee-card h3 {
        font-size: 1.1rem;
    }
    
    /* Categories and Products */
    .category-card,
    .platform-card,
    .product-card {
        padding: 1.5rem;
    }
    
    .category-icon,
    .platform-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    /* Buttons */
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* CTA Section */
    .final-cta {
        padding: 50px 0;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .final-cta p {
        font-size: 1rem;
    }
    
    .trust-badges {
        gap: 20px;
    }
    
    .badge-item {
        font-size: 0.85rem;
    }
    
    /* Grids */
    .categories-grid,
    .platforms-grid,
    .products-grid {
        gap: 15px;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    /* Base typography */
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* Header */
    .logo {
        flex-shrink: 0;
    }
    
    .logo span {
        font-size: 0.85rem;
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .logo i {
        font-size: 1rem;
    }
    
    .mobile-menu-toggle {
        font-size: 1.3rem;
    }
    
    /* Hero */
    .hero {
        padding: 40px 0 30px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .trust-badge-top {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    
    .hero-stats .stat strong {
        font-size: 1.2rem;
    }
    
    .hero-stats .stat span {
        font-size: 0.8rem;
    }
    
    /* Proof ticker */
    .proof-ticker {
        font-size: 0.75rem;
        gap: 15px;
    }
    
    /* Sections */
    .features,
    .testimonials,
    .guarantees,
    .categories {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    /* Cards */
    .feature-card,
    .testimonial-card,
    .guarantee-card,
    .category-card,
    .platform-card,
    .product-card {
        padding: 1.2rem;
    }
    
    .feature-card h3,
    .guarantee-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .feature-card p,
    .guarantee-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Icons */
    .feature-icon,
    .guarantee-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    /* Buttons */
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        width: 100%;
    }
    
    .btn-lg {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* CTA */
    .final-cta {
        padding: 40px 0;
    }
    
    .final-cta h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .final-cta p {
        font-size: 0.9rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .badge-item {
        font-size: 0.8rem;
        justify-content: center;
    }
    
    /* Grids */
    .features-grid,
    .testimonials-grid,
    .guarantees-grid,
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Forms */
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-control {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    label {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    
    /* Tables */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        font-size: 0.8rem;
    }
    
    /* Fix overflow issues */
    * {
        max-width: 100%;
        word-wrap: break-word;
    }
    
    img {
        height: auto;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    .main-content {
        overflow-x: hidden;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
    
    .hero-content h1 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .logo span {
        max-width: 120px;
    }
}

/* Landscape mobile fixes */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 30px 0;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .sections {
        padding: 40px 0;
    }
}

/* Ensure no content overflows */
.main-content {
    overflow-x: hidden;
    width: 100%;
}

/* Fix for buttons that may overflow */
@media (max-width: 480px) {
    .header-actions {
        gap: 0.3rem;
    }
    
    .btn-outline {
        padding: 0.4rem 0.7rem;
        font-size: 0.75rem;
    }
    
    .btn-cart {
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
    }
    
    .cart-badge {
        font-size: 0.7rem;
        min-width: 16px;
        height: 16px;
        line-height: 16px;
    }
}

/* ===============================================
   HOMEPAGE REDESIGN - MODERN VISUAL LAYOUT
   =============================================== */

/* New Hero Home Section */
.hero-home {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--white);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--white);
    bottom: -80px;
    left: -80px;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--white);
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-home-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    color: var(--white);
}

.trust-badge-floating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-home-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.highlight-text {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-home-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f9fafb;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

.hero-trust-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.95;
}

.trust-item-small i {
    font-size: 1.1rem;
}

/* Hero Right Side - Visual Card */
.hero-right {
    position: relative;
}

.hero-visual-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.stats-display {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.stat-item-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item-hero:hover {
    transform: translateX(5px);
    background: #e5e7eb;
}

.stat-icon-hero {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-content-hero strong {
    display: block;
    font-size: 1.8rem;
    color: var(--dark);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-content-hero span {
    color: var(--gray);
    font-size: 0.9rem;
}

.platforms-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.platform-icon-preview {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.platform-icon-preview:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

/* Enhanced Social Proof Banner */
.social-proof-banner {
    background: #fbbf24;
    color: var(--dark);
    padding: 1rem 0;
    overflow: hidden;
    border-top: 3px solid #f59e0b;
    border-bottom: 3px solid #f59e0b;
}

.proof-ticker {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: ticker 60s linear infinite;
    white-space: nowrap;
    font-weight: 600;
}

.proof-ticker i {
    color: #10b981;
    font-size: 1.1rem;
}

.separator {
    color: var(--dark);
    opacity: 0.5;
    font-weight: 700;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Enhanced Features Section */
.features {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Testimonials */
.testimonials {
    padding: 5rem 0;
    background: var(--light-gray);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
    font-weight: 700;
}

.testimonial-author span {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Enhanced Categories Section */
.categories {
    padding: 5rem 0;
    background: var(--white);
}

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

.category-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
    border-color: var(--primary-color);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
    font-weight: 700;
}

.category-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-link {
    gap: 0.75rem;
}

/* Enhanced How It Works */
.how-it-works {
    padding: 5rem 0;
    background: var(--light-gray);
}

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

.step-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.15);
    border-color: var(--primary-color);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.step-card p {
    color: var(--gray);
    line-height: 1.7;
}

.cta-box {
    text-align: center;
    margin-top: 3rem;
}

.cta-guarantee {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--gray);
}

/* Enhanced Guarantees Section */
.guarantees {
    padding: 5rem 0;
    background: var(--white);
}

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

.guarantee-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
}

.guarantee-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.guarantee-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.badge-item i {
    font-size: 1.5rem;
}

/* Mobile Responsiveness for Homepage */
@media (max-width: 992px) {
    .hero-home-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-right {
        order: -1;
    }
    
    .hero-home-title {
        font-size: 2.5rem;
    }
    
    .platforms-preview {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-home {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .hero-home-title {
        font-size: 2rem;
    }
    
    .hero-home-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust-row {
        justify-content: center;
        gap: 1rem;
    }
    
    .features-grid,
    .testimonials-grid,
    .categories-grid,
    .steps-grid,
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .stat-item-hero {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-home-title {
        font-size: 1.75rem;
    }
    
    .trust-badge-floating {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-visual-card {
        padding: 1.5rem;
    }
    
    .platforms-preview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-icon-preview {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ===============================================
   ENHANCED MOBILE OPTIMIZATION
   =============================================== */

/* Better mobile header */
@media (max-width: 768px) {
    .header-content {
        padding: 0.75rem 0;
    }
    
    .logo a {
        font-size: 1.2rem;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        background: var(--light-gray);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
}

/* Improved mobile hero */
@media (max-width: 768px) {
    .hero-home {
        padding: 2.5rem 0;
    }
    
    .hero-visual-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-home-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-home-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .trust-badge-floating {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .stats-display {
        gap: 1rem;
    }
    
    .stat-content-hero strong {
        font-size: 1.5rem;
    }
    
    .platforms-preview {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .platform-icon-preview {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .hero-home-title {
        font-size: 1.5rem;
    }
    
    .hero-home-subtitle {
        font-size: 0.95rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-trust-row {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .stat-content-hero strong {
        font-size: 1.3rem;
    }
    
    .stat-content-hero span {
        font-size: 0.85rem;
    }
}

/* Better mobile sections */
@media (max-width: 768px) {
    .features,
    .testimonials,
    .categories,
    .how-it-works,
    .guarantees,
    .final-cta {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-card,
    .testimonial-card,
    .category-card,
    .step-card,
    .guarantee-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon,
    .category-icon,
    .guarantee-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
}

/* Mobile-friendly forms */
@media (max-width: 768px) {
    .form-control,
    input[type="text"],
    input[type="email"],
    input[type="url"],
    input[type="password"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.875rem;
    }
    
    .btn {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
        min-height: 44px; /* iOS touch target */
    }
}

/* Better mobile product page */
@media (max-width: 768px) {
    .package-option {
        padding: 1.5rem;
    }
    
    .package-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .package-price-area {
        align-items: flex-start;
    }
}

/* Mobile-friendly tables */
@media (max-width: 768px) {
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
        font-size: 0.85rem;
    }
    
    th, td {
        padding: 0.75rem 0.5rem;
        white-space: nowrap;
    }
}

/* Better mobile navigation */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.mobile-nav-overlay.active {
    display: block;
}

/* Smooth scrolling for mobile */
html {
    scroll-behavior: smooth;
}

/* Better mobile breadcrumbs */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.8rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
}

/* Live Analytics Badge Styles */
.live-analytics-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-badge 2s ease-in-out infinite;
}

.live-analytics-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.live-indicator {
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.live-count {
    font-size: 1.1rem;
}

/* Mobile adjustments for live badge */
@media (max-width: 768px) {
    .live-analytics-badge {
        bottom: 15px;
        right: 15px;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .live-count {
        font-size: 1rem;
    }
}

/* Stats Panel Styles */
.stats-panel {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-box {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.1);
}

.stat-box-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: var(--white);
}

.stat-box-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.stat-box-label {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile stats grid */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-box {
        padding: 1rem;
    }
    
    .stat-box-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .stat-box-value {
        font-size: 1.5rem;
    }
    
    .stat-box-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
