/* Frontend CSS — Public Site Styles */
[x-cloak] { display: none !important; }
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── ICON ALIGNMENT FIX ─────────────────────── */
i.fas, i.fab, i.far, i.fal, i.fad,
.fa, .fas, .fab, .far, .fal, .fad {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
}

/* ── DESIGN TOKENS ─────────────────────────────── */
/* Note: Theme colors are loaded from /css/theme.css and override these defaults */
:root {
    /* Theme variable fallbacks (overridden by theme.css) */
    --color-primary: #059669;
    --color-primary-hover: #047857;
    --color-secondary: #7c3aed;
    --color-success: #16a34a;
    --color-danger: #dc2626;
    --color-warning: #d97706;
    --color-info: #2563eb;
    --color-text: #111827;
    --color-text-muted: #6b7280;
    --color-bg: #ffffff;
    --color-bg-alt: #f9fafb;
    --color-border: #e5e7eb;
    --color-header-bg: #ffffff;
    --color-footer-bg: #111827;
    --font-family: 'Inter', system-ui, sans-serif;
    --border-radius: 8px;

    /* Extended color variants */
    --color-primary-50: #eef2ff;
    --color-primary-100: #e0e7ff;
    --color-primary-200: #c7d2fe;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.2s ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

/* ── TOP BAR ─────────────────────────────────── */
.top-bar {
    background: var(--color-footer-bg);
    color: var(--color-gray-400);
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.top-bar-link:hover {
    color: #fff;
}
.top-bar-link i {
    font-size: 12px;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}
.top-bar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--color-gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.top-bar-social:hover {
    color: #fff;
}
.top-bar-social i {
    font-size: 14px;
}

/* ── SITE HEADER ─────────────────────────────── */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-gray-200);
    position: sticky;
    top: 0;
    z-index: 50;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.site-header.header-scrolled {
    border-bottom-color: var(--color-gray-200);
    box-shadow: var(--shadow-sm);
}
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray-600);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color var(--transition-fast);
}
.nav-link i {
    font-size: 13px;
    opacity: 0.7;
}
.nav-link:hover { color: var(--color-primary); }
.nav-link:hover i { opacity: 1; }
.nav-link.active { color: var(--color-primary); }
.nav-link.active i { opacity: 1; }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
}
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-gray-700);
    text-decoration: none;
    border-radius: 8px;
    transition: background var(--transition-fast), color var(--transition-fast);
}
.mobile-nav-link i {
    font-size: 14px;
    width: 20px;
    text-align: center;
    opacity: 0.6;
}
.mobile-nav-link:hover { background: var(--color-gray-50); color: var(--color-primary); }
.mobile-nav-link:hover i { opacity: 1; }
.mobile-nav-link.active { background: var(--color-primary-50); color: var(--color-primary); }
.mobile-nav-link.active i { opacity: 1; }

/* ── LEGACY NAVBAR (kept for compatibility) ───── */
.navbar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}
.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.navbar-logo {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
}
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}
.navbar-link {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.14s;
}
.navbar-link:hover { color: var(--color-primary); }
.navbar-link.active { color: var(--color-primary); }
.navbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: var(--color-primary);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: background 0.14s;
}
.navbar-cta:hover { background: var(--color-primary-hover); }

/* ── HERO ────────────────────────────────────── */
.hero {
    padding: 80px 24px;
    text-align: center;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
}
.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 16px;
    line-height: 1.1;
}
.hero-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin: 0 0 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── SECTIONS ────────────────────────────────── */
.section {
    padding: 80px 24px;
}
.section-alt {
    background: #f9fafb;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin: 0 0 16px;
}
.section-subtitle {
    font-size: 16px;
    color: #6b7280;
    text-align: center;
    margin: 0 0 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ── CARDS ───────────────────────────────────── */
.card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px;
}
.card-text {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* ── GRID ────────────────────────────────────── */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 768px) {
    .grid-3 { grid-template-columns: 1fr; }
}

/* ── BUTTONS ─────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: var(--color-primary);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.14s;
}
.btn-primary i { flex-shrink: 0; }
.btn-primary:hover { background: var(--color-primary-hover); }
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.14s, border-color 0.14s;
}
.btn-secondary i { flex-shrink: 0; }
.btn-secondary:hover { background: #f9fafb; border-color: #9ca3af; }

/* ── FOOTER ──────────────────────────────────── */
.footer {
    background: #111827;
    color: #9ca3af;
    padding: 48px 24px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
@media (max-width: 768px) {
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}
.footer-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px;
}
.footer-link {
    display: block;
    font-size: 13px;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.14s;
}
.footer-link:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 32px;
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
}

/* ── FORMS ───────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 14px; font-weight: 500; color: #374151; margin-bottom: 6px; }
.form-input {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    color: #111827;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.14s, box-shadow 0.14s;
}
.form-input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(79,70,229,0.1); }
.form-textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    color: #111827;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    outline: none;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.14s, box-shadow 0.14s;
}
.form-textarea:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(79,70,229,0.1); }
.form-select {
    width: 100%;
    padding: 10px 36px 10px 14px;
    font-size: 14px;
    color: #111827;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236b7280'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E") no-repeat right 12px center / 18px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.14s, box-shadow 0.14s;
}
.form-select:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(79,70,229,0.1); }
.form-select:hover { border-color: #9ca3af; }
.form-error { margin-top: 4px; font-size: 12px; color: #dc2626; }
.form-hint { margin-top: 4px; font-size: 12px; color: #6b7280; }

/* ── DROPDOWN MENUS ─────────────────────────────── */
.dropdown { position: relative; display: inline-block; }
.dropdown-toggle { cursor: pointer; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 6px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.15s ease;
}
.dropdown.open .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    transition: background 0.12s;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}
.dropdown-item:hover { background: #f3f4f6; }
.dropdown-item-danger { color: #dc2626; }
.dropdown-item-danger:hover { background: #fef2f2; }
.dropdown-divider { height: 1px; background: #e5e7eb; margin: 6px 0; }

/* ── BADGES ─────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}
.badge-success { background: #dcfce7; color: #166534; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-warning { background: #fef9c3; color: #854d0e; }
.badge-info { background: #dbeafe; color: #1e40af; }
.badge-secondary { background: #f3f4f6; color: #6b7280; }

/* ── CMS CONTENT ─────────────────────────────── */
.content {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}
.content h1 { font-size: 32px; font-weight: 700; color: #111827; margin: 32px 0 16px; }
.content h2 { font-size: 24px; font-weight: 600; color: #111827; margin: 28px 0 12px; }
.content h3 { font-size: 20px; font-weight: 600; color: #111827; margin: 24px 0 10px; }
.content p { margin: 0 0 16px; }
.content a { color: var(--color-primary); text-decoration: underline; }
.content a:hover { color: var(--color-primary-hover); }
.content ul, .content ol { margin: 0 0 16px; padding-left: 24px; }
.content li { margin-bottom: 8px; }
.content img { max-width: 100%; height: auto; border-radius: 8px; margin: 16px 0; }
.content blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: 16px;
    margin: 16px 0;
    color: var(--color-text-muted);
    font-style: italic;
}

/* ── TOAST ───────────────────────────────────── */
.toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); min-width: 280px; max-width: 400px; pointer-events: auto; }
.toast-success { background: var(--color-success); color: #fff; }
.toast-error   { background: var(--color-danger); color: #fff; }
.toast-info    { background: var(--color-info); color: #fff; }
.toast-warning { background: var(--color-warning); color: #fff; }

/* ── FOOTER ─────────────────────────────────── */
.site-footer {
    background: var(--color-gray-900);
    color: var(--color-gray-400);
    border-top: 1px solid var(--color-gray-800);
}
.footer-main {
    padding: 64px 0 48px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 48px;
}
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; max-width: 400px; }
}
@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-main { padding: 48px 0 32px; }
    .footer-newsletter { grid-column: 1 / -1; }
}

/* Footer Brand */
.footer-brand { max-width: 320px; }
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 16px;
}
.footer-logo i {
    font-size: 24px;
    color: var(--color-primary);
}
.footer-logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}
.footer-tagline {
    color: var(--color-gray-500);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 8px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--color-gray-800);
    color: var(--color-gray-400);
    font-size: 15px;
    transition: all 0.2s;
}
.footer-social a:hover {
    background: var(--color-primary);
    color: #fff;
}

/* Footer Columns */
.footer-col {
    display: flex;
    flex-direction: column;
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}
.footer-col a {
    font-size: 14px;
    color: var(--color-gray-400);
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: #fff;
}

/* Footer Newsletter */
.footer-newsletter p {
    font-size: 14px;
    color: var(--color-gray-500);
    margin-bottom: 12px;
}
.newsletter-form {
    display: flex;
    gap: 8px;
}
.newsletter-form input {
    flex: 1;
    min-width: 0;
    padding: 10px 14px;
    font-size: 14px;
    color: #fff;
    background: var(--color-gray-800);
    border: 1px solid var(--color-gray-700);
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: var(--color-gray-500); }
.newsletter-form input:focus { border-color: var(--color-primary); }
.newsletter-form button {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: var(--color-primary);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.newsletter-form button:hover { background: var(--color-primary-hover); }
.newsletter-form button:disabled { opacity: 0.6; cursor: not-allowed; }
.newsletter-success {
    color: var(--color-success);
    font-size: 13px;
    margin-top: 8px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--color-gray-800);
}
.footer-bottom p {
    color: var(--color-gray-500);
    font-size: 13px;
    margin: 0;
}
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.footer-bottom-links a {
    color: var(--color-gray-500);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: #fff; }
@media (max-width: 640px) {
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .footer-bottom-links { gap: 16px; }
}

/* ── ENTERPRISE HERO ─────────────────────────── */
.hero-enterprise {
    padding: 100px 24px 80px;
    text-align: center;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}
.hero-enterprise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234f46e5' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-primary-hover);
    margin-bottom: 24px;
}
.hero-badge i {
    flex-shrink: 0;
}
.hero-title-large {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    color: var(--color-gray-900);
    margin: 0 0 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.hero-title-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle-large {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--color-gray-600);
    margin: 0 auto 40px;
    max-width: 640px;
    line-height: 1.6;
}
.hero-actions-large {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-trust {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(79, 70, 229, 0.1);
}
.hero-trust-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}
.hero-trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.6;
}
.hero-trust-logos img {
    height: 32px;
    filter: grayscale(100%);
    transition: all var(--transition-normal);
}
.hero-trust-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ── FEATURES GRID ───────────────────────────── */
.features-section {
    padding: 80px 24px;
    background: #fff;
}
.features-section-alt {
    background: var(--color-gray-50);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .features-grid { grid-template-columns: 1fr; }
}
.feature-card {
    padding: 32px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.feature-card:hover {
    border-color: var(--color-primary-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.feature-card-content {
    flex: 1;
    order: 2;
}
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-50);
    color: var(--color-primary);
    font-size: 20px;
    flex-shrink: 0;
    order: 1;
}
.feature-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-gray-900);
    margin: 0 0 8px;
}
.feature-text {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ── STATS BAR ───────────────────────────────── */
.stats-section {
    padding: 64px 24px;
    background: var(--color-gray-900);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.stat-item {}
.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 14px;
    color: var(--color-gray-400);
    font-weight: 500;
}

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials-section {
    padding: 80px 24px;
    background: #fff;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media (max-width: 1024px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
    padding: 32px;
    background: #fff;
    border-radius: 20px;
    position: relative;
    border: 1px solid var(--color-gray-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    border-color: var(--color-primary-200);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 72px;
    color: var(--color-primary-100);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.6;
}
.testimonial-text {
    font-size: 16px;
    color: var(--color-gray-700);
    line-height: 1.75;
    margin: 0 0 24px;
    position: relative;
    font-style: italic;
    padding-left: 16px;
    border-left: 3px solid var(--color-primary);
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--color-gray-100);
}
.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary-100);
}
.testimonial-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-gray-900);
    margin: 0;
}
.testimonial-role {
    font-size: 13px;
    color: var(--color-gray-500);
    margin: 2px 0 0;
}

/* ── SECTION DIVIDERS ────────────────────────── */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gray-200), transparent);
    margin: 0;
    border: none;
}
.section-divider-gradient {
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary, #8b5cf6), var(--color-primary));
    margin: 0;
    border: none;
}

/* ── CTA SECTION ─────────────────────────────── */
.cta-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #7c3aed 100%);
    text-align: center;
}
.cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}
.cta-text {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin: 0 auto 32px;
    max-width: 560px;
}
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    background: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-fast);
}
.btn-white i { flex-shrink: 0; }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-fast);
}
.btn-outline-white i { flex-shrink: 0; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}
.animate-fade-in {
    animation: fadeIn 0.4s ease forwards;
}
.animate-float {
    animation: float 3s ease-in-out infinite;
}
.animation-delay-100 { animation-delay: 0.1s; }
.animation-delay-200 { animation-delay: 0.2s; }
.animation-delay-300 { animation-delay: 0.3s; }
.animation-delay-400 { animation-delay: 0.4s; }

/* ── UTILITY CLASSES ─────────────────────────── */
.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.section-title-lg {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--color-gray-900);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}
.section-subtitle-lg {
    font-size: 18px;
    color: var(--color-gray-600);
    margin: 0 auto;
    max-width: 600px;
}

/* ── PAGE HERO ──────────────────────────────────── */
.page-hero {
    padding: 80px 24px 60px;
    background: linear-gradient(135deg, var(--color-gray-900) 0%, #1e293b 100%);
    text-align: center;
}
.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.page-hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.page-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* ── PAGE CONTENT ───────────────────────────────── */
.page-content-section {
    padding: 80px 24px;
    background: #fff;
}
.page-content {
    max-width: 900px;
    margin: 0 auto;
}
.page-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin: 48px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}
.page-content h2:first-child {
    margin-top: 0;
}
.page-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-gray-800);
    margin: 32px 0 16px;
}
.page-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-gray-600);
    margin: 0 0 20px;
}
.page-content ul, .page-content ol {
    margin: 0 0 24px;
    padding-left: 24px;
}
.page-content li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: 12px;
    position: relative;
}
.page-content ul li::marker {
    color: var(--color-primary);
}
.page-content strong {
    color: var(--color-gray-900);
    font-weight: 600;
}
.page-content a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}
.page-content a:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}
.page-content blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    background: var(--color-gray-50);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--color-gray-700);
}
.page-content img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin: 32px 0;
}

/* ── CONTACT PAGE ───────────────────────────────── */
.contact-section {
    padding: 80px 24px;
    background: var(--color-gray-50);
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
    font-size: 18px;
}
.contact-social-link {
    width: 48px;
    height: 48px;
    background: var(--color-gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-600);
    transition: all var(--transition-fast);
}
.contact-social-link:hover {
    background: var(--color-primary-50);
    color: var(--color-primary);
}
.contact-form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--color-gray-900);
    background: #fff;
    border: 1px solid var(--color-gray-300);
    border-radius: 8px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.contact-form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-50);
}

/* ── PRICING SECTION ──────────────────────────── */
.pricing-section {
    padding: 80px 24px;
    background: var(--color-bg);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--color-gray-200);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    border-color: var(--color-primary-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}
.pricing-card-popular {
    border: 2px solid var(--color-primary);
    transform: scale(1.02);
}
.pricing-card-popular:hover {
    transform: scale(1.02) translateY(-8px);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pricing-card-header {
    text-align: center;
    margin-bottom: 24px;
}
.pricing-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--color-primary-50);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 24px;
}
.pricing-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 8px;
}
.pricing-description-sm {
    font-size: 14px;
    color: var(--color-gray-500);
}
.pricing-price-wrap {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-gray-200);
}
.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-gray-900);
    line-height: 1;
}
.pricing-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-gray-500);
}
.pricing-compare-price {
    display: block;
    font-size: 16px;
    color: var(--color-gray-400);
    text-decoration: line-through;
    margin-top: 4px;
}
.pricing-price-label {
    display: block;
    font-size: 13px;
    color: var(--color-gray-500);
    margin-top: 4px;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex-grow: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--color-gray-700);
    font-size: 15px;
}
.pricing-features li i {
    color: var(--color-success);
    margin-top: 2px;
    flex-shrink: 0;
}
.pricing-cta-wrap {
    margin-top: auto;
}
.pricing-cta {
    display: block;
    width: 100%;
    padding: 14px 24px;
    text-align: center;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

/* Pricing Features Section */
.pricing-features-section {
    padding: 80px 24px;
    background: var(--color-gray-50);
}
.pricing-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.pricing-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--color-gray-200);
}
.pricing-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.pricing-feature-name {
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 4px;
}
.pricing-feature-text {
    font-size: 14px;
    color: var(--color-gray-500);
}

/* FAQ Section */
.faq-section {
    padding: 80px 24px;
    background: var(--color-bg);
}
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-gray-900);
    text-align: left;
    transition: background var(--transition-fast);
}
.faq-question:hover {
    background: var(--color-gray-50);
}
.faq-question i {
    transition: transform var(--transition-fast);
    color: var(--color-gray-400);
}
.faq-answer {
    padding: 0 24px 20px;
    background: #fff;
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* ── OFFERINGS SHARED STYLES ────────────────────── */
.offerings-section {
    padding: 80px 24px;
    background: var(--color-bg);
}
.offerings-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
}
.offerings-filter-btn {
    padding: 10px 20px;
    background: var(--color-gray-100);
    border-radius: 999px;
    color: var(--color-gray-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
}
.offerings-filter-btn:hover,
.offerings-filter-btn.active {
    background: var(--color-primary);
    color: #fff;
}
.offerings-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

/* ── PRODUCT CARDS ────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.products-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--color-gray-200);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}
.product-card:hover {
    border-color: var(--color-primary-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}
.product-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--color-primary-50);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 28px;
}
.product-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 12px;
}
.product-card-text {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}
.product-card-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}
.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap var(--transition-fast);
}
.product-card-link:hover {
    gap: 12px;
}

/* ── SERVICE CARDS ────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.services-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--color-gray-200);
    position: relative;
    transition: all 0.3s ease;
}
.service-card:hover {
    border-color: var(--color-primary-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #14b8a6;
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}
.service-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    background: #ccfbf1;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14b8a6;
    font-size: 24px;
}
.service-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 12px;
}
.service-card-text {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}
.service-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.service-card-price {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 14px;
}
.service-card-duration {
    font-size: 13px;
    color: var(--color-gray-500);
    background: var(--color-gray-100);
    padding: 4px 10px;
    border-radius: 999px;
}
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #14b8a6;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap var(--transition-fast);
}
.service-card-link:hover {
    gap: 12px;
}

/* ── SOLUTION CARDS ───────────────────────────── */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}
.solution-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--color-gray-200);
    position: relative;
    transition: all 0.3s ease;
}
.solution-card:hover {
    border-color: var(--color-primary-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.solution-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f59e0b;
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}
.solution-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    background: #fef3c7;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    font-size: 24px;
}
.solution-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 12px;
}
.solution-card-text {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}
.solution-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.solution-card-audience,
.solution-card-industry {
    font-size: 12px;
    background: var(--color-gray-100);
    color: var(--color-gray-600);
    padding: 4px 10px;
    border-radius: 999px;
}
.solution-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f59e0b;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap var(--transition-fast);
}
.solution-card-link:hover {
    gap: 12px;
}

/* ── FEATURES SHOWCASE ────────────────────────── */
.features-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.feature-showcase-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--color-gray-200);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.feature-showcase-card:hover {
    border-color: var(--color-primary-200);
    box-shadow: var(--shadow-md);
}
.feature-showcase-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.feature-showcase-content {
    flex: 1;
    min-width: 0;
}
.feature-showcase-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.feature-new-badge {
    font-size: 10px;
    background: #3b82f6;
    color: #fff;
    padding: 2px 8px;
    border-radius: 999px;
    text-transform: uppercase;
    font-weight: 600;
}
.feature-showcase-text {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin-bottom: 12px;
}
.feature-showcase-detail {
    font-size: 13px;
    color: var(--color-gray-400);
    line-height: 1.6;
    margin-bottom: 12px;
}
.feature-showcase-category {
    font-size: 11px;
    background: var(--color-gray-100);
    color: var(--color-gray-500);
    padding: 4px 10px;
    border-radius: 999px;
}

/* ── DETAIL PAGE STYLES ───────────────────────── */
.product-detail-section,
.service-detail-section,
.solution-detail-section {
    padding: 80px 24px;
    background: var(--color-bg);
}
.product-features-list,
.service-features-list,
.service-deliverables,
.solution-benefits,
.solution-use-cases {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--color-gray-200);
}
.product-features-list h2,
.service-features-list h2,
.service-deliverables h2,
.solution-benefits h2,
.solution-use-cases h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 20px;
}
.product-features-list ul,
.service-features-list ul,
.service-deliverables ul,
.solution-use-cases ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.product-features-list li,
.service-features-list li,
.service-deliverables li,
.solution-use-cases li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray-100);
}
.product-features-list li:last-child,
.service-features-list li:last-child,
.service-deliverables li:last-child,
.solution-use-cases li:last-child {
    border-bottom: none;
}
.product-features-list li i,
.service-features-list li i,
.service-deliverables li i,
.solution-use-cases li i {
    margin-top: 4px;
    flex-shrink: 0;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--color-gray-50);
    border-radius: 12px;
}
.benefit-item i {
    margin-top: 2px;
    flex-shrink: 0;
}

/* Sidebar Styles */
.product-sidebar,
.service-sidebar,
.solution-sidebar {
    background: #fff;
    border: 1px solid var(--color-gray-200);
    border-radius: 20px;
    padding: 32px;
    position: sticky;
    top: 100px;
}
.product-sidebar-price,
.service-sidebar-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 8px;
}
.product-sidebar-compare {
    font-size: 16px;
    color: var(--color-gray-400);
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400;
}
.product-sidebar-badge,
.service-sidebar-badge {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}
.product-sidebar-meta,
.service-sidebar-meta {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    border-top: 1px solid var(--color-gray-200);
    padding-top: 24px;
}
.product-sidebar-meta li,
.service-sidebar-meta li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--color-gray-600);
}
.product-sidebar-meta li i,
.service-sidebar-meta li i {
    color: var(--color-gray-400);
    width: 16px;
    text-align: center;
}
.solution-sidebar h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 8px;
}
.solution-sidebar > p {
    font-size: 14px;
    color: var(--color-gray-500);
    margin-bottom: 20px;
}
.solution-sidebar-related {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-gray-200);
}
.solution-sidebar-related h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.solution-sidebar-related ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.solution-sidebar-related li {
    margin-bottom: 8px;
}
.solution-sidebar-related a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gray-700);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}
.solution-sidebar-related a:hover {
    color: var(--color-primary);
}
.solution-sidebar-related a i {
    color: var(--color-gray-400);
    font-size: 12px;
}

/* Related Section */
.related-section {
    padding: 80px 24px;
    background: var(--color-gray-50);
}

/* Process Section */
.process-section {
    padding: 80px 24px;
    background: var(--color-gray-50);
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}
.process-step {
    text-align: center;
    position: relative;
}
.process-step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}
.process-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 8px;
}
.process-step p {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* Page Hero Enhancement */
.page-hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
}
.page-hero-price {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-top: 16px;
    opacity: 0.95;
}
.page-hero-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}
.page-hero-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card-popular { transform: none; }
    .pricing-card-popular:hover { transform: translateY(-8px); }
    .products-grid-3,
    .services-grid-3 { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
}

/* ── ABOUT PAGE ──────────────────────────────── */
.about-hero {
    padding: 100px 24px 80px;
    text-align: center;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
    pointer-events: none;
}
.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.about-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.about-hero-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    color: var(--color-gray-900);
    line-height: 1.1;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}
.about-hero-title span {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-hero-subtitle {
    font-size: 20px;
    color: var(--color-gray-600);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* About Mission */
.about-mission {
    padding: 100px 24px;
    background: #fff;
}
.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
@media (max-width: 1024px) {
    .about-mission-grid { grid-template-columns: 1fr; gap: 48px; }
}
.about-mission-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-gray-900);
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}
.about-mission-content .lead {
    font-size: 20px;
    color: var(--color-gray-700);
    line-height: 1.6;
    margin: 0 0 20px;
}
.about-mission-content p {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin: 0 0 32px;
}
.about-mission-stats {
    display: flex;
    gap: 48px;
}
.about-stat {
    text-align: center;
}
.about-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}
.about-stat-label {
    font-size: 14px;
    color: var(--color-gray-500);
    font-weight: 500;
}
.about-mission-image {
    display: flex;
    justify-content: center;
}
.about-image-card {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 40px 80px -20px rgba(99, 102, 241, 0.3);
}
.about-image-card i {
    font-size: 100px;
    color: rgba(255,255,255,0.9);
}

/* About Values */
.about-values {
    padding: 100px 24px;
    background: var(--color-gray-50);
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}
@media (max-width: 1024px) {
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .about-values-grid { grid-template-columns: 1fr; }
}
.about-value-card {
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--color-gray-100);
    text-align: center;
    transition: all 0.3s ease;
}
.about-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.1);
    border-color: var(--color-primary-200);
}
.about-value-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.about-value-icon i {
    font-size: 28px;
    color: #fff;
}
.about-value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin: 0 0 12px;
}
.about-value-card p {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin: 0;
}

/* About Story */
.about-story {
    padding: 100px 24px;
    background: linear-gradient(180deg, #1e1b4b 0%, #0f172a 100%);
}
.about-story-content {
    max-width: 800px;
    margin: 0 auto;
}
.about-story-header {
    text-align: center;
    margin-bottom: 64px;
}
.about-story-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.about-story-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
}
.about-story-timeline {
    position: relative;
    padding-left: 32px;
}
.about-story-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #818cf8, #4f46e5);
}
.about-timeline-item {
    position: relative;
    padding-bottom: 48px;
}
.about-timeline-item:last-child {
    padding-bottom: 0;
}
.about-timeline-dot {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: #818cf8;
    border-radius: 50%;
    border: 3px solid #1e1b4b;
}
.about-timeline-content {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 24px;
    border-radius: 16px;
}
.about-timeline-year {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    margin-bottom: 12px;
}
.about-timeline-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.about-timeline-content p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* About Team */
.about-team {
    padding: 100px 24px;
    background: #fff;
}
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}
@media (max-width: 1024px) {
    .about-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .about-team-grid { grid-template-columns: 1fr; }
}
.about-team-card {
    text-align: center;
    padding: 32px;
    background: var(--color-gray-50);
    border-radius: 20px;
    transition: all 0.3s ease;
}
.about-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.1);
}
.about-team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.about-team-avatar i {
    font-size: 40px;
    color: var(--color-primary);
}
.about-team-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin: 0 0 4px;
}
.about-team-card span {
    font-size: 14px;
    color: var(--color-gray-500);
}
.about-team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}
.about-team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--color-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-500);
    transition: all 0.2s ease;
}
.about-team-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* ══════════════════════════════════════════════════════
   PREMIUM B2B WHOLESALE STYLING
   Emerald/Slate Theme for Smoke Shop
   ══════════════════════════════════════════════════════ */

/* Extended Emerald Color Palette */
:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
}

/* ── PREMIUM TOP BAR ─────────────────────────────── */
.top-bar {
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
}

/* ── PREMIUM HERO GRADIENTS ────────────────────── */
.hero-gradient-emerald {
    background: linear-gradient(135deg, var(--emerald-600) 0%, var(--emerald-500) 50%, var(--emerald-400) 100%);
}

/* ── PREMIUM PRODUCT CARDS ─────────────────────── */
.shop-product-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}
.shop-product-card:hover {
    border-color: var(--emerald-300);
    box-shadow: 0 20px 40px -12px rgba(5, 150, 105, 0.15);
    transform: translateY(-4px);
}
.shop-product-card .product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--slate-50);
}
.shop-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.shop-product-card:hover .product-image img {
    transform: scale(1.05);
}
.shop-product-card .product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.shop-product-card .badge-featured {
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}
.shop-product-card .badge-sale {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}
.shop-product-card .badge-new {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}
.shop-product-card .product-info {
    padding: 16px;
}
.shop-product-card .product-brand {
    font-size: 12px;
    color: var(--emerald-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.shop-product-card .product-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.shop-product-card .product-sku {
    font-size: 12px;
    color: var(--slate-500);
    margin-bottom: 12px;
}
.shop-product-card .product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--emerald-600);
}
.shop-product-card .product-price-original {
    font-size: 14px;
    color: var(--slate-400);
    text-decoration: line-through;
    margin-left: 8px;
}
.shop-product-card .stock-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 13px;
}
.shop-product-card .stock-in {
    color: var(--emerald-600);
}
.shop-product-card .stock-low {
    color: #f59e0b;
}
.shop-product-card .stock-out {
    color: #ef4444;
}
.shop-product-card .add-to-cart-btn {
    width: 100%;
    margin-top: 12px;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.shop-product-card .add-to-cart-btn:hover {
    background: linear-gradient(135deg, var(--emerald-600), var(--emerald-700));
    transform: translateY(-1px);
}
.shop-product-card .add-to-cart-btn:disabled {
    background: var(--slate-200);
    color: var(--slate-400);
    cursor: not-allowed;
    transform: none;
}

/* ── PREMIUM CATEGORY CARDS ────────────────────── */
.category-card-premium {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: block;
}
.category-card-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.category-card-premium:hover img {
    transform: scale(1.1);
}
.category-card-premium .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 23, 42, 0.9) 100%);
}
.category-card-premium .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: #fff;
}
.category-card-premium .content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}
.category-card-premium .content p {
    font-size: 14px;
    opacity: 0.85;
}
.category-card-premium .arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}
.category-card-premium:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ── PREMIUM BRAND DISPLAY ─────────────────────── */
.brand-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    aspect-ratio: 3 / 2;
    transition: all 0.3s ease;
}
.brand-logo-card img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}
.brand-logo-card:hover {
    border-color: var(--emerald-300);
    box-shadow: 0 8px 24px -8px rgba(5, 150, 105, 0.15);
}
.brand-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ── PREMIUM NEWSLETTER BANNER ─────────────────── */
.newsletter-banner {
    background: linear-gradient(135deg, var(--emerald-600) 0%, var(--emerald-500) 100%);
    position: relative;
    overflow: hidden;
    padding: 48px 0;
}
.newsletter-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.newsletter-banner .content {
    position: relative;
    z-index: 1;
}
.newsletter-banner h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.newsletter-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}
.newsletter-banner .newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
}
.newsletter-banner .newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    background: rgba(255,255,255,0.95);
}
.newsletter-banner .newsletter-form button {
    padding: 14px 28px;
    background: var(--slate-900);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.newsletter-banner .newsletter-form button:hover {
    background: var(--slate-800);
    transform: translateY(-2px);
}

/* ── PREMIUM TRUST BADGES ──────────────────────── */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 32px 0;
}
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}
.trust-badge-icon {
    width: 56px;
    height: 56px;
    background: var(--emerald-50);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
    font-size: 24px;
}
.trust-badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-700);
}
.trust-badge-subtext {
    font-size: 12px;
    color: var(--slate-500);
}

/* ── PREMIUM FOOTER ────────────────────────────── */
.site-footer {
    background: linear-gradient(180deg, var(--slate-900) 0%, #0c1527 100%);
}
.footer-main {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-social a:hover {
    background: var(--emerald-600);
}

/* ── WIDGET SECTION STYLING ────────────────────── */
.widget-section {
    position: relative;
}

/* ── SHOP PAGE STYLES ──────────────────────────── */
.shop-sidebar {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    padding: 24px;
    position: sticky;
    top: 100px;
}
.shop-sidebar h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--emerald-500);
}
.shop-filter-group {
    margin-bottom: 24px;
}
.shop-filter-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 12px;
}
.shop-filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    cursor: pointer;
    transition: color 0.2s;
}
.shop-filter-option:hover {
    color: var(--emerald-600);
}
.shop-filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--emerald-600);
}
.shop-filter-option label {
    font-size: 14px;
    color: var(--slate-600);
    cursor: pointer;
}
.shop-filter-option .count {
    margin-left: auto;
    font-size: 12px;
    color: var(--slate-400);
    background: var(--slate-100);
    padding: 2px 8px;
    border-radius: 999px;
}

/* Price Range Slider */
.price-range-slider {
    margin-top: 16px;
}
.price-range-slider input[type="range"] {
    width: 100%;
    accent-color: var(--emerald-600);
}
.price-range-values {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--slate-600);
    margin-top: 8px;
}

/* Shop Grid Toggle */
.shop-view-toggle {
    display: flex;
    gap: 8px;
}
.shop-view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    background: #fff;
    color: var(--slate-500);
    cursor: pointer;
    transition: all 0.2s;
}
.shop-view-btn:hover {
    border-color: var(--emerald-400);
    color: var(--emerald-600);
}
.shop-view-btn.active {
    background: var(--emerald-50);
    border-color: var(--emerald-400);
    color: var(--emerald-600);
}

/* Sort Dropdown */
.shop-sort-select {
    padding: 10px 36px 10px 14px;
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    font-size: 14px;
    color: var(--slate-700);
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2364748b'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E") no-repeat right 12px center / 18px;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s;
}
.shop-sort-select:focus {
    outline: none;
    border-color: var(--emerald-500);
}

/* ── CART PAGE STYLES ──────────────────────────── */
.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--slate-200);
    margin-bottom: 12px;
}
.cart-item-image {
    width: 100px;
    height: 100px;
    background: var(--slate-50);
    border-radius: 8px;
    overflow: hidden;
}
.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cart-item-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 4px;
}
.cart-item-sku {
    font-size: 13px;
    color: var(--slate-500);
}
.cart-item-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--emerald-600);
}
.cart-qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    overflow: hidden;
}
.cart-qty-btn {
    width: 36px;
    height: 36px;
    background: var(--slate-50);
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--slate-600);
    transition: all 0.2s;
}
.cart-qty-btn:hover {
    background: var(--emerald-50);
    color: var(--emerald-600);
}
.cart-qty-input {
    width: 50px;
    height: 36px;
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--slate-900);
}
.cart-summary {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    padding: 24px;
    position: sticky;
    top: 100px;
}
.cart-summary h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--slate-200);
}
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
}
.cart-summary-row.total {
    border-top: 2px solid var(--slate-200);
    margin-top: 12px;
    padding-top: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--slate-900);
}
.cart-checkout-btn {
    width: 100%;
    margin-top: 20px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.cart-checkout-btn:hover {
    background: linear-gradient(135deg, var(--emerald-600), var(--emerald-700));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -6px rgba(5, 150, 105, 0.4);
}

/* ── RESPONSIVE ADJUSTMENTS ────────────────────── */
@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 12px;
    }
    .cart-item-price,
    .cart-qty-control {
        grid-column: 2;
    }
    .trust-badges {
        gap: 24px;
    }
    .newsletter-banner .newsletter-form {
        flex-direction: column;
    }
}

/* ── PREMIUM B2B NAVIGATION ─────────────────────── */
.nav-pill {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s;
    text-decoration: none;
}
.nav-pill:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}
.nav-pill.active {
    background: #059669;
    color: white;
}

/* ── CART GRADIENT BUTTON ───────────────────────── */
.cart-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 2.75rem;
    padding: 0 1rem;
    border-radius: 0.75rem;
    background: linear-gradient(to right, #059669, #10b981);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.25);
    transition: all 0.2s;
}
.cart-btn:hover {
    background: linear-gradient(to right, #10b981, #34d399);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.4);
}

/* ── FOOTER LINK WITH ICON ──────────────────────── */
.footer-link-icon {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-link-icon:hover {
    color: #34d399;
}
.footer-link-icon i {
    width: 1.25rem;
    color: #475569;
    transition: color 0.2s;
}
.footer-link-icon:hover i {
    color: #10b981;
}

/* ── SOCIAL ICON BUTTON ─────────────────────────── */
.social-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: rgba(51, 65, 85, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s;
}
.social-icon:hover {
    background: #059669;
    color: white;
    transform: translateY(-4px);
}

/* ── NEWSLETTER CARD ────────────────────────────── */
.newsletter-card {
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
}
.newsletter-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #059669, #10b981, #14b8a6);
}

/* ── SEARCH MODAL ───────────────────────────────── */
#searchModal {
    z-index: 100;
}
#searchModal input:focus {
    outline: none;
    box-shadow: none;
}
