:root {
    --primary: #00b359;
    --primary-rgb: 0, 179, 89;
    --primary-dark: #008f47;
    --primary-light: #33c27a;
    --primary-glow: rgba(0, 179, 89, 0.15);
    --bg: #ffffff; 
    --bg-alt: #f8fafc;
    --bg-dark: #0a0a0c;
    --card-bg: #ffffff;
    --text-main: #0a0a0c;
    --text-muted: #64748b;
    --text-light: #ffffff;
    --border: rgba(0, 0, 0, 0.08);
    --border-strong: rgba(0, 0, 0, 0.15);
    --radius: 0px;
    --container-width: 1280px;
    --font-mono: 'Space Mono', 'JetBrains Mono', monospace;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

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

/* Modern Grid Background */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
}

.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(at 0% 0%, rgba(0, 179, 89, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(59, 130, 246, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(0, 179, 89, 0.03) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(59, 130, 246, 0.03) 0px, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Brand Identity */
.brand-nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-nav.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.9);
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 900;
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition);
    font-family: var(--font-mono);
    white-space: nowrap;
}

.logo:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.logo-icon {
    height: 28px;
    width: auto;
    margin-right: 12px;
    transition: var(--transition);
    filter: drop-shadow(0 0 0px var(--primary));
}

.logo:hover .logo-icon {
    transform: rotate(-5deg) scale(1.1);
    filter: drop-shadow(0 0 8px rgba(var(--primary-rgb), 0.3));
}

/* Navigation */
.desktop-nav {
    display: flex;
    gap: 2rem;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
}

.desktop-nav a {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition);
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.desktop-nav a i {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.desktop-nav a:hover, .desktop-nav a.active {
    color: var(--primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition);
    transform-origin: left center;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--text-main);
    cursor: pointer;
    line-height: 1;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav a {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.mobile-nav a i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.mobile-nav a.active {
    color: var(--primary);
    font-weight: 700;
}

.mobile-menu-divider {
    height: 1px;
    background: var(--border);
    margin: 1rem 0;
}

.mobile-menu-cta {
    margin-top: 1rem;
    background: var(--primary);
    color: white !important;
    padding: 1.25rem;
    text-align: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 700;
}

.mobile-menu-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
}

.mobile-menu-footer .status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero-featured {
    padding: 10rem 0 8rem;
    position: relative;
    overflow: hidden;
    background-color: var(--primary);
    color: #ffffff;
}

.hero-featured .bg-grid, 
.hero-featured .bg-mesh {
    opacity: 0.1;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;
    font-family: var(--font-mono);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    position: relative;
}

.pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.33); opacity: 0.8; }
    80%, 100% { transform: scale(3); opacity: 0; }
}

.hero-content h1 {
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.9;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    color: #ffffff;
}

.narrative-intro {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 650px;
    line-height: 1.4;
    margin-bottom: 3.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-actions .btn-primary {
    background: #ffffff;
    color: var(--primary);
    border-color: #ffffff;
}

.hero-actions .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.hero-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.hero-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Hero Visual & Icon */
.hero-icon-container {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(10px);
    animation: hero-float 6s ease-in-out infinite;
    transition: var(--transition);
}

.hero-icon-container:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: scale(1.02);
}

.hero-icon-container:hover .hero-statement-icon {
    color: var(--primary);
    filter: drop-shadow(0 0 40px rgba(var(--primary-rgb), 0.4));
}

.hero-icon-container::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: -1;
    animation: hero-glow 4s ease-in-out infinite;
}

.hero-statement-icon {
    width: 60%;
    height: 60%;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
    stroke-width: 0.3;
    stroke: currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: icon-cycle 15s infinite;
}

.icon-sequence {
    position: relative;
    width: 100%;
    height: 100%;
}

.icon-1 { animation-delay: 0s; }
.icon-2 { animation-delay: 3s; }
.icon-3 { animation-delay: 6s; }
.icon-4 { animation-delay: 9s; }
.icon-5 { animation-delay: 12s; }

@keyframes icon-cycle {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.9) rotate(-5deg); }
    5%, 20% { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    25% { opacity: 0; transform: translate(-50%, -50%) scale(1.1) rotate(5deg); }
    100% { opacity: 0; }
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes hero-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 5rem !important;
    }
    .hero-content {
        max-width: 100% !important;
    }
    .hero-visual {
        justify-content: center !important;
    }
    .hero-icon-container {
        width: 300px;
        height: 300px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-badge {
        justify-content: center;
    }
}

.btn {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 1.25rem 3rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.btn-primary {
    background: var(--text-main);
    color: #fff;
    border: 1px solid var(--text-main);
}

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

.btn-outline {
    border: 1px solid var(--border-strong);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(0,0,0,0.02);
    border-color: var(--text-main);
    transform: translateY(-2px);
}

/* Sales Letter / Content Sections */
.sales-letter-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 8rem 0;
}

.sales-letter-section h2 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.sales-letter-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-main);
    opacity: 0.8;
}

.highlight-text {
    color: var(--primary);
    font-weight: 800;
}

/* Benefit Cards */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

.benefit-card {
    padding: 3rem 2.5rem;
    background: #fff;
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.benefit-card h3 {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.7;
}

/* Grids */
.section-header {
    margin-bottom: 5rem;
    position: relative;
}

.section-header::before {
    content: '[SYSTEM_QUERY]';
    display: block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.section-header .badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    font-family: var(--font-mono);
    background: rgba(0,0,0,0.05);
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

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

.app-card {
    background: #fff;
    border: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden;
}

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

.inhouse-projects-section {
    padding: 8rem 0;
    background: #0a0a0a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.inhouse-projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.inhouse-projects-section .section-header h2 {
    color: #fff;
}

.inhouse-projects-section .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.inhouse-projects-section .app-card {
    background: #141414;
    border-color: rgba(255, 255, 255, 0.1);
}

.inhouse-projects-section .app-card:hover {
    border-color: var(--primary);
}

.inhouse-projects-section .app-info h3 {
    color: #fff;
}

.inhouse-projects-section .app-info p {
    color: rgba(255, 255, 255, 0.5);
}

.problem-content {
    padding: 4rem 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.problem-content h2 {
    margin-bottom: 1.5rem;
}

.problem-content .btn {
    margin-top: 2.5rem;
}

.app-screenshot-placeholder {
    aspect-ratio: 16/10;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
}

.app-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.app-card:hover .app-screenshot img {
    transform: scale(1.05);
}

.app-info {
    padding: 2.5rem;
}

.app-info .badge {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.app-info h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.app-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Product Cards */
.product-card {
    background: #fff;
    border: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.product-image {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f1f5f9;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 2rem;
}

.no-results-text {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.product-price {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Error Page */
.error-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--font-mono);
}

.error-code {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-message {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .error-code {
        font-size: 5rem;
    }
}

/* Footer */
.site-footer {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    background: #fff;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.no-js .reveal,
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 4rem; }
    .app-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 3.5rem; }
    .sales-letter-section h2 { font-size: 2.5rem; }
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .admin-card {
        padding: 2rem 1.5rem;
    }
    .hero-actions { flex-direction: column; align-items: stretch; }
}

@media (max-width: 480px) {
    .hero-content h1 { 
        font-size: 2.25rem; 
        line-height: 1.1;
    }
    .container { padding: 0 1rem; }
    
    .hero-icon-container {
        width: 240px;
        height: 240px;
    }

    .btn {
        padding: 1rem 1.5rem;
        width: 100%;
        font-size: 0.7rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
    }
}

.app-card:hover, .product-card:hover {
    background: #f8fafc;
}

.app-screenshot, .product-image {
    border-bottom: 1px solid var(--border);
    background: #f1f5f9;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.app-screenshot img, .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) opacity(0.6);
    transition: all 0.3s;
}

.app-card:hover img, .product-card:hover img {
    filter: grayscale(0) opacity(1);
}

.app-info, .product-info {
    padding: 2rem;
}

.badge {
    font-family: var(--font-mono);
    background: #f1f5f9;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.app-info h3, .product-info h3 {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 1rem 0;
    color: var(--text-main);
}

.product-price {
    font-family: var(--font-mono);
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Sections */
.py-5 { padding: 5rem 0; }
.py-10 { padding: 10rem 0; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 3rem; }
.mb-10 { margin-bottom: 6rem; }
.mt-5 { margin-top: 3rem; }
.mt-10 { margin-top: 6rem; }
.bg-light { background: var(--bg-alt); }
.bg-alt { background: var(--bg-alt); }
.bg-dark { background: var(--bg-dark); color: var(--text-light); }
.bg-primary { background: var(--primary); color: var(--text-light); }

.badge-light {
    color: #fff;
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
}

.badge-primary {
    color: var(--primary);
    border-color: var(--primary);
    background: transparent;
}

.badge-mono {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

/* Home Page Sections */
.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 4rem;
}

.philosophy-content {
    max-width: 800px;
}

.benefit-header {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-header i {
    width: 16px;
    height: 16px;
}

.admin-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 3rem;
    transition: var(--transition);
}

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

.admin-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.problem-statement {
    padding: 10rem 0;
    background: var(--text-main);
    color: #fff;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem-content h2 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}

.problem-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 3rem;
}

.zutaalabs-section {
    padding: 10rem 0;
    background: #0f172a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

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

.lab-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    width: 100%;
    min-width: 0; /* Fix for grid overflow */
}

.lab-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.lab-image {
    width: 100%;
    aspect-ratio: 16/10;
    background: rgba(0,0,0,0.2);
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.lab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition);
    filter: grayscale(1);
}

.lab-card:hover img {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
}

.lab-meta {
    font-family: var(--font-mono);
    color: var(--primary);
    font-size: 0.7rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.lab-description {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.case-study-item {
    background: var(--bg);
    padding: 4rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    min-width: 0; /* Fix for grid overflow */
}

.case-study-item:hover {
    background: var(--bg-alt);
}

.case-meta {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--primary);
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.case-visual {
    margin-bottom: 3rem;
    overflow: hidden;
    background: var(--bg-alt);
    border: 1px solid var(--border);
}

.case-visual img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    filter: grayscale(1);
    opacity: 0.8;
    transition: var(--transition);
}

.case-study-item:hover .case-visual img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

.case-link {
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.case-link:hover {
    color: var(--primary);
}

.case-link span {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.case-link:hover span {
    transform: translateX(5px);
}

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

.asset-card {
    background: var(--bg);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-width: 0; /* Fix for grid overflow */
}

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

.asset-visual {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.asset-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    opacity: 0.8;
    transition: var(--transition);
}

.asset-card:hover .asset-visual img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

.asset-details {
    padding: 3rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.asset-price {
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
}

/* Blog & Shop Shared Layouts */
.blog-grid, .shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.blog-card, .product-card {
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

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

.blog-card-image, .product-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: var(--bg-alt);
}

.blog-card-image img, .product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) opacity(0.7);
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img, .product-card:hover .product-card-image img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05);
}

.blog-card-content, .product-card-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-content h3, .product-card-content h3 {
    font-family: var(--font-mono);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-card-content h3 a, .product-card-content h3 a {
    text-decoration: none;
    color: inherit;
}

.blog-card-content p, .product-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* No Results State */
.no-results-icon {
    font-family: var(--font-mono);
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.no-results-text {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.main-image {
    border: 1px solid var(--border);
    padding: 10px;
    background: var(--bg-alt);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-detail-price {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-mono);
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .product-detail-price {
        font-size: 2rem;
    }
}

.coupon-section {
    background: var(--bg-alt);
    padding: 2rem;
    border: 1px solid var(--border);
}

.coupon-section h4 {
    margin-bottom: 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.coupon-input-group {
    display: flex;
    gap: 1rem;
}

#coupon-message {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-family: var(--font-mono);
}

.features-list {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 3rem;
}

.features-list h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

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

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.features-list .bullet {
    color: var(--primary);
    font-weight: 700;
}

.purchase-actions {
    background: var(--text-main);
    color: #fff;
    padding: 3rem;
}

.purchase-actions h4 {
    color: #fff;
    font-family: var(--font-mono);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.purchase-actions p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

.product-price {
    font-family: var(--font-mono);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.btn-full {
    width: 100%;
}

.btn-wide {
    padding: 1.25rem 4rem;
}

/* State-Service Template */
.state-service-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: flex-start;
}

.state-service-main {
    flex: 2;
    min-width: 300px;
}

.state-service-sidebar {
    flex: 1;
    min-width: 280px;
    position: sticky;
    top: 120px;
}

.local-case-study {
    background: var(--bg-alt);
    border-left: 4px solid var(--primary);
    padding: 3rem;
    font-family: var(--font-mono);
}

.case-study-content {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.7;
}

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

.benefit-small-card {
    background: var(--bg-alt);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.benefit-small-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.benefit-number {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: var(--font-mono);
}

.benefit-small-card h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefit-small-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.state-service-faq {
    background: var(--text-main);
    color: #fff;
    padding: 4rem;
}

.state-service-faq h2 {
    color: #fff;
}

.faq-question {
    color: var(--primary);
    font-family: var(--font-mono);
    display: block;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.faq-answer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
}

.price-highlight {
    color: #fff;
    font-weight: 700;
    border-bottom: 2px solid var(--primary);
}

.contact-card {
    background: var(--bg-alt);
    border: 1px solid var(--primary);
    padding: 3rem;
    text-align: center;
}

@media (max-width: 992px) {
    .state-service-layout {
        flex-direction: column;
    }
    
    .state-service-sidebar {
        position: static;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .state-service-faq {
        padding: 3rem 2rem;
    }
    
    .local-case-study {
        padding: 2rem;
    }
}

/* Post & Detail Layouts */
.post-container, .product-detail-container {
    max-width: 800px;
    margin: 0 auto;
}

.post-title {
    font-size: 4rem;
    margin-top: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

@media (max-width: 768px) {
    .post-title {
        font-size: 2.5rem;
    }
}

.post-image-wrapper {
    margin-bottom: 4rem;
    border: 1px solid var(--border);
    padding: 10px;
    background: var(--bg-alt);
}

.post-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content p {
    margin-bottom: 2rem;
}

.post-footer {
    margin-top: 8rem;
    padding-top: 5rem;
    border-top: 1px solid var(--border);
}

.cta-box {
    background: var(--bg-alt);
    border-left: 4px solid var(--primary);
    padding: 3rem;
}

.cta-box h3 {
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.btn-back:hover {
    color: var(--primary);
    transform: translateX(-5px);
}

.btn-back i {
    width: 16px;
    height: 16px;
}

.final-cta {
    padding: 12rem 0;
    background: var(--text-main);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.final-cta .bg-grid {
    opacity: 0.05;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: #fff;
    font-size: 4rem;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}

.cta-content h2 .highlight {
    color: var(--primary);
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 4rem;
    font-size: 1.5rem;
    line-height: 1.4;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Home Responsive Fixes */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 5rem;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-visual {
        display: flex;
        justify-content: center;
    }
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .py-10 { padding: 6rem 0; }
    .mb-10 { margin-bottom: 4rem; }
    .mt-10 { margin-top: 4rem; }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .problem-content h2,
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.2rem;
    }
    
    .labs-grid, .case-studies-grid, .assets-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.lab-card, .case-study-item, .asset-card {
    background: var(--bg);
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lab-image, .case-visual, .asset-visual {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.lab-image img, .case-visual img, .asset-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lab-card:hover .lab-image img, 
.case-study-item:hover .case-visual img, 
.asset-card:hover .asset-visual img {
    transform: scale(1.05);
}

.lab-meta, .case-meta {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--primary);
    margin: 1.5rem 1.5rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.lab-card h3, .case-study-item h3, .asset-card h3 {
    font-size: 1.5rem;
    margin: 0 1.5rem 1rem;
    font-weight: 800;
}

.lab-description, .case-study-item p, .asset-details p {
    padding: 0 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
}

.lab-card .btn, .case-link, .asset-card .btn {
    margin: 0 1.5rem 1.5rem;
}

.asset-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.asset-price {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--primary);
    margin: 1.5rem 1.5rem 0.5rem;
    font-size: 1.2rem;
}

/* Footer */
.site-footer {
    background: var(--bg-alt);
    padding: 4rem 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
}

.footer-brand .copyright {
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-weight: 700;
}

.footer-brand .tagline {
    color: var(--text-muted);
    opacity: 0.7;
}

.footer-links {
    flex: 1;
    min-width: 200px;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

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

.footer-links a i {
    width: 14px;
    height: 14px;
}

.footer-location {
    flex: 1;
    min-width: 200px;
    text-align: right;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-location {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Admin Enhancements */
.admin-page {
    background: #f8fafc;
    min-height: 100vh;
    color: var(--text-main);
    display: flex;
    overflow-x: hidden;
}

/* Traditional Admin Sidebar */
.admin-sidebar {
    width: 240px;
    background: var(--bg-dark);
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    color: var(--text-light);
    flex-shrink: 0;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.admin-sidebar .sidebar-header {
    padding: 24px 20px;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-brand {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-family: var(--font-mono);
}

.sidebar-menu {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    flex: 1;
    overflow-y: auto;
}

.sidebar-menu li {
    border: none;
}

.sidebar-menu li a {
    display: block;
    padding: 12px 20px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-menu li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    padding-left: 25px;
}

.sidebar-menu li.active a {
    background: var(--primary);
    color: #fff;
    border-left: none;
    font-weight: 700;
}

.sidebar-menu li.logout-item {
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 10px;
}

.sidebar-menu li.logout-item a {
    color: #ef4444;
    font-family: var(--font-mono);
}

.sidebar-menu li.logout-item a:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.sidebar-toggle {
    display: none;
    background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    padding: 7px;
    border-radius: var(--radius);
    margin-right: 15px;
    flex-direction: column;
    justify-content: space-around;
    width: 36px;
    height: 32px;
    transition: var(--transition);
}

.sidebar-toggle:hover {
    border-color: var(--primary);
}

.sidebar-toggle.active {
    background: var(--primary);
    border-color: var(--primary);
}

.sidebar-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.sidebar-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.sidebar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.sidebar-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

body.sidebar-open {
    overflow: hidden;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.admin-main-content {
    flex: 1;
    min-width: 0;
    padding: 30px;
    background: var(--bg-alt);
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.admin-main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

@media (max-width: 992px) {
    .sidebar-overlay.active {
        display: block;
    }
    
    .admin-sidebar {
        position: fixed;
        left: -240px;
        transition: var(--transition);
        box-shadow: 20px 0 50px rgba(0,0,0,0.2);
    }
    
    .admin-sidebar.active {
        left: 0;
    }
    
    .sidebar-toggle {
        display: flex;
    }
    
    .admin-main-content {
        padding: 20px;
    }
    
    .admin-top-bar {
        padding: 10px 0;
    }
}

/* Admin UI Refinements */
.admin-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.page-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.user-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: var(--font-mono);
}

.user-role {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.stat-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: var(--radius);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    font-weight: 700;
    font-family: var(--font-mono);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: 0.5rem;
    line-height: 1;
    font-family: var(--font-mono);
    letter-spacing: -0.05em;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.table-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: var(--radius) var(--radius) 0 0;
}

.table-header h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
    margin: 0;
    font-family: var(--font-mono);
}

.table-header a {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-mono);
}

.admin-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.stat-card.stat-main { border-left: 4px solid var(--text-main); }
.stat-card.stat-primary { border-left: 4px solid var(--primary); }
.stat-card.stat-info { border-left: 4px solid #3b82f6; }
.stat-card.stat-warning { border-left: 4px solid #f59e0b; }
.stat-card.stat-danger { border-left: 4px solid #ef4444; }

.stat-card.stat-warning .stat-value { color: #f59e0b; }
.stat-card.stat-danger .stat-value { color: #ef4444; }

.w-120 { width: 120px; }
.w-200 { width: 200px !important; }
.resource-name { font-size: 0.85rem; color: var(--text-main); font-weight: 600; }
.timestamp { font-size: 0.7rem; color: var(--text-muted); font-family: var(--font-mono); text-transform: uppercase; }

.screenshot-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 1rem;
}

.screenshot-preview {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.screenshot-preview img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    display: block;
}

.h-100 { height: 100px !important; }
.h-150 { height: 150px !important; }
.h-200 { height: 200px !important; }
.h-400 { height: 400px !important; }
.text-primary { color: var(--primary) !important; }
.mt-4 { margin-top: 1rem !important; }
.pt-4 { padding-top: 1rem !important; }
.border-b { border-bottom: 1px solid var(--border) !important; }
.form-grid-2 { display: grid !important; grid-template-columns: 1fr 1fr !important; }

.mb-3 { margin-bottom: 0.75rem !important; }
.border-top { border-top: 1px solid var(--border); }
.text-sm { font-size: 0.8rem !important; }
.text-xs { font-size: 0.7rem !important; }
.text-right { text-align: right !important; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }

.w-full { width: 100% !important; }
.max-w-600 { max-width: 600px !important; }

.flex { display: flex !important; }
.flex-between { display: flex !important; justify-content: space-between !important; align-items: center !important; }
.flex-center { display: flex !important; justify-content: center !important; align-items: center !important; }
.gap-1 { gap: 1rem !important; }
.gap-2 { gap: 2rem !important; }

.badge-danger { background: #ef4444 !important; color: white !important; }
.badge-success { background: var(--primary) !important; color: white !important; }

.text-muted { color: var(--text-muted) !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.my-4 { margin-top: 2rem !important; margin-bottom: 2rem !important; }
.block { display: block !important; }
.border-0 { border: 0 !important; }
.border-t { border-top: 1px solid var(--border) !important; }
.bg-light { background: #f1f5f9 !important; }

.text-uppercase { text-transform: uppercase !important; }
.font-bold { font-weight: 700 !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.no-underline { text-decoration: none !important; }

.btn-link { padding: 0 !important; border: none !important; background: none !important; font-size: inherit !important; cursor: pointer !important; }
.inline { display: inline !important; }
.divider { color: var(--border) !important; margin: 0 0.5rem !important; }
.pt-10 { padding-top: 4rem !important; }

.w-40 { width: 40px !important; }

.h-200 { height: 200px !important; }
.h-150 { height: 150px !important; }

.mb-3 { margin-bottom: 1rem !important; }

.image-preview-container {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    overflow: hidden;
}

.image-preview-container img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.seo-metadata-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
}

.seo-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.shortcut-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-full {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
    padding: 0.75rem 1.25rem;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 0;
}

.status-card {
    background: #1e293b;
    color: #fff;
    padding: 1.75rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.status-title {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,0.4);
    font-weight: 800;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary);
    animation: pulse-simple 2s infinite;
}

@keyframes pulse-simple {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

.status-text {
    font-size: 0.8rem;
    font-family: var(--font-mono);
    font-weight: 800;
    letter-spacing: 0.05em;
}

.status-details {
    font-size: 0.7rem;
    font-family: var(--font-mono);
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

.card-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
    font-weight: 800;
}


/* Admin Components */
.admin-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.header-actions h2 {
    font-size: 1.75rem; 
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: -0.02em;
    margin: 0;
}

.header-actions p {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    margin: 0.25rem 0 0;
}

/* Admin Utility Classes */
.filter-form {
    display: flex;
    gap: 0.75rem;
    flex: 1;
    min-width: 400px;
}

.filter-form input, .filter-form select {
    padding: 0.5rem 0.85rem;
    border: 1px solid var(--border);
    font-size: 0.85rem;
    border-radius: 0.35rem;
    background: #fff;
    color: var(--text-main);
}

.filter-form input { flex: 1; }

.bulk-selection {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.bulk-selection span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: var(--text-muted);
}

.bulk-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.bulk-actions select {
    font-size: 0.8rem;
    padding: 0.4rem;
    border: 1px solid var(--border);
    border-radius: 0.35rem;
    background: #fff;
}

.asset-thumb {
    width: 48px;
    height: 32px;
    background: #f1f5f9;
    border: 1px solid var(--border);
    overflow: hidden;
    border-radius: 0.25rem;
}

.asset-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asset-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.asset-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.asset-info .title {
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
}

.asset-info .subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.header-actions p {
    color: var(--text-muted); 
    font-size: 0.75rem; 
    font-family: var(--font-mono);
    margin: 0.25rem 0 0;
}

.filter-bar {
    background: #fff; 
    border: 1px solid var(--border); 
    padding: 1rem; 
    margin-bottom: 1rem; 
    display: flex; 
    gap: 1rem; 
    align-items: center; 
    flex-wrap: wrap;
}

.bulk-bar {
    background: #f8fafc; 
    border: 1px solid var(--border); 
    border-bottom: none; 
    padding: 0.75rem 1rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.filter-form {
    display: flex; 
    gap: 0.75rem; 
    flex: 1; 
    min-width: 300px;
}

.filter-form input {
    flex: 1;
}

.reset-btn {
    color: var(--text-muted) !important;
}

.bulk-selection {
    display: flex; 
    gap: 1rem; 
    align-items: center;
}

.bulk-selection span {
    font-size: 0.7rem; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
    font-weight: 700; 
    color: var(--text-muted);
}

.bulk-actions {
    display: flex; 
    gap: 0.5rem; 
    align-items: center;
}

.asset-thumb {
    width: 64px; 
    height: 48px; 
    background: #f8fafc; 
    border: 1px solid var(--border); 
    overflow: hidden;
}

.asset-thumb img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}

.asset-thumb-placeholder {
    width: 100%; 
    height: 100%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 0.5rem; 
    color: var(--text-muted);
}

.asset-info .name { font-weight: 800; font-size: 0.9rem; }
.asset-info .slug { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.2rem; }
.price-current { color: var(--primary); font-weight: 800; font-size: 0.9rem; }
.price-old { text-decoration: line-through; color: var(--text-muted); font-size: 0.7rem; }
.price-regular { font-weight: 800; font-size: 0.9rem; }
.badge-sale { background: #fef2f2 !important; color: #ef4444 !important; border-color: #fee2e2 !important; }
.badge-regular { background: #f1f5f9 !important; color: var(--text-muted) !important; }
.form-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
.pricing-protocol { padding: 1.5rem; background: #f8fafc; border: 1px solid var(--border); margin-bottom: 2rem; }
.pricing-protocol h4 { font-size: 0.75rem; text-transform: uppercase; margin-bottom: 1.5rem; color: var(--text-muted); letter-spacing: 0.05em; }

.image-preview-container { margin-bottom: 1rem; border: 1px solid var(--border); padding: 5px; background: #fff; }
.image-preview-container img { width: 100%; height: 150px; object-fit: cover; }
.checkbox-group { margin-top: 1rem; }
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-size: 0.75rem; font-weight: 700; color: var(--text-main); }

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

/* Responsive Component Adjustments */
@media (max-width: 768px) {
    .header-actions { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .filter-bar { flex-direction: column; align-items: stretch; }
    .filter-bar form { flex-direction: column; }
    .bulk-bar { flex-direction: column; gap: 1rem; align-items: flex-start; }
}

/* Original admin styles preservation */
.admin-nav { background: #fff; border-bottom: 1px solid var(--border); }
.admin-table-container { background: #fff; border: 1px solid var(--border); overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: #f1f5f9; color: var(--text-muted); border-bottom: 1px solid var(--border); padding: 1rem; text-align: left; font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; }
.admin-table td { border-bottom: 1px solid var(--border); color: var(--text-main); padding: 1rem; }
.stat-card { background: #fff; border: 1px solid var(--border); box-shadow: none; padding: 2rem; }
.form-card { background: #fff; border: 1px solid var(--border); padding: 3rem; }

/* Utility Classes */
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-5 { margin-top: 3rem; }
.pt-5 { padding-top: 3rem; }
.border-top { border-top: 1px solid var(--border); }
.text-center { text-align: center; }
.w-100 { width: 100%; }
.d-flex { display: flex; }
.gap-3 { gap: 1.5rem; }

.btn-lg { padding: 1.5rem 3.5rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.75rem; }
input, select, textarea { 
    background: #fff !important; 
    border: 1px solid var(--border) !important; 
    color: var(--text-main) !important; 
    border-radius: 0 !important;
    padding: 0.8rem 1rem !important;
}
input:focus { border-color: var(--primary) !important; box-shadow: none !important; }

.no-results p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Blog and Content Styling */
.py-5 { padding-top: 5rem; padding-bottom: 5rem; }
.mb-5 { margin-bottom: 3rem; }
.text-center { text-align: center; }
.lead { font-size: 1.25rem; color: var(--text-muted); max-width: 800px; margin: 0 auto 1rem; }
.display-4 { font-size: 3rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.blog-card {
    background: #fff;
    transition: background 0.2s;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
}

.blog-card:hover {
    background: #f8fafc;
}

.blog-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 1.5rem 0;
    line-height: 1.2;
}

.blog-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.blog-card .btn-sm {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: auto;
}

.blog-card .btn-sm:hover {
    background: var(--text-main);
    color: #fff;
}

/* Post Content Styling */
.post-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.post-content h2, .post-content h3 {
    margin: 2.5rem 0 1rem;
    text-transform: uppercase;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul, .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

/* State Service Page */
.col-main { flex: 2; min-width: 300px; }
.col-sidebar { flex: 1; min-width: 250px; }
.cta-box {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem;
    border: none;
    position: sticky;
    top: 2rem;
}

.cta-box .badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-color: var(--border-light);
    margin-bottom: 1.5rem;
}

.cta-box h3 { text-transform: uppercase; margin-bottom: 1rem; }
.btn-light {
    background: var(--text-light);
    color: var(--bg-dark);
    border: 1px solid var(--text-light);
    padding: 1rem;
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.btn-outline-light {
    border: 1px solid var(--border-light);
    color: var(--text-light);
    padding: 1rem;
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.btn-light:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Shop and Product Detail */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.product-visuals .main-image {
    background: #f1f5f9;
    aspect-ratio: 1/1;
    overflow: hidden;
    border: 1px solid var(--border);
}

.product-visuals .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content .badge {
    margin-bottom: 1rem;
}

.product-content .product-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin: 2rem 0;
    font-family: var(--font-mono);
}

.product-content .description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.features-list {
    background: #f8fafc;
    border: 1px solid var(--border);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.features-list h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-main);
}

.features-list li::before {
    content: '[OK]';
    color: var(--primary);
    font-weight: bold;
}

.purchase-actions {
    background: #fff;
    border: 1px solid var(--primary);
    padding: 3rem;
    position: relative;
}

.purchase-actions::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-glow);
    pointer-events: none;
}

.purchase-actions h4 {
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.purchase-actions p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    margin-bottom: 2rem;
}

.btn-back {
    text-decoration: none;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 2rem;
}

.btn-back:hover {
    color: var(--primary);
}

/* Sales Letter Styles */
.sales-letter-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 1.5rem;
}

.sales-letter-section h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.sales-letter-section p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.highlight-text {
    color: var(--text-main);
    font-weight: 700;
    border-bottom: 2px solid var(--primary);
}

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

.benefit-card h3 {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.centered-cta {
    text-align: center;
    padding: 8rem 0;
}

.centered-cta h2 {
    font-size: 4rem;
    margin-bottom: 3rem;
}

.narrative-intro {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 4rem;
}

.problem-statement {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 8rem 0;
}

.problem-statement h2 {
    color: var(--text-light);
}

.problem-statement p {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Sales Letter */
@media (max-width: 768px) {
    .sales-letter-section h2 {
        font-size: 1.75rem;
    }
    .narrative-intro {
        font-size: 1.15rem;
    }
    .centered-cta h2 {
        font-size: 1.75rem;
    }
    .section-header h2 {
        font-size: 1.6rem;
    }
    .hero-content h1 { 
        font-size: 2.75rem; 
    }
    .app-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-slider { grid-template-columns: 1fr; }
    .py-5 { padding: 5rem 0; }
    .blog-grid { grid-template-columns: 1fr; }
    .display-4 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { 
        font-size: 2.15rem; 
    }
    .sales-letter-section h2 {
        font-size: 1.4rem;
    }
    .section-header h2 {
        font-size: 1.35rem;
    }
    .centered-cta h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 600px) {
    .container { padding: 0 1rem; }
    .app-grid { grid-template-columns: 1fr; }
    .brand-nav .logo { font-size: 1.1rem; }
    .logo-icon { height: 24px; margin-right: 8px; }
    .admin-form { padding: 1.5rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .admin-table-container { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .admin-table { min-width: 500px; }
}