:root {
    /* Colors - Blue Brand (aligned with web app) */
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --primary-bg: #eff6ff;
    --primary-10: rgba(59, 130, 246, 0.01);
    --navy: #1e293b;
    --secondary: #64748b;
    --success: #10b981;
    --success-light: #d1fae5;
    --danger: #ef4444;
    --danger-light: #fee2e2;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --text: #1e293b;
    --text-body: #475569;
    --text-muted: #94a3b8;
    --text-light: #cbd5e1;
    --bg: #ffffff;
    --bg-gray: #f8fafc;
    --bg-dark: #ffffff;
    --surface: #ffffff;
    --surface-alt: #f8fafc;
    --border: #e2e8f0;
    --border-light: #f1f5f9;

    /* Shadows - Professional depth system */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --card-shadow: var(--shadow-md);
    --card-shadow-hover: var(--shadow-lg);

    /* Spacing System (8px grid) */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Border Radius */
    --radius: 0.5rem;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-pill: 50px;

    /* Typography Scales */
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 30px;
    --font-size-4xl: 36px;
    --font-size-5xl: 48px;

    /* Line Heights */
    --line-height-tight: 1.3;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.7;

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 200ms ease-in-out;
    --transition-slow: 300ms ease-in-out;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-body);
    background: #ffffff;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1 {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    font-weight: 800;
    line-height: 1.2;
    font-size: var(--font-size-5xl);
    letter-spacing: -0.025em;
    margin: 0;
}

h2 {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    font-weight: 700;
    line-height: 1.3;
    font-size: var(--font-size-3xl);
    letter-spacing: -0.015em;
    margin: 0;
}

h3 {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    font-weight: 600;
    line-height: 1.4;
    font-size: var(--font-size-xl);
    margin: 0;
}

h4, h5 {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    position: relative;
}
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-sm { height: 38px; padding: 0 18px; font-size: 0.8rem; }
.btn-md { height: 44px; padding: 0 24px; }
.btn-lg { height: 50px; padding: 0 32px; font-size: 0.95rem; font-weight: 700; }

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.03);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.05);
}

.btn-teal {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.03);
}
.btn-teal:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.05);
}

.btn-orange {
    background: var(--warning);
    color: #fff;
    border-color: var(--warning);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}
.btn-orange:hover {
    background: #d97706;
    border-color: #d97706;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
    transition: all var(--transition-base);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-white {
    background: #fff;
    color: #0f172a;
    border-color: #fff;
    font-weight: 600;
}
.btn-white:hover { background: #f3f4f6; border-color: #f3f4f6; box-shadow: 0 8px 20px rgba(255,255,255,0.2); }

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* --- Top Utility Bar --- */
.top-bar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
}

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

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    transition: color 0.15s;
}

.top-bar-item:hover { color: #fff; }
.top-bar-item i { margin-right: 6px; font-size: 0.7rem; }
.top-bar-login { font-weight: 600; color: #fff; }

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 100;
    background: #ffffff;
    height: 64px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    height: 22px;
    width: auto;
}

.brand-icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary-10);
    color: var(--primary);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
}

.brand-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    display: none;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: 6px;
    transition: all var(--transition-base);
}
.nav-link:hover { color: var(--text); background: var(--bg-gray); }
.nav-link.active { color: var(--primary); font-weight: 600; }

.nav-right { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 6px;
}
.nav-toggle:hover { background: var(--bg-gray); }
.nav-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; }

/* --- Hero --- */
.hero {
    padding: 120px 0 64px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    border-bottom: none;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.08;
}
.hero-blob.blob-1 { width: 600px; height: 600px; background: #3b82f6; top: -300px; right: -150px; }
.hero-blob.blob-2 { width: 500px; height: 500px; background: #60a5fa; bottom: -200px; left: -100px; }

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

.hero-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--primary);
    background: #eff6ff;
    border: 1px solid #dbeafe;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 18px;
}
.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: #1f2937;
    font-weight: 900;
}
.hero-content h1 .highlight { color: var(--primary); }
.hero-content h1 .highlight-orange { color: #fbbf24; }

.hero-content p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    margin-top: 40px;
}

.hero-actions .btn {
    min-width: 200px;
    font-size: 1rem;
    height: 56px;
    font-weight: 700;
    border-radius: 12px;
}

.hero-proof {
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 14px;
}
.hero-proof > span { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.proof-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.proof-tags span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-body);
    background: #f1f5f9;
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
}

.hero-visual {
    position: relative;
}

.hero-dashboard {
    background: #fff;
    border: none;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.01), 0 0 40px rgba(59, 130, 246, 0.01);
}

.dashboard-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }
.dashboard-topbar .url {
    margin-left: 12px;
    font-size: 0.7rem;
    color: var(--text-muted);
    background: var(--bg);
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dash-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px;
}

.dash-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.dash-card-header span { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.dash-card-icon { width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; }
.dash-card-icon.teal { background: var(--primary-bg); color: var(--primary); }
.dash-card-icon.orange { background: var(--warning-light); color: var(--warning); }
.dash-card-icon.blue { background: #dcfce7; color: var(--success); }
.dash-card-icon.purple { background: #f3e8ff; color: #7c3aed; }

.dash-card .val { font-size: 1.4rem; font-weight: 700; color: var(--text); }
.dash-card .change { font-size: 0.7rem; color: var(--primary); font-weight: 500; }

.hero-badge-float {
    position: absolute;
    background: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    z-index: 2;
}
.hero-badge-float.pos-top { top: -10px; right: 20px; }
.hero-badge-float.pos-bottom { bottom: -10px; left: 20px; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse-dot 2s infinite; }

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* --- Section Intro (left-aligned, no tag) --- */
.section-intro { max-width: 700px; margin-bottom: 36px; }
.section-intro h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 800;
    color: var(--text);
}
.section-intro p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.7;
    font-weight: 500;
}

.section-alt { background: var(--bg-gray); }

/* --- Problem/Solution --- */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.problem-col {
    padding: 40px;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.problem-col:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.problem-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
}
.problem-label.bad { background: var(--danger-light); color: var(--danger); }
.problem-label.good { background: var(--success-light); color: var(--success); }

.problem-list { list-style: none; padding: 0; }
.problem-list li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.5;
    border-bottom: 1px solid var(--border-light);
}
.problem-list li:last-child { border-bottom: none; }
.problem-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: 700;
    font-size: 0.7rem;
    top: 12px;
}
.problem-list.solved li::before {
    content: '✓';
    color: var(--success);
}

/* --- Before & After Grid --- */
.before-after-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.ba-column {
    padding: 40px;
}

.ba-before {
    background: #fefefe;
}

.ba-after {
    background: #f8fffe;
}

.ba-header {
    margin-bottom: 28px;
}

.ba-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
}

.ba-badge-red {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.ba-badge-green {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.ba-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ba-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.ba-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.ba-icon.red {
    background: #fef2f2;
    color: #dc2626;
}

.ba-icon.green {
    background: #f0fdf4;
    color: #16a34a;
}

.ba-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px;
}

.ba-text span {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.5;
}

.ba-divider {
    width: 1px;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ba-divider span {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* --- Modules Showcase (Numbered list) --- */
.modules-showcase { max-width: none; }
.module-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}
.module-item:last-child { border-bottom: none; }
.module-num {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.15);
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
}
.module-info h3 { font-size: 0.95rem; margin-bottom: 4px; font-weight: 600; }
.module-info p { font-size: 0.82rem; color: var(--text-body); line-height: 1.6; }

/* --- Features Page: Module Cards Grid --- */
.features-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.feature-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 20px 24px;
    transition: all 0.3s ease;
    overflow: hidden;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.25);
}
.feature-card-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(37, 99, 235, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #2563eb;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}
.feature-card:hover .feature-card-icon-wrap {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    transform: scale(1.05);
}
.feature-card-num {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(59, 130, 246, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
}
.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* --- Features Page: Role Cards Grid --- */
.roles-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.role-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 22px;
    transition: all 0.3s ease;
    text-align: center;
}
.role-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.25);
}
.role-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: #4f46e5;
    transition: all 0.3s ease;
}
.role-card:hover .role-card-icon {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff;
    transform: scale(1.08);
}
.role-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.role-card p {
    font-size: 0.8rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* --- Features Page: Role Mockups --- */
.role-mockups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.role-mockup-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.role-mockup-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}
.role-mockup-header {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}
.role-mockup-blue .role-mockup-header { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.role-mockup-green .role-mockup-header { background: linear-gradient(135deg, #16a34a, #15803d); }
.role-mockup-amber .role-mockup-header { background: linear-gradient(135deg, #f59e0b, #d97706); }
.role-mockup-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
.role-mockup-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.role-mockup-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.5;
}
.role-mockup-item > i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}
.role-mockup-blue .role-mockup-item > i { background: rgba(37, 99, 235, 0.1); color: #2563eb; }
.role-mockup-green .role-mockup-item > i { background: rgba(22, 163, 74, 0.1); color: #16a34a; }
.role-mockup-amber .role-mockup-item > i { background: rgba(245, 158, 11, 0.1); color: #d97706; }
.role-mockup-item div strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}
.role-mockup-item div span {
    font-size: 0.78rem;
    color: var(--text-body);
}
.role-mockup-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

/* --- Features Page: Why Cards --- */
.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.why-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.25);
}
.why-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #059669;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.why-card:hover .why-card-icon {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
    transform: scale(1.05);
}
.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}
.why-card p {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 16px;
}
.why-card-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.why-card-examples span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #059669;
    background: rgba(5, 150, 105, 0.08);
    padding: 5px 10px;
    border-radius: 20px;
}
.why-card-examples span i { font-size: 0.6rem; }

/* --- Features Page: Mockups --- */
.mockup-showcase { margin-top: 40px; position: relative; }
.mockup-browser {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: #fff;
}
.mockup-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f1f5f9;
    border-bottom: 1px solid var(--border);
}
.mockup-browser-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-browser-bar .dot-red { background: #ef4444; }
.mockup-browser-bar .dot-yellow { background: #f59e0b; }
.mockup-browser-bar .dot-green { background: #22c55e; }
.mockup-url {
    margin-left: 12px;
    font-size: 0.72rem;
    color: #6b7280;
    background: #fff;
    padding: 4px 14px;
    border-radius: 6px;
    border: 1px solid var(--border);
}
.mockup-browser-body {
    display: grid;
    grid-template-columns: 190px 1fr;
    min-height: 520px;
}
.mockup-sidebar {
    background: #ffffff;
    border-right: 1px solid #e2e8f0;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    overflow-y: auto;
    max-height: 520px;
}
.mockup-sidebar::-webkit-scrollbar { width: 3px; }
.mockup-sidebar::-webkit-scrollbar-track { background: transparent; }
.mockup-sidebar::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 3px; }
.mockup-sb-brand {
    padding: 6px 8px 8px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 2px;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 2;
}
.mockup-sb-logo {
    height: 18px;
    width: auto;
}
.mockup-sb-logo {
    height: 18px;
    width: auto;
}
.mockup-sb-item {
    font-size: 0.68rem;
    color: #64748b;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 9px;
    border-radius: 10px;
    transition: all 0.15s ease;
    font-weight: 500;
}
.mockup-sb-item:hover {
    color: #334155;
    background: #f1f5f9;
}
.mockup-sb-item.active {
    color: #ffffff;
    background: #2563eb;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
}
.mockup-sb-item.has-children {
    justify-content: flex-start;
}
.mockup-sb-arrow {
    margin-left: auto;
    font-size: 0.45rem;
    opacity: 0.4;
}
.mockup-sb-group {
    font-size: 0.48rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 14px 10px 4px;
}
.mockup-sb-item i:first-child { width: 14px; text-align: center; font-size: 0.6rem; }
.mockup-main { padding: 20px; background: #f8fafc; }
.mockup-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.mockup-breadcrumb { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.mockup-topbar-right { display: flex; align-items: center; gap: 12px; }
.mockup-notif { position: relative; font-size: 0.75rem; color: var(--text-muted); }
.mockup-notif-dot { position: absolute; top: -2px; right: -2px; width: 6px; height: 6px; border-radius: 50%; background: #ef4444; }
.mockup-avatar { width: 26px; height: 26px; border-radius: 50%; background: #2563eb; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.55rem; font-weight: 700; }

/* Dashboard header */
.mockup-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}
.mockup-dash-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}
.mockup-dash-subtitle {
    font-size: 0.65rem;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}
.mockup-dash-actions {
    display: flex;
    gap: 6px;
}
.mockup-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.58rem;
    padding: 5px 10px;
    border-radius: 6px;
    background: #2563eb;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
}
.mockup-action-btn i { font-size: 0.5rem; }

/* Enhanced stat cards with gradients */
.mockup-enhanced-stat {
    border-radius: 14px;
    padding: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mockup-enhanced-stat.grad-blue {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 60%, #bfdbfe 100%);
    border: 1px solid rgba(59, 130, 246, 0.15);
}
.mockup-enhanced-stat.grad-purple {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 60%, #ddd6fe 100%);
    border: 1px solid rgba(139, 92, 246, 0.15);
}
.mockup-enhanced-stat.grad-cyan {
    background: linear-gradient(135deg, #ecfeff 0%, #cffafe 60%, #a5f3fc 100%);
    border: 1px solid rgba(6, 182, 212, 0.15);
}
.mockup-enhanced-stat.grad-emerald {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 60%, #a7f3d0 100%);
    border: 1px solid rgba(16, 185, 129, 0.15);
}
.mockup-estat-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-bottom: 4px;
}
.mockup-estat-icon.blue { background: rgba(59, 130, 246, 0.15); color: #2563eb; }
.mockup-estat-icon.purple { background: rgba(139, 92, 246, 0.15); color: #7c3aed; }
.mockup-estat-icon.cyan { background: rgba(6, 182, 212, 0.15); color: #0891b2; }
.mockup-estat-icon.emerald { background: rgba(16, 185, 129, 0.15); color: #059669; }
.mockup-estat-title {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    text-transform: uppercase;
}
.mockup-estat-val {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}
.mockup-estat-sub {
    font-size: 0.55rem;
    color: var(--text-muted);
}

/* Table mini inside dashboard mockup */
.mockup-table-mini {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mockup-table-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.6rem;
    color: var(--text-body);
}
.mockup-table-row:last-child { border-bottom: none; }
.mockup-table-row span:first-child { font-weight: 600; color: var(--text); }
.tag-green {
    font-size: 0.5rem;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
    font-weight: 600;
}

/* Notices mini */
.mockup-notices-mini {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mockup-notice-item {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}
.mockup-notice-item:last-child { border-bottom: none; }
.mockup-notice-item strong {
    display: block;
    font-size: 0.6rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 1px;
}
.mockup-notice-item span {
    font-size: 0.5rem;
    color: var(--text-muted);
}

.mockup-stat-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.mockup-stat-title { font-size: 0.65rem; font-weight: 500; color: var(--text-muted); }
.mockup-stat-desc { font-size: 0.6rem; color: var(--text-muted); margin-top: 4px; display: block; }
.mockup-stat-desc i { font-size: 0.5rem; color: #16a34a; margin-right: 3px; }
.mockup-area-chart { margin-top: 4px; }
.mockup-area-chart svg { width: 100%; height: 70px; }
.mockup-chart-labels { display: flex; justify-content: space-between; font-size: 0.55rem; color: var(--text-muted); margin-top: 6px; }
.mockup-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}
.mockup-stat {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
}
.mockup-stat-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}
.mockup-stat.blue .mockup-stat-icon { background: rgba(59, 130, 246, 0.1); color: #2563eb; }
.mockup-stat.green .mockup-stat-icon { background: rgba(34, 197, 94, 0.1); color: #16a34a; }
.mockup-stat.orange .mockup-stat-icon { background: rgba(249, 115, 22, 0.1); color: #ea580c; }
.mockup-stat.purple .mockup-stat-icon { background: rgba(139, 92, 246, 0.1); color: #7c3aed; }
.mockup-stat-val { display: block; font-size: 1.1rem; font-weight: 800; color: var(--text); }
.mockup-content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.mockup-chart-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px;
}
.mockup-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 14px;
}
.mockup-chart-header span {
    font-size: 0.6rem;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 4px;
    color: var(--text-muted);
    font-weight: 500;
}
.mockup-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}
.mockup-bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
    gap: 6px;
}
.mockup-bar-col span { font-size: 0.55rem; color: var(--text-muted); }
.mockup-bar {
    width: 100%;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, #3b82f6, #60a5fa);
}
.mockup-fee-visual { display: flex; flex-direction: column; gap: 10px; }
.mockup-fee-bar-wrap {
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}
.mockup-fee-bar {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    border-radius: 6px;
}
.mockup-fee-legend { display: flex; gap: 16px; font-size: 0.65rem; color: var(--text-body); align-items: center; }
.mockup-fee-legend span { display: flex; align-items: center; gap: 5px; }
.mockup-fee-percent { font-size: 1.4rem; font-weight: 800; color: #2563eb; }

/* Mockup Overlap Wrapper */
.mockup-overlap-wrapper {
    position: relative;
    margin-top: 80px;
    padding-bottom: 60px;
    overflow: visible;
}
.mockup-phone-float {
    position: absolute;
    left: -30px;
    bottom: -20px;
    z-index: 10;
    transform: scale(0.7);
    transform-origin: bottom left;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}
.mockup-phone-float:hover { transform: scale(0.73) translateY(-8px); }
.mockup-report-float {
    position: absolute;
    right: -60px;
    bottom: 100px;
    z-index: 10;
    transform: scale(0.7);
    transform-origin: bottom right;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}
.mockup-report-float:hover { transform: scale(0.73) translateY(-8px); }

/* Floating Bubbles */
.mockup-float-bubble {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 10;
    animation: floatBubble 4s ease-in-out infinite;
    white-space: nowrap;
}
.mockup-float-bubble strong { display: block; font-size: 0.72rem; color: var(--text); }
.mockup-float-bubble span { font-size: 0.62rem; color: var(--text-muted); }
.mockup-float-bubble-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.mockup-float-bubble-icon.green { background: rgba(22, 163, 74, 0.1); color: #16a34a; }
.mockup-float-bubble-icon.blue { background: rgba(37, 99, 235, 0.1); color: #2563eb; }
.mockup-float-bubble-icon.orange { background: rgba(249, 115, 22, 0.1); color: #ea580c; }
.mockup-float-bubble-icon.purple { background: rgba(139, 92, 246, 0.1); color: #7c3aed; }
.bubble-1 { top: 12%; right: 8%; z-index: 20; animation-delay: 0s; }
.bubble-2 { top: 35%; left: 25%; z-index: 20; animation-delay: 1s; }
.bubble-3 { top: 60%; right: 15%; z-index: 20; animation-delay: 2s; }
.bubble-4 { top: 80%; left: 30%; z-index: 20; animation-delay: 3s; }
@keyframes floatBubble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.mockup-phone-label {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 16px;
}
.mockup-phone-frame {
    width: 280px;
    border-radius: 28px;
    border: 3px solid #1e293b;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    position: relative;
}
.mockup-phone-notch {
    width: 100px;
    height: 20px;
    background: #1e293b;
    border-radius: 0 0 14px 14px;
    margin: 0 auto;
}
.mockup-phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #2563eb;
}
.mockup-phone-header i { color: var(--text-muted); font-size: 0.8rem; }
.mockup-phone-greeting {
    padding: 8px 16px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}
.mockup-phone-greeting small { font-size: 0.72rem; color: var(--text-muted); font-weight: 400; display: block; margin-top: 4px; }
.mockup-phone-cards {
    padding: 0 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mockup-phone-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.75rem;
}
.mockup-phone-card strong { display: block; font-size: 0.75rem; color: var(--text); margin-bottom: 2px; }
.mockup-phone-card span { font-size: 0.68rem; color: var(--text-body); }
.mockup-phone-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.mockup-phone-card-icon.green { background: rgba(34, 197, 94, 0.1); color: #16a34a; }
.mockup-phone-card-icon.blue { background: rgba(59, 130, 246, 0.1); color: #2563eb; }
.mockup-phone-card-icon.orange { background: rgba(249, 115, 22, 0.1); color: #ea580c; }
.mockup-phone-card-icon.purple { background: rgba(139, 92, 246, 0.1); color: #7c3aed; }
.mockup-phone-nav {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid var(--border);
    background: #f8fafc;
}
.mockup-phone-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 0.55rem;
    color: var(--text-muted);
}
.mockup-phone-nav-item i { font-size: 0.75rem; }
.mockup-phone-nav-item.active { color: #2563eb; }

/* Pill-shaped mobile nav bar (matches real CustomTabBar) */
.mockup-phone-nav-pill {
    display: flex;
    align-items: center;
    background: #0f172a;
    border-radius: 100px;
    height: 36px;
    margin: 8px 10px 10px;
    padding: 0 6px;
    gap: 4px;
}
.mockup-pill-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 26px;
    border-radius: 100px;
    padding: 0 8px;
    color: #64748b;
    font-size: 0.6rem;
    transition: all 0.2s ease;
}
.mockup-pill-item i { font-size: 0.65rem; }
.mockup-pill-item span { font-size: 0.52rem; font-weight: 600; }
.mockup-pill-item.active {
    background: #2563eb;
    color: #fff;
    padding: 0 12px;
}

/* Mobile App Mockup - Matches actual app */
.mockup-phone-screen {
    padding: 0 12px 12px;
    overflow: hidden;
}
.mockup-mob-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 4px;
}
.mockup-mob-logo-img {
    height: 16px;
    width: auto;
}
.mockup-mob-header strong { font-size: 0.85rem; color: var(--text); display: block; }
.mockup-mob-header small { font-size: 0.6rem; color: var(--text-muted); }
.mockup-mob-avatar {
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(37, 99, 235, 0.1); color: #2563eb;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
}
.mockup-mob-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}
.mockup-mob-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 4px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid var(--border);
}
.mockup-mob-action i { font-size: 0.7rem; color: #2563eb; }
.mockup-mob-action span { font-size: 0.5rem; color: var(--text-body); font-weight: 500; }
.mockup-mob-greeting {
    padding: 4px 4px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}
.mockup-mob-greeting small { font-size: 0.65rem; color: var(--text-muted); font-weight: 400; display: block; margin-top: 3px; }
.mockup-mob-cards-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mockup-mob-card-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
}
.mockup-mob-card-item-icon {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; flex-shrink: 0;
}
.mockup-mob-card-item strong { display: block; font-size: 0.7rem; color: var(--text); margin-bottom: 1px; }
.mockup-mob-card-item span { font-size: 0.6rem; color: var(--text-muted); }
.mockup-mob-section-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    padding: 0 2px;
}
.mockup-mob-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}
.mockup-mob-stat {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}
.mockup-mob-stat-icon {
    width: 28px; height: 28px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 6px; font-size: 0.65rem;
}
.mockup-mob-stat-val { display: block; font-size: 0.9rem; font-weight: 800; color: var(--text); }
.mockup-mob-stat-lbl { font-size: 0.55rem; color: var(--text-muted); }
.mockup-mob-attendance {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.mockup-mob-att-item {
    border-radius: 8px;
    padding: 10px 6px;
    text-align: center;
}
.mockup-mob-att-item .att-val { display: block; font-size: 0.95rem; font-weight: 800; }
.mockup-mob-att-item span { font-size: 0.55rem; color: var(--text-body); }

/* Report Card Mockup */
.mockup-report-frame {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    max-width: 440px;
}
.mockup-report-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    color: #fff;
}
.mockup-report-logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
}
.mockup-report-header strong { display: block; font-size: 0.9rem; }
.mockup-report-header small { font-size: 0.7rem; opacity: 0.8; }
.mockup-report-student {
    display: flex;
    gap: 20px;
    padding: 14px 20px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
    font-size: 0.75rem;
}
.mockup-report-student div { display: flex; gap: 6px; align-items: center; }
.mockup-report-student span { color: var(--text-muted); }
.mockup-report-student strong { color: var(--text); }
.mockup-report-table { padding: 0; }
.mockup-report-row {
    display: grid;
    grid-template-columns: 2fr 1fr 0.8fr;
    padding: 10px 20px;
    font-size: 0.78rem;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
}
.mockup-report-row.head {
    background: #f8fafc;
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.mockup-report-row.total {
    background: #f0fdf4;
    font-weight: 700;
    border-bottom: none;
}
.grade-a { color: #16a34a; font-weight: 700; }
.grade-b { color: #2563eb; font-weight: 700; }
.mockup-report-footer {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 0.65rem;
    color: var(--text-muted);
    background: #f8fafc;
    border-top: 1px solid var(--border);
}

/* --- Features Page: Why Enhanced --- */
.why-enhanced-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.why-enhanced-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.why-enhanced-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.25);
}
.why-enhanced-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.why-enhanced-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.18));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #2563eb;
    transition: all 0.3s ease;
}
.why-enhanced-icon.icon-purple {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(79, 70, 229, 0.18));
    color: #4f46e5;
}
.why-enhanced-icon.icon-teal {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(13, 148, 136, 0.18));
    color: #0d9488;
}
.why-enhanced-card:hover .why-enhanced-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    transform: scale(1.08);
}
.why-enhanced-card:hover .why-enhanced-icon.icon-purple {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}
.why-enhanced-card:hover .why-enhanced-icon.icon-teal {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}
.why-enhanced-num {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    background: var(--bg-alt, #f8fafc);
    padding: 5px 12px;
    border-radius: 20px;
}
.why-enhanced-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}
.why-enhanced-card p {
    font-size: 0.84rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
}
.why-enhanced-flow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 14px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    flex-wrap: wrap;
}
.why-flow-step {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    background: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
}
.why-flow-step i {
    color: #2563eb;
    font-size: 0.7rem;
}
.why-flow-arrow {
    color: var(--text-muted);
    font-size: 0.65rem;
}
.why-enhanced-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}
.why-enhanced-tags span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #059669;
    background: rgba(5, 150, 105, 0.08);
    padding: 5px 10px;
    border-radius: 20px;
}
.why-enhanced-tags span i { font-size: 0.6rem; }
.why-enhanced-boards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}
.why-board-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid var(--border);
}
.why-board-item span {
    font-size: 0.72rem;
    color: var(--text-body);
    font-weight: 500;
}
.why-board-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    color: #fff;
    flex-shrink: 0;
}
.why-board-badge.blue { background: #2563eb; }
.why-board-badge.green { background: #16a34a; }
.why-board-badge.orange { background: #ea580c; }
.why-board-badge.purple { background: #7c3aed; }
.why-enhanced-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}
.why-check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-body);
}
.why-check-row i {
    color: #10b981;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* --- Features Page: Scope Cards --- */
.scope-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.scope-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}
.scope-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}
.scope-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #dc2626;
    margin-bottom: 16px;
}
.scope-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}
.scope-card p {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 16px;
}
.scope-card-alt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.scope-alt-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-right: 4px;
}
.scope-alt-option {
    font-size: 0.7rem;
    font-weight: 600;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
}

/* --- Features Page: Tech Cards --- */
.tech-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 40px;
}
.tech-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}
.tech-card:hover {
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.08);
}
.tech-card-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.tech-card-value {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
}

/* --- Features Page: Tech Comparison --- */
.tech-compare-wrapper {
    margin-top: 40px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.tech-compare-table {
    width: 100%;
}
.tech-compare-header {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.5fr;
    background: #f8fafc;
    border-bottom: 2px solid var(--border);
    padding: 16px 24px;
    align-items: center;
}
.tech-compare-col-label { }
.tech-compare-col-them span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #dc2626;
    background: rgba(220, 38, 38, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
}
.tech-compare-col-us span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #059669;
    background: rgba(5, 150, 105, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
}
.tech-compare-row {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.5fr;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    align-items: center;
    transition: background 0.2s ease;
}
.tech-compare-row:last-child {
    border-bottom: none;
}
.tech-compare-row:hover {
    background: #f8fafc;
}
.tech-compare-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.tech-compare-label i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(37, 99, 235, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #2563eb;
    flex-shrink: 0;
}
.tech-compare-them {
    font-size: 0.82rem;
    color: #6b7280;
    font-weight: 500;
    padding-right: 16px;
}
.tech-compare-us {
    font-size: 0.82rem;
    color: var(--text);
    font-weight: 600;
    position: relative;
    padding-left: 18px;
}
.tech-compare-us::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
}

/* --- Modules Section (Teal Background) --- */
.section-modules-blue {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    padding: 72px 0;
}

.section-modules-blue .section-intro-light {
    color: #fff;
    max-width: 600px;
}

.section-modules-blue .section-intro-light h2 {
    color: #fff;
    font-size: 2.6rem;
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.section-modules-blue .section-intro-light p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    font-weight: 500;
}

/* --- Module Cards (Grid) --- */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.module-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.module-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.module-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.module-card h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.3;
}

.module-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    max-width: 140px;
}

/* --- Benefits Grid with Photography --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.benefit-photo {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    padding: 24px 24px 16px;
    margin: 0;
}

.benefit-card ul {
    padding: 0 24px 24px;
    margin: 0;
    list-style: none;
}

.benefit-card li {
    margin-bottom: 12px;
}

.benefit-card li:last-child {
    margin-bottom: 0;
}

/* --- Feature Inline List --- */
.feature-inline-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
}
.fil-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-body);
}
.fil-item i {
    color: var(--primary);
    font-size: 0.7rem;
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary-bg);
    border-radius: 6px;
    flex-shrink: 0;
}

/* --- Roles Strip --- */
.roles-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.role-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.15s ease;
}
.role-strip-item:hover { border-color: var(--primary); background: rgba(37, 99, 235, 0.1); }
.role-strip-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--primary-10);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
}

/* --- Steps Horizontal --- */
.steps-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 60px;
}
.step-h-item {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}
.step-h-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.01);
}
.step-h-item h3 { font-size: 0.95rem; margin-bottom: 8px; font-weight: 700; color: var(--text); }
.step-h-item p { font-size: 0.8rem; color: var(--text-body); line-height: 1.6; }
.step-h-arrow {
    display: flex;
    align-items: center;
    padding-top: 8px;
    color: var(--border);
    font-size: 0.7rem;
}

/* --- Section Badge --- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(37, 99, 235, 0.12));
    color: #2563eb;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(59, 130, 246, 0.15);
}
.section-badge i { font-size: 0.75rem; }

/* --- Steps Enhanced --- */
.steps-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    position: relative;
}
.steps-connector {
    position: absolute;
    top: 72px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4, #10b981);
    border-radius: 3px;
    opacity: 0.25;
}
.step-card {
    text-align: center;
    padding: 32px 20px 28px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}
.step-card-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.step-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(37, 99, 235, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: #2563eb;
    transition: all 0.3s ease;
}
.step-card:hover .step-card-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    transform: scale(1.05);
}
.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}
.step-card p {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 16px;
}
.step-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #6366f1;
    background: rgba(99, 102, 241, 0.08);
    padding: 5px 12px;
    border-radius: 20px;
}
.step-tag i { font-size: 0.65rem; }

/* --- Numbers Row --- */
.numbers-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    padding: 60px 0;
}
.number-item {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.number-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.01) 0%, rgba(59, 130, 246, 0.01) 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.number-val {
    display: block;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    margin-bottom: 8px;
}
.number-lbl { font-size: 0.85rem; color: var(--text-body); line-height: 1.6; font-weight: 500; }

/* --- Stats Bar --- */
.stats-bar {
    background: var(--primary-dark);
    padding: 52px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item .stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Inter', sans-serif;
}
.stat-item .stat-value span { color: var(--primary); }
.stat-item .stat-label { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }

/* --- Sections --- */
.section { padding: 72px 0; background: #ffffff; border-bottom: none; }
.section:last-child { border-bottom: none; }
.section-gray { background: var(--bg-gray); padding: 72px 0; }

.section-header {
    margin-bottom: 48px;
}
.section-header.centered { text-align: center; max-width: 580px; margin-left: auto; margin-right: auto; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary);
    margin-bottom: 12px;
    background: var(--primary-bg);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
}

.section-header h2 { font-size: 2rem; margin-bottom: 12px; }
.section-header p { color: var(--text-body); font-size: 0.95rem; line-height: 1.7; }

/* --- Features --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.2s ease;
    position: relative;
}
.feature-card:hover {
    box-shadow: var(--card-shadow-hover);
    border-color: transparent;
    transform: translateY(-2px);
}

.feature-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 18px;
}
.feature-icon.teal { background: rgba(37, 99, 235, 0.15); color: var(--primary); }
.feature-icon.orange { background: var(--warning-light); color: var(--warning); }
.feature-icon.blue { background: var(--success-light); color: var(--success); }
.feature-icon.purple { background: #f3e8ff; color: #7c3aed; }

.feature-card h3 { font-size: 1rem; margin-bottom: 8px; font-weight: 600; }
.feature-card p { font-size: 0.85rem; line-height: 1.65; color: var(--text-body); }

/* --- Modules List --- */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.module-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.15s ease;
}
.module-chip:hover { border-color: var(--primary); background: var(--primary-bg); }
.module-chip i { color: var(--primary); width: 18px; text-align: center; font-size: 0.85rem; }

/* --- How It Works --- */
.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 auto 18px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.step-item h3 { font-size: 0.95rem; margin-bottom: 6px; }
.step-item p { font-size: 0.8rem; color: var(--text-body); line-height: 1.5; max-width: 200px; margin: 0 auto; }

/* --- Why Choose --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}
.why-card:hover { box-shadow: var(--card-shadow); }

.why-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--primary-bg);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.why-card h3 { font-size: 0.9rem; margin-bottom: 4px; font-weight: 600; }
.why-card p { font-size: 0.8rem; color: var(--text-body); line-height: 1.6; }

/* --- Roles Grid --- */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.role-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: all 0.2s ease;
}
.role-card:hover { box-shadow: var(--card-shadow-hover); border-color: var(--primary); }

.role-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--primary-10);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 14px;
}

.role-card h3 { font-size: 0.9rem; margin-bottom: 8px; }
.role-card p { font-size: 0.78rem; color: var(--text-body); line-height: 1.55; }

/* --- Tech Stack --- */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-gray);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.tech-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    min-width: 80px;
}

.tech-value {
    font-size: 0.82rem;
    color: var(--text-body);
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.2s ease;
}
.testimonial-card:hover { box-shadow: var(--card-shadow); }

.testimonial-stars { color: var(--warning); font-size: 0.8rem; margin-bottom: 14px; display: flex; gap: 2px; }
.testimonial-text { font-size: 0.88rem; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--primary-10);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.testimonial-name { font-size: 0.85rem; font-weight: 600; }
.testimonial-role { font-size: 0.72rem; color: var(--text-muted); }

/* --- CTA --- */
.cta-section {
    padding: 72px 0;
    background: var(--bg-gray);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: 20px;
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.01);
    transition: all var(--transition-slow);
}

.cta-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 35px 60px rgba(59, 130, 246, 0.05);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-box::after {
    content: '';
    position: absolute;
    bottom: -40%; left: -10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box h2 {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    font-weight: 800;
    line-height: 1.3;
}
.cta-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.cta-actions .btn {
    min-width: 180px;
    height: 54px;
    font-size: 1rem;
}

/* --- Pricing --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    transition: all 0.2s ease;
}
.pricing-card:hover { box-shadow: var(--card-shadow-hover); }

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), var(--card-shadow);
}

.pricing-badge {
    position: absolute;
    top: -11px; left: 50%; transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.pricing-desc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    margin-bottom: 4px;
}
.pricing-price span { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }
.pricing-note { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 24px; }

.pricing-features {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-bottom: 24px;
}
.pricing-features li {
    display: flex; align-items: center; gap: 10px;
    padding: 7px 0;
    font-size: 0.84rem;
    color: var(--text-body);
}
.pricing-features li i { color: var(--primary); font-size: 0.7rem; }

.pricing-card .btn { width: 100%; }

/* --- Contact --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.contact-info h2 { font-size: 1.6rem; margin-bottom: 10px; }
.contact-info > p { color: var(--text-body); font-size: 0.9rem; margin-bottom: 32px; line-height: 1.7; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}
.contact-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--primary-bg);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.contact-item h4 { font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.contact-item p { font-size: 0.8rem; color: var(--text-muted); }

.contact-form-wrap {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--card-shadow);
}

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 5px; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-family: inherit;
    background: var(--surface);
    color: var(--text);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* --- Blog --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.2s ease;
}
.blog-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); }

.blog-thumb {
    height: 160px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), var(--bg-dark));
    display: flex; align-items: center; justify-content: center;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.blog-thumb i { font-size: 2rem; color: var(--primary); opacity: 0.2; }
.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-body { padding: 22px; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.blog-tag {
    font-size: 0.6rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.4px;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.15);
    padding: 3px 8px;
    border-radius: 4px;
}
.blog-date { font-size: 0.72rem; color: var(--text-muted); }

.blog-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; line-height: 1.4; color: var(--text); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card .excerpt { font-size: 0.8rem; color: var(--text-body); line-height: 1.6; margin-bottom: 14px; }
.blog-card .read-link {
    font-size: 0.8rem; font-weight: 600; color: var(--primary);
    display: inline-flex; align-items: center; gap: 4px;
}
.blog-card .read-link:hover { gap: 8px; }

/* --- Blog Post --- */
.post-page { width: 100%; padding: 60px 0; }

.post-header { margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.post-header .blog-tag { margin-bottom: 14px; display: inline-block; }
.post-header h1 { font-size: 2rem; line-height: 1.3; margin-bottom: 14px; }
.post-meta { display: flex; align-items: center; gap: 14px; font-size: 0.8rem; color: var(--text-muted); }
.post-meta i { margin-right: 4px; }

.post-body { font-size: 0.95rem; line-height: 1.85; color: var(--text-body); }
.post-body h2 { font-size: 1.35rem; color: var(--text); margin: 36px 0 12px; }
.post-body h3 { font-size: 1.1rem; color: var(--text); margin: 28px 0 10px; }
.post-body p { margin-bottom: 18px; }
.post-body ul, .post-body ol { margin-bottom: 18px; padding-left: 20px; }
.post-body li { margin-bottom: 6px; list-style: disc; }
.post-body ol li { list-style: decimal; }
.post-body strong { color: var(--text); font-weight: 600; }
.post-body blockquote {
    border-left: 3px solid var(--primary);
    padding: 14px 20px;
    margin: 24px 0;
    background: var(--primary-bg);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text);
}

/* --- Blog Post Page --- */
.post-hero {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--border);
}

.post-hero-badge {
    margin-bottom: 20px;
}

.post-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 12px;
    max-width: 800px;
}

.post-hero-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.post-hero-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-body);
}

.post-meta-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.post-hero-image {
    margin-top: 32px;
}

.post-featured-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.post-section {
    padding: 60px 0;
    background: #ffffff;
}

.post-section .container {
    max-width: 900px;
}

.post-page {
    width: 100%;
}

.post-body {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 48px;
}

.post-body h2 {
    font-size: 1.4rem;
    color: var(--text);
    margin: 40px 0 16px;
    font-weight: 700;
}

.post-body h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin: 32px 0 12px;
    font-weight: 600;
}

.post-body p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.post-body ul, .post-body ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.post-body li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.post-body ol li { list-style: decimal; }
.post-body ul li { list-style: disc; }

.post-body blockquote {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(37, 99, 235, 0.05));
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    margin: 32px 0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-body);
}

.post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.85rem;
}

.post-body table td {
    padding: 12px;
    border: 1px solid var(--border);
}

.post-body table tr:nth-child(even) {
    background: var(--bg-gray);
}

/* Post CTA */
.post-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    color: white;
    margin-bottom: 48px;
}

.post-cta-content h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 12px;
}

.post-cta-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.post-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

/* --- Page Header --- */
.page-hero {
    padding: 120px 0 48px;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    border-bottom: 1px solid var(--border);
}
.page-hero.centered { text-align: center; }
.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.2;
}
.page-hero p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.7;
    font-weight: 500;
}
.page-hero.centered p { max-width: 520px; margin: 0 auto; }

/* --- FAQ --- */
.faq-list { max-width: 640px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 22px 24px;
    margin-bottom: 12px;
    transition: all 0.15s ease;
}
.faq-item:hover { border-color: var(--primary); }
.faq-item h3 { font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.faq-item p { font-size: 0.84rem; color: var(--text-body); line-height: 1.6; }

/* --- Footer --- */
.footer {
    background: #0f172a;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .nav-brand { display: inline-flex; margin-bottom: 14px; }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-icon { background: rgba(255,255,255,0.15); color: #fff; }

.footer-description {
    font-size: 0.84rem;
    line-height: 1.65;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: all 0.15s ease;
}
.footer-social a:hover { background: var(--primary); color: #fff; }

.footer-links h4 { color: #fff; font-size: 0.75rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 0.8rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* --- ERP Dashboard Mockup --- */
.erp-mockup-wrapper {
    position: relative;
    padding: 50px 0;
}

.erp-float {
    position: absolute;
    z-index: 3;
    animation: float-gentle 4s ease-in-out infinite;
}

.erp-float-tl { top: 20px; left: -20px; animation-delay: 0s; }
.erp-float-tr { top: 30px; right: -20px; animation-delay: -1s; }
.erp-float-bl { bottom: 40px; left: -10px; animation-delay: -2s; }
.erp-float-br { bottom: 20px; right: -10px; animation-delay: -3s; }

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

.erp-float-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
}

.erp-float-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.erp-float-icon.green { background: #f0fdf4; color: #16a34a; }
.erp-float-icon.blue { background: #eff6ff; color: var(--primary); }
.erp-float-icon.orange { background: #fffbeb; color: #d97706; }
.erp-float-icon.purple { background: #f5f3ff; color: #7c3aed; }

.erp-float-text strong {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text);
}

.erp-float-text span {
    font-size: 0.55rem;
    color: var(--text-muted);
}

.erp-mockup {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px var(--border);
    max-width: 960px;
    margin: 0 auto;
}

.erp-topbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
}

.erp-topbar .dot { width: 10px; height: 10px; }

.erp-url {
    margin-left: 10px;
    font-size: 0.62rem;
    color: var(--text-muted);
    background: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.erp-layout {
    display: flex;
    background: #f9fafb;
    min-height: 320px;
}

/* Sidebar */
.erp-sidebar {
    width: 160px;
    background: #fff;
    border-right: 1px solid var(--border);
    padding: 12px 0;
    flex-shrink: 0;
}

.erp-sb-brand {
    padding: 4px 14px 12px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
}

.erp-sb-logo {
    height: 16px;
    width: auto;
}

.erp-sb-group-label {
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    padding: 8px 14px 4px;
}

.erp-sb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: 6px;
    margin: 1px 6px;
}

.erp-sb-item.active {
    background: #eff6ff;
    color: var(--primary);
    font-weight: 600;
}

.erp-sb-item i { font-size: 0.6rem; width: 14px; text-align: center; }

/* Main Content */
.erp-main {
    flex: 1;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

.erp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.erp-breadcrumb {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
}

.erp-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.erp-notif {
    position: relative;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.erp-notif-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
}

.erp-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stats Row */
.erp-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.erp-stat-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.erp-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.erp-stat-icon.blue { background: #eff6ff; color: var(--primary); }
.erp-stat-icon.green { background: #f0fdf4; color: #16a34a; }
.erp-stat-icon.orange { background: #fffbeb; color: #d97706; }
.erp-stat-icon.purple { background: #f5f3ff; color: #7c3aed; }

.erp-stat-val {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.erp-stat-lbl {
    display: block;
    font-size: 0.52rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.erp-stat-trend {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.5rem;
    font-weight: 500;
    margin-top: 2px;
}

.erp-stat-trend.up { color: #16a34a; }
.erp-stat-trend i { font-size: 0.4rem; }

/* Content Row */
.erp-content-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 10px;
    flex: 1;
}

.erp-chart-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border);
    padding: 14px;
    display: flex;
    flex-direction: column;
}

.erp-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.erp-card-header span:first-child {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text);
}

.erp-card-badge {
    font-size: 0.48rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    background: #f1f5f9;
    color: var(--text-muted);
}

/* Area Chart */
.erp-area-chart {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.erp-area-chart svg {
    width: 100%;
    height: 80px;
}

.erp-chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 6px 4px 0;
    font-size: 0.48rem;
    color: var(--text-muted);
}

/* Fee Visual */
.erp-fee-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.erp-fee-progress {
    height: 10px;
    background: #f1f5f9;
    border-radius: 5px;
    overflow: hidden;
}

.erp-fee-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #60a5fa);
    border-radius: 5px;
    transition: width 0.8s ease;
}

.erp-fee-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.58rem;
    color: var(--text-body);
    font-weight: 500;
}

.erp-fee-details > div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.erp-fee-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.erp-fee-dot.blue { background: var(--primary); }
.erp-fee-dot.gray { background: #cbd5e1; }

.erp-fee-percent {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
}

/* --- Showcase Split --- */
.showcase-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.showcase-split.reverse {
    grid-template-columns: 1.1fr 1fr;
}
.showcase-split.reverse .showcase-content { order: 2; }
.showcase-split.reverse .showcase-visual { order: 1; }

.showcase-content h2 { font-size: 1.75rem; margin-bottom: 14px; }
.showcase-content > p { font-size: 0.9rem; color: var(--text-body); line-height: 1.75; margin-bottom: 24px; }

.showcase-list {
    list-style: none;
    padding: 0;
}
.showcase-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-body);
}
.showcase-list li i {
    color: var(--primary);
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border-radius: 50%;
    flex-shrink: 0;
}

/* --- UI Panel Mockup --- */
.ui-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    overflow: hidden;
}

.ui-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}
.ui-panel-title { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.ui-panel-badge {
    font-size: 0.65rem;
    font-weight: 600;
    background: var(--primary-bg);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

.ui-panel-footer {
    display: flex;
    justify-content: space-around;
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    background: var(--bg-gray);
}
.ui-stat-mini { text-align: center; }
.ui-stat-mini .ui-stat-val { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text); }
.ui-stat-mini .ui-stat-lbl { display: block; font-size: 0.65rem; color: var(--text-muted); margin-top: 2px; }

/* --- Chart Bars --- */
.ui-chart-bars { padding: 16px 20px; }
.ui-chart-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}
.ui-chart-label { font-size: 0.72rem; color: var(--text-muted); min-width: 52px; font-weight: 500; }
.ui-bar-track {
    flex: 1;
    height: 8px;
    background: var(--border-light);
    border-radius: 4px;
    overflow: hidden;
}
.ui-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 4px;
    transition: width 0.3s ease;
}
.ui-chart-val { font-size: 0.72rem; font-weight: 600; color: var(--text); min-width: 40px; text-align: right; }

/* --- Table Mockup --- */
.ui-table { padding: 0 20px; }
.ui-table-head {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}
.ui-table-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}
.ui-table-row:last-child { border-bottom: none; }

.ui-student { display: flex; align-items: center; gap: 10px; }
.ui-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--primary-10);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
}
.ui-student span { font-size: 0.78rem; font-weight: 500; color: var(--text); }

.ui-badge {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.ui-badge.present { background: var(--success-light); color: var(--success); }
.ui-badge.absent { background: var(--danger-light); color: var(--danger); }
.ui-badge.late { background: var(--warning-light); color: var(--warning); }

/* --- Notification List --- */
.ui-notif-list { padding: 8px 0; }
.ui-notif-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-light);
}
.ui-notif-item:last-child { border-bottom: none; }

.ui-notif-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.ui-notif-icon.urgent { background: var(--warning-light); color: var(--warning); }
.ui-notif-icon.info { background: var(--primary-bg); color: var(--primary); }
.ui-notif-icon.success { background: var(--success-light); color: var(--success); }

.ui-notif-body { flex: 1; min-width: 0; }
.ui-notif-title { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ui-notif-meta { display: block; font-size: 0.65rem; color: var(--text-muted); margin-top: 2px; }
.ui-notif-read { font-size: 0.62rem; font-weight: 600; color: var(--primary); white-space: nowrap; }

/* --- Phone Frame --- */
.phone-frame {
    width: 280px;
    margin: 0 auto;
    background: #fff;
    border-radius: 36px;
    border: 8px solid #1a1a2e;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
    position: relative;
}
.phone-notch {
    width: 100px;
    height: 22px;
    background: #1a1a2e;
    border-radius: 0 0 12px 12px;
    margin: 0 auto;
}
.phone-screen {
    min-height: 460px;
    display: flex;
    flex-direction: column;
    background: #fff;
    position: relative;
}

.phone-body {
    flex: 1;
    padding: 16px 14px;
    padding-bottom: 70px;
}

.phone-welcome { margin-bottom: 14px; }
.phone-welcome-sub { display: block; font-size: 0.7rem; color: var(--text-muted); }
.phone-welcome-name { display: block; font-size: 1.1rem; font-weight: 700; color: var(--text); }
.phone-role-badge {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.55rem;
    font-weight: 600;
    background: var(--primary-bg);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.phone-action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}
.phone-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.08);
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--primary);
}
.phone-action-btn i { font-size: 0.72rem; }

.phone-section-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    margin-top: 4px;
}

.phone-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}
.phone-stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}
.phone-stat-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem;
    margin: 0 auto 6px;
}
.phone-stat-icon.teal { background: var(--primary-bg); color: var(--primary); }
.phone-stat-icon.orange { background: var(--warning-light); color: var(--warning); }

.phone-stat-val { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text); }
.phone-stat-lbl { display: block; font-size: 0.55rem; color: var(--text-muted); margin-top: 1px; }

.phone-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 6px;
}
.phone-list-text { display: flex; flex-direction: column; }
.phone-list-primary { font-size: 0.72rem; font-weight: 600; color: var(--text); }
.phone-list-secondary { font-size: 0.58rem; color: var(--text-muted); margin-top: 1px; }
.phone-list-badge {
    font-size: 0.55rem;
    font-weight: 600;
    background: var(--primary-bg);
    color: var(--primary);
    padding: 3px 8px;
    border-radius: var(--radius-pill);
}

/* Floating dark pill tab bar (matches real app) */
.phone-tab-bar {
    position: absolute;
    bottom: 12px;
    left: 10px;
    right: 10px;
    background: #0f172a;
    border-radius: 100px;
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.phone-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    border-radius: 100px;
    font-size: 0.65rem;
    color: #64748b;
    gap: 4px;
}
.phone-tab.active {
    flex: 2;
    background: var(--primary);
    color: #fff;
}
.phone-tab.active span {
    font-size: 0.58rem;
    font-weight: 600;
}
.phone-tab span { display: none; }
.phone-tab.active span { display: inline; }

/* --- About Page --- */
.about-story {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}
.about-text h2 { font-size: 1.75rem; margin-bottom: 16px; }
.about-text p { font-size: 0.9rem; color: var(--text-body); line-height: 1.8; margin-bottom: 14px; }

.about-stats-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.about-stat-card {
    background: var(--primary-bg);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
}
.about-stat-val { display: block; font-size: 1.75rem; font-weight: 800; color: var(--primary); font-family: 'Inter', sans-serif; }
.about-stat-lbl { display: block; font-size: 0.72rem; color: var(--text-body); margin-top: 4px; }

/* Timeline */
.timeline { max-width: 640px; margin: 0 auto; position: relative; padding-left: 32px; }
.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--border);
}
.timeline-item {
    position: relative;
    padding-bottom: 32px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: -28px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--primary-bg);
}
.timeline-year {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    background: var(--primary-bg);
    padding: 2px 10px;
    border-radius: var(--radius-pill);
    display: inline-block;
    margin-bottom: 6px;
}
.timeline-content h3 { font-size: 0.95rem; margin-bottom: 4px; }
.timeline-content p { font-size: 0.82rem; color: var(--text-body); line-height: 1.6; }

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.team-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
}
.team-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--primary-10);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 auto 14px;
}
.team-card h3 { font-size: 0.9rem; margin-bottom: 2px; }
.team-role { font-size: 0.72rem; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 0.78rem; color: var(--text-body); line-height: 1.55; }

/* --- Services Page --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.2s ease;
}
.service-card:hover { box-shadow: var(--card-shadow-hover); border-color: transparent; transform: translateY(-2px); }

.service-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--primary-bg);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 18px;
}
.service-card h3 { font-size: 1rem; margin-bottom: 8px; font-weight: 600; }
.service-card > p { font-size: 0.82rem; color: var(--text-body); line-height: 1.6; margin-bottom: 14px; }

.service-points {
    list-style: none;
    padding: 0;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}
.service-points li {
    font-size: 0.78rem;
    color: var(--text-body);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}
.service-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
}

/* --- Responsive --- */
/* --- Diff List --- */
.diff-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.diff-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: start;
}

.diff-num {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: var(--primary-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.diff-body h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.diff-body p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* --- Pricing Tiers --- */
.pricing-comparison {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.pricing-tier {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-slow);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.pricing-tier:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.pricing-tier.featured {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
    transform: scale(1.08);
}

.pricing-tier.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.tier-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: -28px auto 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.tier-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tier-header {
    padding: 32px 24px;
    border-bottom: 1px solid var(--border);
}

.tier-header h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.tier-desc {
    font-size: 0.8rem;
    color: var(--text-body);
    margin-bottom: 16px;
}

.tier-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin: 12px 0 4px;
}

.tier-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    display: block;
}

.tier-capacity {
    font-size: 0.8rem;
    color: var(--text-body);
    margin: 12px 0;
}

.tier-header .btn {
    width: 100%;
    margin-top: 12px;
}

.tier-body {
    padding: 24px;
    flex: 1;
}

.tier-includes-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 14px;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tier-features li {
    font-size: 0.84rem;
    color: var(--text-body);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tier-features li i {
    color: var(--primary);
    font-size: 0.65rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Pricing Perks Grid */
.pricing-perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.pricing-perk-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s ease;
}
.pricing-perk-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}
.pricing-perk-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}
.pricing-perk-icon.blue { background: rgba(37, 99, 235, 0.1); color: #2563eb; }
.pricing-perk-icon.green { background: rgba(16, 185, 129, 0.1); color: #059669; }
.pricing-perk-icon.purple { background: rgba(139, 92, 246, 0.1); color: #7c3aed; }
.pricing-perk-icon.orange { background: rgba(245, 158, 11, 0.1); color: #d97706; }
.pricing-perk-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.pricing-perk-card p {
    font-size: 0.8rem;
    color: var(--text-body);
    line-height: 1.5;
}

/* Pricing - Plan Hero Card */
.plan-hero-card {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.12);
}
.plan-hero-left {
    padding: 48px 44px;
}
.plan-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.plan-hero-badge i { font-size: 0.75rem; }
.plan-hero-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 12px;
}
.plan-hero-desc {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 24px;
}
.plan-hero-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
}
.plan-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text);
    font-weight: 500;
}
.plan-highlight-item i {
    color: #059669;
    font-size: 0.75rem;
}
.plan-hero-right {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 36px;
}
.plan-price-box {
    text-align: center;
    color: #fff;
}
.plan-price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    font-weight: 600;
}
.plan-price-amount {
    font-size: 3.2rem;
    font-weight: 800;
    margin: 8px 0 0;
    line-height: 1;
}
.plan-price-period {
    font-size: 1rem;
    opacity: 0.7;
    font-weight: 500;
}
.plan-price-perks {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.plan-price-perks span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}
.plan-price-perks span i {
    font-size: 0.7rem;
    opacity: 0.7;
}

/* Plan Modules Grid */
.plan-modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}
.plan-module-block {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 18px;
    transition: all 0.2s ease;
}
.plan-module-block:hover {
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}
.plan-module-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.plan-module-icon.blue { background: rgba(37, 99, 235, 0.1); color: #2563eb; }
.plan-module-icon.green { background: rgba(16, 185, 129, 0.1); color: #059669; }
.plan-module-icon.purple { background: rgba(139, 92, 246, 0.1); color: #7c3aed; }
.plan-module-icon.orange { background: rgba(245, 158, 11, 0.1); color: #d97706; }
.plan-module-icon.cyan { background: rgba(6, 182, 212, 0.1); color: #0891b2; }
.plan-module-icon.pink { background: rgba(236, 72, 153, 0.1); color: #db2777; }
.plan-module-icon.teal { background: rgba(20, 184, 166, 0.1); color: #0d9488; }
.plan-module-icon.indigo { background: rgba(99, 102, 241, 0.1); color: #4f46e5; }
.plan-module-block h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.plan-module-block p {
    font-size: 0.74rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Plan Upgrade Banner */
.plan-upgrade-banner {
    margin-top: 40px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 40px 44px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}
.plan-upgrade-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fbbf24;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
}
.plan-upgrade-badge i { font-size: 0.7rem; }
.plan-upgrade-left h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}
.plan-upgrade-left p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}
.plan-upgrade-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.plan-upgrade-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}
.plan-upgrade-features span i {
    color: #34d399;
    font-size: 0.6rem;
}
.plan-upgrade-right {
    text-align: center;
}
.plan-upgrade-price {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
}
.plan-upgrade-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}
.plan-upgrade-usage {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 4px 0 20px;
}
.plan-upgrade-right .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}
.plan-upgrade-right .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Pricing Two Column Layout */
.pricing-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.tier-price-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: -4px;
}
.tier-highlight {
    font-size: 0.8rem;
    color: #059669;
    font-weight: 600;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.tier-highlight i { font-size: 0.7rem; }
.tier-features-muted li i {
    font-size: 0.35rem !important;
    background: rgba(100, 116, 139, 0.12) !important;
    color: #64748b !important;
}
.tier-bestfor {
    margin-top: 20px;
    padding: 16px;
    background: rgba(37, 99, 235, 0.04);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.tier-bestfor > i {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-top: 2px;
}
.tier-bestfor strong {
    display: block;
    font-size: 0.8rem;
    color: var(--text);
    margin-bottom: 2px;
}
.tier-bestfor span {
    font-size: 0.78rem;
    color: var(--text-body);
    line-height: 1.5;
}

/* Pricing Comparison Table */
.pricing-compare-table {
    margin-top: 40px;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}
.pricing-compare-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid var(--border);
}
.pricing-compare-row:last-child { border-bottom: none; }
.pricing-compare-row span {
    padding: 14px 20px;
    font-size: 0.84rem;
    color: var(--text-body);
}
.pricing-compare-row span:not(:first-child) {
    text-align: center;
    border-left: 1px solid var(--border);
}
.pricing-compare-row span.highlight {
    background: rgba(37, 99, 235, 0.03);
    color: #2563eb;
    font-weight: 600;
}
.pricing-compare-row.header span {
    background: #f8fafc;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--text);
    padding: 12px 20px;
}
.pricing-compare-row.header span.highlight {
    background: rgba(37, 99, 235, 0.08);
}
.pricing-compare-row.total span {
    font-weight: 700;
    background: #f8fafc;
    color: var(--text);
    padding: 16px 20px;
    font-size: 0.9rem;
}
.pricing-compare-row.total span.highlight {
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    font-size: 1rem;
}

/* FAQ Cards Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}
.faq-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.2s ease;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.faq-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}
.faq-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.faq-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}
.faq-card p {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .features-grid, .testimonials-grid, .blog-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .features-card-grid { grid-template-columns: repeat(3, 1fr); }
    .modules-grid { grid-template-columns: repeat(2, 1fr); }
    .roles-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-row { grid-template-columns: repeat(2, 1fr); }
    .steps-row::before { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .showcase-split, .showcase-split.reverse { grid-template-columns: 1fr; gap: 40px; }
    .showcase-split.reverse .showcase-content { order: 1; }
    .showcase-split.reverse .showcase-visual { order: 2; }
    .erp-float { display: none; }
    .erp-mockup-wrapper { padding: 20px 0; }
    .erp-sidebar { display: none; }
    .erp-stats-row { grid-template-columns: repeat(2, 1fr); }
    .erp-content-row { grid-template-columns: 1fr; }
    .about-story { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-perks-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .navbar { top: 0; }
    .nav-center, .nav-right .nav-phone { display: none; }
    .nav-center.active {
        display: flex;
        position: fixed;
        inset: 0;
        background: var(--bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        z-index: 99;
    }
    .nav-toggle { display: flex; z-index: 101; }

    .hero { padding: 90px 0 48px; }
    .hero-content h1 { font-size: 1.7rem; }
    .hero-visual { display: none; }
    .hero-proof { flex-direction: column; align-items: flex-start; gap: 8px; }

    .section { padding: 56px 0; }
    .section-header h2 { font-size: 1.5rem; }
    .section-intro h2 { font-size: 1.4rem; }

    .problem-grid { grid-template-columns: 1fr; }
    .before-after-grid { grid-template-columns: 1fr; }
    .ba-divider { width: 100%; height: 1px; flex-direction: row; }
    .ba-divider span { position: static; }
    .ba-column { padding: 28px; }
    .feature-inline-list { grid-template-columns: 1fr; }
    .steps-horizontal { flex-direction: column; align-items: stretch; gap: 20px; }
    .step-h-arrow { display: none; }
    .step-h-item { text-align: left; display: flex; gap: 14px; align-items: flex-start; padding: 0; }
    .step-h-item h3 { margin-bottom: 2px; }
    .step-h-num { margin: 0; flex-shrink: 0; }
    .steps-enhanced { grid-template-columns: 1fr 1fr; gap: 20px; }
    .steps-connector { display: none; }
    .numbers-row { grid-template-columns: 1fr 1fr; gap: 20px; }

    .features-grid, .testimonials-grid, .blog-grid, .pricing-grid { grid-template-columns: 1fr; }
    .pricing-comparison { grid-template-columns: 1fr; }
    .pricing-two-col { grid-template-columns: 1fr; }
    .pricing-tier, .pricing-tier.featured { transform: scale(1); }
    .pricing-perks-grid { grid-template-columns: 1fr 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .pricing-compare-row { grid-template-columns: 1.2fr 1fr 1fr; }
    .pricing-compare-row span { padding: 10px 12px; font-size: 0.75rem; }
    .plan-hero-card { grid-template-columns: 1fr; }
    .plan-hero-right { padding: 32px; }
    .plan-modules-grid { grid-template-columns: repeat(2, 1fr); }
    .plan-upgrade-banner { grid-template-columns: 1fr; text-align: center; }
    .plan-upgrade-features { justify-items: center; }
    .plan-hero-highlights { grid-template-columns: 1fr; }
    .roles-grid { grid-template-columns: repeat(2, 1fr); }
    .modules-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-row { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .tech-grid { grid-template-columns: 1fr; }
    .features-card-grid { grid-template-columns: repeat(2, 1fr); }
    .roles-card-grid { grid-template-columns: 1fr 1fr; }
    .role-mockups-grid { grid-template-columns: 1fr; }
    .why-cards-grid { grid-template-columns: 1fr; }
    .why-enhanced-grid { grid-template-columns: 1fr; }
    .scope-cards-grid { grid-template-columns: 1fr; }
    .mockup-browser-body { grid-template-columns: 1fr; }
    .mockup-sidebar { display: none; }
    .mockup-stats-row { grid-template-columns: repeat(2, 1fr); }
    .mockup-content-row { grid-template-columns: 1fr; }
    .mockup-overlap-wrapper { margin-top: 40px; padding-bottom: 0; }
    .mockup-phone-float { position: static; transform: scale(1); transform-origin: center; margin: 32px auto 0; filter: none; }
    .mockup-phone-float:hover { transform: scale(1) translateY(-4px); }
    .mockup-report-float { position: static; transform: scale(1); transform-origin: center; margin: 32px auto 0; filter: none; max-width: 280px; }
    .mockup-report-float:hover { transform: scale(1) translateY(-4px); }
    .mockup-float-bubble { display: none; }
    .tech-cards-grid { grid-template-columns: 1fr; }
    .tech-compare-header,
    .tech-compare-row { grid-template-columns: 1fr; gap: 8px; }
    .tech-compare-label { margin-bottom: 4px; }
    .tech-compare-them { padding-right: 0; }
    .tech-compare-us { padding-left: 18px; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .cta-box { padding: 48px 24px; border-radius: 14px; }
    .cta-box h2 { font-size: 1.5rem; }
    .cta-actions { flex-direction: column; }
    .page-hero { padding: 96px 0 36px; }
    .page-hero h1 { font-size: 1.5rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .showcase-content h2 { font-size: 1.4rem; }
    .phone-frame { width: 250px; }
    .phone-screen { min-height: 380px; }
    .ui-notif-read { display: none; }
    .erp-stats-row { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .about-stats-side { grid-template-columns: 1fr 1fr; }
}

/* --- FAQ Page --- */
.faq-intro {
    margin-bottom: 48px;
}

.faq-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    background: var(--surface);
    box-shadow: var(--shadow-xs);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.faq-item details {
    display: flex;
    flex-direction: column;
}

.faq-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    cursor: pointer;
    background: var(--surface);
    user-select: none;
    transition: all var(--transition-base);
    border: none;
}

.faq-item:hover .faq-summary {
    background: var(--surface);
}

.faq-item details[open] > .faq-summary {
    background: var(--primary-bg);
    border-bottom: 1px solid var(--border);
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--primary);
    transition: transform var(--transition-base);
    font-size: 1.2rem;
}

.faq-item details[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    line-height: 1.5;
}

.faq-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    min-width: 36px;
    text-align: center;
}

.faq-answer {
    padding: 18px 22px 22px 66px;
    background: #ffffff;
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-body);
    border-top: 1px solid var(--border-light);
}

.faq-answer p {
    margin: 0;
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-content h1 { font-size: 1.65rem; }
    .modules-grid { grid-template-columns: 1fr; }
    .stat-item .stat-value { font-size: 1.75rem; }
    .steps-enhanced { grid-template-columns: 1fr; }
    .roles-card-grid { grid-template-columns: 1fr; }
    .features-card-grid { grid-template-columns: 1fr; }
}
