/*
Theme Name: Hotel Tools
Theme URI: https://hoteltools.ai
Author: IVOCOR
Author URI: https://hoteltools.ai
Description: Professional SaaS theme for AI-powered hotel management intelligence platform. Built for hospitality leaders. A division of IVOCOR.
Version: 1.9.492
License: Proprietary
Text Domain: hoteltools
Tags: hospitality, saas, dashboard, business-intelligence

Hotel Tools - Intelligence for Modern Hospitality
*/

/* ============================================
   DESIGN SYSTEM - CSS VARIABLES
   ============================================ */

:root {
    /* Primary Palette - Deep Navy Foundation */
    --ht-navy-900: #0a1628;
    --ht-navy-800: #0f2240;
    --ht-navy-700: #1a3a5c;
    --ht-navy-600: #234b73;
    --ht-navy-500: #2d5f8a;
    --ht-navy-400: #4a7ca8;
    --ht-navy-300: #7ba3c7;
    --ht-navy-200: #b3cce3;
    --ht-navy-100: #e1ecf5;
    --ht-navy-50: #f5f8fb;
    
    /* Accent - Warm Gold */
    --ht-gold-500: #d4a54a;
    --ht-gold-400: #e4b85c;
    --ht-gold-300: #f0ca7a;
    --ht-gold-200: #fae0a8;
    --ht-gold-100: #fdf3dc;
    --ht-gold-glow: rgba(212, 165, 74, 0.15);
    
    /* Status Colors */
    --ht-success: #10b981;
    --ht-success-soft: rgba(16, 185, 129, 0.1);
    --ht-warning: #f59e0b;
    --ht-warning-soft: rgba(245, 158, 11, 0.1);
    --ht-danger: #ef4444;
    --ht-danger-soft: rgba(239, 68, 68, 0.1);
    --ht-info: #3b82f6;
    --ht-info-soft: rgba(59, 130, 246, 0.1);
    
    /* Neutrals */
    --ht-white: #ffffff;
    --ht-gray-50: #fafafa;
    --ht-gray-100: #f4f4f5;
    --ht-gray-200: #e4e4e7;
    --ht-gray-300: #d4d4d8;
    --ht-gray-400: #a1a1aa;
    --ht-gray-500: #71717a;
    --ht-gray-600: #52525b;
    --ht-gray-700: #3f3f46;
    --ht-gray-800: #27272a;
    --ht-gray-900: #18181b;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-heading: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
    
    /* Font Sizes - Fluid Scale */
    --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.3vw, 0.95rem);
    --text-base: clamp(1rem, 0.9rem + 0.4vw, 1.1rem);
    --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.2rem + 1vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.4rem + 1.5vw, 2.5rem);
    --text-4xl: clamp(2.25rem, 1.6rem + 2vw, 3.5rem);
    --text-5xl: clamp(3rem, 2rem + 3vw, 5rem);
    
    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(10, 22, 40, 0.08), 0 2px 4px -1px rgba(10, 22, 40, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(10, 22, 40, 0.1), 0 4px 6px -2px rgba(10, 22, 40, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(10, 22, 40, 0.12), 0 10px 10px -5px rgba(10, 22, 40, 0.04);
    --shadow-glow: 0 0 40px rgba(212, 165, 74, 0.15);
    --shadow-card: 0 1px 3px rgba(10, 22, 40, 0.08), 0 1px 2px rgba(10, 22, 40, 0.06);
    --shadow-card-hover: 0 10px 40px rgba(10, 22, 40, 0.12);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Layout */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1440px;
    --sidebar-width: 280px;
    --header-height: 72px;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --ht-bg-primary: var(--ht-navy-900);
    --ht-bg-secondary: var(--ht-navy-800);
    --ht-bg-tertiary: var(--ht-navy-700);
    --ht-text-primary: var(--ht-white);
    --ht-text-secondary: var(--ht-navy-200);
    --ht-text-muted: var(--ht-navy-300);
    --ht-border: rgba(255, 255, 255, 0.08);
    --ht-border-strong: rgba(255, 255, 255, 0.15);
}

/* Light Mode Variables (default) */
:root, [data-theme="light"] {
    --ht-bg-primary: var(--ht-white);
    --ht-bg-secondary: var(--ht-gray-50);
    --ht-bg-tertiary: var(--ht-gray-100);
    --ht-text-primary: var(--ht-navy-900);
    --ht-text-secondary: var(--ht-gray-600);
    --ht-text-muted: var(--ht-gray-500);
    --ht-border: var(--ht-gray-200);
    --ht-border-strong: var(--ht-gray-300);
}

/* ============================================
   BASE RESET & TYPOGRAPHY
   ============================================ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--ht-text-primary);
    background: var(--ht-bg-primary);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--ht-text-primary);
    letter-spacing: -0.02em;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

.display-heading {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.03em;
}

p {
    margin-bottom: var(--space-4);
    color: var(--ht-text-secondary);
}

a {
    color: var(--ht-gold-500);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--ht-gold-400);
}

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

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-wide {
    max-width: var(--container-2xl);
}

.container-narrow {
    max-width: var(--container-md);
}

.section {
    padding: var(--space-20) 0;
}

.section-lg {
    padding: var(--space-32) 0;
}

/* Flex Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* Grid Utilities */
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Tablet: 4-col becomes 2-col, 3-col becomes 2-col */
@media (max-width: 1024px) {
    .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile: Everything becomes 1-column */
@media (max-width: 768px) {
    .grid-cols-2 { grid-template-columns: 1fr; }
    .grid-cols-3 { grid-template-columns: 1fr; }
    .grid-cols-4 { grid-template-columns: 1fr; }
    .md\:grid-cols-1 { grid-template-columns: 1fr; }
    .md\:flex-col { flex-direction: column; }
}

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-sm { font-size: var(--text-sm); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-muted { color: var(--ht-text-muted); }
.text-gold { color: var(--ht-gold-500); }
.text-navy { color: var(--ht-navy-700); }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.05em; }

/* Spacing Utilities */
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }

/* ============================================
   COMPONENTS
   ============================================ */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ht-gold-500), var(--ht-gold-400));
    color: var(--ht-navy-900);
    box-shadow: 0 2px 8px rgba(212, 165, 74, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 165, 74, 0.4);
    color: var(--ht-navy-900);
}

.btn-secondary {
    background: var(--ht-navy-800);
    color: var(--ht-white);
}

.btn-secondary:hover {
    background: var(--ht-navy-700);
    color: var(--ht-white);
}

.btn-outline {
    background: transparent;
    color: var(--ht-text-primary);
    border: 1px solid var(--ht-border-strong);
}

.btn-outline:hover {
    background: var(--ht-bg-tertiary);
    border-color: var(--ht-gold-500);
    color: var(--ht-gold-500);
}

/* Outline button for dark backgrounds */
.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--ht-text-secondary);
}

.btn-ghost:hover {
    background: var(--ht-bg-tertiary);
    color: var(--ht-text-primary);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius-md);
}

/* Cards */
.card {
    background: var(--ht-bg-primary);
    border: 1px solid var(--ht-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: var(--ht-border-strong);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--ht-border);
}

.card-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--ht-text-primary);
}

.card-body {
    color: var(--ht-text-secondary);
}

.card-footer {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--ht-border);
}

/* Module Cards (for dashboard) */
.module-card {
    position: relative;
    background: var(--ht-bg-primary);
    border: 1px solid var(--ht-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    overflow: hidden;
    transition: all var(--transition-base);
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ht-gold-500), var(--ht-gold-300));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--ht-gold-500);
}

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

.module-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ht-gold-glow);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-5);
    font-size: 28px;
}

.module-title {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.module-desc {
    color: var(--ht-text-muted);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.module-status {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
}

.module-status.active {
    background: var(--ht-success-soft);
    color: var(--ht-success);
}

.module-status.coming-soon {
    background: var(--ht-info-soft);
    color: var(--ht-info);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
}

.badge-gold {
    background: var(--ht-gold-glow);
    color: var(--ht-gold-500);
}

.badge-navy {
    background: var(--ht-navy-100);
    color: var(--ht-navy-700);
}

.badge-success {
    background: var(--ht-success-soft);
    color: var(--ht-success);
}

/* Form Elements */
.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--ht-text-primary);
    margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--ht-text-primary);
    background: var(--ht-bg-primary);
    border: 1px solid var(--ht-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--ht-gold-500);
    box-shadow: 0 0 0 3px var(--ht-gold-glow);
}

.form-input::placeholder {
    color: var(--ht-text-muted);
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--ht-border);
    border-radius: var(--radius-lg);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-sm);
}

.data-table th,
.data-table td {
    padding: var(--space-4);
    text-align: left;
    border-bottom: 1px solid var(--ht-border);
}

.data-table th {
    background: var(--ht-bg-secondary);
    font-weight: 600;
    color: var(--ht-text-primary);
    text-transform: uppercase;
    font-size: var(--text-xs);
    letter-spacing: 0.05em;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background: var(--ht-bg-secondary);
}

/* Stats/Metrics */
.stat-card {
    background: var(--ht-bg-primary);
    border: 1px solid var(--ht-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--ht-text-primary);
    line-height: 1;
    margin-bottom: var(--space-2);
}

/* Portal-specific stat value override */
.portal-page .stat-value,
.portal-layout .stat-value,
.portal-stat-card .stat-value {
    color: #f8fafc !important;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--ht-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-change {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-top: var(--space-2);
}

.stat-change.positive {
    color: var(--ht-success);
}

.stat-change.negative {
    color: var(--ht-danger);
}

/* Alerts */
.alert {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
}

.alert-success {
    background: var(--ht-success-soft);
    color: var(--ht-success);
    border: 1px solid var(--ht-success);
}

.alert-warning {
    background: var(--ht-warning-soft);
    color: #b45309;
    border: 1px solid var(--ht-warning);
}

.alert-danger {
    background: var(--ht-danger-soft);
    color: var(--ht-danger);
    border: 1px solid var(--ht-danger);
}

.alert-info {
    background: var(--ht-info-soft);
    color: var(--ht-info);
    border: 1px solid var(--ht-info);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ht-border);
    z-index: 1000;
    transition: all var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-2xl);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--ht-navy-800), var(--ht-navy-600));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ht-gold-500);
    font-weight: 700;
    font-size: 18px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--ht-navy-900);
}

.logo-text span {
    color: var(--ht-gold-500);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--ht-text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--ht-text-primary);
    background: var(--ht-bg-tertiary);
}

.nav-link.active {
    color: var(--ht-gold-500);
    background: var(--ht-gold-glow);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--ht-navy-900);
    color: var(--ht-navy-200);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

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

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer-logo .logo-mark {
    background: linear-gradient(135deg, var(--ht-gold-500), var(--ht-gold-400));
    color: var(--ht-navy-900);
}

.footer-logo .logo-text {
    color: var(--ht-white);
}

.footer-tagline {
    font-size: var(--text-sm);
    color: var(--ht-navy-300);
    margin-bottom: var(--space-6);
}

.footer-heading {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--ht-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    color: var(--ht-navy-300);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--ht-gold-400);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--text-sm);
    color: var(--ht-navy-400);
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

.footer-legal a {
    color: var(--ht-navy-400);
}

.footer-legal a:hover {
    color: var(--ht-gold-400);
}

/* ============================================
   DASHBOARD LAYOUT
   ============================================ */

.dashboard-layout {
    display: flex;
    min-height: 100vh;
    padding-top: var(--header-height);
}

.dashboard-sidebar {
    position: fixed;
    top: var(--header-height);
    left: 0;
    bottom: 0;
    width: var(--sidebar-width);
    background: var(--ht-bg-primary);
    border-right: 1px solid var(--ht-border);
    overflow-y: auto;
    z-index: 100;
}

.sidebar-inner {
    padding: var(--space-6);
}

.sidebar-section {
    margin-bottom: var(--space-6);
}

.sidebar-label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ht-text-muted);
    margin-bottom: var(--space-3);
    padding: 0 var(--space-3);
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav-item {
    margin-bottom: var(--space-1);
}

.sidebar-nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--ht-text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.sidebar-nav-link:hover {
    background: var(--ht-bg-tertiary);
    color: var(--ht-text-primary);
}

.sidebar-nav-link.active {
    background: var(--ht-gold-glow);
    color: var(--ht-gold-500);
}

.sidebar-nav-link .icon {
    width: 20px;
    text-align: center;
}

.dashboard-main {
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: var(--space-8);
    background: var(--ht-bg-secondary);
    min-height: calc(100vh - var(--header-height));
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-8);
}

.page-title {
    font-size: var(--text-2xl);
    font-weight: 700;
}

.page-subtitle {
    font-size: var(--text-sm);
    color: var(--ht-text-muted);
    margin-top: var(--space-1);
}

@media (max-width: 1024px) {
    .dashboard-sidebar {
        transform: translateX(-100%);
        transition: transform var(--transition-base);
    }
    
    .dashboard-sidebar.open {
        transform: translateX(0);
    }
    
    .dashboard-main {
        margin-left: 0;
    }
}

/* ============================================
   PAGE TEMPLATE: LANDING / MARKETING
   ============================================ */

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: linear-gradient(135deg, var(--ht-navy-900) 0%, var(--ht-navy-800) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 165, 74, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 165, 74, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 40%);
    opacity: 1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(212, 165, 74, 0.1);
    border: 1px solid rgba(212, 165, 74, 0.3);
    border-radius: var(--radius-full);
    color: var(--ht-gold-400);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-6);
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 500;
    color: var(--ht-white);
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--ht-gold-400), var(--ht-gold-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--text-xl);
    color: var(--ht-navy-200);
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

.hero-eyebrow {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--ht-gold-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.hero-stats {
    display: flex;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.hero-stat {
    text-align: left;
}

.hero-stat .stat-value {
    display: block;
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--ht-gold-400);
    line-height: 1.2;
}

.hero-stat .stat-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--ht-navy-300);
    margin-top: 4px;
}

.hero-subtext {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-6);
    font-size: var(--text-sm);
    color: var(--ht-navy-300);
}

.hero-subtext svg {
    color: var(--ht-gold-400);
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-trust {
    margin-top: var(--space-10);
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.hero-trust-stars {
    display: flex;
}

.trust-star {
    width: 32px;
    height: 32px;
    background: var(--ht-gold-400);
    border-radius: 50%;
    border: 2px solid var(--ht-navy-800);
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--ht-navy-900);
}

.trust-star:first-child {
    margin-left: 0;
}

.hero-trust-text {
    color: var(--ht-navy-300);
    font-size: var(--text-sm);
}

.hero-trust-text strong {
    color: var(--ht-white);
}

/* Hero Visual / Mockup */
.hero-visual {
    position: relative;
    z-index: 1;
}

/* Dashboard Preview in Hero */
.dashboard-preview {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(212, 165, 74, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.preview-dots span:first-child {
    background: #ef4444;
}

.preview-dots span:nth-child(2) {
    background: #eab308;
}

.preview-dots span:nth-child(3) {
    background: #22c55e;
}

.preview-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.preview-content {
    padding: 20px;
}

.preview-chart {
    margin-bottom: 20px;
}

.chart-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100px;
    gap: 8px;
}

.chart-bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.bar-pair {
    display: flex;
    gap: 3px;
    align-items: flex-end;
}

.chart-bar {
    width: 12px;
    border-radius: 3px 3px 0 0;
    transition: height 0.3s ease;
}

.chart-bar.recommended {
    background: linear-gradient(180deg, var(--ht-gold-400), var(--ht-gold-500));
}

.chart-bar.scheduled {
    background: linear-gradient(180deg, #3b82f6, #2563eb);
}

.day-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.chart-legend span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-rec {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--ht-gold-400);
    border-radius: 2px;
}

.legend-sched {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #3b82f6;
    border-radius: 2px;
}

.preview-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.preview-metric {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

.preview-metric.green {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.preview-metric .metric-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.preview-metric.green .metric-value {
    color: #22c55e;
}

.preview-metric .metric-label {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.hero-mockup {
    background: #0a1628;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(212, 165, 74, 0.1);
}

.mockup-chrome {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dots .dot.red { background: #ef4444; }
.mockup-dots .dot.yellow { background: #f59e0b; }
.mockup-dots .dot.green { background: #10b981; }

.mockup-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.mockup-body {
    display: flex;
    min-height: 380px;
}

.mockup-sidebar {
    width: 60px;
    background: rgba(0, 0, 0, 0.3);
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-nav-item {
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.mockup-nav-item.active {
    background: linear-gradient(135deg, rgba(212, 165, 74, 0.4), rgba(212, 165, 74, 0.15));
    border-left: 3px solid #d4a54a;
}

.mockup-main {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mockup-stats {
    display: flex;
    gap: 16px;
}

.mockup-stat-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.mockup-stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1;
}

.mockup-stat-label {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 8px;
}

.mockup-chart {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    min-height: 100px;
}

.mockup-chart svg {
    width: 100%;
    height: 70px;
}

.mockup-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-row {
    height: 14px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
}

.mockup-row.header {
    background: rgba(255, 255, 255, 0.12);
}

.mockup-row:nth-child(3) { width: 95%; }
.mockup-row:nth-child(4) { width: 88%; }
.mockup-row:nth-child(5) { width: 92%; }

/* Hero Responsive */
@media (max-width: 1000px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-section .hero-visual,
    .hero-section .dashboard-preview {
        display: none;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
}
/* Features Section */
.features-section {
    background: var(--ht-bg-secondary);
}

.features-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-16);
}

.section-label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ht-gold-500);
    margin-bottom: var(--space-4);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

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

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

.feature-card {
    background: var(--ht-bg-primary);
    border: 1px solid var(--ht-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--ht-gold-500);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ht-gold-glow);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-5);
    font-size: 24px;
}

.feature-title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.feature-desc {
    color: var(--ht-text-muted);
    font-size: var(--text-sm);
    line-height: 1.7;
}

/* Trust/Logos Section */
.trust-section {
    background: var(--ht-bg-primary);
    text-align: center;
}

.trust-label {
    font-size: var(--text-sm);
    color: var(--ht-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-8);
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-12);
    flex-wrap: wrap;
    opacity: 0.6;
}

.trust-logos img {
    height: 32px;
    filter: grayscale(100%);
    transition: all var(--transition-base);
}

.trust-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--ht-navy-800), var(--ht-navy-900));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--ht-gold-glow), transparent 70%);
    filter: blur(100px);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    color: var(--ht-white);
    margin-bottom: var(--space-6);
}

.cta-desc {
    font-size: var(--text-lg);
    color: var(--ht-navy-200);
    margin-bottom: var(--space-8);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--ht-gray-200) 25%, var(--ht-gray-100) 50%, var(--ht-gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */

/* Admin bar adjustment */
.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

/* WordPress alignment classes */
.alignleft {
    float: left;
    margin-right: var(--space-6);
    margin-bottom: var(--space-4);
}

.alignright {
    float: right;
    margin-left: var(--space-6);
    margin-bottom: var(--space-4);
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignwide {
    max-width: var(--container-xl);
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* WordPress Galleries */
.wp-block-gallery {
    margin-bottom: var(--space-6);
}

/* Comments */
.comments-area {
    margin-top: var(--space-12);
}

.comment-list {
    list-style: none;
}

.comment {
    padding: var(--space-6);
    border: 1px solid var(--ht-border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-12);
    padding-top: var(--space-8);
    border-top: 1px solid var(--ht-border);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-12);
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--space-3);
    font-weight: 500;
    color: var(--ht-text-secondary);
    background: var(--ht-bg-primary);
    border: 1px solid var(--ht-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--ht-gold-500);
    border-color: var(--ht-gold-500);
    color: var(--ht-navy-900);
}

/* ============================================
   LANDING PAGE MOBILE STYLES
   ============================================ */

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: #0a1628 !important;
    z-index: 99999 !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.is-open {
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-nav-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #0a1628;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-header .site-logo,
.mobile-nav-header .logo-text,
.mobile-nav-header a {
    color: #fff !important;
}

.mobile-nav-close {
    background: rgba(255,255,255,0.1) !important;
    border: none !important;
    color: #fff !important;
    cursor: pointer;
    padding: 12px !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close:hover {
    background: rgba(255,255,255,0.2) !important;
}

.mobile-nav-close svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.mobile-nav-menu {
    flex: 1;
    overflow-y: auto;
}

/* Mobile Nav List - Direct styles */
.mobile-nav-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mobile-nav-list li {
    margin-bottom: 4px !important;
    list-style: none !important;
}

.mobile-nav-list a,
.mobile-nav-list li a,
.mobile-nav-list .menu-item a {
    display: block !important;
    padding: 16px 20px !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    border-radius: 10px;
    transition: background 0.2s;
    background: transparent;
}

.mobile-nav-list a:hover,
.mobile-nav-list li a:hover,
.mobile-nav-list .menu-item a:hover {
    background: rgba(212, 165, 74, 0.15) !important;
    color: #d4a54a !important;
}

/* WordPress menu-specific overrides */
.mobile-nav-list .menu-item {
    list-style: none !important;
    margin-bottom: 4px !important;
}

.mobile-nav-list .sub-menu {
    list-style: none !important;
    padding-left: 20px !important;
    margin: 0 !important;
}

.mobile-nav-list .sub-menu a {
    font-size: 16px !important;
    padding: 12px 20px !important;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 16px;
    text-align: center;
}

.mobile-nav-actions .btn-outline {
    border-color: rgba(255,255,255,0.3) !important;
    color: #fff !important;
}

/* Mobile Header */
@media (max-width: 768px) {
    /* Header */
    .site-header {
        padding: 12px 16px;
    }
    
    .site-header .container {
        padding: 0;
    }
    
    .header-inner {
        padding: 0 8px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .header-actions .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .header-actions .btn-secondary {
        display: none;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 100px 16px 40px !important;
        min-height: auto;
    }
    
    .hero-section .container {
        flex-direction: column !important;
        gap: 24px !important;
    }
    
    /* Hero grid layout for mobile */
    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    
    .hero-section .hero-content {
        flex: 1 1 auto !important;
        min-width: 100% !important;
        text-align: center;
    }
    
    /* Hide the dashboard mockup on mobile */
    .hero-section .hero-visual,
    .hero-section .dashboard-preview {
        display: none !important;
    }
    
    /* Hero stats on mobile */
    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .hero-stat {
        text-align: center;
    }
    
    .hero-badge {
        justify-content: center;
        font-size: 13px;
    }
    
    .hero-title,
    .hero-title.display-heading,
    h1.hero-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    /* Section Padding */
    .section-lg {
        padding: 48px 16px !important;
    }
    
    /* Features Section */
    .features-section {
        padding: 40px 16px;
    }
    
    .features-header {
        text-align: center;
        margin-bottom: 32px !important;
    }
    
    .features-header h2,
    .features-header p {
        text-align: center;
    }
    
    /* Feature Cards */
    .feature-card {
        padding: 20px;
    }
    
    /* Section Headers */
    .section-header h2,
    .features-header h2,
    section h2 {
        font-size: 24px !important;
        line-height: 1.3;
    }
    
    .section-header p,
    .features-header p {
        font-size: 15px;
    }
    
    /* Module Cards */
    .module-card {
        padding: 20px;
    }
    
    .module-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    
    .module-title {
        font-size: 16px;
    }
    
    /* How It Works - Step Numbers */
    .text-center [style*="width: 80px"][style*="height: 80px"] {
        width: 60px !important;
        height: 60px !important;
        font-size: 28px !important;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: 40px 16px;
    }
    
    blockquote {
        font-size: 18px !important;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 40px 16px;
    }
    
    .cta-section h2,
    .cta-title {
        font-size: 24px !important;
    }
    
    .cta-section .flex {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-section .btn {
        width: 100%;
    }
    
    /* Footer */
    .site-footer {
        padding: 40px 16px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 32px;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title,
    .hero-title.display-heading,
    h1.hero-title {
        font-size: 24px !important;
    }
    
    .btn-lg {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .section-lg {
        padding: 40px 12px !important;
    }
    
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}
