/* OneFinOps - Main Stylesheet */
/* Red/Orange Theme */

/* CSS Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary - Red/Orange Brand */
    --primary: #f1643f;
    --primary-dark: #d94e2a;
    --primary-light: rgba(241, 100, 63, 0.15);
    --primary-rgb: 241, 100, 63;

    /* Accent - Salmon/Coral */
    --accent: #ff9c82;
    --accent-dark: #ed3c0f;
    --accent-light: rgba(255, 156, 130, 0.15);
    --accent-rgb: 255, 156, 130;

    /* Complementary - Light Coral */
    --complement: #ffbeae;
    --complement-dark: #ff9c82;
    --complement-light: rgba(255, 190, 174, 0.15);

    /* Dark - Brand Deep Red/Brown */
    --navy: #581605;
    --navy-light: #a23316;
    --navy-rgb: 88, 22, 5;
    --ribbon: #c53410;
    --mid-accent: #c53410;
    --light-tint: #fff6f4;
    --light-tint-border: #ffd9cf;
    --hero-tint: #ffe8e0;

    /* Warm Gray Scale (from homepage) */
    --gray-1: #fdfdfc;
    --gray-2: #f9f9f8;
    --gray-3: #f1f0ef;
    --gray-4: #e9e8e6;
    --gray-5: #e2e1df;
    --gray-6: #dbd9d6;
    --gray-7: #d0cecb;
    --gray-8: #bdbbb6;
    --gray-9: #8f8c87;
    --gray-10: #84817d;
    --gray-11: #65625f;
    --gray-12: #22201d;
    --gray-contrast: #FFFFFF;
    --gray-surface: #ffffffcc;

    /* Backgrounds */
    --bg-primary: var(--gray-2);
    --bg-secondary: #581605;
    --bg-tertiary: #a23316;
    --bg-card: #ffffff;
    --bg-card-hover: var(--gray-1);
    --border-color: var(--gray-4);
    --border-color-hover: rgba(241, 100, 63, 0.3);

    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #6b6b6b;
    --text-muted: var(--gray-9);
    --dark: #1a1a1a;
    --white: #FFFFFF;

    /* Legacy gray mappings */
    --gray-700: var(--gray-11);
    --gray-600: var(--gray-10);
    --gray-500: var(--gray-9);
    --gray-400: var(--gray-8);
    --gray-300: var(--gray-6);
    --gray-200: var(--gray-4);
    --gray-100: var(--gray-3);
    --gray-50: var(--gray-2);
    --gray-800: var(--gray-12);

    /* Secondary - Green for success/secondary actions */
    --secondary: #00B894;
    --secondary-dark: #00A884;
    --secondary-light: rgba(0, 184, 148, 0.15);

    /* Status Colors */
    --warning: #F59E0B;
    --warning-light: rgba(245, 158, 11, 0.15);
    --danger: #EF4444;
    --danger-light: rgba(239, 68, 68, 0.15);
    --success: var(--secondary);

    /* Additional Gray */
    --gray-800: #E5E7EB;

    /* Icon Color Palette - Red/Orange Tints */
    --purple-light: rgba(241, 100, 63, 0.15);
    --purple: #f1643f;
    --green-light: rgba(0, 184, 148, 0.15);
    --green: #00B894;
    --orange-light: rgba(245, 158, 11, 0.15);
    --orange: #F59E0B;
    --blue-light: rgba(241, 100, 63, 0.15);
    --blue: #f1643f;
    --pink-light: rgba(236, 72, 153, 0.15);
    --pink: #EC4899;
    --teal-light: rgba(16, 185, 129, 0.15);
    --teal: #10B981;

    /* Gradients */
    --gradient-hero: linear-gradient(180deg, #581605 0%, #581605 100%);
    --gradient-cta: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--primary), var(--accent));

    /* Spacing Scale (Chakra UI inspired) */
    --space-0: 0;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 28px;
    --space-8: 32px;
    --space-9: 36px;
    --space-10: 40px;
    --space-12: 48px;
    --space-14: 56px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --space-28: 112px;
    --space-32: 128px;
    --space-36: 144px;
    --space-40: 160px;

    /* Font Sizes (Chakra UI inspired) */
    --text-xs: 12px;
    --text-sm: 14px;
    --text-md: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 30px;
    --text-4xl: 36px;
    --text-5xl: 48px;
    --text-6xl: 60px;
    --text-7xl: 72px;

    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    /* Shadow System (Chakra-inspired) */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 20px 40px -12px rgba(0, 0, 0, 0.15);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Hanken Grotesk', sans-serif;
    color: var(--text-secondary);
    line-height: 1.6;
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
}

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

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

@media (max-width: 1199px) {
    .container {
        max-width: 800px;
    }
    .pricing-grid,
    .m-metrics-grid,
    .m-ba-grid,
    .m-persona-grid,
    .m-related-grid {
        max-width: 800px;
    }
    .faq-container,
    .faq-accordion,
    .timeline,
    .faq-list,
    .faq-grid,
    .narrative-hero-grid.centered {
        max-width: 100%;
    }
}

@media (max-width: 809px) {
    .container {
        max-width: 500px;
    }
    .pricing-grid,
    .m-metrics-grid,
    .m-ba-grid,
    .m-persona-grid,
    .m-related-grid {
        max-width: 500px;
    }
    .page-hero p,
    .feature-hero p,
    .about-hero p,
    .section-header p,
    .cta-content,
    .m-section-header,
    .m-cta .m-body,
    .m-security-header,
    .bottom-cta-content,
    .faq-container,
    .faq-accordion,
    .timeline,
    .faq-list,
    .faq-grid,
    .narrative-hero-grid.centered {
        max-width: 100%;
    }
}

/* Navigation Blur Layer */
.navbar-blur-layer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 999;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.6) 60%, transparent 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
    transition: opacity 0.3s ease;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 100px;
    padding: 10px 14px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
    border: none;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.has-product-subnav .navbar.scrolled {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.navbar.navbar-hidden {
    transform: translateX(-50%) translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 36px;
    max-height: 36px;
    width: auto;
    object-fit: contain;
}

/* Logo - default dark, invert to white on scroll */
.logo img {
    filter: none;
    transition: filter 0.3s ease;
}

.navbar.scrolled .logo img {
    filter: none;
}

footer .logo img,
.footer .logo img {
    height: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s;
}

.navbar.scrolled .nav-links a {
    color: var(--text-secondary);
}

.navbar.scrolled .nav-links a.active {
    color: var(--primary);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a:focus {
    color: var(--primary);
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--primary);
    outline: none;
}

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

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

/* Mega Menu */
.nav-links .has-mega-menu {
    position: relative;
}

.nav-links .mega-menu-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav-links .mega-menu-trigger::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.2s;
}

.nav-links .has-mega-menu:hover .mega-menu-trigger::after,
.nav-links .has-mega-menu.active .mega-menu-trigger::after {
    transform: rotate(180deg);
}

.has-mega-menu {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 960px;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.1), 0 0 0 1px rgba(var(--primary-rgb), 0.06);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 9999;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 16px;
}

.nav-links .has-mega-menu:hover .mega-menu,
.nav-links .has-mega-menu.active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu > .container {
    max-width: 100%;
    margin: 0;
    padding: 8px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: background 0.2s;
}

.mega-menu-item:hover {
    background: rgba(var(--primary-rgb), 0.06);
}

.mega-menu-divider {
    grid-column: 1 / -1;
    height: 1px;
    background: rgba(var(--primary-rgb), 0.25);
    margin: 4px 0;
}

.mega-menu-icon {
    width: 40px;
    height: 40px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    color: var(--primary);
    transition: all 0.2s;
}

.mega-menu-item:hover .mega-menu-icon {
    background: var(--primary);
    color: white;
}

.mega-menu-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-menu-text strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.mega-menu-text span {
    font-size: 13px;
    color: #6B6580;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Company Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-trigger::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.2s;
}

.has-dropdown:hover .dropdown-trigger::after,
.has-dropdown.active .dropdown-trigger::after {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    transform: translateY(10px);
    min-width: 180px;
    background: var(--bg-primary);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.1), 0 0 0 1px rgba(var(--primary-rgb), 0.06);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 9999;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown.active .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
}

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

.nav-dropdown-item:hover {
    background: rgba(var(--primary-rgb), 0.06);
    color: var(--mid-accent);
}

/* Product Sub-Navigation Bar */
.product-subnav {
    position: fixed;
    top: 72px; /* fallback, overridden by JS */
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    backdrop-filter: none;
    border-top: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: none;
    transition: all 0.3s ease;
}

.product-subnav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.product-subnav .container {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 48px;
}

.product-subnav-label {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-primary);
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    transition: color 0.2s;
}

.product-subnav-label:hover {
    color: var(--primary);
}

.product-subnav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    position: relative;
}

.subnav-indicator {
    position: absolute;
    bottom: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px 2px 0 0;
    transition: left 0.3s ease, width 0.3s ease;
    pointer-events: none;
}

.product-subnav-links::-webkit-scrollbar {
    display: none;
}

.product-subnav-link {
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #6B6580;
    padding: 12px 14px;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s;
}

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

.product-subnav-link.active {
    color: var(--primary);
    font-weight: 700;
}


/* Increase hero padding when sub-nav is present */
body.has-product-subnav .page-hero {
    padding-top: 200px;
}

body.has-product-subnav .feature-hero {
    padding-top: 190px;
}

body.has-product-subnav .hero {
    padding-top: 190px;
}

body.has-product-subnav .section-narrative-hero {
    padding-top: 210px;
}

body.has-product-subnav .m-hero {
    min-height: 80vh;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Mobile Mega Menu */
.mobile-nav .mobile-mega-menu {
    display: none;
    padding-left: 16px;
    margin-top: 8px;
}

.mobile-nav .mobile-mega-menu.active {
    display: block;
}

.mobile-nav .mobile-mega-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-nav .mobile-mega-trigger::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: var(--gray-9);
    transition: transform 0.2s;
}

.mobile-nav .mobile-mega-trigger.active::after {
    content: '−';
}

.mobile-mega-menu h5 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-9);
    margin: 16px 0 8px;
}

.mobile-mega-menu ul {
    list-style: none;
}

.mobile-mega-menu li {
    padding: 8px 0;
    border-bottom: none;
}

.mobile-mega-menu a {
    font-size: 14px;
}

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

.theme-toggle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.theme-toggle-btn:hover {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
}

.theme-toggle-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 50%, var(--accent) 50%);
    transition: all 0.3s ease;
}

.mobile-theme-toggle {
    width: 100%;
    height: auto;
    border-radius: 8px;
    padding: 12px 16px;
    gap: 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-theme-toggle .theme-toggle-icon {
    width: 20px;
    height: 20px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--navy);
}

/* Animate to X when active */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.mobile-nav {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    width: calc(100% - 48px);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    display: block;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
    color: var(--primary);
}

.mobile-nav-buttons {
    display: flex;
    gap: 12px;
    padding: 24px 0 8px;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 12px;
}

.mobile-nav-buttons .btn {
    flex: 1;
    text-align: center;
}

.mobile-nav-buttons .btn-primary {
    color: var(--white);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 14px;
    display: inline-block;
}

.btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(26, 16, 53, 0.2);
    transition: all 0.3s ease;
}

.btn-outline:hover,
.btn-outline:focus {
    border-color: var(--primary);
    color: var(--primary);
}

.navbar.scrolled .btn-outline {
    color: var(--text-primary);
    border-color: rgba(26, 16, 53, 0.2);
}

.navbar.scrolled .btn-outline:hover,
.navbar.scrolled .btn-outline:focus {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

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

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

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    font-weight: 600;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--secondary-dark);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

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

.btn-white:hover,
.btn-white:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.3);
}

/* Page Hero */
.page-hero {
    padding: 180px 0 80px;
    background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.page-hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.6);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
}

.section-header h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.section-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: rgba(255,255,255,0.05);
    color: #FFFFFF;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
    background: rgba(255,255,255,0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 0;
}

.footer-grid .footer-brand {
    grid-column: span 1;
}

.footer-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 0;
    padding-top: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin: 16px 0 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s;
    font-size: 14px;
}

.footer-social a:hover,
.footer-social a:focus {
    background: var(--primary);
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover,
.footer-column a:focus {
    color: var(--white);
}

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

.footer-bottom p {
    color: var(--gray-400);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a:focus {
    color: var(--white);
}

/* CTA Section */
.cta {
    padding: 60px 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(var(--primary-rgb), 0.25) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(6, 103, 191, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 50% 0%, rgba(255, 156, 130, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(10, 88, 158, 0.4) 0%, transparent 35%),
        radial-gradient(circle at 0% 100%, rgba(15, 73, 131, 0.35) 0%, transparent 35%),
        linear-gradient(180deg, #071d35 0%, #0a2a4a 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: 30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 156, 130, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    color: var(--white);
}

.cta-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.cta-features span i {
    width: 14px;
    height: 14px;
    color: var(--secondary);
}

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

.cta .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3);
}

/* Utility Classes */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Alert/Toast Messages */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--success);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.error {
    background: var(--danger);
}

.toast.info {
    background: var(--primary);
}

/* Modern Cards */
.card {
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.15);
    transform: translateY(-4px);
    background: rgba(255,255,255,0.06);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Light tint solid color variations */
.card:nth-child(6n+1) .card-icon { background: var(--purple-light); color: var(--purple); }
.card:nth-child(6n+2) .card-icon { background: var(--green-light); color: var(--green); }
.card:nth-child(6n+3) .card-icon { background: var(--orange-light); color: var(--orange); }
.card:nth-child(6n+4) .card-icon { background: var(--blue-light); color: var(--blue); }
.card:nth-child(6n+5) .card-icon { background: var(--pink-light); color: var(--pink); }
.card:nth-child(6n+6) .card-icon { background: var(--teal-light); color: var(--teal); }

.card:hover .card-icon {
    transform: rotate(-8deg) scale(1.05);
}

.card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.card p {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Floating 3D Effect (like onefinops.com) */
.floating-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.floating-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

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

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-item p {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    opacity: 0.7;
}

.trust-badges img {
    height: 40px;
    filter: grayscale(100%) brightness(2);
    transition: filter 0.3s;
}

.trust-badges img:hover {
    filter: grayscale(0%);
}

/* Pill Tags */
.pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pill--primary {
    background: var(--primary-light);
    color: var(--primary);
}

.pill--accent {
    background: var(--accent-light);
    color: var(--accent-dark);
}

/* Testimonial Cards */
.testimonial-card {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    font-family: 'Bricolage Grotesque', serif;
    color: rgba(var(--primary-rgb), 0.2);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info strong {
    display: block;
    font-size: 16px;
    color: #FFFFFF;
}

.testimonial-author-info span {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

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

/* Pricing Hero */
.pricing-hero {
    padding: 120px 0 48px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%);
}

.pricing-hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.pricing-hero .subtitle {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
}

/* Billing Toggle */
.billing-toggle {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-full);
    padding: 4px;
}

.billing-toggle button {
    padding: 14px 28px;
    border: none;
    background: transparent;
    border-radius: var(--radius-full);
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgba(255,255,255,0.6);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.billing-toggle button.active {
    background: var(--primary);
    color: var(--white);
}

.billing-toggle .save-badge {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    padding: 48px 0 100px;
    background: var(--bg-primary);
}

/* Pricing Grid */
.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Pricing Card */
.pricing-card {
    flex: 1;
    max-width: 380px;
    padding: 32px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-2xl);
    display: flex;
    flex-direction: column;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.06);
}

/* Featured Card */
.pricing-card.featured {
    background: rgba(var(--primary-rgb), 0.1);
    border: 2px solid var(--primary);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.2);
}

/* Plan Header */
.plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

/* Plan Name */
.plan-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #FFFFFF;
}

/* Popular Badge */
.popular-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(var(--primary-rgb), 0.2);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--primary);
}

.popular-badge i,
.popular-badge svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

/* Plan Description */
.plan-description {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin-bottom: 24px;
    min-height: 45px;
}

/* Price */
.price-wrapper {
    margin-bottom: 4px;
}

.pricing-card .price {
    font-family: 'Bricolage Grotesque', sans-serif;
    display: flex;
    align-items: flex-start;
    line-height: 1;
    margin: 0;
}

.pricing-card .price .currency {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 6px;
    margin-right: 2px;
}

.pricing-card .price .amount {
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
}

.pricing-card .price .prefix {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    margin-right: 6px;
    align-self: center;
}

/* Billing Period */
.billing-period {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}

/* Pricing CTA Button */
.pricing-cta {
    display: block;
    width: 100%;
    padding: 16px 24px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-full);
    background: transparent;
    color: #FFFFFF;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 12px;
}

.pricing-cta:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Featured CTA */
.pricing-card.featured .pricing-cta {
    border: 2px solid var(--primary);
    background: var(--primary);
    color: #FFFFFF;
}

.pricing-card.featured .pricing-cta:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Scale CTA */
.pricing-card.scale .pricing-cta {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.pricing-card.scale .pricing-cta:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Trial Text */
.trial-text {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

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

/* Features List */
.pricing-card .features-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-grow: 1;
}

.pricing-card.featured .features-list {
    border-top-color: rgba(var(--primary-rgb), 0.3);
}

.pricing-card .features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.pricing-card .features-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke-width: 2.5;
    color: var(--primary);
}

.pricing-card .features-list li.included {
    color: rgba(255,255,255,0.8);
}

.pricing-card .features-list li.not-included {
    color: rgba(255,255,255,0.4);
}

.pricing-card .features-list li.not-included svg {
    color: rgba(255,255,255,0.3);
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.comparison-table {
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

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

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.comparison-table thead th {
    background: rgba(255,255,255,0.05);
    font-weight: 700;
    color: #FFFFFF;
}

.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
    text-align: center;
    width: 140px;
}

.comparison-table tbody td:first-child {
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}

.comparison-table .check {
    color: var(--primary);
}

.comparison-table .check svg {
    width: 22px;
    height: 22px;
}

.comparison-table .cross {
    color: rgba(255,255,255,0.3);
}

.comparison-table .cross svg {
    width: 22px;
    height: 22px;
}

/* FAQ Section */
/* Base FAQ Section Style */
.faq {
    padding: 100px 0;
    background: var(--bg-primary);
}

/* FAQ Section - Original Style (for FAQ page) */
.faq-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.faq-category {
    margin-bottom: 48px;
}

.faq-category h2,
.faq-category h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(var(--primary-rgb), 0.3);
    color: #FFFFFF;
}

.faq-category h2 {
    font-size: 24px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(var(--primary-rgb), 0.04);
}

.faq-question {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    padding: 16px 20px;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 24px;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--primary);
    font-weight: 300;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 20px 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-size: 14px;
    display: none;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item.active .faq-answer {
    display: block;
}

/* ==========================================
   FAQ Section - Clean Style (for Home Page)
   ========================================== */
.faq-section-home {
    padding: 100px 0;
    background: var(--bg-primary);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.faq-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

.faq-list,
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-clean {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item-clean:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question-clean {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question-clean span:first-child {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    flex: 1;
    padding-right: 20px;
}

.faq-question-clean:hover span:first-child {
    color: var(--primary);
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon svg,
.faq-icon i {
    width: 20px;
    height: 20px;
    color: var(--primary);
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.faq-item-clean:hover .faq-icon svg,
.faq-item-clean:hover .faq-icon i {
    color: var(--primary);
}

.faq-item-clean.active .faq-icon {
    background: transparent;
    transform: rotate(0deg);
}

.faq-item-clean.active .faq-icon svg,
.faq-item-clean.active .faq-icon i {
    color: var(--primary);
    transform: rotate(180deg);
}

.faq-answer-clean {
    padding: 0 60px 24px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.7;
    display: none;
    max-width: 85%;
}

.faq-item-clean.active .faq-answer-clean {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive FAQ */
@media (max-width: 809px) {
    .faq-header h2 {
        font-size: 32px;
    }

    .faq-question-clean span:first-child {
        font-size: 16px;
    }

    .faq-icon {
        width: 36px;
        height: 36px;
    }

    .faq-answer-clean {
        padding-right: 0;
        max-width: 100%;
        font-size: 14px;
    }
}

/* Pricing Responsive */
@media (max-width: 1199px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        max-width: 400px;
    }

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

    .pricing-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 809px) {
    .pricing-hero {
        padding: 100px 0 40px;
    }

    .pricing-hero .subtitle {
        font-size: 16px;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .billing-toggle button {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ==========================================
   HERO SECTIONS
   ========================================== */

/* Main Hero (Homepage) */
.hero {
    padding: 0 0 80px;
    background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-form {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-form input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: 'Hanken Grotesk', sans-serif;
    background: rgba(255,255,255,0.05);
    color: #FFFFFF;
}

.hero-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.hero-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
    background: rgba(255,255,255,0.08);
}

.hero-image {
    position: relative;
    overflow: visible;
}

/* Hero Responsive */
@media (max-width: 1199px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-form {
        flex-direction: column;
    }

    .hero-image {
        display: none;
    }
}

/* ==========================================
   FEATURE PAGES
   ========================================== */

/* Feature Hero */
.feature-hero {
    padding: 0 0 80px;
    background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.feature-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.feature-hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.feature-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: 0 0 32px;
    line-height: 1.7;
}

/* Feature Section */
.feature-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

/* Feature Card */
.feature-card {
    padding: 0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-info h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.feature-info p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 4px;
}

.feature-know-more {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
}

.feature-know-more:hover {
    color: var(--mid-accent);
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact-section {
    padding: 0 0 80px;
    background: var(--bg-primary);
}

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

.contact-info h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.contact-info p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-form {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

    .contact-section {
        padding: 100px 0 60px;
    }
}

/* ==========================================
   ABOUT PAGE
   ========================================== */

.about-hero {
    padding: 0 0 80px;
    background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

/* Team Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: translateY(-4px);
    background: rgba(255,255,255,0.06);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.team-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

@media (max-width: 809px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-hero h1,
    .feature-hero h1 {
        font-size: 36px;
    }
}

/* ==========================================
   BLOG PAGE
   ========================================== */

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

.blog-card {
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: translateY(-4px);
    background: rgba(255,255,255,0.06);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 24px;
}

.blog-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.blog-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card .read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.blog-card .read-more:hover {
    text-decoration: underline;
}

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

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

/* ==========================================
   INTEGRATIONS PAGE
   ========================================== */

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.integration-card {
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.integration-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.06);
}

.integration-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 16px;
}

.integration-card h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

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

/* Icon Boxes */
.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    font-size: 28px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.icon-box:hover {
    transform: rotate(-8deg) scale(1.05);
}

.icon-box--accent {
    background: var(--primary-light);
    color: var(--primary);
}

.icon-box--complement {
    background: var(--secondary-light);
    color: var(--secondary);
}

/* Feature Icon - Global Styling */
.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Feature Icon Color Variations */
.feature-card:nth-child(6n+1) .feature-icon { background: var(--purple-light); color: var(--purple); }
.feature-card:nth-child(6n+2) .feature-icon { background: var(--green-light); color: var(--green); }
.feature-card:nth-child(6n+3) .feature-icon { background: var(--orange-light); color: var(--orange); }
.feature-card:nth-child(6n+4) .feature-icon { background: var(--blue-light); color: var(--blue); }
.feature-card:nth-child(6n+5) .feature-icon { background: var(--pink-light); color: var(--pink); }
.feature-card:nth-child(6n+6) .feature-icon { background: var(--teal-light); color: var(--teal); }

.feature-card:hover .feature-icon {
    transform: rotate(-8deg) scale(1.05);
}

/* Benefit Icon - Global Styling */
.benefit-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Benefit Icon Color Variations */
.benefit-card:nth-child(6n+1) .benefit-icon { background: var(--purple-light); color: var(--purple); }
.benefit-card:nth-child(6n+2) .benefit-icon { background: var(--green-light); color: var(--green); }
.benefit-card:nth-child(6n+3) .benefit-icon { background: var(--orange-light); color: var(--orange); }
.benefit-card:nth-child(6n+4) .benefit-icon { background: var(--blue-light); color: var(--blue); }
.benefit-card:nth-child(6n+5) .benefit-icon { background: var(--pink-light); color: var(--pink); }
.benefit-card:nth-child(6n+6) .benefit-icon { background: var(--teal-light); color: var(--teal); }

.benefit-card:hover .benefit-icon {
    transform: rotate(-8deg) scale(1.05);
}

/* Step Icon Box - Global Styling */
.step-icon-box {
    width: 88px;
    height: 88px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-card:nth-child(odd) .step-icon-box { background: var(--purple-light); color: var(--purple); }
.step-card:nth-child(even) .step-icon-box { background: var(--green-light); color: var(--green); }

.step-card:hover .step-icon-box {
    transform: rotate(-8deg) scale(1.05);
}

/* Lucide Icons Styling */
[data-lucide] {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.icon-box [data-lucide] {
    width: 28px;
    height: 28px;
}

.mega-menu-icon [data-lucide] {
    width: 20px;
    height: 20px;
}

.feature-icon [data-lucide] {
    width: 24px;
    height: 24px;
}

.pain-icon [data-lucide] {
    width: 28px;
    height: 28px;
}

/* Feature Card Button Styling */
.feature-card .btn {
    margin-top: var(--space-4);
}

/* Glow Effect */
.glow-effect {
    position: relative;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Responsive */
@media (max-width: 1199px) {
    .page-hero {
        padding-top: 140px;
    }

    .hero {
        padding-top: 140px;
    }

    .feature-hero {
        padding-top: 140px;
    }

    .contact-section {
        padding-top: 140px;
    }

    .about-hero {
        padding-top: 140px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        /* Same as other cards on mobile */
    }
}

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

    .nav-buttons a {
        display: none;
    }

    .mega-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .product-subnav .container {
        gap: 16px;
    }

    .product-subnav-label {
        font-size: 10px;
        letter-spacing: 0.6px;
    }

    .product-subnav-link {
        font-size: 12px;
        padding: 12px 10px;
    }

    body.has-product-subnav .page-hero,
    body.has-product-subnav .feature-hero,
    body.has-product-subnav .hero,
    body.has-product-subnav .section-narrative-hero,
    body.has-product-subnav .m-hero {
        padding-top: 160px;
    }
    body.has-product-subnav .m-hero {
        padding-top: 150px;
        padding-bottom: 50px;
    }
}

@media (max-width: 809px) {

    .product-subnav .container {
        gap: 12px;
        height: 44px;
    }

    .product-subnav-label {
        display: none;
    }

    .product-subnav-links {
        gap: 2px;
    }

    .product-subnav-link {
        font-size: 12px;
        padding: 10px 8px;
    }

    body.has-product-subnav .page-hero,
    body.has-product-subnav .feature-hero,
    body.has-product-subnav .hero,
    body.has-product-subnav .section-narrative-hero,
    body.has-product-subnav .m-hero {
        padding-top: 140px;
    }
    body.has-product-subnav .m-hero {
        padding-top: 140px;
        padding-bottom: 40px;
    }

    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .page-hero p {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .cta h2 {
        font-size: 32px;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    .trust-badges {
        flex-wrap: wrap;
        gap: 24px;
    }

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

    .footer-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .floating-card {
        transform: none;
    }
}

@media (max-width: 480px) {
    .navbar {
        width: calc(100% - 32px);
        padding: 8px 20px;
        top: 12px;
    }

    .mobile-nav {
        width: calc(100% - 32px);
        top: 72px;
    }

    .container {
        padding: 0 16px;
    }

    .page-hero {
        padding: 100px 0 40px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .cta h2 {
        font-size: 24px;
    }

    .cta-subtitle {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .cta-features {
        gap: 16px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .feature-hero h1 {
        font-size: 28px;
    }

    .feature-section {
        padding: 60px 0;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .about-hero h1 {
        font-size: 28px;
    }

    .faq-header h2 {
        font-size: 26px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        gap: 24px;
    }

    .footer-bottom {
        padding-top: 24px;
        gap: 12px;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 12px 16px;
    }

    input, select, textarea {
        font-size: 16px;
    }

    .footer-column a {
        padding: 4px 0;
        display: inline-block;
    }

    .footer-social a {
        width: 44px;
        height: 44px;
    }
}

/* ==========================================
   DARK MODE GLOBAL OVERRIDES
   ========================================== */

/* Ensure all sections have dark backgrounds */
section {
    background-color: var(--bg-primary);
}

section.alt,
.alt-section {
    background-color: var(--bg-secondary);
}

/* Override for light mode backgrounds */
.mini-stat,
.mini-input,
.step-visual-content,
.gstin-visual,
.dashboard-visual,
.notif-visual {
    background: #FFFFFF !important;
    border-color: rgba(var(--primary-rgb), 0.1) !important;
}

/* Dashboard and card elements inside hero illustrations - dark mode */
.dashboard-body,
.dashboard-card .dashboard-body {
    background: rgba(13, 5, 32, 0.98) !important;
}

.dashboard-card {
    background: rgba(13, 5, 32, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Ensure text colors are correct in dark mode */
.mini-stat-value,
.score-details h3,
.float-card .fc-content h4,
.mini-deadline-item,
.detected-tag,
.dashboard-status {
    color: inherit;
}

/* Float cards dark mode styling */
.float-card,
.float-badge {
    background: rgba(13, 5, 32, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4) !important;
}

.float-card .fc-content h4,
.float-badge span {
    color: #FFFFFF !important;
}

.float-card .fc-content p {
    color: rgba(255,255,255,0.6) !important;
}

/* Mini stats in dark context */
.mini-stat {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

.mini-stat:hover {
    border-color: var(--primary) !important;
}

.mini-stat-label {
    color: rgba(255,255,255,0.6);
}

.mini-stat-value {
    color: #FFFFFF !important;
}

/* Status badge dark mode */
.status-badge {
    background: rgba(16, 185, 129, 0.15) !important;
    color: #10B981 !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
}

/* Score details text */
.score-details h3 {
    color: #FFFFFF !important;
}

.score-details p {
    color: rgba(255,255,255,0.6) !important;
}

/* Visual text and labels */
.visual-text,
.gstin-visual-header {
    color: var(--gray-9);
}

.dashboard-title {
    color: var(--text-primary);
}

/* Ensure select dropdowns work in dark mode */
select {
    background-color: rgba(255,255,255,0.05);
    color: #FFFFFF;
}

select option {
    background-color: var(--bg-secondary);
    color: #FFFFFF;
}

/* GSTIN Visual Illustration Styles */
.gstin-visual {
    background: var(--gray-2) !important;
    border: 1px solid var(--gray-4);
    border-radius: 12px;
    padding: 20px;
}

.gstin-visual-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-9);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.gstin-visual-header i,
.gstin-visual-header svg {
    width: 20px;
    height: 20px;
    color: var(--gray-9);
}

.mini-input {
    background: #FFFFFF !important;
    border: 1px solid var(--gray-4) !important;
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.mini-button {
    background: var(--primary);
    color: #FFFFFF !important;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.mini-button:hover {
    background: var(--primary-dark);
}

.detected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detected-tag {
    background: rgba(var(--primary-rgb), 0.06);
    color: #6B6580;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--gray-4);
}

/* Dashboard Visual Illustration Styles */
.dashboard-visual {
    background: var(--gray-2) !important;
    border: 1px solid var(--gray-4);
    border-radius: 12px;
    padding: 20px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy) !important;
}

.dashboard-status {
    background: rgba(0, 184, 148, 0.08);
    color: #00B894 !important;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(0, 184, 148, 0.15);
}

.mini-score {
    display: flex;
    align-items: center;
    gap: 24px;
}

.mini-score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--mid-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.06);
    flex-shrink: 0;
}

.mini-score-circle span {
    font-size: 20px;
    font-weight: 700;
    color: var(--mid-accent);
}

.mini-deadlines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mini-deadline-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.mini-deadline-item .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    flex-shrink: 0;
}

.mini-deadline-item .dot.warning {
    background: var(--warning);
}

.mini-deadline-item .days {
    margin-left: auto;
    color: var(--gray-9);
    font-size: 13px;
}

/* Notification Visual Illustration Styles (Step 3) */
.notif-visual {
    background: var(--gray-2) !important;
    border: 1px solid var(--gray-4);
    border-radius: 12px;
    padding: 20px;
}

.notif-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-9);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.notif-header i,
.notif-header svg {
    width: 20px;
    height: 20px;
    color: var(--gray-9);
}

.mini-notifications {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mini-notif {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-primary);
    border: 1px solid var(--gray-4);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

.mini-notif-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: var(--mid-accent);
}

.mini-notif-icon i,
.mini-notif-icon svg {
    width: 18px;
    height: 18px;
}


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

/* Fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

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

/* Animation classes */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

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

.slide-in-left {
    opacity: 0;
    animation: slideInLeft 0.6s ease forwards;
}

.slide-in-right {
    opacity: 0;
    animation: slideInRight 0.6s ease forwards;
}

.scale-in {
    opacity: 0;
    animation: scaleIn 0.5s ease forwards;
}

/* Staggered delays for lists */
.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }
.fade-in-up:nth-child(5) { animation-delay: 0.5s; }
.fade-in-up:nth-child(6) { animation-delay: 0.6s; }

/* Scroll-triggered reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-children > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-children.reveal-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.reveal-children.reveal-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.reveal-children.reveal-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.reveal-children.reveal-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.reveal-children.reveal-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.reveal-children.reveal-visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.reveal-children.reveal-visible > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.reveal-children.reveal-visible > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-children > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Hover animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(var(--primary-rgb), 0.2);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.3);
}

/* Button hover effects */
.btn {
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.4);
}

/* Card hover effects */
.pain-card,
.pricing-card,
.faq-item {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.faq-item:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.1);
}

/* Section header animations */
.section-header {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.section-tag {
    display: inline-block;
    animation: fadeIn 0.5s ease forwards;
}

/* Smooth scroll indicator */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Loading shimmer effect */
.shimmer {
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.1) 50%, 
        rgba(255,255,255,0) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Icon animations */
.feature-icon,
.pain-icon {
    transition: all 0.4s ease;
}

/* Stats counter animation placeholder */
.stat-item .number {
    transition: all 0.3s ease;
}

.stat-item:hover .number {
    transform: scale(1.1);
    color: var(--primary);
}

/* Testimonial card animation */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Security card animation */
.security-card {
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(var(--primary-rgb), 0.3);
}

/* CTA section glow effect */
.cta {
    position: relative;
}

.cta::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

/* ========================================
   Monarch Design System — Shared Styles
   Extracted from per-page inline <style> tags.
   ======================================== */

/* Gray Scale Variables */
:root {
    --gray-1: #fdfdfc;
    --gray-2: #f9f9f8;
    --gray-3: #f1f0ef;
    --gray-4: #e9e8e6;
    --gray-5: #e2e1df;
    --gray-6: #dbd9d6;
    --gray-7: #d0cecb;
    --gray-8: #bdbbb6;
    --gray-9: #8f8c87;
    --gray-10: #84817d;
    --gray-11: #65625f;
    --gray-12: #22201d;
    --gray-contrast: #FFFFFF;
    --gray-surface: #ffffffcc;
}

body {
    background: var(--gray-2);
}

#main-content {
    background: var(--gray-2);
}

/* ---- Typography ---- */
.m-tag {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: block;
}

.m-h1 {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 48px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 24px;
}

.m-h2 {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 48px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 0;
}

.m-h3 {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 32px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 12px;
}

.m-body {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 17px;
    color: #6b6b6b;
    line-height: 1.7;
}

/* ---- Buttons ---- */
.m-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.m-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.m-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #e0dbd5;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.m-btn-secondary:hover {
    border-color: #1a1a1a;
}

/* ---- Hero Section ---- */
.m-hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.m-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    width: calc(100% - 48px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 14px;
}

.m-hero-content {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.m-hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 36px;
}

.m-hero-visual {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    align-self: center;
}

/* ---- Card Stack Illustration ---- */
.card-stack {
    background: #E8E4DE;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.m-hero-visual .card-stack {
    display: grid;
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 10px;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
}

.card-stack-item {
    background: #fff;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.m-hero-visual .card-stack-item.span-full {
    grid-column: 1 / -1;
}

.card-stack-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.card-stack-title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.card-stack-subtitle {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.card-stack-value {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.card-stack-badge {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(107, 114, 128, 0.08);
    color: #4B5563;
    white-space: nowrap;
}

.card-stack-badge.accent {
    background: rgba(196, 87, 58, 0.08);
    color: #C4573A;
}

.card-stack-badge.brand {
    background: rgba(241, 100, 63, 0.08);
    color: #f1643f;
}

.card-stack-value.brand {
    color: #f1643f;
}

/* Progress bar */
.cs-progress {
    height: 6px;
    background: rgba(0,0,0,0.06);
    border-radius: 100px;
    overflow: hidden;
    margin-top: 8px;
}
.cs-progress-fill {
    height: 100%;
    border-radius: 100px;
    background: #f1643f;
}

/* Mini bar chart */
.cs-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 36px;
}
.cs-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: rgba(241,100,63,0.15);
    min-width: 0;
}
.cs-bar.active { background: #f1643f; }

.cs-label { font-size: 13px; color: #999; margin-bottom: 4px; }

/* ---- Floating Cards ---- */
.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.03);
    z-index: 2;
    white-space: nowrap;
}

.floating-card .fc-label {
    font-size: 11px;
    color: #999;
    margin-bottom: 2px;
}

.floating-card .fc-value {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.floating-card .fc-value.brand {
    color: #f1643f;
}

/* ---- Metrics Ribbon ---- */
.m-metrics {
    padding: 20px 0;
    background: #f1643f;
    text-align: center;
}

.m-metrics-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.m-metric-card {
    text-align: center;
}

.m-metric-value {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1;
}

.m-metric-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    line-height: 1.4;
}

/* ---- Before / After Section ---- */
.m-before-after {
    padding: 100px 0;
    background: #fff;
}

.m-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.m-ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.m-ba-column {
    border-radius: 20px;
    padding: 40px;
}

.m-ba-column.before {
    background: #fff;
    border: 1px solid var(--gray-4);
}

.m-ba-column.after {
    background: #fff;
    border: 1px solid var(--gray-4);
}

.m-ba-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bricolage Grotesque', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.m-ba-header i {
    width: 24px;
    height: 24px;
}

.m-ba-column.before .m-ba-header i {
    color: #EF4444;
}

.m-ba-column.after .m-ba-header i {
    color: #10B981;
}

.m-ba-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.m-ba-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
}

.m-ba-list li i {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.m-ba-column.before .m-ba-list li i {
    color: #EF4444;
}

.m-ba-column.after .m-ba-list li i {
    color: #10B981;
}

.m-ba-stat {
    font-size: 14px;
    color: #6b6b6b;
    padding-top: 20px;
    border-top: 1px solid var(--gray-4);
}

.m-ba-stat strong {
    color: #1a1a1a;
}

/* ---- Alternating Features ---- */
.m-alternating {
    padding: 100px 0;
    background: var(--gray-2);
}

.m-alt-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.m-alt-row:last-child {
    margin-bottom: 0;
}

.m-alt-row.reverse .m-alt-content {
    order: 2;
}

.m-alt-row.reverse .m-alt-visual {
    order: 1;
}

.m-alt-content {
    width: 100%;
}

.m-alt-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.m-alt-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.m-alt-features li i {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    margin-top: 2px;
}

/* ---- Persona Cards ---- */
.m-personas {
    padding: 100px 0;
    background: #f7f3ee;
}

.m-persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.m-persona-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.m-persona-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #f1643f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.m-persona-card h3 {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.m-persona-role {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.m-persona-quote {
    font-size: 15px;
    font-style: italic;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 3px solid var(--primary);
}

.m-persona-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.m-persona-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.5;
}

.m-persona-bullets li i {
    width: 18px;
    height: 18px;
    color: #10B981;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---- Related Features ---- */
.m-related { padding: 100px 0; background: #f7f3ee; }
.m-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1200px; margin: 0 auto; }
.m-related-card { background: #fff; border-radius: 20px; padding: 32px; box-shadow: 0 2px 20px rgba(0,0,0,0.04); text-decoration: none; transition: all 0.2s; }
.m-related-card:hover { transform: translateY(-4px); box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.m-related-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(241, 100, 63, 0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.m-related-icon i { width: 24px; height: 24px; color: #f1643f; }
.m-related-card h3 { font-family: 'Bricolage Grotesque', serif; font-size: 20px; font-weight: 600; color: #1a1a1a; margin-bottom: 12px; }
.m-related-card p { font-size: 15px; color: #6b6b6b; line-height: 1.6; margin-bottom: 16px; }
.m-learn-more { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--primary); }

/* ---- CTA Section ---- */
.m-cta {
    padding: 100px 0;
    background: var(--gray-2);
    text-align: center;
}

.m-cta-content {
    margin: 0 auto;
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #f1643f;
    background-image:
        radial-gradient(at 40% 20%, rgba(255,255,255,0.4) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(255,220,180,0.5) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(255,255,255,0.3) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(255,180,128,0.4) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(255,200,150,0.4) 0px, transparent 50%),
        radial-gradient(at 80% 100%, rgba(255,255,255,0.25) 0px, transparent 50%),
        radial-gradient(at 0% 0%, rgba(255,255,255,0.35) 0px, transparent 50%);
}

.m-cta .m-tag {
    color: #8B2500;
    display: block;
    margin-bottom: 16px;
}

.m-cta .m-h2 {
    margin-bottom: 12px;
    max-width: 100%;
}

.m-cta .m-body {
    color: #2d2d2d;
    max-width: 700px;
    margin: 0 auto;
}

.m-cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.12;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.m-cta-content > * {
    position: relative;
    z-index: 1;
}

.m-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 36px;
    margin-bottom: 28px;
}

.m-cta .m-btn-primary {
    background: #1a1a1a;
}

.m-cta .m-btn-primary:hover {
    background: #000;
}

.m-cta .m-btn-secondary {
    border-color: #1a1a1a;
}

.m-cta .m-btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

.m-cta-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    font-size: 14px;
    color: #1a1a1a;
}

.m-cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.m-cta-trust i {
    width: 16px;
    height: 16px;
    color: #1a1a1a;
}

/* ---- product-sections.css overrides ---- */
.section-faq {
    background: var(--gray-2);
}

.ps-section-header h2 {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 48px;
    font-weight: 500;
    color: #1a1a1a;
}

.ps-section-tag {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.faq-accordion details {
    background: #fff;
}

.section-integrations {
    background: var(--gray-2);
}

.section-related {
    background: var(--gray-2);
}

.related-card {
    background: #fff;
}

.related-card h3 {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
}

.related-card p {
    color: #6b6b6b;
}

.related-card-icon {
    background: rgba(241, 100, 63, 0.1) !important;
    color: #f1643f !important;
}

.section-rich-timeline {
    background: var(--gray-2);
}

/* ---- Monarch Responsive ---- */
@media (max-width: 1199px) {
    .m-h1 { font-size: 42px; }
    .m-h2 { font-size: 38px; }
    .m-h3 { font-size: 28px; }

    .m-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .m-hero-content {
        max-width: 100%;
    }

    .m-hero-visual {
        max-width: 460px;
    }

    .m-alt-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .m-alt-row.reverse .m-alt-content {
        order: 1;
    }

    .m-alt-row.reverse .m-alt-visual {
        order: 2;
    }

    .m-persona-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .m-metrics-grid {
        gap: 48px;
    }

    .m-ba-grid {
        grid-template-columns: 1fr;
    }

    .m-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 809px) {
    .m-hero { min-height: 60vh; }
    .m-h1 { font-size: 36px; }
    .m-h2 { font-size: 32px; }
    .m-h3 { font-size: 24px; }

    .floating-card {
        display: none;
    }

    .m-hero-visual .card-stack {
        max-width: 100%;
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }

    .m-hero-buttons,
    .m-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .m-metrics-grid {
        gap: 32px;
    }

    .m-metric-value {
        font-size: 28px;
    }

    .m-cta-content {
        padding: 60px 32px;
    }

    .m-cta-trust {
        flex-direction: column;
        gap: 12px;
    }

    .m-cta .m-h2 {
        font-size: 32px;
    }

    .m-hero .container {
        width: calc(100% - 40px);
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .m-hero { min-height: 60vh; }

    .m-hero .container {
        width: calc(100% - 32px);
        padding: 0 16px;
    }

    .m-h1 { font-size: 28px; line-height: 1.2; }
    .m-h2 { font-size: 24px; }
    .m-h3 { font-size: 20px; }
    .m-body { font-size: 15px; }

    .m-hero-visual .card-stack {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .m-hero-buttons .m-btn-primary,
    .m-hero-buttons .m-btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .m-cta-content { padding: 48px 20px; }
    .m-cta .m-h2 { font-size: 24px; }
    .m-metric-value { font-size: 24px; }
    .m-metrics-grid { gap: 24px; }
    .m-security-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ========================================
   Security / Feature Cards Section
   ======================================== */
.m-security {
    padding: 100px 0;
    background: #f9f8f6;
}

.m-security-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.m-security-header h2 {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0;
}

.m-security-header p {
    font-size: 17px;
    color: #6b6b6b;
}

.m-security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
}

.m-security-card {
    padding: 0;
}

.m-security-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.m-security-icon {
    color: #f97316;
    flex-shrink: 0;
}

.m-security-icon i {
    width: 20px;
    height: 20px;
}

.m-security-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.m-security-card p {
    font-size: 15px;
    color: #6b6b6b;
    line-height: 1.65;
    margin: 0;
}

/* ========================================
   Steps Section (numbered cards layout)
   ======================================== */
.m-steps-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.m-steps-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.m-steps-left {
    position: sticky;
    top: 120px;
}

.m-steps-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.m-step-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f5f0e8;
    border-radius: 16px;
    padding: 32px;
}

.m-step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Bricolage Grotesque', serif;
}

.m-step-content h3 {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.m-step-content p {
    font-size: 15px;
    color: #6b6b6b;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 809px) {
    .m-steps-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .m-steps-left {
        position: static;
    }
}

/* ========================================
   Hero Badge (shared across root pages)
   ======================================== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.hero-badge i, .hero-badge svg { width: 16px; height: 16px; }

/* ========================================
   Page Hero — Light/Monarch Theme Override
   ======================================== */
.page-hero.light {
    background: #fff;
    padding: 180px 0 80px;
}
.page-hero.light::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 40%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(255, 140, 80, 0.05) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}
.page-hero.light::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 35%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.04) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}
.page-hero.light h1 {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 48px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 16px;
}
.page-hero.light h1 span { color: var(--primary); }
.page-hero.light > .container > p,
.page-hero.light p {
    color: #6b6b6b;
    font-size: 18px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 809px) {
    .page-hero.light h1 { font-size: 32px; }
    .page-hero.light p { font-size: 16px; }
}
@media (max-width: 480px) {
    .page-hero.light h1 { font-size: 26px; }
    .page-hero.light p { font-size: 15px; }
}

/* ========================================
   Glossary Detail Pages
   ======================================== */
.glossary-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f1643f;
    text-decoration: none;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
    transition: opacity 0.2s;
}
.glossary-back:hover { opacity: 0.8; }
.glossary-back i, .glossary-back svg { width: 16px; height: 16px; }

.term-content {
    padding: 80px 0;
    background: var(--gray-2, #f9f8f6);
}
.term-content .container { max-width: 1100px; }

.term-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    align-items: start;
}

.term-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e8e4de;
}
.sidebar-card h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.sidebar-card p {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #6b6b6b;
    margin-bottom: 16px;
}
.sidebar-card .btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.sidebar-card .btn-primary {
    background: #f1643f;
    color: #fff;
}
.sidebar-card .btn-primary:hover { background: #d9502e; }
.sidebar-card .btn-outline {
    border: 1.5px solid #f1643f;
    color: #f1643f;
    background: transparent;
}
.sidebar-card .btn-outline:hover { background: rgba(241,100,63,0.06); }

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-links li { border-bottom: 1px solid #f0ece7; }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px;
    color: #6b6b6b;
    text-decoration: none;
    transition: color 0.2s;
}
.sidebar-links a:hover { color: #f1643f; }
.sidebar-links a i, .sidebar-links a svg { width: 14px; height: 14px; color: #d0cecb; }

.term-card {
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    border: 1px solid #e8e4de;
}
.term-card h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}
.term-card p {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #6b6b6b;
    margin-bottom: 16px;
}
.term-card p:last-child { margin-bottom: 0; }
.term-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.term-card ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 15px;
    color: #6b6b6b;
    line-height: 1.6;
}
.term-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: #f1643f;
    border-radius: 50%;
}

.related-terms {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e8e4de;
}
.related-terms h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.related-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.related-tags a {
    display: inline-block;
    padding: 6px 14px;
    background: #f0ece7;
    border-radius: 20px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #4a4a4a;
    text-decoration: none;
    transition: all 0.2s;
}
.related-tags a:hover { background: #f1643f; color: #fff; }

@media (max-width: 809px) {
    .term-card { padding: 28px 20px; }
    .term-content { padding: 48px 0; }
    .term-layout { grid-template-columns: 1fr; }
    .term-sidebar { position: static; }
}
@media (max-width: 480px) {
    .term-card { padding: 20px 16px; }
    .term-card h2 { font-size: 18px; }
    .term-card p { font-size: 15px; }
    .sidebar-card { padding: 20px; }
    .term-content { padding: 36px 0; }
}

/* ========================================
   Blog Post Pages
   ======================================== */
.blog-post-hero {
    background: #fff;
    padding: 180px 0 80px;
}
.blog-post-hero .container { max-width: 800px; }
.blog-post-hero .tag {
    display: inline-block;
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
    background: none;
}
.blog-post-hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}
.blog-post-hero .post-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    color: var(--gray-9);
    font-size: 14px;
    flex-wrap: wrap;
}
.blog-post-hero .author { display: flex; align-items: center; gap: 8px; }
.blog-post-hero .author-avatar {
    width: 36px;
    height: 36px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.blog-post-image { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.blog-post-image img {
    width: 100%;
    border-radius: 16px;
    margin-top: -30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.blog-post-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 20px 80px;
}
.blog-post-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 40px 0 16px;
}
.blog-post-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 32px 0 12px;
}
.blog-post-content p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}
.blog-post-content ul, .blog-post-content ol {
    margin: 16px 0 24px 24px;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.8;
}
.blog-post-content li { margin-bottom: 8px; }
.blog-post-content strong { color: var(--text-primary); }
.blog-post-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--gray-2);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-secondary);
}
.blog-post-content .info-box {
    background: var(--gray-1);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    border: 1px solid rgba(var(--primary-rgb), 0.15);
}
.blog-post-content .info-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.blog-post-content .info-box p { font-size: 15px; margin-bottom: 0; }

.blog-back {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px 60px;
}
.blog-back a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}
.blog-back a:hover { text-decoration: underline; }

/* Blog CTA Card */
.cta-section { padding: 80px 0; background: var(--bg-primary); }
.home-cta-card {
    background: #f1643f;
    background-image:
        radial-gradient(at 40% 20%, rgba(255,255,255,0.4) 0%, transparent 50%),
        radial-gradient(at 80% 0%, rgba(255,220,180,0.5) 0%, transparent 40%),
        radial-gradient(at 0% 80%, rgba(255,180,140,0.3) 0%, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255,140,100,0.4) 0%, transparent 50%);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.home-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.12;
    mix-blend-mode: overlay;
    pointer-events: none;
}
.home-cta-card h2 {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    position: relative;
}
.home-cta-card p {
    color: #1a1a1a;
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.home-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    position: relative;
}
.btn-cta-primary {
    background: #1a1a1a;
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-cta-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-cta-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid rgba(0,0,0,0.2);
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-cta-secondary:hover { border-color: rgba(0,0,0,0.4); }

@media (max-width: 1199px) {
    .blog-post-hero { padding-top: 140px; }
}
@media (max-width: 809px) {
    .blog-post-hero h1 { font-size: 28px; }
    .blog-post-hero { padding: 120px 0 40px; }
    .blog-post-content h2 { font-size: 24px; }
    .blog-post-content h3 { font-size: 19px; }
    .blog-post-content p, .blog-post-content ul, .blog-post-content ol { font-size: 16px; }
    .cta-section { padding: 60px 0; }
    .home-cta-card { padding: 48px 32px; }
    .home-cta-card h2 { font-size: 32px; }
    .home-cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
    .blog-post-hero { padding: 100px 0 32px; }
    .blog-post-hero h1 { font-size: 24px; }
    .blog-post-content h2 { font-size: 22px; }
    .blog-post-content { padding: 32px 16px 60px; }
    .home-cta-card { padding: 36px 24px; }
    .home-cta-card h2 { font-size: 26px; }
    .home-cta-card p { font-size: 16px; }
}


/* ==============================================
   EXTRACTED INLINE STYLES (Auto-migrated)
   ============================================== */

/* ========================================
   Extracted from: about.html
   ======================================== */
/* About Page — Monarch Design System */

        /* Hero */
        .page-hero {
            background: #fff;
            position: relative;
            overflow: hidden;
            padding: 180px 0 80px;
            text-align: center;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -5%;
            width: 40%;
            height: 70%;
            background: radial-gradient(ellipse at center, rgba(255, 140, 80, 0.05) 0%, transparent 70%);
            filter: blur(50px);
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            right: -5%;
            width: 35%;
            height: 60%;
            background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.04) 0%, transparent 70%);
            filter: blur(50px);
            pointer-events: none;
        }
        .page-hero h1 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 48px;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 16px;
        }
        .page-hero h1 span { color: var(--primary); }
        .page-hero > .container > p {
            color: #6b6b6b;
            font-size: 18px;
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }
        .hero-badge i, .hero-badge svg { width: 16px; height: 16px; }

        /* Story Section */
        .story-section { padding: 100px 0; background: #fff; }
        .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .story-content h2 { font-family: 'Bricolage Grotesque', serif; font-size: 36px; font-weight: 500; margin-bottom: 24px; color: #1a1a1a; }
        .story-content p { color: #6b6b6b; margin-bottom: 16px; font-size: 17px; line-height: 1.7; }
        .story-highlight { background: rgba(var(--primary-rgb), 0.05); border-left: 3px solid var(--primary); padding: 24px; border-radius: 0 14px 14px 0; margin: 24px 0; }
        .story-highlight p { color: #4a4a4a; font-weight: 500; font-style: italic; margin: 0; font-size: 15px; line-height: 1.6; }
        .story-image {
            background: #E8E4DE;
            border-radius: 24px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .story-image-inner {
            background: #fff;
            border-radius: 14px;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Bricolage Grotesque', serif;
            font-size: 20px;
            font-weight: 500;
            color: #999;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }

        /* Mission Section */
        .mission-section { padding: 100px 0; background: var(--gray-2); }
        .mission-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
        .mission-card { background: #fff; padding: 40px; border-radius: 20px; box-shadow: 0 2px 20px rgba(0,0,0,0.04); transition: all 0.3s ease; }
        .mission-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
        .mission-card h3 { font-family: 'Bricolage Grotesque', serif; font-size: 22px; font-weight: 600; margin-bottom: 16px; color: var(--primary); }
        .mission-card p { color: #6b6b6b; font-size: 16px; line-height: 1.7; }

        /* Values Section */
        .values-section { padding: 100px 0; background: #fff; }
        .values-section .section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
        .values-section .section-header h2 { font-family: 'Bricolage Grotesque', serif; font-size: 48px; font-weight: 500; color: #1a1a1a; }
        .values-section .section-header p { color: #6b6b6b; font-size: 17px; margin-top: 12px; }
        .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
        .value-card { text-align: center; padding: 32px 24px; background: var(--gray-2); border-radius: 20px; transition: all 0.3s ease; }
        .value-card:hover { background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,0.06); transform: translateY(-2px); }
        .value-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: all 0.3s ease; }
        .value-card:nth-child(4n+1) .value-icon { background: rgba(var(--primary-rgb), 0.1); color: var(--primary); }
        .value-card:nth-child(4n+2) .value-icon { background: rgba(0, 184, 148, 0.1); color: #00B894; }
        .value-card:nth-child(4n+3) .value-icon { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
        .value-card:nth-child(4n+4) .value-icon { background: rgba(99, 102, 241, 0.1); color: #6366F1; }
        .value-card:hover .value-icon { transform: rotate(-5deg) scale(1.08); }
        .value-icon i, .value-icon svg { width: 28px; height: 28px; }
        .value-card h3 { font-family: 'Bricolage Grotesque', serif; font-size: 18px; font-weight: 600; margin-bottom: 10px; color: #1a1a1a; }
        .value-card p { color: #6b6b6b; font-size: 14px; line-height: 1.6; }

        /* Team Section */
        .team-section { padding: 100px 0; background: var(--gray-2); }
        .team-section .section-header h2 { font-family: 'Bricolage Grotesque', serif; font-size: 48px; font-weight: 500; color: #1a1a1a; }
        .team-section .section-header p { color: #6b6b6b; }
        .team-grid { display: flex; justify-content: center; gap: 32px; }
        .team-card { background: #fff; border-radius: 20px; overflow: hidden; text-align: center; box-shadow: 0 2px 20px rgba(0,0,0,0.04); transition: all 0.3s ease; max-width: 300px; width: 100%; }
        .team-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
        .team-photo { height: 200px; background: rgba(var(--primary-rgb), 0.08); display: flex; align-items: center; justify-content: center; font-size: 64px; font-weight: 700; color: var(--primary); }
        .team-info { padding: 24px; }
        .team-info h4 { font-size: 18px; font-weight: 600; margin-bottom: 4px; color: #1a1a1a; }
        .team-info p { color: #999; font-size: 14px; margin-bottom: 12px; }
        .team-social { display: flex; justify-content: center; gap: 12px; }
        .team-social a { width: 32px; height: 32px; background: var(--gray-2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #999; text-decoration: none; transition: all 0.2s; }
        .team-social a:hover { background: rgba(var(--primary-rgb), 0.1); color: var(--primary); }

        /* Metrics Ribbon — matches homepage .m-metrics */
        .social-proof-bar { background: var(--primary); padding: 20px 0; }
        .social-proof-bar .container { display: flex; justify-content: center; align-items: center; gap: 80px; flex-wrap: wrap; }
        .proof-item { text-align: center; }
        .proof-item .number { font-family: 'Bricolage Grotesque', serif; font-size: 32px; font-weight: 600; color: #fff; line-height: 1; margin-bottom: 4px; }
        .proof-item .label { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 500; line-height: 1.4; }

        /* ===== Journey Section — Monarch Light Theme ===== */
        .timeline-section {
            padding: 100px 0;
            background: var(--gray-2);
            position: relative;
            overflow: hidden;
        }
        .timeline-section::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -5%;
            width: 40%;
            height: 70%;
            background: radial-gradient(ellipse at center, rgba(255, 140, 80, 0.04) 0%, transparent 70%);
            filter: blur(50px);
            pointer-events: none;
        }

        .timeline-section > .container {
            text-align: center;
        }
        .timeline-section .section-header {
            max-width: 600px;
            margin: 0 auto 20px;
        }
        .timeline-section .section-header h2 {
            font-family: 'Bricolage Grotesque', serif;
            color: #1a1a1a;
            font-size: 48px;
            font-weight: 500;
        }
        .timeline-section .section-header p {
            color: #6b6b6b;
            font-size: 17px;
            margin-top: 12px;
        }

        /* Age badge */
        .journey-age {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(var(--primary-rgb), 0.08);
            border-radius: 100px;
            padding: 8px 20px;
            margin-bottom: 48px;
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .journey-age svg, .journey-age i { width: 16px; height: 16px; }
        .journey-age-pulse {
            width: 8px; height: 8px;
            background: var(--primary);
            border-radius: 50%;
            animation: age-blink 1.5s ease-in-out infinite;
        }
        @keyframes age-blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        /* Card grid */
        .timeline {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            text-align: left;
        }

        .timeline-item:last-child {
            grid-column: 1 / -1;
            max-width: 490px;
            margin: 0 auto;
        }

        /* Card wrapper — beige card-stack like homepage */
        .timeline-item {
            background: #E8E4DE;
            border-radius: 24px;
            padding: 6px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .timeline-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
        }

        .tl-card-inner {
            background: #fff;
            border-radius: 18px;
            padding: 32px 28px;
        }

        /* "Next" cards — dashed outer border instead of solid beige */
        .timeline-item.tl-next {
            background: transparent;
            border: 2px dashed #E8E4DE;
        }

        /* Top row: status chip + month label */
        .tl-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        .tl-status {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            padding: 4px 12px;
            border-radius: 6px;
        }
        .tl-done .tl-status {
            background: rgba(0, 184, 148, 0.1);
            color: #00B894;
        }
        .tl-now .tl-status {
            background: rgba(var(--primary-rgb), 0.1);
            color: var(--primary);
        }
        .tl-next .tl-status {
            background: rgba(99, 102, 241, 0.08);
            color: #6366F1;
        }

        .tl-month {
            font-size: 12px;
            color: #999;
            font-weight: 500;
            font-family: 'Bricolage Grotesque', serif;
        }

        /* Icon */
        .timeline-icon {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            transition: transform 0.3s ease;
        }
        .timeline-icon svg, .timeline-icon i { width: 22px; height: 22px; }
        .timeline-item:hover .timeline-icon { transform: rotate(-5deg) scale(1.1); }

        .timeline-item:nth-child(1) .timeline-icon { background: rgba(var(--primary-rgb), 0.1); color: var(--primary); }
        .timeline-item:nth-child(2) .timeline-icon { background: rgba(0, 184, 148, 0.1); color: #00B894; }
        .timeline-item:nth-child(3) .timeline-icon { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
        .timeline-item:nth-child(4) .timeline-icon { background: rgba(99, 102, 241, 0.1); color: #6366F1; }

        /* Content */
        .timeline-content h4 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 20px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
            line-height: 1.25;
        }
        .timeline-content p {
            color: #6b6b6b;
            font-size: 14px;
            line-height: 1.7;
        }

        /* Bottom metric row */
        .tl-metric {
            margin-top: 20px;
            padding-top: 16px;
            border-top: 1px solid var(--gray-4);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .tl-metric-value {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1;
        }
        .tl-metric-label {
            font-size: 12px;
            color: #999;
            line-height: 1.3;
        }

        @media (max-width: 1199px) {
            .values-grid { grid-template-columns: repeat(2, 1fr); }
            .team-grid { grid-template-columns: repeat(2, 1fr); }
            .story-grid { gap: 40px; }
            .social-proof-bar .container { gap: 40px; }
            .timeline-section { padding: 80px 0; }
            .timeline-section .section-header h2 { font-size: 36px; }
            .tl-card-inner { padding: 28px 24px; }
        }

        @media (max-width: 809px) {
            .page-hero h1 { font-size: 32px; }
            .page-hero p { font-size: 16px; }
            .story-section, .mission-section, .values-section, .team-section,
            .timeline-section { padding: 60px 0 70px; }
            .story-grid, .mission-grid { grid-template-columns: 1fr; }
            .story-grid { gap: 32px; }
            .story-content h2 { font-size: 28px; }
            .story-content p { font-size: 16px; line-height: 1.7; }
            .story-highlight { padding: 20px; }
            .story-image { height: 280px; }
            .mission-card { padding: 28px; }
            .mission-card h3 { font-size: 22px; }
            .mission-card p { font-size: 15px; }
            .values-section .section-header h2, .team-section .section-header h2 { font-size: 28px; }
            .timeline-section .section-header h2 { font-size: 30px; }
            .timeline-section .section-header { margin-bottom: 16px; }
            .value-card h3 { font-size: 18px; }
            .value-icon { width: 64px; height: 64px; }
            .value-icon i, .value-icon svg { width: 28px; height: 28px; }
            .social-proof-bar { padding: 24px 0; }
            .social-proof-bar .container { flex-wrap: wrap; gap: 20px 32px; justify-content: center; }
            .proof-item .number { font-size: 36px; }
            .proof-item .label { font-size: 14px; }
            .timeline { grid-template-columns: 1fr; gap: 16px; }
            .tl-card-inner { padding: 24px 22px; }
            .timeline-content h4 { font-size: 18px; }
            .timeline-content p { font-size: 13px; }
            .tl-metric-value { font-size: 20px; }
            .journey-age { font-size: 13px; padding: 6px 16px; margin-bottom: 36px; }
        }

        @media (max-width: 480px) {
            .page-hero h1 { font-size: 26px; }
            .page-hero p { font-size: 15px; }
            .story-section, .mission-section, .values-section, .team-section { padding: 48px 0; }
            .timeline-section { padding: 48px 0; }
            .values-grid, .team-grid { grid-template-columns: 1fr; }
            .story-content h2 { font-size: 22px; }
            .story-content p { font-size: 15px; }
            .story-highlight { padding: 16px; margin: 16px 0; }
            .story-highlight p { font-size: 14px; }
            .story-image { height: 200px; font-size: 32px; }
            .mission-card { padding: 20px; }
            .mission-card h3 { font-size: 20px; }
            .mission-card p { font-size: 14px; line-height: 1.7; }
            .values-section .section-header h2, .team-section .section-header h2 { font-size: 24px; }
            .timeline-section .section-header h2 { font-size: 26px; }
            .values-section .section-header p, .team-section .section-header p, .timeline-section .section-header p { font-size: 14px; }
            .value-card { padding: 20px; }
            .value-card h3 { font-size: 17px; }
            .value-card p { font-size: 13px; }
            .value-icon { width: 56px; height: 56px; }
            .value-icon i, .value-icon svg { width: 24px; height: 24px; }
            .team-info { padding: 16px; }
            .team-info h4 { font-size: 16px; }
            .team-info p { font-size: 13px; }
            .team-photo { height: 160px; font-size: 48px; }
            .social-proof-bar { padding: 20px 0; }
            .social-proof-bar .container { gap: 16px 24px; }
            .proof-item .number { font-size: 28px; }
            .proof-item .label { font-size: 13px; }
            .timeline { gap: 14px; }
            .tl-card-inner { padding: 20px 18px; }
            .timeline-content h4 { font-size: 16px; }
            .timeline-content p { font-size: 13px; }
            .timeline-icon { width: 38px; height: 38px; margin-bottom: 14px; }
            .timeline-icon svg, .timeline-icon i { width: 18px; height: 18px; }
            .tl-metric { margin-top: 16px; padding-top: 12px; }
            .tl-metric-value { font-size: 18px; }
            .tl-metric-label { font-size: 11px; }
            .journey-age { font-size: 12px; padding: 5px 14px; margin-bottom: 28px; }
        }

/* ========================================
   Extracted from: accounts-payable-dashboard.html
   ======================================== */
/* Light Mode Base */
        .feature-hero { padding: 160px 0 80px; background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%); position: relative; overflow: hidden; }
        .feature-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 60%); pointer-events: none; }
        .feature-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .feature-tag { display: inline-block; background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .feature-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; color: var(--text-primary); }
        .feature-hero p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }

        /* Feature visual - Light Mode */
        .feature-visual { background: var(--bg-primary); border-radius: 20px; box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.12), 0 0 0 1px rgba(var(--primary-rgb), 0.08); overflow: hidden; border: 1px solid var(--gray-4); max-width: 440px; margin: 0 auto; }
        .demo-header { background: var(--gray-2); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(var(--primary-rgb), 0.08); }
        .dashboard-dots { display: flex; gap: 6px; }
        .dashboard-dots span { width: 10px; height: 10px; border-radius: 50%; }
        .dashboard-dots span:nth-child(1) { background: #EF4444; }
        .dashboard-dots span:nth-child(2) { background: #F59E0B; }
        .dashboard-dots span:nth-child(3) { background: #10B981; }
        .demo-title { font-size: 13px; font-weight: 600; color: #6B6580; }
        .demo-body { padding: 16px; background: var(--bg-primary); }
        .dashboard-demo { background: none; border-radius: 12px; padding: 0; }
        .dashboard-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px; }
        .stat-card { background: var(--gray-2); border-radius: 12px; padding: 12px; text-align: center; border: 1px solid var(--gray-4); transition: all 0.2s; }
        .stat-card:hover { border-color: rgba(var(--primary-rgb), 0.25); box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.1); }
        .stat-card .value { font-size: 24px; font-weight: 800; color: var(--mid-accent); }
        .stat-card .label { font-size: 11px; color: var(--gray-9); }
        .stat-card.warning .value { color: #F59E0B; }
        .stat-card.danger .value { color: #EF4444; }

        /* Aging buckets */
        .aging-buckets { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
        .aging-bucket { background: var(--gray-2); border-radius: 8px; padding: 10px 8px; text-align: center; border: 1px solid var(--gray-4); }
        .aging-bucket .bucket-label { font-size: 10px; color: var(--gray-9); margin-bottom: 4px; }
        .aging-bucket .bucket-value { font-size: 14px; font-weight: 700; color: var(--text-primary); }
        .aging-bucket.current .bucket-value { color: #10B981; }
        .aging-bucket.due-soon .bucket-value { color: #F59E0B; }
        .aging-bucket.overdue .bucket-value { color: #EF4444; }

        /* Payment calendar */
        .payment-calendar { background: var(--gray-2); border-radius: 12px; padding: 12px; border: 1px solid var(--gray-4); }
        .payment-calendar h5 { font-size: 13px; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
        .calendar-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--gray-4); }
        .calendar-item:last-child { border-bottom: none; }
        .calendar-item .vendor { font-size: 13px; font-weight: 500; color: var(--text-primary); }
        .calendar-item .amount { font-size: 12px; font-weight: 600; color: var(--mid-accent); }

        /* Widgets Section - Light Mode */
        .widgets-section { padding: 80px 0; background: var(--gray-2); position: relative; }
        .widgets-section::before { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%); pointer-events: none; }
        .widgets-section .section-tag { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .widgets-section .section-header h2 { color: var(--text-primary); }
        .widgets-section .section-header p { color: var(--text-secondary); }
        .widgets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
        .widget-card { padding: 32px; background: var(--bg-primary); border-radius: 12px; border: 1px solid var(--gray-4); transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .widget-card:hover { background: var(--gray-2); border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); }
        .widget-icon { width: 56px; height: 56px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; transition: all 0.3s ease; }
        .widget-card:nth-child(6n+1) .widget-icon { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); }
        .widget-card:nth-child(6n+2) .widget-icon { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .widget-card:nth-child(6n+3) .widget-icon { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
        .widget-card:nth-child(6n+4) .widget-icon { background: rgba(241, 100, 63, 0.08); color: var(--primary); }
        .widget-card:nth-child(6n+5) .widget-icon { background: rgba(236, 72, 153, 0.08); color: #EC4899; }
        .widget-card:nth-child(6n+6) .widget-icon { background: rgba(20, 184, 166, 0.08); color: #14B8A6; }
        .widget-card:hover .widget-icon { transform: rotate(-8deg) scale(1.05); }
        .widget-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
        .widget-card p { color: var(--text-secondary); line-height: 1.6; }

        /* Views Section - Light Mode */
        .views-section { padding: 100px 0; background: var(--gray-1); position: relative; overflow: hidden; }
        .views-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%); pointer-events: none; }
        .views-section .section-header { text-align: center; max-width: 650px; margin: 0 auto 70px; position: relative; z-index: 1; }
        .views-section .section-tag { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .views-section .section-header h2 { font-size: 44px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
        .views-section .section-header p { color: var(--text-secondary); font-size: 18px; line-height: 1.7; }
        .views-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
        .view-card { background: var(--bg-primary); border-radius: 16px; padding: 28px; text-align: center; border: 1px solid var(--gray-4); transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .view-card:hover { border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); transform: translateY(-4px); }
        .view-icon { width: 64px; height: 64px; background: rgba(var(--primary-rgb), 0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--mid-accent); }
        .view-card h4 { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
        .view-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

        /* Section header overrides for light mode */
        .section-header h2 { color: var(--text-primary); }
        .section-header p { color: var(--text-secondary); }
        .section-tag { background: rgba(var(--primary-rgb), 0.08); border-color: rgba(var(--primary-rgb), 0.15); }

        @media (max-width: 1199px) {
            .views-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 809px) {
            .feature-hero .container { grid-template-columns: 1fr; }
            .feature-hero h1 { font-size: 32px; }
            .widgets-grid { grid-template-columns: 1fr; }
            .dashboard-stats { grid-template-columns: 1fr; }
            .aging-buckets { grid-template-columns: repeat(2, 1fr); }
            .views-grid { grid-template-columns: 1fr; }
        }

/* ========================================
   Extracted from: add-ons/index.html
   ======================================== */
/* Add-ons Page — Monarch Design System */

        /* Hero */
        .page-hero {
            background: #fff;
            position: relative;
            overflow: hidden;
            padding: 180px 0 80px;
            text-align: center;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -5%;
            width: 40%;
            height: 70%;
            background: radial-gradient(ellipse at center, rgba(255, 140, 80, 0.05) 0%, transparent 70%);
            filter: blur(50px);
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            right: -5%;
            width: 35%;
            height: 60%;
            background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.04) 0%, transparent 70%);
            filter: blur(50px);
            pointer-events: none;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }
        .hero-badge i { width: 16px; height: 16px; }
        .page-hero h1 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 48px;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 16px;
        }
        .page-hero h1 span { color: var(--primary); }
        .page-hero > .container > p {
            color: #6b6b6b;
            font-size: 18px;
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Add-ons Section */
        .addons-section {
            padding: 100px 0;
            background: var(--gray-2);
        }
        .addons-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            max-width: 900px;
            margin: 0 auto;
        }
        .addon-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.04);
            transition: all 0.3s ease;
        }
        .addon-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
        }
        .addon-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: all 0.3s ease;
        }
        .addon-card:hover .addon-icon {
            transform: rotate(-5deg) scale(1.08);
        }
        .addon-card:nth-child(2n+1) .addon-icon { background: rgba(var(--primary-rgb), 0.1); color: var(--primary); }
        .addon-card:nth-child(2n+2) .addon-icon { background: rgba(99, 102, 241, 0.1); color: #6366F1; }
        .addon-icon i {
            width: 28px;
            height: 28px;
        }
        .addon-card h2 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 22px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 12px;
        }
        .addon-card > p {
            color: #6b6b6b;
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 24px;
        }
        .addon-features {
            list-style: none;
            margin-bottom: 24px;
        }
        .addon-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 6px 0;
            color: #4a4a4a;
            font-size: 14px;
            line-height: 1.5;
        }
        .addon-features li i {
            width: 18px;
            height: 18px;
            color: #10B981;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .addon-pricing {
            background: var(--gray-2);
            border-radius: 14px;
            padding: 16px 20px;
            margin-bottom: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .addon-pricing .price {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
        }
        .addon-pricing .price span {
            font-size: 14px;
            font-weight: 500;
            color: #6b6b6b;
        }

        /* API Section */
        .api-section {
            padding: 100px 0;
            background: #fff;
            position: relative;
            overflow: hidden;
        }
        .api-section::before {
            content: '';
            position: absolute;
            bottom: -10%;
            left: -5%;
            width: 35%;
            height: 60%;
            background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.04) 0%, transparent 70%);
            filter: blur(50px);
            pointer-events: none;
        }
        .api-card {
            background: var(--gray-2);
            border-radius: 24px;
            padding: 48px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            max-width: 1000px;
            margin: 0 auto;
        }
        .api-content h2 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 32px;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 16px;
        }
        .api-content > p {
            color: #6b6b6b;
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 24px;
        }
        .api-features {
            list-style: none;
            margin-bottom: 24px;
        }
        .api-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 6px 0;
            color: #4a4a4a;
            font-size: 14px;
            line-height: 1.5;
        }
        .api-features li i {
            width: 18px;
            height: 18px;
            color: #10B981;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .api-pricing {
            display: flex;
            align-items: center;
            gap: 24px;
            margin-bottom: 24px;
        }
        .api-pricing .price {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 28px;
            font-weight: 700;
            color: #1a1a1a;
        }
        .api-pricing .price span {
            font-size: 14px;
            font-weight: 500;
            color: #6b6b6b;
        }
        .api-visual {
            background: #22201d;
            border-radius: 20px;
            padding: 28px;
            font-family: 'SF Mono', Monaco, Consolas, monospace;
            font-size: 13px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            overflow-x: auto;
        }
        .api-visual .comment { color: rgba(255, 255, 255, 0.35); }
        .api-visual .keyword { color: var(--primary); }
        .api-visual .string { color: #10B981; }
        .api-visual .property { color: #ff9c82; }

        @media (max-width: 1199px) {
            .addons-grid { grid-template-columns: 1fr; }
            .api-card { grid-template-columns: 1fr; }
        }

        @media (max-width: 809px) {
            .page-hero { padding: 100px 0 60px; }
            .page-hero h1 { font-size: 32px; }
            .page-hero > .container > p { font-size: 16px; }
            .addons-section, .api-section { padding: 60px 0 70px; }
            .api-card { padding: 32px; }
        }

        @media (max-width: 480px) {
            .page-hero { padding: 90px 0 40px; }
            .page-hero h1 { font-size: 26px; }
            .page-hero > .container > p { font-size: 15px; }
            .addon-card { padding: 28px; }
            .api-card { padding: 24px; }
            .api-visual { padding: 16px; font-size: 11px; }
        }

/* ========================================
   Extracted from: add-ons/mobile-apps/index.html
   ======================================== */
/* Mobile Apps — Monarch Design System */

        /* Hero */
        .page-hero {
            background: #fff;
            position: relative;
            overflow: hidden;
            padding: 0 0 80px;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -5%;
            width: 40%;
            height: 70%;
            background: radial-gradient(ellipse at center, rgba(255, 140, 80, 0.05) 0%, transparent 70%);
            filter: blur(50px);
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            right: -5%;
            width: 35%;
            height: 60%;
            background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.04) 0%, transparent 70%);
            filter: blur(50px);
            pointer-events: none;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }
        .hero-badge i { width: 16px; height: 16px; }
        .page-hero .container:has(.hero-text) {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .page-hero h1 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 48px;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 16px;
            line-height: 1.15;
        }
        .page-hero h1 span { color: var(--primary); }
        .hero-text p {
            color: #6b6b6b;
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 32px;
        }

        /* App store buttons */
        .app-buttons { display: flex; gap: 16px; }
        .app-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 24px;
            background: #1a1a1a;
            color: white;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .app-btn:hover { background: #333; }
        .app-btn .icon i { width: 24px; height: 24px; }
        .app-btn .text { text-align: left; }
        .app-btn .text span { display: block; font-size: 11px; opacity: 0.7; }
        .app-btn .text strong { font-size: 16px; color: #ffffff; }

        /* Phone Demo */
        .feature-visual {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.04);
            overflow: hidden;
        }
        .demo-header {
            background: var(--gray-2);
            padding: 16px 24px;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid var(--gray-4);
        }
        .demo-dot { width: 12px; height: 12px; border-radius: 50%; }
        .demo-dot.red { background: #EF4444; }
        .demo-dot.yellow { background: #F59E0B; }
        .demo-dot.green { background: #10B981; }
        .demo-title { flex: 1; text-align: center; color: #6b6b6b; font-size: 13px; font-weight: 600; }
        .demo-body { padding: 24px; }
        .phone-demo { display: flex; justify-content: center; gap: 24px; }
        .phone-frame { background: #1a1a1a; border-radius: 24px; padding: 8px; width: 160px; }
        .phone-screen { background: var(--gray-2); border-radius: 18px; padding: 16px; min-height: 280px; }
        .phone-notch { width: 60px; height: 6px; background: var(--gray-4); border-radius: 3px; margin: 0 auto 16px; }
        .phone-app-header { font-size: 12px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; }
        .mini-stat { background: #fff; border-radius: 8px; padding: 10px; margin-bottom: 8px; text-align: center; }
        .mini-stat .value { font-size: 18px; font-weight: 700; color: var(--primary); font-family: 'Bricolage Grotesque', serif; }
        .mini-stat .label { font-size: 9px; color: #6b6b6b; }
        .mini-deadline { background: #fff; border-radius: 6px; padding: 8px; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
        .mini-deadline .dot { width: 6px; height: 6px; border-radius: 50%; background: #00B894; flex-shrink: 0; }
        .mini-deadline .dot.warning { background: #F59E0B; }
        .mini-deadline .text { font-size: 10px; color: #1a1a1a; flex: 1; }
        .mini-deadline .days { font-size: 9px; color: #6b6b6b; }

        /* Features Section */
        .features-section { padding: 100px 0; background: var(--gray-2); }
        .features-section .m-section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
        .feature-card {
            padding: 40px;
            background: #fff;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 2px 20px rgba(0,0,0,0.04);
            transition: all 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
        }
        .feature-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }
        .feature-card:hover .feature-icon { transform: rotate(-5deg) scale(1.08); }
        .feature-card:nth-child(3n+1) .feature-icon { background: rgba(var(--primary-rgb), 0.1); color: var(--primary); }
        .feature-card:nth-child(3n+2) .feature-icon { background: rgba(0, 184, 148, 0.1); color: #00B894; }
        .feature-card:nth-child(3n+3) .feature-icon { background: rgba(99, 102, 241, 0.1); color: #6366F1; }
        .feature-icon i { width: 28px; height: 28px; }
        .feature-card h3 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #1a1a1a;
        }
        .feature-card p { color: #6b6b6b; line-height: 1.7; font-size: 15px; }

        /* Screenshots Section */
        .screenshots-section { padding: 100px 0; background: #fff; }
        .screenshots-section .m-section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
        .screenshots-grid { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
        .screenshot {
            width: 220px;
            height: 440px;
            background: var(--gray-2);
            border-radius: 24px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #6b6b6b;
            text-align: center;
            padding: 20px;
        }

        /* Platforms Section */
        .platforms-section { padding: 100px 0; background: var(--gray-2); }
        .platforms-section .m-section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
        .platforms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 800px; margin: 0 auto; }
        .platform-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 2px 20px rgba(0,0,0,0.04);
            transition: all 0.3s ease;
        }
        .platform-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
        }
        .platform-card .icon { margin-bottom: 20px; color: #1a1a1a; }
        .platform-card h3 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #1a1a1a;
        }
        .platform-card p { color: #6b6b6b; margin-bottom: 20px; line-height: 1.7; }
        .platform-card .badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(var(--primary-rgb), 0.08);
            color: var(--primary);
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        @media (max-width: 809px) {
            .page-hero .container:has(.hero-text) { grid-template-columns: 1fr; }
            .page-hero h1 { font-size: 32px; }
            .page-hero { padding: 100px 0 60px; }
            .features-grid, .platforms-grid { grid-template-columns: 1fr; }
            .app-buttons { flex-direction: column; }
            .features-section, .screenshots-section, .platforms-section { padding: 60px 0 70px; }
        }
        @media (max-width: 480px) {
            .page-hero h1 { font-size: 26px; }
            .hero-text p { font-size: 16px; }
            .page-hero { padding: 90px 0 40px; }
            .phone-demo { flex-direction: column; align-items: center; }
            .phone-frame { width: 140px; }
            .phone-screen { min-height: 240px; padding: 12px; }
            .platform-card { padding: 28px; }
            .platform-card h3 { font-size: 20px; }
            .feature-card { padding: 28px; }
        }

/* ========================================
   Extracted from: add-ons/virtual-cards/index.html
   ======================================== */
/* Virtual Cards — Monarch Design System */

        /* Hero */
        .page-hero {
            background: #fff;
            position: relative;
            overflow: hidden;
            padding: 0 0 80px;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -5%;
            width: 40%;
            height: 70%;
            background: radial-gradient(ellipse at center, rgba(255, 140, 80, 0.05) 0%, transparent 70%);
            filter: blur(50px);
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            right: -5%;
            width: 35%;
            height: 60%;
            background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.04) 0%, transparent 70%);
            filter: blur(50px);
            pointer-events: none;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }
        .hero-badge i { width: 16px; height: 16px; }
        .page-hero .container:has(.hero-text) {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .page-hero h1 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 48px;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 16px;
            line-height: 1.15;
        }
        .page-hero h1 span { color: var(--primary); }
        .hero-text p {
            color: #6b6b6b;
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 32px;
        }

        /* Card Demo */
        .feature-visual {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.04);
            overflow: hidden;
            max-width: 440px;
            margin: 0 auto;
        }
        .demo-header {
            background: var(--gray-2);
            padding: 12px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--gray-4);
        }
        .dashboard-dots { display: flex; gap: 6px; }
        .dashboard-dots span { width: 10px; height: 10px; border-radius: 50%; }
        .dashboard-dots span:nth-child(1) { background: #EF4444; }
        .dashboard-dots span:nth-child(2) { background: #F59E0B; }
        .dashboard-dots span:nth-child(3) { background: #10B981; }
        .demo-title { font-size: 13px; font-weight: 600; color: #6b6b6b; }
        .demo-body { padding: 16px; }

        /* Virtual card */
        .virtual-card { background: linear-gradient(135deg, var(--primary) 0%, #c53410 50%, var(--primary) 100%); border-radius: 16px; padding: 20px; color: #FFFFFF; margin-bottom: 12px; position: relative; overflow: hidden; }
        .virtual-card::before { content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%); pointer-events: none; }
        .card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
        .card-logo { font-size: 18px; font-weight: 700; letter-spacing: 1px; font-family: 'Bricolage Grotesque', serif; }
        .card-type { font-size: 11px; opacity: 0.8; }
        .card-number { font-size: 18px; font-weight: 600; letter-spacing: 3px; margin-bottom: 16px; font-family: 'SF Mono', Monaco, monospace; }
        .card-footer { display: flex; justify-content: space-between; align-items: flex-end; }
        .card-holder .label { font-size: 10px; opacity: 0.7; margin-bottom: 2px; }
        .card-holder .name { font-size: 13px; font-weight: 600; }
        .card-balance .label { font-size: 10px; opacity: 0.7; margin-bottom: 2px; text-align: right; }
        .card-balance .amount { font-size: 18px; font-weight: 700; font-family: 'Bricolage Grotesque', serif; }

        /* Card limit bar */
        .limit-bar { background: var(--gray-2); border-radius: 12px; padding: 14px; margin-bottom: 12px; }
        .limit-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
        .limit-title { font-size: 12px; font-weight: 600; color: #1a1a1a; }
        .limit-amount { font-size: 12px; color: #6b6b6b; }
        .limit-track { height: 8px; background: var(--gray-4); border-radius: 4px; overflow: hidden; }
        .limit-fill { height: 100%; background: linear-gradient(90deg, var(--primary), #c53410); border-radius: 4px; width: 35%; }

        /* Recent transactions */
        .recent-expenses { background: var(--gray-2); border-radius: 12px; padding: 14px; }
        .expenses-header { font-family: 'Bricolage Grotesque', serif; font-size: 13px; font-weight: 600; color: #1a1a1a; margin-bottom: 10px; }
        .expense-list { display: flex; flex-direction: column; gap: 8px; }
        .expense-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: #fff; border-radius: 8px; }
        .expense-icon { width: 32px; height: 32px; background: rgba(var(--primary-rgb), 0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); }
        .expense-details { flex: 1; }
        .expense-merchant { font-size: 13px; font-weight: 600; color: #1a1a1a; }
        .expense-category { font-size: 11px; color: #6b6b6b; }
        .expense-amount { font-size: 13px; font-weight: 700; color: #1a1a1a; }

        /* Widgets Section */
        .widgets-section { padding: 100px 0; background: var(--gray-2); }
        .widgets-section .m-section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
        .widgets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
        .widget-card {
            padding: 40px;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.04);
            transition: all 0.3s ease;
        }
        .widget-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
        }
        .widget-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        .widget-card:hover .widget-icon { transform: rotate(-5deg) scale(1.08); }
        .widget-card:nth-child(3n+1) .widget-icon { background: rgba(var(--primary-rgb), 0.1); color: var(--primary); }
        .widget-card:nth-child(3n+2) .widget-icon { background: rgba(0, 184, 148, 0.1); color: #00B894; }
        .widget-card:nth-child(3n+3) .widget-icon { background: rgba(99, 102, 241, 0.1); color: #6366F1; }
        .widget-icon i { width: 24px; height: 24px; }
        .widget-card h3 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #1a1a1a;
        }
        .widget-card p { color: #6b6b6b; line-height: 1.7; font-size: 15px; }

        /* Controls Section */
        .controls-section { padding: 100px 0; background: #fff; }
        .controls-section .m-section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
        .controls-visual { max-width: 600px; margin: 0 auto; }
        .control-card {
            background: var(--gray-2);
            border-radius: 20px;
            padding: 24px;
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }
        .control-card:hover {
            background: #fff;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
        }
        .control-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
        .control-title {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
        }
        .control-toggle { width: 48px; height: 26px; background: var(--primary); border-radius: 13px; position: relative; cursor: pointer; }
        .control-toggle::after { content: ''; position: absolute; width: 22px; height: 22px; background: #fff; border-radius: 50%; top: 2px; right: 2px; transition: all 0.2s; }
        .control-toggle.off { background: var(--gray-4); }
        .control-toggle.off::after { right: auto; left: 2px; }
        .control-items { display: flex; flex-wrap: wrap; gap: 8px; }
        .control-item { padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 500; background: rgba(var(--primary-rgb), 0.08); color: var(--primary); display: flex; align-items: center; gap: 6px; }
        .control-item.blocked { background: rgba(239, 68, 68, 0.08); color: #EF4444; text-decoration: line-through; }

        @media (max-width: 809px) {
            .page-hero .container:has(.hero-text) { grid-template-columns: 1fr; }
            .page-hero h1 { font-size: 32px; }
            .page-hero { padding: 100px 0 60px; }
            .widgets-grid { grid-template-columns: 1fr; }
            .widgets-section, .controls-section { padding: 60px 0 70px; }
        }
        @media (max-width: 480px) {
            .page-hero h1 { font-size: 26px; }
            .hero-text p { font-size: 16px; }
            .page-hero { padding: 90px 0 40px; }
            .card-number { font-size: 14px; letter-spacing: 2px; }
            .virtual-card { padding: 16px; }
            .widget-card { padding: 28px; }
            .control-card { padding: 20px; }
        }

/* ========================================
   Extracted from: approval-workflows.html
   ======================================== */
/* Light Mode Base */
        .feature-hero { padding: 160px 0 80px; background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%); position: relative; overflow: hidden; }
        .feature-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 60%); pointer-events: none; }
        .feature-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .feature-tag { display: inline-block; background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .feature-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; color: var(--text-primary); }
        .feature-hero p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }

        /* Feature visual - Light Mode */
        .feature-visual { background: var(--bg-primary); border-radius: 20px; box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.12), 0 0 0 1px rgba(var(--primary-rgb), 0.08); overflow: hidden; border: 1px solid var(--gray-4); width: 100%; max-width: 480px; margin: 0 auto; transform: scale(0.9); transform-origin: top right; }
        .demo-header { background: var(--gray-2); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(var(--primary-rgb), 0.08); }
        .dashboard-dots { display: flex; gap: 6px; }
        .dashboard-dots span { width: 10px; height: 10px; border-radius: 50%; }
        .dashboard-dots span:nth-child(1) { background: #EF4444; }
        .dashboard-dots span:nth-child(2) { background: #F59E0B; }
        .dashboard-dots span:nth-child(3) { background: #10B981; }
        .demo-title { font-size: 13px; font-weight: 600; color: #6B6580; }
        .demo-body { padding: 12px; background: var(--bg-primary); }

        /* Approval chain demo */
        .approval-chain { background: var(--gray-2); border-radius: 12px; padding: 10px; border: 1px solid var(--gray-4); margin-bottom: 8px; }
        .chain-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
        .chain-title { font-size: 14px; font-weight: 700; color: var(--text-primary); }
        .chain-amount { font-size: 14px; font-weight: 700; color: var(--mid-accent); }
        .chain-steps { display: flex; flex-direction: column; gap: 0; position: relative; }
        .chain-step { display: flex; align-items: center; gap: 10px; padding: 6px 0; position: relative; }
        .chain-step:not(:last-child)::after { content: ''; position: absolute; left: 15px; top: 40px; bottom: -10px; width: 2px; background: var(--gray-4); }
        .step-indicator { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; font-size: 12px; }
        .step-indicator.completed { background: #00B894; color: #FFFFFF; }
        .step-indicator.current { background: var(--mid-accent); color: #FFFFFF; }
        .step-indicator.pending { background: var(--gray-4); color: var(--gray-9); }
        .step-content { flex: 1; }
        .step-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }
        .step-role { font-size: 11px; color: var(--gray-9); }
        .step-status { font-size: 11px; font-weight: 600; padding: 4px 8px; border-radius: 20px; }
        .step-status.approved { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .step-status.waiting { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); }
        .step-status.pending { background: rgba(var(--primary-rgb), 0.05); color: var(--gray-9); }

        /* Pending approvals */
        .pending-approvals { background: var(--gray-2); border-radius: 12px; padding: 10px; border: 1px solid var(--gray-4); margin-bottom: 8px; }
        .pending-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
        .pending-title { font-size: 13px; font-weight: 700; color: var(--text-primary); }
        .pending-count { padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; background: rgba(239, 68, 68, 0.08); color: #EF4444; }
        .pending-list { display: flex; flex-direction: column; gap: 8px; }
        .pending-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; background: var(--bg-primary); border-radius: 8px; }
        .pending-item .item-info { flex: 1; }
        .pending-item .item-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }
        .pending-item .item-meta { font-size: 11px; color: var(--gray-9); }
        .pending-item .sla-badge { padding: 4px 8px; border-radius: 20px; font-size: 10px; font-weight: 600; }
        .pending-item .sla-badge.on-track { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .pending-item .sla-badge.warning { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
        .pending-item .sla-badge.breached { background: rgba(239, 68, 68, 0.08); color: #EF4444; }

        /* SLA summary */
        .sla-summary { background: var(--gray-2); border-radius: 12px; padding: 10px; border: 1px solid var(--gray-4); }
        .sla-header { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
        .sla-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
        .sla-stat { background: var(--bg-primary); border-radius: 8px; padding: 8px; text-align: center; }
        .sla-stat .value { font-size: 18px; font-weight: 800; color: var(--text-primary); }
        .sla-stat .label { font-size: 10px; color: var(--gray-9); }
        .sla-stat.good .value { color: #00B894; }
        .sla-stat.warning .value { color: #F59E0B; }

        /* Widgets Section - Light Mode */
        .widgets-section { padding: 80px 0; background: var(--gray-2); position: relative; }
        .widgets-section::before { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%); pointer-events: none; }
        .widgets-section .section-tag { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .widgets-section .section-header h2 { color: var(--text-primary); }
        .widgets-section .section-header p { color: var(--text-secondary); }
        .widgets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
        .widget-card { padding: 32px; background: var(--bg-primary); border-radius: 12px; border: 1px solid var(--gray-4); transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .widget-card:hover { background: var(--gray-2); border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); }
        .widget-icon { width: 56px; height: 56px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; transition: all 0.3s ease; }
        .widget-card:nth-child(6n+1) .widget-icon { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); }
        .widget-card:nth-child(6n+2) .widget-icon { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .widget-card:nth-child(6n+3) .widget-icon { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
        .widget-card:nth-child(6n+4) .widget-icon { background: rgba(241, 100, 63, 0.08); color: var(--primary); }
        .widget-card:nth-child(6n+5) .widget-icon { background: rgba(236, 72, 153, 0.08); color: #EC4899; }
        .widget-card:nth-child(6n+6) .widget-icon { background: rgba(20, 184, 166, 0.08); color: #14B8A6; }
        .widget-card:hover .widget-icon { transform: rotate(-8deg) scale(1.05); }
        .widget-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
        .widget-card p { color: var(--text-secondary); line-height: 1.6; }

        /* Workflow Builder Section - Light Mode */
        .builder-section { padding: 100px 0; background: var(--gray-1); position: relative; overflow: hidden; }
        .builder-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%); pointer-events: none; }
        .builder-section .section-header { text-align: center; max-width: 650px; margin: 0 auto 70px; position: relative; z-index: 1; }
        .builder-section .section-tag { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .builder-section .section-header h2 { font-size: 44px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
        .builder-section .section-header p { color: var(--text-secondary); font-size: 18px; line-height: 1.7; }
        .builder-visual { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
        .builder-window { background: var(--bg-primary); border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-4); box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.12); }
        .builder-toolbar { background: var(--gray-2); padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(var(--primary-rgb), 0.08); }
        .builder-toolbar .dashboard-dots { display: flex; gap: 6px; }
        .builder-toolbar .dashboard-dots span { width: 10px; height: 10px; border-radius: 50%; }
        .builder-toolbar .dashboard-dots span:nth-child(1) { background: #EF4444; }
        .builder-toolbar .dashboard-dots span:nth-child(2) { background: #F59E0B; }
        .builder-toolbar .dashboard-dots span:nth-child(3) { background: #10B981; }
        .builder-toolbar-title { font-size: 13px; font-weight: 600; color: #6B6580; }
        .builder-toolbar-actions { display: flex; gap: 8px; }
        .builder-toolbar-actions span { padding: 4px 12px; border-radius: 6px; font-size: 11px; font-weight: 600; }
        .builder-toolbar-actions .btn-save { background: var(--mid-accent); color: #fff; }
        .builder-toolbar-actions .btn-test { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); }
        .builder-body { display: flex; min-height: 340px; }
        .builder-sidebar { width: 160px; background: var(--gray-2); border-right: 1px solid rgba(var(--primary-rgb), 0.06); padding: 14px; flex-shrink: 0; }
        .sidebar-label { font-size: 10px; font-weight: 700; color: var(--gray-9); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 10px; }
        .sidebar-block { display: flex; align-items: center; gap: 8px; padding: 8px 10px; background: var(--bg-primary); border-radius: 8px; border: 1px dashed rgba(var(--primary-rgb), 0.15); margin-bottom: 6px; cursor: grab; transition: all 0.2s; }
        .sidebar-block:hover { border-color: var(--mid-accent); background: var(--gray-2); }
        .sidebar-block .sb-icon { width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .sidebar-block .sb-icon.trigger { background: rgba(241, 100, 63, 0.1); color: var(--primary); }
        .sidebar-block .sb-icon.condition { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
        .sidebar-block .sb-icon.action { background: rgba(var(--primary-rgb), 0.1); color: var(--mid-accent); }
        .sidebar-block .sb-icon.notify { background: rgba(236, 72, 153, 0.1); color: #EC4899; }
        .sidebar-block .sb-icon.end { background: rgba(0, 184, 148, 0.1); color: #00B894; }
        .sidebar-block span { font-size: 11px; font-weight: 600; color: var(--text-secondary); }
        .builder-canvas { flex: 1; padding: 24px; position: relative; background: repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(var(--primary-rgb), 0.03) 19px, rgba(var(--primary-rgb), 0.03) 20px), repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(var(--primary-rgb), 0.03) 19px, rgba(var(--primary-rgb), 0.03) 20px); }
        .canvas-label { font-size: 10px; font-weight: 700; color: #ABA5BC; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px; }
        .canvas-flow { display: flex; flex-direction: column; align-items: center; gap: 0; }
        .canvas-node { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--bg-primary); border-radius: 10px; border: 1px solid var(--gray-4); min-width: 260px; box-shadow: 0 2px 8px rgba(0,0,0,0.03); position: relative; }
        .canvas-node .cn-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .canvas-node .cn-icon.trigger { background: rgba(241, 100, 63, 0.1); color: var(--primary); }
        .canvas-node .cn-icon.condition { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
        .canvas-node .cn-icon.action { background: rgba(var(--primary-rgb), 0.1); color: var(--mid-accent); }
        .canvas-node .cn-icon.notify { background: rgba(236, 72, 153, 0.1); color: #EC4899; }
        .canvas-node .cn-icon.end { background: rgba(0, 184, 148, 0.1); color: #00B894; }
        .canvas-node .cn-info h5 { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 1px; }
        .canvas-node .cn-info p { font-size: 11px; color: var(--gray-9); }
        .canvas-node .cn-badge { margin-left: auto; padding: 3px 8px; border-radius: 20px; font-size: 10px; font-weight: 600; }
        .canvas-node .cn-badge.active { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .canvas-node .cn-badge.config { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); }
        .canvas-connector { width: 2px; height: 20px; background: var(--gray-4); position: relative; }
        .canvas-connector::after { content: ''; position: absolute; bottom: -3px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid var(--gray-4); }
        .canvas-branch { display: flex; gap: 20px; align-items: flex-start; justify-content: center; position: relative; }
        .canvas-branch::before { content: ''; position: absolute; top: 0; left: calc(50% - 70px); width: 140px; height: 2px; background: var(--gray-4); }
        .branch-arm { display: flex; flex-direction: column; align-items: center; gap: 0; }
        .branch-label { font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 10px; margin-bottom: 4px; }
        .branch-label.yes { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .branch-label.no { background: rgba(239, 68, 68, 0.08); color: #EF4444; }
        .branch-connector { width: 2px; height: 14px; background: var(--gray-4); position: relative; }
        .branch-connector::after { content: ''; position: absolute; bottom: -3px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid var(--gray-4); }
        .canvas-node.small { min-width: 180px; padding: 10px 14px; }
        .canvas-node.small .cn-icon { width: 28px; height: 28px; }
        .canvas-node.small .cn-info h5 { font-size: 12px; }
        .canvas-node.small .cn-info p { font-size: 10px; }

        /* Section header overrides for light mode */
        .section-header h2 { color: var(--text-primary); }
        .section-header p { color: var(--text-secondary); }
        .section-tag { background: rgba(var(--primary-rgb), 0.08); border-color: rgba(var(--primary-rgb), 0.15); }

        @media (max-width: 809px) {
            .feature-hero .container { grid-template-columns: 1fr; }
            .feature-hero h1 { font-size: 32px; }
            .widgets-grid { grid-template-columns: 1fr; }
            .sla-stats { grid-template-columns: 1fr; }
            .builder-body { flex-direction: column; }
            .builder-sidebar { width: 100%; border-right: none; border-bottom: 1px solid rgba(var(--primary-rgb), 0.06); display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
            .sidebar-label { margin-bottom: 0; }
            .sidebar-block { margin-bottom: 0; }
            .canvas-branch { flex-direction: column; align-items: center; gap: 8px; }
            .canvas-branch::before { display: none; }
            .canvas-node { min-width: 200px; }
            .canvas-node.small { min-width: 160px; }
        }

/* ========================================
   Extracted from: blogs.html
   ======================================== */
/* Light mode page styles */

        /* Page hero light mode */
        .page-hero {
            background: #fff;
            position: relative;
            overflow: hidden;
            padding: 180px 0 80px;
            text-align: center;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 50%;
            height: 80%;
            background: none;
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -5%;
            width: 40%;
            height: 70%;
            background: none;
            pointer-events: none;
        }
        .page-hero h1 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 48px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 16px;
        }
        .page-hero h1 span { color: var(--primary); }
        .page-hero > .container > p {
            color: var(--text-secondary);
            font-size: 18px;
            line-height: 1.7;
            max-width: 560px;
            margin: 0 auto;
        }
        .hero-badge {
            display: inline-block;
            color: var(--primary);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 6px 14px;
            border-radius: 4px;
            margin-bottom: 16px;
            background: none;
        }

        /* Blog section - Light Mode */
        .blog-section { padding: 80px 0; background: var(--bg-primary); }
        .section-header { margin-bottom: 48px; }
        .section-header h2 { font-size: 28px; font-weight: 500; color: var(--text-primary); font-family: 'Bricolage Grotesque', serif; }

        .featured-post { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 80px; align-items: center; }
        .featured-image { background: #E8E4DE; border-radius: 24px; height: 350px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--gray-9); padding: 8px; overflow: hidden; }
        .featured-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
        .featured-content .tag { display: inline-block; background: rgba(var(--primary-rgb), 0.08); color: var(--primary); padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
        .featured-content h2 { font-size: 32px; font-weight: 500; margin-bottom: 16px; font-family: 'Bricolage Grotesque', serif; }
        .featured-content h2 a { color: var(--text-primary); text-decoration: none; }
        .featured-content h2 a:hover { color: var(--primary); }
        .featured-content p { color: var(--text-secondary); font-size: 16px; margin-bottom: 20px; line-height: 1.8; }
        .post-meta { display: flex; gap: 16px; align-items: center; color: var(--gray-9); font-size: 14px; }
        .post-meta .author { display: flex; align-items: center; gap: 8px; }
        .author-avatar { width: 32px; height: 32px; background: rgba(var(--primary-rgb), 0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: var(--primary); }

        .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
        .blog-card { background: var(--bg-primary); border-radius: 20px; overflow: hidden; border: 1px solid var(--gray-4); transition: all 0.3s; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .blog-card:hover { box-shadow: 0 10px 40px rgba(var(--primary-rgb), 0.1); transform: translateY(-4px); border-color: rgba(var(--primary-rgb), 0.2); }
        .blog-image { height: 180px; background: var(--gray-2); display: flex; align-items: center; justify-content: center; color: var(--gray-9); font-size: 14px; overflow: hidden; }
        .blog-image img { width: 100%; height: 100%; object-fit: cover; }
        .blog-content { padding: 24px; }
        .blog-content .tag { display: inline-block; background: rgba(var(--primary-rgb), 0.08); color: var(--primary); padding: 4px 10px; border-radius: 14px; font-size: 11px; font-weight: 600; margin-bottom: 12px; }
        .blog-content h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; line-height: 1.4; }
        .blog-content h3 a { color: var(--text-primary); text-decoration: none; }
        .blog-content h3 a:hover { color: var(--primary); }
        .blog-content p { color: var(--text-secondary); font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
        .blog-content .post-meta { font-size: 13px; color: var(--gray-9); }

        /* Categories - Light Mode */
        .categories-section { padding: 60px 0; background: white; }
        .categories-section .categories-grid { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
        .category-tag { padding: 12px 24px; background: var(--bg-primary); border-radius: 100px; font-weight: 500; color: var(--text-secondary); cursor: pointer; transition: all 0.3s; border: 1px solid var(--gray-4); font-family: inherit; font-size: inherit; }
        .category-tag:hover { background: var(--primary); color: #ffffff; border-color: var(--primary); }
        .category-tag.active { background: var(--primary); color: #ffffff; border-color: var(--primary); }
        .blog-hidden { display: none !important; }
        .no-results { text-align: center; padding: 60px 20px; color: var(--gray-9); font-size: 18px; grid-column: 1 / -1; }

        

        @media (max-width: 1199px) {
            .blog-grid { grid-template-columns: repeat(2, 1fr); }
            .featured-post { grid-template-columns: 1fr; }
        }

        @media (max-width: 809px) {
            .blog-grid { grid-template-columns: 1fr; }
            .featured-content h2 { font-size: 26px; }
            .featured-image { height: 250px; }
            .blog-section,
            .categories-section { padding: 40px 0; }
            .page-hero { padding: 120px 0 40px; }
            .page-hero h1 { font-size: 36px; }
        }

        @media (max-width: 480px) {
            .featured-content h2 { font-size: 22px; }
            .featured-image { height: 200px; }
            .category-tag { padding: 10px 18px; font-size: 14px; }
            .page-hero { padding: 100px 0 32px; }
            .page-hero h1 { font-size: 28px; }
        }

/* ========================================
   Extracted from: careers.html
   ======================================== */
/* Light mode page styles */

        /* Page hero light mode */
        .page-hero {
            background: #fff;
            position: relative;
            overflow: hidden;
            padding: 180px 0 80px;
            text-align: center;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 50%;
            height: 80%;
            background: none;
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -5%;
            width: 40%;
            height: 70%;
            background: none;
            pointer-events: none;
        }
        .page-hero h1 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 48px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 16px;
        }
        .page-hero h1 span { color: var(--primary); }
        .page-hero > .container > p {
            color: var(--text-secondary);
            font-size: 18px;
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }
        .hero-badge {
            display: inline-block;
            color: var(--primary);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 6px 14px;
            border-radius: 4px;
            margin-bottom: 16px;
            background: none;
        }

        /* Why Section — matches homepage m-security */
        .why-section { padding: 100px 0; background: #f9f8f6; }
        .why-section .section-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
        .why-section .section-header h2 { font-size: 42px; font-weight: 600; color: #1a1a1a; margin-bottom: 0; }
        .why-section .section-header p { font-size: 17px; color: #6b6b6b; }

        /* Benefits Grid — flat, no card bg */
        .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 40px; }
        .benefit-card { padding: 0; }
        .benefit-top {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }
        .why-section .benefit-icon {
            width: auto;
            height: auto;
            background: none;
            border-radius: 0;
            margin-bottom: 0;
            color: var(--primary);
            flex-shrink: 0;
            display: flex;
        }
        .why-section .benefit-card:nth-child(6n+1) .benefit-icon,
        .why-section .benefit-card:nth-child(6n+2) .benefit-icon,
        .why-section .benefit-card:nth-child(6n+3) .benefit-icon,
        .why-section .benefit-card:nth-child(6n+4) .benefit-icon,
        .why-section .benefit-card:nth-child(6n+5) .benefit-icon,
        .why-section .benefit-card:nth-child(6n+6) .benefit-icon {
            background: none;
            color: var(--primary);
        }
        .why-section .benefit-icon svg, .why-section .benefit-icon i { width: 20px; height: 20px; }
        .why-section .benefit-card:hover .benefit-icon { transform: none; }
        .benefit-card h3 { font-size: 18px; font-weight: 600; color: #1a1a1a; margin: 0; }
        .benefit-card p { font-size: 15px; color: #6b6b6b; line-height: 1.65; margin: 0; }

        /* Values Section - Light Mode */
        .values-section { padding: 80px 0; background: white; }
        .values-section .section-header h2 { color: var(--text-primary); }
        .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .value-card {
            background: var(--bg-primary);
            padding: 24px;
            border-radius: 14px;
            text-align: center;
            border: 1px solid var(--gray-4);
            transition: all 0.3s ease;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
        }
        .value-card:hover {
            background: var(--gray-2);
            box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08);
        }
        .value-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--primary); }
        .value-card p { font-size: 14px; color: var(--text-secondary); }

        /* Jobs Section - Light Mode */
        .jobs-section { padding: 80px 0; background: var(--bg-primary); }
        .jobs-section .section-header h2 { color: var(--text-primary); }
        .jobs-section .section-header p { color: var(--text-secondary); }
        .jobs-list { max-width: 800px; margin: 0 auto; }
        .job-category { margin-bottom: 48px; }
        .job-category h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 24px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--gray-4);
            color: var(--text-primary);
        }
        .job-card {
            background: var(--bg-primary);
            border-radius: 14px;
            padding: 24px;
            margin-bottom: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
            border: 1px solid var(--gray-4);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
        }
        .job-card:hover {
            background: var(--gray-2);
            border-color: rgba(var(--primary-rgb), 0.2);
            box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08);
        }
        .job-info h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
        .job-meta { display: flex; gap: 16px; }
        .job-meta span { font-size: 14px; color: var(--gray-9); display: flex; align-items: center; gap: 6px; }
        .job-card .btn { padding: 10px 20px; }

        /* Culture Section - Light Mode */
        .culture-section {
            padding: 80px 0;
            background: #f7f3ee;
        }
        .culture-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; align-items: center; }
        .culture-content h2 { font-size: 36px; font-weight: 500; margin-bottom: 24px; color: var(--text-primary); }
        .culture-content p { font-size: 18px; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }
        .culture-content p strong { color: var(--primary); }
        .culture-image {
            background: var(--bg-primary);
            border: 1px solid var(--gray-4);
            border-radius: 20px;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: var(--gray-9);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
        }

        

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

        @media (max-width: 809px) {
            .benefits-grid, .values-grid { grid-template-columns: 1fr; }
            .culture-grid { grid-template-columns: 1fr; }
            .culture-content h2 { font-size: 28px; }
            .job-card { flex-direction: column; align-items: flex-start; gap: 16px; }
            .why-section, .values-section, .jobs-section, .culture-section,
        }

        @media (max-width: 480px) {
            .culture-content h2 { font-size: 24px; }
            .benefit-card, .value-card { padding: 24px; }
            .culture-image { height: 200px; font-size: 36px; }
            .job-category h3 { font-size: 20px; }
            .why-section, .values-section, .jobs-section, .culture-section { padding: 48px 0; }
        }

/* ========================================
   Extracted from: compliance-dashboard.html
   ======================================== */
/* Light Mode Base */
        .feature-hero { padding: 160px 0 80px; background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%); position: relative; overflow: hidden; }
        .feature-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 60%); pointer-events: none; }
        .feature-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .feature-tag { display: inline-block; background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .feature-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; color: var(--text-primary); }
        .feature-hero p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }

        /* Feature visual - Light Mode */
        .feature-visual { background: var(--bg-primary); border-radius: 20px; box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.12), 0 0 0 1px rgba(var(--primary-rgb), 0.08); overflow: hidden; border: 1px solid var(--gray-4); max-width: 440px; margin: 0 auto; }
        .demo-header { background: var(--gray-2); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(var(--primary-rgb), 0.08); }
        .dashboard-dots { display: flex; gap: 6px; }
        .dashboard-dots span { width: 10px; height: 10px; border-radius: 50%; }
        .dashboard-dots span:nth-child(1) { background: #EF4444; }
        .dashboard-dots span:nth-child(2) { background: #F59E0B; }
        .dashboard-dots span:nth-child(3) { background: #10B981; }
        .demo-title { font-size: 13px; font-weight: 600; color: #6B6580; }
        .demo-body { padding: 16px; background: var(--bg-primary); }
        .dashboard-demo { background: none; border-radius: 12px; padding: 0; }
        .dashboard-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px; }
        .stat-card { background: var(--gray-2); border-radius: 12px; padding: 12px; text-align: center; border: 1px solid var(--gray-4); transition: all 0.2s; }
        .stat-card:hover { border-color: rgba(var(--primary-rgb), 0.25); box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.1); }
        .stat-card .value { font-size: 28px; font-weight: 800; color: var(--mid-accent); }
        .stat-card .label { font-size: 12px; color: var(--gray-9); }
        .stat-card.warning .value { color: #F59E0B; }
        .stat-card.danger .value { color: #EF4444; }
        .upcoming-list { background: var(--gray-2); border-radius: 12px; padding: 12px; border: 1px solid var(--gray-4); }
        .upcoming-list h5 { font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
        .deadline-item { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--gray-4); }
        .deadline-item:last-child { border-bottom: none; }
        .deadline-item .name { font-size: 14px; font-weight: 500; color: var(--text-primary); }
        .deadline-item .date { font-size: 12px; padding: 4px 10px; border-radius: 20px; font-weight: 600; }
        .deadline-item .date.green { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .deadline-item .date.yellow { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
        .deadline-item .date.red { background: rgba(239, 68, 68, 0.08); color: #EF4444; }

        /* Widgets Section - Light Mode */
        .widgets-section { padding: 80px 0; background: var(--gray-2); position: relative; }
        .widgets-section::before { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%); pointer-events: none; }
        .widgets-section .section-tag { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .widgets-section .section-header h2 { color: var(--text-primary); }
        .widgets-section .section-header p { color: var(--text-secondary); }
        .widgets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
        .widget-card { padding: 32px; background: var(--bg-primary); border-radius: 12px; border: 1px solid var(--gray-4); transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .widget-card:hover { background: var(--gray-2); border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); }
        .widget-icon { width: 56px; height: 56px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; transition: all 0.3s ease; }
        .widget-card:nth-child(6n+1) .widget-icon { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); }
        .widget-card:nth-child(6n+2) .widget-icon { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .widget-card:nth-child(6n+3) .widget-icon { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
        .widget-card:nth-child(6n+4) .widget-icon { background: rgba(241, 100, 63, 0.08); color: var(--primary); }
        .widget-card:nth-child(6n+5) .widget-icon { background: rgba(236, 72, 153, 0.08); color: #EC4899; }
        .widget-card:nth-child(6n+6) .widget-icon { background: rgba(20, 184, 166, 0.08); color: #14B8A6; }
        .widget-card:hover .widget-icon { transform: rotate(-8deg) scale(1.05); }
        .widget-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
        .widget-card p { color: var(--text-secondary); line-height: 1.6; }

        /* Views Section - Light Mode */
        .views-section { padding: 100px 0; background: var(--gray-1); position: relative; overflow: hidden; }
        .views-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%); pointer-events: none; }
        .views-section .section-header { text-align: center; max-width: 650px; margin: 0 auto 70px; position: relative; z-index: 1; }
        .views-section .section-tag { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .views-section .section-header h2 { font-size: 44px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
        .views-section .section-header p { color: var(--text-secondary); font-size: 18px; line-height: 1.7; }
        .views-grid { display: flex; flex-direction: column; gap: 80px; position: relative; z-index: 1; }
        .view-card { display: flex; align-items: center; gap: 40px; }
        .view-illustration { display: flex; align-items: center; justify-content: flex-end; min-height: 280px; flex: 1; min-width: 0; }
        .view-content { flex: 1; min-width: 0; padding: 0 10px; text-align: left; }
        .view-content h4 { font-size: 28px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }
        .view-content p { font-size: 17px; color: var(--text-secondary); line-height: 1.7; max-width: 440px; }

        /* Floating Illustration Container */
        .floating-illustration { position: relative; width: 380px; height: 260px; }
        .floating-illustration.float-kanban { height: 290px; }

        /* Floating List Items - Light Mode */
        .float-item { position: absolute; display: flex; align-items: center; gap: 14px; padding: 14px 24px; background: var(--bg-primary); border: 1px solid rgba(var(--primary-rgb), 0.12); border-radius: 50px; box-shadow: 0 6px 24px rgba(6, 103, 191, 0.1); white-space: nowrap; }
        .float-item .dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
        .float-item .dot.green { background: #10B981; }
        .float-item .dot.yellow { background: #F59E0B; }
        .float-item .dot.red { background: #EF4444; }
        .float-item .dot.purple { background: var(--mid-accent); }
        .float-item .text { font-weight: 600; color: var(--text-primary); font-size: 15px; }
        .float-item .meta { font-size: 12px; color: var(--gray-9); margin-left: 8px; }
        .float-item:nth-child(1) { top: 10px; right: 10px; transform: rotate(-2deg); }
        .float-item:nth-child(2) { top: 60px; right: 40px; transform: rotate(1deg); }
        .float-item:nth-child(3) { top: 115px; right: 20px; transform: rotate(-1deg); }
        .float-item:nth-child(4) { top: 165px; right: 0px; transform: rotate(2deg); }

        /* Floating Calendar - Light Mode */
        .float-calendar { position: relative; }
        .cal-main { background: var(--bg-primary); border: 1px solid rgba(var(--primary-rgb), 0.12); border-radius: 16px; padding: 24px; box-shadow: 0 8px 30px rgba(6, 103, 191, 0.1); width: 280px; margin: 0 auto; }
        .cal-month-header { font-weight: 700; color: var(--text-primary); font-size: 14px; text-align: center; margin-bottom: 12px; }
        .cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; }
        .cal-d { font-size: 11px; padding: 6px 2px; color: var(--text-secondary); font-weight: 500; border-radius: 50%; }
        .cal-d.head { color: var(--gray-9); font-size: 10px; }
        .cal-d.today { background: var(--mid-accent); color: white; font-weight: 700; }
        .cal-d.has-event { position: relative; }
        .cal-d.has-event::after { content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: #00B894; }
        .float-event { position: absolute; padding: 8px 16px; background: var(--bg-primary); border: 1px solid rgba(var(--primary-rgb), 0.12); border-radius: 20px; box-shadow: 0 4px 16px rgba(6, 103, 191, 0.1); font-size: 11px; font-weight: 600; color: var(--text-primary); display: flex; align-items: center; gap: 6px; }
        .float-event .ev-dot { width: 6px; height: 6px; border-radius: 50%; }
        .float-event.ev1 { top: 15px; right: 10px; transform: rotate(3deg); }
        .float-event.ev1 .ev-dot { background: #00B894; }
        .float-event.ev2 { bottom: 30px; left: 10px; transform: rotate(-2deg); }
        .float-event.ev2 .ev-dot { background: #F59E0B; }

        /* Floating Kanban Cards - Light Mode */
        .float-kanban { position: relative; }
        .kb-float-card { position: absolute; background: var(--bg-primary); border: 1px solid rgba(var(--primary-rgb), 0.12); border-radius: 12px; padding: 16px 22px; box-shadow: 0 6px 24px rgba(6, 103, 191, 0.1); min-width: 140px; }
        .kb-float-card .kb-tag { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 9px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
        .kb-float-card .kb-tag.pending { background: rgba(239, 68, 68, 0.08); color: #EF4444; }
        .kb-float-card .kb-tag.progress { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
        .kb-float-card .kb-tag.done { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .kb-float-card .kb-title { font-size: 15px; font-weight: 700; color: var(--text-primary); }
        .kb-float-card .kb-due { font-size: 12px; color: var(--gray-9); margin-top: 4px; }
        .kb-float-card:nth-child(1) { top: 0; right: 20px; transform: rotate(-2deg); }
        .kb-float-card:nth-child(2) { top: 95px; right: 120px; transform: rotate(1deg); z-index: 2; }
        .kb-float-card:nth-child(3) { top: 190px; right: 40px; transform: rotate(-1deg); }

        /* Floating Analytics - Light Mode */
        .float-analytics { position: relative; }
        .score-main { position: absolute; width: 120px; height: 120px; border-radius: 50%; background: conic-gradient(#00B894 0deg 306deg, var(--gray-4) 306deg 360deg); display: flex; align-items: center; justify-content: center; top: 40px; left: 30px; box-shadow: 0 8px 30px rgba(0, 184, 148, 0.15); }
        .score-inner { width: 92px; height: 92px; background: var(--bg-primary); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
        .score-inner .num { font-size: 28px; font-weight: 800; color: #00B894; line-height: 1; }
        .score-inner .lbl { font-size: 10px; color: var(--gray-9); margin-top: 2px; }
        .stat-pill { position: absolute; display: flex; align-items: center; gap: 12px; background: var(--bg-primary); border: 1px solid rgba(var(--primary-rgb), 0.12); padding: 12px 22px; border-radius: 50px; box-shadow: 0 6px 24px rgba(6, 103, 191, 0.1); }
        .stat-pill .s-label { font-size: 13px; color: var(--gray-9); }
        .stat-pill .s-value { font-size: 18px; font-weight: 700; }
        .stat-pill .s-value.green { color: #00B894; }
        .stat-pill .s-value.yellow { color: #F59E0B; }
        .stat-pill .s-value.red { color: #EF4444; }
        .stat-pill:nth-child(2) { top: 10px; right: 20px; transform: rotate(2deg); }
        .stat-pill:nth-child(3) { top: 80px; right: 40px; transform: rotate(-1deg); }
        .stat-pill:nth-child(4) { top: 150px; right: 30px; transform: rotate(3deg); }

        /* Section header overrides for light mode */
        .section-header h2 { color: var(--text-primary); }
        .section-header p { color: var(--text-secondary); }
        .section-tag { background: rgba(var(--primary-rgb), 0.08); border-color: rgba(var(--primary-rgb), 0.15); }

        @media (max-width: 809px) {
            .views-section { padding: 70px 0; }
            .views-grid { gap: 50px; }
            .view-card { flex-direction: column; }
            .views-section .section-header h2 { font-size: 32px; }
            .views-section .section-header { margin-bottom: 50px; }
            .view-illustration { min-height: 220px; }
            .view-content h4 { font-size: 24px; }
            .floating-illustration { transform: scale(0.9); }
        }
        @media (max-width: 809px) {
            .feature-hero .container { grid-template-columns: 1fr; }
            .feature-hero h1 { font-size: 32px; }
            .widgets-grid { grid-template-columns: 1fr; }
            .dashboard-stats { grid-template-columns: 1fr; }
        }

/* ========================================
   Extracted from: compliance-discovery.html
   ======================================== */
.feature-hero {
            padding: 160px 0 80px;
            background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%);
            position: relative;
            overflow: hidden;
        }
        .feature-hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 60%);
            pointer-events: none;
        }
        .feature-hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .feature-tag {
            display: inline-block;
            background: rgba(var(--primary-rgb), 0.1);
            color: var(--mid-accent);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: 1px solid rgba(var(--primary-rgb), 0.2);
        }
        .feature-hero h1 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            color: var(--text-primary);
        }
        .feature-hero p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 32px;
        }
        .feature-visual {
            background: var(--bg-primary);
            border-radius: 20px;
            box-shadow:
                0 25px 50px -12px rgba(var(--primary-rgb), 0.12),
                0 0 0 1px rgba(var(--primary-rgb), 0.08);
            overflow: hidden;
            border: 1px solid var(--gray-4);
            max-width: 380px;
            margin: 0 auto;
        }
        .demo-header {
            padding: 12px 16px;
            background: var(--gray-2);
            border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .demo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }
        .demo-dot.red { background: #EF4444; }
        .demo-dot.yellow { background: #F59E0B; }
        .demo-dot.green { background: #10B981; }
        .demo-title {
            flex: 1;
            text-align: center;
            color: #6B6580;
            font-size: 12px;
            font-weight: 600;
        }
        .demo-body {
            padding: 14px;
        }
        .gstin-input-demo {
            display: flex;
            gap: 8px;
            margin-bottom: 12px;
        }
        .gstin-input-demo input {
            flex: 1;
            padding: 8px 12px;
            border: 1px solid rgba(var(--primary-rgb), 0.15);
            border-radius: 8px;
            font-size: 13px;
            font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
            background: var(--gray-2);
            color: var(--text-primary);
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .gstin-input-demo input:focus {
            border-color: rgba(var(--primary-rgb), 0.5);
            outline: none;
        }
        .gstin-input-demo button {
            padding: 8px 14px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s;
            border: 1px solid rgba(var(--primary-rgb), 0.3);
        }
        .gstin-input-demo button:hover {
            background: var(--primary-dark);
        }
        .company-info {
            background: var(--gray-2);
            border-radius: 10px;
            padding: 10px 12px;
            margin-bottom: 12px;
            border: 1px solid var(--gray-4);
        }
        .company-info-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }
        .company-icon {
            width: 32px;
            height: 32px;
            background: rgba(var(--primary-rgb), 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--mid-accent);
        }
        .company-name {
            font-weight: 700;
            font-size: 13px;
            color: var(--text-primary);
        }
        .company-type {
            font-size: 11px;
            color: #6B6580;
        }
        .company-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        .company-tag {
            padding: 3px 8px;
            background: rgba(var(--primary-rgb), 0.06);
            border-radius: 20px;
            font-size: 10px;
            font-weight: 500;
            color: #6B6580;
            border: 1px solid var(--gray-4);
        }
        .detected-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        .detected-title {
            font-size: 11px;
            font-weight: 700;
            color: var(--gray-9);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .detected-count {
            background: rgba(var(--primary-rgb), 0.1);
            color: var(--mid-accent);
            padding: 3px 8px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 700;
            border: 1px solid rgba(var(--primary-rgb), 0.2);
        }
        .detected-list {
            display: grid;
            gap: 6px;
        }
        .detected-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 7px 10px;
            background: var(--gray-2);
            border-radius: 8px;
            transition: all 0.2s;
            border: 1px solid rgba(var(--primary-rgb), 0.06);
        }
        .detected-item:hover {
            border-color: rgba(var(--primary-rgb), 0.25);
            background: var(--gray-1);
        }
        .detected-item .icon-wrap {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(var(--primary-rgb), 0.1);
            color: var(--mid-accent);
        }
        .detected-item .icon-wrap.gst,
        .detected-item .icon-wrap.tds,
        .detected-item .icon-wrap.mca,
        .detected-item .icon-wrap.pf,
        .detected-item .icon-wrap.pt {
            background: rgba(var(--primary-rgb), 0.1);
            color: var(--mid-accent);
        }
        .detected-item-content {
            flex: 1;
        }
        .detected-item-title {
            font-weight: 600;
            font-size: 12px;
            color: var(--text-primary);
            margin-bottom: 1px;
        }
        .detected-item-sub {
            font-size: 10px;
            color: #6B6580;
        }
        .detected-item .check {
            width: 18px;
            height: 18px;
            background: rgba(var(--primary-rgb), 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--mid-accent);
            font-size: 10px;
        }
        .benefits-section {
            padding: 80px 0;
            background: var(--bg-primary);
        }
        .benefits-section .section-header h2 {
            color: var(--text-primary);
        }
        .benefits-section .section-header p {
            color: var(--text-secondary);
        }
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 60px;
        }
        .benefit-card {
            padding: 32px;
            background: var(--gray-2);
            border-radius: 12px;
            border: 1px solid var(--gray-4);
        }
        .benefit-icon {
            width: 56px;
            height: 56px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        .benefit-card:nth-child(6n+1) .benefit-icon { background: rgba(var(--primary-rgb), 0.1); color: var(--mid-accent); }
        .benefit-card:nth-child(6n+2) .benefit-icon { background: rgba(0, 184, 148, 0.1); color: #00B894; }
        .benefit-card:nth-child(6n+3) .benefit-icon { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
        .benefit-card:nth-child(6n+4) .benefit-icon { background: rgba(241, 100, 63, 0.1); color: var(--primary); }
        .benefit-card:nth-child(6n+5) .benefit-icon { background: rgba(236, 72, 153, 0.1); color: #EC4899; }
        .benefit-card:nth-child(6n+6) .benefit-icon { background: rgba(16, 185, 129, 0.1); color: #10B981; }
        .benefit-card:hover .benefit-icon { transform: rotate(-8deg) scale(1.05); }
        .benefit-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-primary);
        }
        .benefit-card p {
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .how-it-works {
            padding: 80px 0;
            background: var(--gray-1);
        }
        .how-it-works .section-header h2 {
            color: var(--text-primary);
        }
        .how-it-works .section-header p {
            color: var(--text-secondary);
        }
        .steps-container {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            margin-top: 60px;
            position: relative;
            gap: 12px;
        }
        .step-card {
            flex: 1;
            text-align: center;
            position: relative;
            max-width: 220px;
        }
        .step-icon-area {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px;
            margin-bottom: 24px;
        }
        .step-bg-number {
            position: absolute;
            right: calc(50% - 25px);
            top: 50%;
            transform: translateY(-50%);
            font-size: 100px;
            font-weight: 900;
            opacity: 0.15;
            line-height: 1;
            color: rgba(var(--primary-rgb), 0.2);
            pointer-events: none;
            z-index: 0;
        }
        .step-icon-box {
            width: 88px;
            height: 88px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }
        .step-card:hover .step-icon-box {
            transform: rotate(-8deg) scale(1.05);
        }
        .step-card:nth-child(1) .step-icon-box {
            background: rgba(var(--primary-rgb), 0.1);
            color: var(--mid-accent);
        }
        .step-card:nth-child(3) .step-icon-box {
            background: rgba(0, 184, 148, 0.1);
            color: #00B894;
        }
        .step-card:nth-child(5) .step-icon-box {
            background: rgba(245, 158, 11, 0.1);
            color: #F59E0B;
        }
        .step-card:nth-child(7) .step-icon-box {
            background: rgba(241, 100, 63, 0.1);
            color: var(--primary);
        }
        .step-icon-box i, .step-icon-box svg {
            width: 36px;
            height: 36px;
        }
        .step-card h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-primary);
        }
        .step-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        .step-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 48px;
            height: 100px;
            margin-bottom: 24px;
            color: var(--gray-9);
        }
        .step-arrow i, .step-arrow svg {
            width: 32px;
            height: 32px;
        }
        /* Compliance Coverage */
        .coverage { padding: 100px 0; background: var(--gray-2); }
        .coverage .section-header h2 { color: var(--text-primary); }
        .coverage .section-header p { color: var(--text-secondary); }
        .coverage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .coverage-card { background: var(--bg-primary); padding: 32px 28px; border-radius: 16px; text-align: left; border: 1px solid var(--gray-4); box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.06); }
        .coverage-card .count { font-size: 48px; font-weight: 700; margin-bottom: 12px; color: var(--mid-accent); letter-spacing: -1px; }
        .coverage-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 20px; color: var(--text-primary); padding-bottom: 16px; border-bottom: 1px solid rgba(var(--primary-rgb), 0.08); }
        .coverage-card ul { list-style: none; text-align: left; font-size: 14px; }
        .coverage-card li { padding: 8px 0; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
        .coverage-card li::before { content: ''; width: 4px; height: 4px; background: var(--mid-accent); border-radius: 50%; flex-shrink: 0; }
        @media (max-width: 1199px) {
            .coverage-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .steps-container {
                flex-wrap: wrap;
                gap: 40px 20px;
                justify-content: center;
            }
            .step-card {
                flex: 0 0 calc(50% - 20px);
                max-width: none;
            }
            .step-arrow {
                display: none;
            }
        }
        @media (max-width: 809px) {
            .feature-hero .container {
                grid-template-columns: 1fr;
            }
            .feature-hero h1 {
                font-size: 32px;
            }
            .benefits-grid, .coverage-grid {
                grid-template-columns: 1fr;
            }
            .steps-container {
                flex-direction: column;
                align-items: center;
                gap: 32px;
            }
            .step-card {
                flex: none;
                width: 100%;
                max-width: 280px;
            }
        }

/* ========================================
   Extracted from: connected-banking.html
   ======================================== */
/* Light Mode Base */
        .feature-hero { padding: 160px 0 80px; background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%); position: relative; overflow: hidden; }
        .feature-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 60%); pointer-events: none; }
        .feature-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .feature-tag { display: inline-block; background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .feature-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; color: var(--text-primary); }
        .feature-hero p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }

        /* Feature visual - Light Mode */
        .feature-visual { background: var(--bg-primary); border-radius: 16px; box-shadow: 0 20px 40px -12px rgba(var(--primary-rgb), 0.12), 0 0 0 1px rgba(var(--primary-rgb), 0.08); overflow: hidden; border: 1px solid var(--gray-4); width: 100%; max-width: 440px; margin: 0 auto; }
        .demo-header { background: var(--gray-2); padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(var(--primary-rgb), 0.08); }
        .dashboard-dots { display: flex; gap: 6px; }
        .dashboard-dots span { width: 8px; height: 8px; border-radius: 50%; }
        .dashboard-dots span:nth-child(1) { background: #EF4444; }
        .dashboard-dots span:nth-child(2) { background: #F59E0B; }
        .dashboard-dots span:nth-child(3) { background: #10B981; }
        .demo-title { font-size: 12px; font-weight: 600; color: #6B6580; }
        .demo-body { padding: 14px; background: var(--bg-primary); }

        /* Bank accounts demo */
        .bank-accounts { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }
        .bank-account { background: var(--gray-2); border-radius: 10px; padding: 12px; border: 1px solid var(--gray-4); }
        .bank-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .bank-logo { width: 32px; height: 32px; background: rgba(var(--primary-rgb), 0.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 10px; color: var(--mid-accent); }
        .bank-info { flex: 1; }
        .bank-name { font-size: 12px; font-weight: 700; color: var(--text-primary); }
        .bank-number { font-size: 10px; color: var(--gray-9); }
        .bank-status { padding: 3px 8px; border-radius: 20px; font-size: 9px; font-weight: 600; background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .bank-balance { display: flex; justify-content: space-between; align-items: center; }
        .balance-label { font-size: 10px; color: var(--gray-9); }
        .balance-value { font-size: 15px; font-weight: 800; color: var(--text-primary); }

        /* Recent transactions */
        .recent-transactions { background: var(--gray-2); border-radius: 10px; padding: 12px; border: 1px solid var(--gray-4); }
        .transactions-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
        .transactions-title { font-size: 12px; font-weight: 700; color: var(--text-primary); }
        .reconcile-badge { padding: 3px 8px; border-radius: 20px; font-size: 9px; font-weight: 600; background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); }
        .transaction-list { display: flex; flex-direction: column; gap: 5px; }
        .transaction-item { display: flex; align-items: center; justify-content: space-between; padding: 6px 10px; background: var(--bg-primary); border-radius: 6px; }
        .transaction-item .desc { font-size: 11px; font-weight: 500; color: var(--text-primary); }
        .transaction-item .amount { font-size: 11px; font-weight: 700; }
        .transaction-item .amount.credit { color: #00B894; }
        .transaction-item .amount.debit { color: #EF4444; }
        .transaction-item .match-icon { width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .transaction-item .match-icon.matched { background: rgba(0, 184, 148, 0.1); color: #00B894; }
        .transaction-item .match-icon.unmatched { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }

        /* Widgets Section - Light Mode */
        .widgets-section { padding: 80px 0; background: var(--gray-2); position: relative; }
        .widgets-section::before { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%); pointer-events: none; }
        .widgets-section .section-tag { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .widgets-section .section-header h2 { color: var(--text-primary); }
        .widgets-section .section-header p { color: var(--text-secondary); }
        .widgets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
        .widget-card { padding: 32px; background: var(--bg-primary); border-radius: 12px; border: 1px solid var(--gray-4); transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .widget-card:hover { background: var(--gray-2); border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); }
        .widget-icon { width: 56px; height: 56px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; transition: all 0.3s ease; }
        .widget-card:nth-child(6n+1) .widget-icon { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); }
        .widget-card:nth-child(6n+2) .widget-icon { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .widget-card:nth-child(6n+3) .widget-icon { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
        .widget-card:nth-child(6n+4) .widget-icon { background: rgba(241, 100, 63, 0.08); color: var(--primary); }
        .widget-card:nth-child(6n+5) .widget-icon { background: rgba(236, 72, 153, 0.08); color: #EC4899; }
        .widget-card:nth-child(6n+6) .widget-icon { background: rgba(20, 184, 166, 0.08); color: #14B8A6; }
        .widget-card:hover .widget-icon { transform: rotate(-8deg) scale(1.05); }
        .widget-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
        .widget-card p { color: var(--text-secondary); line-height: 1.6; }

        /* Banks Section - Light Mode */
        .banks-section { padding: 100px 0; background: var(--gray-1); position: relative; overflow: hidden; }
        .banks-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%); pointer-events: none; }
        .banks-section .section-header { text-align: center; max-width: 650px; margin: 0 auto 70px; position: relative; z-index: 1; }
        .banks-section .section-tag { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .banks-section .section-header h2 { font-size: 44px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
        .banks-section .section-header p { color: var(--text-secondary); font-size: 18px; line-height: 1.7; }
        .banks-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; position: relative; z-index: 1; }
        .bank-card { background: var(--bg-primary); border-radius: 12px; padding: 24px 16px; text-align: center; border: 1px solid var(--gray-4); transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .bank-card:hover { border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); transform: translateY(-4px); }
        .bank-card-logo { width: 48px; height: 48px; background: rgba(var(--primary-rgb), 0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-weight: 800; font-size: 14px; color: var(--mid-accent); }
        .bank-card h5 { font-size: 13px; font-weight: 600; color: var(--text-primary); }

        /* Section header overrides for light mode */
        .section-header h2 { color: var(--text-primary); }
        .section-header p { color: var(--text-secondary); }
        .section-tag { background: rgba(var(--primary-rgb), 0.08); border-color: rgba(var(--primary-rgb), 0.15); }

        @media (max-width: 1199px) {
            .banks-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 809px) {
            .feature-hero .container { grid-template-columns: 1fr; }
            .feature-hero h1 { font-size: 32px; }
            .widgets-grid { grid-template-columns: 1fr; }
            .banks-grid { grid-template-columns: repeat(2, 1fr); }
        }

/* ========================================
   Extracted from: contact.html
   ======================================== */
/* Light mode page styles */

        /* Page hero light mode */
        .page-hero {
            position: relative;
            overflow: hidden;
            padding: 180px 0 80px;
            background: #fff;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 50%;
            height: 80%;
            background: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -5%;
            width: 40%;
            height: 70%;
            background: none;
        }
        .page-hero h1 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 48px;
            font-weight: 500;
            color: var(--text-primary);
        }
        .page-hero h1 span { color: var(--primary); }
        .page-hero p {
            font-size: 18px;
            line-height: 1.7;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
            color: var(--text-secondary);
        }
        .hero-badge {
            display: inline-block;
            color: var(--primary);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 6px 14px;
            border-radius: 4px;
            margin-bottom: 16px;
            background: none;
        }

        /* Contact Section — Monarch theme */
        .contact-section { padding: 100px 0; background: #f9f8f6; }
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

        .contact-info h2 { font-family: 'Bricolage Grotesque', serif; font-size: 36px; font-weight: 500; margin-bottom: 16px; color: #1a1a1a; }
        .contact-info > p { color: #6b6b6b; margin-bottom: 40px; font-size: 16px; line-height: 1.7; }
        .contact-methods { display: flex; flex-direction: column; gap: 28px; }
        .contact-method { display: flex; gap: 12px; align-items: flex-start; }
        .contact-icon {
            width: auto;
            height: auto;
            background: none;
            border-radius: 0;
            display: flex;
            flex-shrink: 0;
            color: var(--primary);
            padding-top: 2px;
        }
        .contact-method:nth-child(n) .contact-icon { background: none; color: var(--primary); }
        .contact-icon svg { width: 20px; height: 20px; }
        .contact-method h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; color: #1a1a1a; }
        .contact-method p { color: #6b6b6b; font-size: 14px; margin: 0; line-height: 1.6; }
        .contact-method a { color: var(--primary); text-decoration: none; font-weight: 500; }
        .contact-method a:hover { text-decoration: underline; }

        /* Contact Form — white card */
        .contact-form { background: #fff; padding: 40px; border-radius: 20px; box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04); border: none; }
        .contact-form h3 { font-family: 'Bricolage Grotesque', serif; font-size: 24px; font-weight: 500; margin-bottom: 24px; color: #1a1a1a; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; font-weight: 500; margin-bottom: 8px; font-size: 14px; color: var(--text-primary); }
        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #e0dbd5;
            border-radius: 12px;
            font-size: 16px;
            font-family: inherit;
            background: #f9f8f6;
            color: #1a1a1a;
            -webkit-appearance: none;
            appearance: none;
            transition: border-color 0.2s;
        }
        .form-group input::placeholder, .form-group textarea::placeholder { color: #999; }
        .form-group select {
            color: #4b5563;
            background: #f9f8f6 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 16px center;
            padding-right: 44px;
        }
        .form-group select option { background: #fff; color: #1a1a1a; }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.08);
        }
        .form-group textarea { resize: vertical; min-height: 120px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        .submit-btn { width: 100%; padding: 16px; background: var(--primary); color: #ffffff; border: none; border-radius: 100px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
        .submit-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }

        .form-success {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 400px;
        }
        .form-success-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: rgba(0, 184, 148, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: #00B894;
        }
        .form-success-icon svg { width: 36px; height: 36px; }
        .form-success h3 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 28px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        .form-success p {
            color: var(--text-secondary);
            font-size: 16px;
            max-width: 360px;
            line-height: 1.6;
        }

        

        @media (max-width: 809px) {
            .page-hero { padding: 120px 0 40px; }
            .page-hero h1 { font-size: 36px; }
            .contact-grid, .form-row { grid-template-columns: 1fr; }
            .contact-form { padding: 28px; }
            .contact-section,
        }

        @media (max-width: 480px) {
            .page-hero { padding: 100px 0 32px; }
            .page-hero h1 { font-size: 28px; }
            .contact-form { padding: 20px; }
            .contact-form h3 { font-size: 20px; }
            .contact-info h2 { font-size: 24px; }
        }

/* ========================================
   Extracted from: cookie-policy.html
   ======================================== */
/* Hero with ambient gradients */
        .page-hero {
            background: #fff;
            position: relative;
            overflow: hidden;
            padding: 180px 0 80px;
            text-align: center;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 50%;
            height: 80%;
            background: radial-gradient(ellipse at center, rgba(255, 140, 80, 0.04) 0%, transparent 70%); filter: blur(40px);
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -5%;
            width: 40%;
            height: 70%;
            background: radial-gradient(ellipse at center, rgba(255, 140, 80, 0.04) 0%, transparent 70%); filter: blur(40px);
            pointer-events: none;
        }
        .page-hero h1 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 48px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 16px;
        }
        .page-hero h1 span { color: var(--primary); }
        .page-hero p {
            color: var(--text-secondary);
            font-size: 18px;
            line-height: 1.7;
            max-width: 560px;
            margin: 0 auto;
        }
        .hero-badge {
            display: inline-block;
            color: var(--primary);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 6px 14px;
            border-radius: 4px;
            margin-bottom: 16px;
            background: none;
        }
        .legal-content {
            padding: 80px 0;
            background: var(--gray-1);
        }
        .legal-container {
            max-width: 800px;
            margin: 0 auto;
            background: #E8E4DE;
            border: none;
            border-radius: 24px;
            padding: 6px;
        }
        .legal-inner {
            background: white;
            border-radius: 18px;
            padding: 48px;
        }
        .legal-content h2 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 22px;
            font-weight: 600;
            margin: 40px 0 16px;
            color: var(--text-primary);
            padding: 12px 16px;
            background: rgba(var(--primary-rgb), 0.04);
            border-left: 4px solid var(--primary);
            border-radius: 0 10px 10px 0;
        }
        .legal-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 24px 0 12px;
            color: var(--text-primary);
        }
        .legal-content p {
            color: var(--text-secondary);
            margin-bottom: 16px;
            line-height: 1.8;
        }
        .legal-content ul {
            margin: 16px 0;
            padding-left: 24px;
            color: var(--text-secondary);
        }
        .legal-content li {
            margin-bottom: 8px;
            line-height: 1.7;
        }
        .legal-content strong {
            color: var(--text-primary);
        }
        .legal-content code {
            background: rgba(var(--primary-rgb), 0.06);
            color: var(--primary);
            padding: 2px 8px;
            border-radius: 6px;
            font-size: 13px;
        }
        .legal-content .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary);
            color: white;
            font-size: 13px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 100px;
            margin-bottom: 32px;
        }
        .legal-content a {
            color: var(--primary);
            text-decoration: none;
        }
        .legal-content a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        .legal-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--gray-4);
        }
        .legal-content th, .legal-content td {
            padding: 14px 18px;
            border: 1px solid var(--gray-4);
            text-align: left;
            font-size: 14px;
        }
        .legal-content th {
            background: var(--gray-2);
            font-weight: 600;
            color: var(--text-primary);
        }
        .legal-content td {
            color: var(--text-secondary);
        }
        .legal-content tr:nth-child(even) td {
            background: rgba(var(--primary-rgb), 0.02);
        }
        /* Cookie type badges */
        .cookie-type {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
        }
        .cookie-essential {
            background: rgba(0, 184, 148, 0.1);
            color: #00B894;
        }
        .cookie-functional {
            background: rgba(241, 100, 63, 0.1);
            color: var(--primary);
        }
        .cookie-analytics {
            background: rgba(245, 158, 11, 0.1);
            color: #D97706;
        }
        .cookie-marketing {
            background: rgba(236, 72, 153, 0.1);
            color: #DB2777;
        }
        

        @media (max-width: 809px) {
            .page-hero { padding: 120px 0 40px; }
            .page-hero h1 { font-size: 36px; }
            .legal-inner { padding: 28px; }
            .legal-content,
        }
        @media (max-width: 480px) {
            .page-hero { padding: 100px 0 32px; }
            .page-hero h1 { font-size: 28px; }
            .legal-inner { padding: 20px; }
            .legal-content { padding: 40px 0; }
            .legal-content h2 { font-size: 19px; padding: 10px 14px; }
        }

/* ========================================
   Extracted from: document-repository.html
   ======================================== */
.feature-hero { padding: 160px 0 80px; background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%); position: relative; overflow: hidden; }
        .feature-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .feature-tag { display: inline-block; background: rgba(var(--primary-rgb), 0.08) !important; color: var(--mid-accent) !important; padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(var(--primary-rgb), 0.15) !important; }
        .feature-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; color: var(--navy) !important; }
        .feature-hero p { font-size: 18px; color: #4B4563 !important; margin-bottom: 32px; }

        /* Hero Illustration wrapper */
        .hero-illustration-wrap {
            position: relative;
        }

        /* Gradient orb backgrounds */
        .gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(70px);
            opacity: 0.2;
            animation: orbFloat 12s ease-in-out infinite;
            pointer-events: none;
        }

        .gradient-orb-1 {
            width: 220px;
            height: 220px;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.3) 0%, rgba(var(--primary-rgb), 0.1) 100%);
            top: -80px;
            right: -40px;
        }

        .gradient-orb-2 {
            width: 180px;
            height: 180px;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2) 0%, rgba(241, 100, 63, 0.08) 100%);
            bottom: -60px;
            left: -40px;
            animation-delay: -4s;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(5px, -8px); }
        }

        /* Main dashboard card - light mode overrides */
        .feature-hero .dashboard-card,
        .dashboard-card {
            position: relative;
            z-index: 2;
            background: #FFFFFF !important;
            border-radius: 20px;
            box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.12), 0 0 0 1px rgba(var(--primary-rgb), 0.08) !important;
            overflow: hidden;
            border: 1px solid rgba(var(--primary-rgb), 0.1) !important;
        }

        .feature-hero .dashboard-header,
        .dashboard-header {
            padding: 16px 20px;
            background: var(--gray-2) !important;
            border-bottom: 1px solid rgba(var(--primary-rgb), 0.08) !important;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

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

        .dashboard-dots span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .feature-hero .dashboard-dots span:nth-child(1),
        .dashboard-dots span:nth-child(1) { background: #EF4444 !important; }
        .feature-hero .dashboard-dots span:nth-child(2),
        .dashboard-dots span:nth-child(2) { background: #F59E0B !important; }
        .feature-hero .dashboard-dots span:nth-child(3),
        .dashboard-dots span:nth-child(3) { background: #10B981 !important; }

        .feature-hero .dashboard-title,
        .dashboard-title {
            font-size: 13px;
            font-weight: 600;
            color: #6B6580 !important;
        }

        .feature-hero .dashboard-body,
        .dashboard-card .dashboard-body,
        .dashboard-body {
            padding: 24px;
            background: #FFFFFF !important;
        }

        /* Search bar */
        .search-bar-demo { display: flex; gap: 12px; margin-bottom: 20px; }
        .feature-hero .search-bar-demo input,
        .search-bar-demo input { flex: 1; padding: 12px 16px; border: 1px solid var(--gray-4) !important; border-radius: 8px; background: #FFFFFF !important; color: var(--navy) !important; font-size: 13px; }
        .search-bar-demo input::placeholder { color: #ABA5BC !important; }

        /* Folder grid */
        .folder-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
        .feature-hero .folder-item,
        .folder-item {
            background: var(--gray-2) !important;
            border-radius: 10px;
            padding: 14px 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
            border: 1px solid rgba(var(--primary-rgb), 0.08) !important;
        }
        .folder-item:hover {
            border-color: rgba(var(--primary-rgb), 0.25) !important;
            box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.1) !important;
        }
        .folder-item .icon { font-size: 28px; margin-bottom: 6px; color: var(--mid-accent) !important; }
        .folder-item .icon i, .folder-item .icon svg { width: 24px; height: 24px; }
        .folder-item span { font-size: 11px; font-weight: 600; color: var(--navy) !important; display: block; }
        .folder-item .count { font-size: 10px; color: #8B859C !important; margin-top: 2px; }

        .benefits-section { padding: 80px 0; background: #FFFFFF !important; }
        .benefits-section .section-header h2 { color: var(--navy) !important; }
        .benefits-section .section-header p { color: #4B4563 !important; }
        .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
        .benefit-card { padding: 32px; background: #FFFFFF !important; border-radius: 12px; border: 1px solid rgba(var(--primary-rgb), 0.08) !important; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .benefit-card:hover { box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); border-color: rgba(var(--primary-rgb), 0.2) !important; }
        .benefit-icon { width: 56px; height: 56px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; transition: all 0.3s ease; }
        .benefit-card:nth-child(6n+1) .benefit-icon { background: rgba(var(--primary-rgb), 0.1); color: var(--mid-accent); }
        .benefit-card:nth-child(6n+2) .benefit-icon { background: rgba(16,185,129,0.1); color: #10B981; }
        .benefit-card:nth-child(6n+3) .benefit-icon { background: rgba(249,115,22,0.1); color: #F59E0B; }
        .benefit-card:nth-child(6n+4) .benefit-icon { background: rgba(241,100,63,0.1); color: var(--primary); }
        .benefit-card:nth-child(6n+5) .benefit-icon { background: rgba(236,72,153,0.1); color: #EC4899; }
        .benefit-card:nth-child(6n+6) .benefit-icon { background: rgba(20,184,166,0.1); color: #14B8A6; }
        .benefit-card:hover .benefit-icon { transform: rotate(-8deg) scale(1.05); }
        .benefit-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--navy) !important; }
        .benefit-card p { color: #4B4563 !important; line-height: 1.6; }
        .categories-section { padding: 80px 0; background: var(--gray-2) !important; }
        .categories-section .section-header h2 { color: var(--navy) !important; }
        .categories-section .section-header p { color: #4B4563 !important; }
        .categories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 60px; max-width: 1000px; margin-left: auto; margin-right: auto; }
        .category-card {
            background: #FFFFFF !important;
            border-radius: 20px;
            padding: 0;
            text-align: left;
            border: 1px solid rgba(var(--primary-rgb), 0.08) !important;
            transition: all 0.3s ease;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03) !important;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 24px;
            overflow: hidden;
        }
        .category-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.1) !important;
            border-color: rgba(var(--primary-rgb), 0.2) !important;
        }
        .category-card .icon-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 32px;
            min-width: 120px;
        }
        .category-card .icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }
        .category-card:hover .icon {
            transform: scale(1.1);
        }
        .category-card .icon i, .category-card .icon svg { width: 28px; height: 28px; }
        .category-card .content { padding: 28px 28px 28px 0; }
        /* GST - Green */
        .category-card.gst-card .icon-wrapper { background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(16,185,129,0.04) 100%); }
        .category-card.gst-card .icon { background: #10B981; color: white; }
        .category-card.gst-card:hover { border-color: #10B981; }
        /* TDS - Primary */
        .category-card.tds-card .icon-wrapper { background: linear-gradient(135deg, rgba(241,100,63,0.1) 0%, rgba(241,100,63,0.04) 100%); }
        .category-card.tds-card .icon { background: var(--primary); color: white; }
        .category-card.tds-card:hover { border-color: var(--primary); }
        /* MCA - Purple */
        .category-card.mca-card .icon-wrapper { background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.04) 100%); }
        .category-card.mca-card .icon { background: var(--accent); color: white; }
        .category-card.mca-card:hover { border-color: var(--accent); }
        /* Labour - Orange */
        .category-card.labour-card .icon-wrapper { background: linear-gradient(135deg, rgba(245,158,11,0.1) 0%, rgba(245,158,11,0.04) 100%); }
        .category-card.labour-card .icon { background: #F59E0B; color: white; }
        .category-card.labour-card:hover { border-color: #F59E0B; }
        .category-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 4px; color: var(--navy) !important; }
        .category-card p { font-size: 13px; color: #6B6580 !important; margin-bottom: 12px; }
        .category-card ul { list-style: none; font-size: 13px; color: #4B4563 !important; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; }
        .category-card li { padding: 4px 0; display: flex; align-items: center; gap: 8px; }
        .category-card li::before { content: ''; display: none; }
        .category-card.gst-card li::before { content: ''; width: 6px; height: 6px; background: #10B981; border-radius: 50%; display: block; flex-shrink: 0; }
        .category-card.tds-card li::before { content: ''; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; display: block; flex-shrink: 0; }
        .category-card.mca-card li::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; display: block; flex-shrink: 0; }
        .category-card.labour-card li::before { content: ''; width: 6px; height: 6px; background: #F59E0B; border-radius: 50%; display: block; flex-shrink: 0; }
        .sharing-section { padding: 80px 0; background: #FFFFFF !important; }
        .sharing-section .section-header h2 { color: var(--navy) !important; }
        .sharing-section .section-header p { color: #4B4563 !important; }
        .sharing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; }
        .sharing-features { display: flex; flex-direction: column; gap: 24px; }
        .sharing-item { display: flex; gap: 16px; }
        .sharing-item .icon { width: 48px; height: 48px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; transition: all 0.3s ease; }
        .sharing-item:nth-child(6n+1) .icon { background: rgba(var(--primary-rgb), 0.1); color: var(--mid-accent); }
        .sharing-item:nth-child(6n+2) .icon { background: rgba(16,185,129,0.1); color: #10B981; }
        .sharing-item:nth-child(6n+3) .icon { background: rgba(249,115,22,0.1); color: #F59E0B; }
        .sharing-item:nth-child(6n+4) .icon { background: rgba(241,100,63,0.1); color: var(--primary); }
        .sharing-item:nth-child(6n+5) .icon { background: rgba(236,72,153,0.1); color: #EC4899; }
        .sharing-item:nth-child(6n+6) .icon { background: rgba(20,184,166,0.1); color: #14B8A6; }
        .sharing-item:hover .icon { transform: rotate(-8deg) scale(1.05); }
        .sharing-item h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--navy) !important; }
        .sharing-item p { font-size: 14px; color: #6B6580 !important; }
        /* Sharing illustration */
        .sharing-illustration-wrap {
            position: relative;
        }

        .sharing-illustration-wrap .gradient-orb-3 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.3) 0%, rgba(var(--primary-rgb), 0.1) 100%);
            top: -60px;
            left: -40px;
        }

        .sharing-illustration-wrap .gradient-orb-4 {
            width: 160px;
            height: 160px;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2) 0%, rgba(241, 100, 63, 0.08) 100%);
            bottom: -50px;
            right: -30px;
            animation-delay: -4s;
        }

        .sharing-section .share-card,
        .sharing-illustration-wrap .share-card {
            position: relative;
            z-index: 2;
            background: #FFFFFF !important;
            border-radius: 20px;
            box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.12), 0 0 0 1px rgba(var(--primary-rgb), 0.08) !important;
            overflow: hidden;
            border: 1px solid rgba(var(--primary-rgb), 0.1) !important;
        }

        .sharing-section .share-card .dashboard-header,
        .sharing-illustration-wrap .share-card .dashboard-header {
            background: var(--gray-2) !important;
            border-bottom: 1px solid rgba(var(--primary-rgb), 0.08) !important;
        }

        .sharing-section .share-card .dashboard-title {
            color: #6B6580 !important;
        }

        .sharing-section .share-card .dashboard-dots span:nth-child(1) { background: #EF4444 !important; }
        .sharing-section .share-card .dashboard-dots span:nth-child(2) { background: #F59E0B !important; }
        .sharing-section .share-card .dashboard-dots span:nth-child(3) { background: #10B981 !important; }

        .sharing-section .share-card-body,
        .sharing-illustration-wrap .share-card-body {
            padding: 24px;
            background: #FFFFFF !important;
        }

        .sharing-section .share-card-body h5,
        .share-modal h5 { font-size: 15px; font-weight: 700; margin: 0 0 16px 0; color: var(--navy) !important; }
        .share-input { display: flex; gap: 8px; margin-bottom: 16px; }
        .sharing-section .share-input input,
        .share-input input { flex: 1; padding: 10px 12px; border: 1px solid var(--gray-4) !important; border-radius: 8px; font-size: 13px; background: #FFFFFF !important; color: var(--navy) !important; }
        .share-input input::placeholder { color: #ABA5BC !important; }
        .sharing-section .share-input button,
        .share-input button { padding: 10px 16px; background: var(--mid-accent) !important; color: white !important; border: none !important; border-radius: 8px; font-weight: 600; font-size: 13px; cursor: pointer; transition: background 0.2s; }
        .share-input button:hover { background: var(--mid-accent) !important; }
        .shared-list { font-size: 13px; list-style: none; margin: 0; padding: 0; }
        .sharing-section .shared-list li,
        .shared-list li { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--gray-4) !important; color: var(--navy) !important; }
        .shared-list li:last-child { border-bottom: none; }
        .sharing-section .shared-list .role,
        .shared-list .role { font-size: 11px; color: var(--mid-accent) !important; background: rgba(var(--primary-rgb), 0.1) !important; padding: 3px 10px; border-radius: 20px; font-weight: 600; }

        @media (max-width: 1199px) { .categories-grid { grid-template-columns: 1fr; max-width: 500px; } }
        @media (max-width: 809px) {
            .feature-hero .container, .sharing-grid { grid-template-columns: 1fr; }
            .feature-hero h1 { font-size: 32px; }
            .benefits-grid, .categories-grid { grid-template-columns: 1fr; }
            .folder-grid { grid-template-columns: repeat(2, 1fr); }
            .gradient-orb { opacity: 0.15; }
        }

/* ========================================
   Extracted from: faq.html
   ======================================== */
/* Hero with ambient gradients */
        .page-hero {
            background: #fff;
            position: relative;
            overflow: hidden;
            padding: 180px 0 80px;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 50%;
            height: 80%;
            background: none;
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -5%;
            width: 40%;
            height: 70%;
            background: none;
            pointer-events: none;
        }
        .page-hero h1 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 48px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 16px;
        }
        .page-hero h1 span { color: var(--primary); }
        .page-hero p {
            color: var(--text-secondary);
            font-size: 18px;
            line-height: 1.7;
            max-width: 560px;
            margin: 0 auto;
        }
        .page-hero .hero-badge {
            display: inline-block;
            color: var(--primary);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 6px 14px;
            border-radius: 4px;
            margin-bottom: 16px;
            background: none;
        }

        /* FAQ Section — matches homepage m-faq */
        .faq-section-home {
            background: #f0ece7;
            padding: 100px 0;
        }
        .faq-section-home .section-header {
            text-align: center;
            max-width: 550px;
            margin: 0 auto 60px;
        }
        .faq-section-home .section-header h2 { font-size: 42px; font-weight: 600; color: #1a1a1a; margin-bottom: 0; }
        .faq-section-home .section-header p { font-size: 17px; color: #6b6b6b; }

        /* Category filter pills */
        .faq-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 48px;
        }
        .faq-cat-pill {
            padding: 10px 24px;
            border-radius: 100px;
            border: 1px solid #e0dbd5;
            background: transparent;
            color: #6b6b6b;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Hanken Grotesk', sans-serif;
        }
        .faq-cat-pill:hover {
            border-color: #1a1a1a;
            color: #1a1a1a;
        }
        .faq-cat-pill.active {
            background: #1a1a1a;
            color: white;
            border-color: #1a1a1a;
        }

        /* FAQ list — flat dividers, no card container */
        .faq-grid {
            max-width: 780px;
            margin: 0 auto;
            background: none;
            border-radius: 0;
            border: none;
            box-shadow: none;
            overflow: visible;
        }
        .faq-item-clean {
            border-bottom: 1px solid #e0dbd5;
        }
        .faq-item-clean:first-child { border-top: 1px solid #e0dbd5; }
        .faq-item-clean:last-child { border-bottom: 1px solid #e0dbd5; }

        .faq-question-clean {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0;
            cursor: pointer;
            gap: 16px;
        }
        .faq-question-clean span:first-child {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 18px;
            font-weight: 500;
            color: #1a1a1a;
        }

        .faq-answer-clean {
            display: none;
            padding-bottom: 24px;
            font-size: 15px;
            color: #6b6b6b;
            line-height: 1.7;
        }
        .faq-item-clean.active .faq-answer-clean { display: block; }

        .faq-icon {
            width: auto;
            height: auto;
            border-radius: 0;
            background: none;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: transform 0.3s;
            color: #6b6b6b;
        }
        .faq-item-clean.active .faq-icon { transform: rotate(180deg); }
        .faq-item-clean.active .faq-icon svg,
        .faq-item-clean.active .faq-icon i { color: #6b6b6b; width: 20px; height: 20px; }
        .faq-icon svg, .faq-icon i { color: #6b6b6b; width: 20px; height: 20px; }

        

        @media (max-width: 809px) {
            .page-hero { padding: 120px 0 40px; }
            .page-hero h1 { font-size: 36px; }
            .faq-section-home { padding: 60px 0; }
            .faq-question-clean { padding: 20px 0; }
            .faq-question-clean span:first-child { font-size: 16px; }
        }
        @media (max-width: 480px) {
            .page-hero { padding: 100px 0 32px; }
            .page-hero h1 { font-size: 28px; }
            .faq-section-home { padding: 40px 0; }
            .faq-categories { gap: 8px; }
            .faq-cat-pill { padding: 8px 16px; font-size: 13px; }
        }

/* ========================================
   Extracted from: fundraising-tools.html
   ======================================== */
/* Light mode styles for fundraising tools page */
        .feature-hero { padding: 160px 0 80px; background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%); position: relative; overflow: hidden; }
        .feature-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 60%); pointer-events: none; }
        .feature-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .feature-tag { display: inline-block; background: rgba(var(--primary-rgb), 0.08); color: var(--primary); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .feature-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; color: var(--text-primary); }
        .feature-hero p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }
        .feature-visual { background: var(--bg-primary); border-radius: 16px; box-shadow: 0 20px 40px -12px rgba(var(--primary-rgb), 0.12), 0 0 0 1px rgba(var(--primary-rgb), 0.08); overflow: hidden; border: 1px solid var(--gray-4); width: 100%; max-width: 440px; margin: 0 auto; }
        .demo-header { background: var(--gray-2); padding: 10px 14px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid rgba(var(--primary-rgb), 0.08); }
        .demo-dot { width: 8px; height: 8px; border-radius: 50%; }
        .demo-dot.red { background: #EF4444; }
        .demo-dot.yellow { background: #F59E0B; }
        .demo-dot.green { background: #10B981; }
        .demo-title { flex: 1; text-align: center; color: #6B6580; font-size: 12px; font-weight: 600; }
        .demo-body { padding: 12px; background: var(--bg-primary); }

        /* Readiness score bar */
        .readiness-bar { background: var(--gray-2); border-radius: 10px; padding: 12px; border: 1px solid var(--gray-4); margin-bottom: 8px; display: flex; align-items: center; gap: 12px; }
        .readiness-ring { width: 48px; height: 48px; border-radius: 50%; background: conic-gradient(#00B894 0deg 306deg, var(--gray-4) 306deg 360deg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .readiness-ring-inner { width: 36px; height: 36px; border-radius: 50%; background: var(--gray-2); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: #00B894; }
        .readiness-info { flex: 1; }
        .readiness-info .ri-title { font-size: 12px; font-weight: 700; color: var(--text-primary); }
        .readiness-info .ri-sub { font-size: 10px; color: var(--gray-9); }
        .readiness-actions { display: flex; gap: 6px; }
        .readiness-actions span { padding: 4px 10px; border-radius: 6px; font-size: 10px; font-weight: 600; }
        .readiness-actions .btn-gen { background: var(--primary); color: #fff; }
        .readiness-actions .btn-share { background: rgba(var(--primary-rgb), 0.08); color: var(--primary); }

        /* DD checklist */
        .dd-checklist { background: var(--gray-2); border-radius: 10px; padding: 12px; border: 1px solid var(--gray-4); margin-bottom: 8px; }
        .dd-checklist-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
        .dd-checklist-header h5 { font-size: 12px; font-weight: 700; color: var(--text-primary); }
        .dd-checklist-header .dd-count { font-size: 10px; color: var(--gray-9); }
        .dd-items { display: flex; flex-direction: column; gap: 4px; }
        .dd-item { display: flex; align-items: center; gap: 8px; padding: 6px 10px; background: var(--bg-primary); border-radius: 6px; }
        .dd-item .check { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; }
        .dd-item .check.done { background: #00B894; color: white; }
        .dd-item .check.pending { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
        .dd-item .dd-label { flex: 1; font-size: 11px; color: var(--text-primary); font-weight: 500; }
        .dd-item .dd-status { font-size: 9px; font-weight: 600; padding: 2px 6px; border-radius: 4px; }
        .dd-item .dd-status.complete { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .dd-item .dd-status.missing { background: rgba(239, 68, 68, 0.08); color: #EF4444; }
        .dd-item .dd-status.review { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }

        /* Data room panel */
        .data-room-panel { background: var(--gray-2); border-radius: 10px; padding: 12px; border: 1px solid var(--gray-4); margin-bottom: 8px; }
        .dr-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
        .dr-header h5 { font-size: 12px; font-weight: 700; color: var(--text-primary); }
        .dr-header .dr-badge { font-size: 9px; font-weight: 600; padding: 3px 8px; border-radius: 20px; background: rgba(241, 100, 63, 0.08); color: var(--primary); }
        .dr-activity { display: flex; flex-direction: column; gap: 4px; }
        .dr-row { display: flex; align-items: center; gap: 8px; padding: 5px 10px; background: var(--bg-primary); border-radius: 6px; }
        .dr-avatar { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: #fff; flex-shrink: 0; }
        .dr-avatar.a1 { background: var(--primary); }
        .dr-avatar.a2 { background: var(--primary); }
        .dr-avatar.a3 { background: #EC4899; }
        .dr-row .dr-text { flex: 1; font-size: 10px; color: var(--text-secondary); }
        .dr-row .dr-text strong { color: var(--text-primary); font-weight: 600; }
        .dr-row .dr-time { font-size: 9px; color: #ABA5BC; flex-shrink: 0; }

        /* Cap table mini */
        .cap-table-mini { background: var(--gray-2); border-radius: 10px; padding: 12px; border: 1px solid var(--gray-4); }
        .ct-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
        .ct-header h5 { font-size: 12px; font-weight: 700; color: var(--text-primary); }
        .ct-bar { display: flex; height: 8px; border-radius: 4px; overflow: hidden; margin-bottom: 6px; }
        .ct-bar .ct-seg { height: 100%; }
        .ct-bar .ct-seg.founders { background: var(--primary); flex: 62; }
        .ct-bar .ct-seg.investors { background: var(--primary); flex: 25; }
        .ct-bar .ct-seg.esop { background: #F59E0B; flex: 13; }
        .ct-legend { display: flex; gap: 12px; }
        .ct-legend-item { display: flex; align-items: center; gap: 4px; font-size: 10px; color: var(--text-secondary); }
        .ct-legend-item .ct-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
        .ct-legend-item .ct-dot.founders { background: var(--primary); }
        .ct-legend-item .ct-dot.investors { background: var(--primary); }
        .ct-legend-item .ct-dot.esop { background: #F59E0B; }

        /* Tools Section - Light Mode */
        .tools-section { padding: 80px 0; background: var(--gray-2); position: relative; }
        .tools-section::before { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%); pointer-events: none; }
        .tools-section .section-header h2 { color: var(--text-primary); }
        .tools-section .section-header p { color: var(--text-secondary); }
        .tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
        .tool-card { padding: 32px; background: var(--bg-primary); border-radius: 12px; border: 1px solid var(--gray-4); transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .tool-card:hover { background: var(--gray-2); border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); }
        .tool-icon { width: 56px; height: 56px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; transition: all 0.3s ease; }
        .tool-card:nth-child(6n+1) .tool-icon { background: rgba(var(--primary-rgb), 0.08); color: var(--primary); }
        .tool-card:nth-child(6n+2) .tool-icon { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .tool-card:nth-child(6n+3) .tool-icon { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
        .tool-card:nth-child(6n+4) .tool-icon { background: rgba(241, 100, 63, 0.08); color: var(--primary); }
        .tool-card:nth-child(6n+5) .tool-icon { background: rgba(236, 72, 153, 0.08); color: #EC4899; }
        .tool-card:nth-child(6n+6) .tool-icon { background: rgba(20, 184, 166, 0.08); color: #14B8A6; }
        .tool-card:hover .tool-icon { transform: rotate(-8deg) scale(1.05); }
        .tool-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
        .tool-card p { color: var(--text-secondary); margin-bottom: 16px; }
        .tool-card ul { list-style: none; font-size: 14px; }
        .tool-card li { padding: 4px 0; color: var(--gray-9); }
        .tool-card li::before { content: '✓'; color: #00B894; margin-right: 8px; }

        /* Investors Section - Light Mode */
        .investors-section { padding: 80px 0; background: var(--gray-1); position: relative; overflow: hidden; }
        .investors-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%); pointer-events: none; }
        .investors-section .section-tag { background: rgba(var(--primary-rgb), 0.08); color: var(--primary); border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .investors-section h2 { color: var(--text-primary); }
        .investors-section p { color: var(--text-secondary); }
        .investors-content { max-width: 800px; margin: 0 auto; text-align: center; }
        .investor-logos { display: flex; justify-content: center; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
        .investor-logo { width: 120px; height: 60px; background: var(--bg-primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gray-9); border: 1px solid var(--gray-4); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03); }

        @media (max-width: 809px) {
            .feature-hero .container { grid-template-columns: 1fr; }
            .feature-hero h1 { font-size: 32px; }
            .tools-grid { grid-template-columns: 1fr; }
        }

/* ========================================
   Extracted from: glossary.html
   ======================================== */
/* Hero with ambient gradients */
        .page-hero {
            background: #fff;
            position: relative;
            overflow: hidden;
            padding: 180px 0 80px;
            text-align: center;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 50%;
            height: 80%;
            background: none;
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -5%;
            width: 40%;
            height: 70%;
            background: none;
            pointer-events: none;
        }
        .page-hero h1 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 48px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 16px;
        }
        .page-hero h1 span { color: var(--primary); }
        .page-hero p {
            color: var(--text-secondary);
            font-size: 18px;
            line-height: 1.7;
            max-width: 560px;
            margin: 0 auto;
        }
        .hero-badge {
            display: inline-block;
            color: var(--primary);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 6px 14px;
            border-radius: 4px;
            margin-bottom: 16px;
            background: none;
        }

        /* Search Bar */
        .glossary-search {
            max-width: 560px;
            margin: 32px auto 0;
            position: relative;
        }

        .glossary-search input {
            width: 100%;
            padding: 16px 20px 16px 52px;
            font-family: 'Hanken Grotesk', sans-serif;
            font-size: 16px;
            border: 1px solid var(--gray-4);
            border-radius: 100px;
            background: var(--bg-primary);
            color: var(--text-primary);
            outline: none;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .glossary-search input::placeholder {
            color: var(--gray-9);
        }

        .glossary-search input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
        }

        .glossary-search .search-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-9);
            pointer-events: none;
        }

        .glossary-search .search-icon svg,
        .glossary-search .search-icon i {
            width: 20px;
            height: 20px;
        }

        /* Alphabet Nav */
        .glossary-alpha-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 6px;
            max-width: 680px;
            margin: 28px auto 0;
        }

        .glossary-alpha-nav a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 100px;
            font-family: 'Bricolage Grotesque', sans-serif;
            font-weight: 600;
            font-size: 14px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .glossary-alpha-nav a:hover {
            background: var(--primary);
            color: #FFFFFF;
        }

        .glossary-alpha-nav a.active {
            background: var(--primary);
            color: #FFFFFF;
        }

        .glossary-alpha-nav a.disabled {
            color: var(--gray-4);
            cursor: default;
            pointer-events: none;
        }

        /* Glossary Grid Section */
        .glossary-grid-section {
            background: var(--gray-1);
            padding: 80px 0;
        }

        .glossary-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 48px 40px;
        }

        .glossary-column {
            min-width: 0;
        }

        .glossary-column-letter {
            font-family: 'Bricolage Grotesque', sans-serif;
            font-size: 48px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 20px;
            line-height: 1;
            scroll-margin-top: 120px;
        }

        .glossary-column-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .glossary-column-list a {
            display: block;
            padding: 10px 0;
            font-family: 'Hanken Grotesk', sans-serif;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-secondary);
            text-decoration: none;
            border-bottom: 1px solid var(--gray-4);
            transition: color 0.2s ease;
        }

        .glossary-column-list a:hover {
            color: var(--primary);
        }

        .glossary-column-list li:last-child a {
            border-bottom: none;
        }

        /* No results */
        .glossary-no-results {
            display: none;
            text-align: center;
            padding: 60px 20px;
            grid-column: 1 / -1;
        }

        .glossary-no-results p {
            font-family: 'Hanken Grotesk', sans-serif;
            font-size: 18px;
            color: var(--gray-9);
        }

        

        /* Responsive */
        @media (max-width: 1199px) {
            .glossary-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 32px;
            }
        }

        @media (max-width: 809px) {
            .page-hero { padding: 120px 0 40px; }
            .page-hero h1 { font-size: 36px; }
            .glossary-grid { grid-template-columns: 1fr; }
            .glossary-grid-section,

            .glossary-column-letter {
                font-size: 36px;
            }

            .glossary-alpha-nav {
                gap: 4px;
            }

            .glossary-alpha-nav a {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }

            .glossary-search input {
                font-size: 15px;
                padding: 14px 16px 14px 46px;
            }
        }
        @media (max-width: 480px) {
            .page-hero { padding: 100px 0 32px; }
            .page-hero h1 { font-size: 28px; }
            .glossary-grid-section { padding: 40px 0; }
            .glossary-alpha-nav { gap: 3px; }
            .glossary-alpha-nav a { width: 28px; height: 28px; font-size: 11px; }
            .glossary-column-letter { font-size: 28px; }
            .glossary-search input { font-size: 14px; padding: 12px 14px 12px 42px; }
        }

/* ========================================
   Extracted from: gst-reconciliation.html
   ======================================== */
/* Light Mode Base */
        .feature-hero { padding: 160px 0 80px; background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%); position: relative; overflow: hidden; }
        .feature-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 60%); pointer-events: none; }
        .feature-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .feature-tag { display: inline-block; background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .feature-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; color: var(--text-primary); }
        .feature-hero p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }

        /* Feature visual - Light Mode */
        .feature-visual { background: var(--bg-primary); border-radius: 16px; box-shadow: 0 20px 40px -12px rgba(var(--primary-rgb), 0.12), 0 0 0 1px rgba(var(--primary-rgb), 0.08); overflow: hidden; border: 1px solid var(--gray-4); width: 100%; max-width: 440px; margin: 0 auto; }
        .demo-header { background: var(--gray-2); padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(var(--primary-rgb), 0.08); }
        .dashboard-dots { display: flex; gap: 6px; }
        .dashboard-dots span { width: 8px; height: 8px; border-radius: 50%; }
        .dashboard-dots span:nth-child(1) { background: #EF4444; }
        .dashboard-dots span:nth-child(2) { background: #F59E0B; }
        .dashboard-dots span:nth-child(3) { background: #10B981; }
        .demo-title { font-size: 12px; font-weight: 600; color: #6B6580; }
        .demo-body { padding: 12px; background: var(--bg-primary); }

        /* GST sync status */
        .gst-sync-status { background: var(--gray-2); border-radius: 10px; padding: 12px; border: 1px solid var(--gray-4); margin-bottom: 8px; }
        .sync-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
        .sync-title { font-size: 12px; font-weight: 700; color: var(--text-primary); }
        .sync-badge { padding: 3px 8px; border-radius: 20px; font-size: 9px; font-weight: 600; background: rgba(0, 184, 148, 0.08); color: #00B894; display: flex; align-items: center; gap: 4px; }
        .sync-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
        .sync-item { background: var(--bg-primary); border-radius: 6px; padding: 8px; text-align: center; }
        .sync-item .label { font-size: 10px; color: var(--gray-9); margin-bottom: 2px; }
        .sync-item .value { font-size: 14px; font-weight: 700; color: var(--text-primary); }
        .sync-item .sub { font-size: 9px; color: var(--gray-9); margin-top: 1px; }

        /* Match summary */
        .match-summary { background: var(--gray-2); border-radius: 10px; padding: 12px; border: 1px solid var(--gray-4); margin-bottom: 8px; }
        .match-title { font-size: 12px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
        .match-bars { display: flex; flex-direction: column; gap: 6px; }
        .match-bar { display: flex; align-items: center; gap: 8px; }
        .match-bar .bar-label { font-size: 11px; color: var(--text-secondary); width: 70px; }
        .match-bar .bar-track { flex: 1; height: 6px; background: var(--gray-4); border-radius: 3px; overflow: hidden; }
        .match-bar .bar-fill { height: 100%; border-radius: 3px; }
        .match-bar .bar-fill.matched { background: #00B894; }
        .match-bar .bar-fill.mismatch { background: #F59E0B; }
        .match-bar .bar-fill.missing { background: #EF4444; }
        .match-bar .bar-value { font-size: 11px; font-weight: 600; color: var(--text-primary); width: 32px; text-align: right; }

        /* ITC summary */
        .itc-summary { background: var(--gray-2); border-radius: 10px; padding: 12px; border: 1px solid var(--gray-4); }
        .itc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
        .itc-title { font-size: 12px; font-weight: 700; color: var(--text-primary); }
        .itc-items { display: flex; flex-direction: column; gap: 4px; }
        .itc-item { display: flex; justify-content: space-between; align-items: center; padding: 6px 10px; background: var(--bg-primary); border-radius: 6px; }
        .itc-item .label { font-size: 11px; color: var(--text-secondary); }
        .itc-item .value { font-size: 12px; font-weight: 700; }
        .itc-item .value.claimable { color: #00B894; }
        .itc-item .value.blocked { color: #EF4444; }
        .itc-item .value.pending { color: #F59E0B; }

        /* Widgets Section - Light Mode */
        .widgets-section { padding: 80px 0; background: var(--gray-2); position: relative; }
        .widgets-section::before { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%); pointer-events: none; }
        .widgets-section .section-tag { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .widgets-section .section-header h2 { color: var(--text-primary); }
        .widgets-section .section-header p { color: var(--text-secondary); }
        .widgets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
        .widget-card { padding: 32px; background: var(--bg-primary); border-radius: 12px; border: 1px solid var(--gray-4); transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .widget-card:hover { background: var(--gray-2); border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); }
        .widget-icon { width: 56px; height: 56px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; transition: all 0.3s ease; }
        .widget-card:nth-child(6n+1) .widget-icon { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); }
        .widget-card:nth-child(6n+2) .widget-icon { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .widget-card:nth-child(6n+3) .widget-icon { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
        .widget-card:nth-child(6n+4) .widget-icon { background: rgba(241, 100, 63, 0.08); color: var(--primary); }
        .widget-card:nth-child(6n+5) .widget-icon { background: rgba(236, 72, 153, 0.08); color: #EC4899; }
        .widget-card:nth-child(6n+6) .widget-icon { background: rgba(20, 184, 166, 0.08); color: #14B8A6; }
        .widget-card:hover .widget-icon { transform: rotate(-8deg) scale(1.05); }
        .widget-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
        .widget-card p { color: var(--text-secondary); line-height: 1.6; }

        /* Timeline Section - Light Mode */
        .timeline-section { padding: 100px 0; background: var(--gray-1); position: relative; overflow: hidden; }
        .timeline-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%); pointer-events: none; }
        .timeline-section .section-header { text-align: center; max-width: 650px; margin: 0 auto 70px; position: relative; z-index: 1; }
        .timeline-section .section-tag { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .timeline-section .section-header h2 { font-size: 44px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
        .timeline-section .section-header p { color: var(--text-secondary); font-size: 18px; line-height: 1.7; }
        .timeline-visual { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
        .timeline-step { background: var(--bg-primary); border-radius: 16px; padding: 24px 20px; text-align: center; border: 1px solid var(--gray-4); box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); min-width: 140px; }
        .timeline-step .step-number { width: 36px; height: 36px; background: rgba(var(--primary-rgb), 0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--mid-accent); font-weight: 700; font-size: 14px; }
        .timeline-step h4 { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
        .timeline-step p { font-size: 11px; color: var(--gray-9); }
        .timeline-arrow { color: var(--mid-accent); flex-shrink: 0; }

        /* Section header overrides for light mode */
        .section-header h2 { color: var(--text-primary); }
        .section-header p { color: var(--text-secondary); }
        .section-tag { background: rgba(var(--primary-rgb), 0.08); border-color: rgba(var(--primary-rgb), 0.15); }

        @media (max-width: 809px) {
            .feature-hero .container { grid-template-columns: 1fr; }
            .feature-hero h1 { font-size: 32px; }
            .widgets-grid { grid-template-columns: 1fr; }
            .sync-items { grid-template-columns: 1fr; }
            .timeline-visual { flex-direction: column; }
            .timeline-arrow { transform: rotate(90deg); }
        }

/* ========================================
   Extracted from: index.html
   ======================================== */
/* ========================================
           Homepage-Specific Monarch Overrides
           Base monarch styles loaded from monarch.css
           ======================================== */

        .m-h3 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 24px;
            font-weight: 500;
            color: #1a1a1a;
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .m-body-sm {
            font-family: 'Hanken Grotesk', sans-serif;
            font-size: 15px;
            color: #6b6b6b;
            line-height: 1.7;
        }

        /* ========================================
           Section 1: Hero
           ======================================== */
        .m-hero-wrapper {
            display: flex;
            flex-direction: column;
        }

        .m-hero-wrapper .m-hero {
            background: #fff;
            flex: 1;
        }

        .m-hero-wrapper .m-hero::after {
            content: '';
            position: absolute;
            top: 10%;
            right: 5%;
            width: 30%;
            height: 60%;
            background: radial-gradient(
                ellipse at center,
                rgba(255, 140, 80, 0.04) 0%,
                transparent 70%
            );
            filter: blur(60px);
            pointer-events: none;
        }

        .m-hero-wrapper .m-hero .container {
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .m-hero-wrapper .m-hero-content {
            max-width: 100%;
        }

        .m-hero-wrapper .m-hero-content h1 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 54px;
            font-weight: 500;
            color: #1a1a1a;
            line-height: 1.12;
            margin-bottom: 24px;
        }

        .m-hero-wrapper .m-hero-content h1 span {
            color: #f1643f;
        }

        .m-hero-wrapper .m-hero-content p {
            font-size: 18px;
            color: #6b6b6b;
            line-height: 1.7;
            margin-bottom: 36px;
            max-width: 520px;
        }

        .m-hero-form {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 0;
        }

        .m-hero-form input {
            padding: 16px 24px;
            font-size: 16px;
            border: 1px solid #e0dbd5;
            border-radius: 100px;
            width: 100%;
            max-width: 320px;
            outline: none;
            transition: border-color 0.2s;
        }

        .m-hero-form input:focus {
            border-color: var(--primary);
        }

        .m-hero-form input::placeholder {
            color: #999;
        }

        .m-hero-form .m-btn-primary {
            white-space: nowrap;
            flex-shrink: 0;
        }

        .m-hero-action-row {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .m-hero-note {
            font-size: 11px !important;
            color: #999 !important;
            margin: 0 !important;
            padding: 0 !important;
            line-height: 1.4;
        }

        .m-hero-wrapper .m-hero-visual {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 12px;
            padding: 0;
            max-width: 560px;
            align-self: center;
        }

        /* ---- 3 beige card-stacks in grid layout ---- */
        .hc {
            background: #E8E4DE;
            border-radius: 24px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 100%;
        }

        .hc-item {
            background: #fff;
            border-radius: 14px;
            padding: 16px 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }

        .hc-title {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 14px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .hc-sub {
            font-size: 12px;
            color: #999;
            margin-top: 2px;
        }

        .hc-val {
            font-family: 'Bricolage Grotesque', serif;
            font-weight: 700;
            color: #1a1a1a;
        }

        .hc-badge {
            font-size: 12px;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: 100px;
            background: rgba(107,114,128,0.08);
            color: #4B5563;
            white-space: nowrap;
        }

        .hc-badge.brand { background: rgba(241,100,63,0.08); color: #f1643f; }
        .hc-badge.green { background: rgba(0,184,148,0.08); color: #00B894; }

        .hc-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }

        .hc-label {
            font-size: 12px;
            color: #999;
            margin-bottom: 4px;
        }

        /* Card 1: left, spans both rows */
        .hc--compliance {
            grid-column: 1;
            grid-row: 1 / 3;
        }

        .hc-score-row {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .hc-score-row svg {
            width: 56px;
            height: 56px;
            flex-shrink: 0;
        }

        .hc-score-text {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 26px;
            font-weight: 700;
            color: #1a1a1a;
        }

        .hc-score-sub {
            font-size: 12px;
            color: #999;
            margin-top: 2px;
        }

        .hc-dots {
            display: flex;
            gap: 16px;
            font-size: 12px;
            margin-top: 12px;
        }

        .hc-dot-item {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #1a1a1a;
            font-weight: 500;
        }

        .hc-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
        }

        /* Card 2: top-right */
        .hc--ap {
            grid-column: 2;
            grid-row: 1;
        }

        .hc-bars {
            display: flex;
            align-items: flex-end;
            gap: 5px;
            height: 44px;
        }

        .hc-bar {
            flex: 1;
            border-radius: 3px 3px 0 0;
            background: rgba(241,100,63,0.15);
            min-width: 0;
        }

        .hc-bar.active { background: #f1643f; }

        .hc-bar-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 4px;
            font-size: 9px;
            color: #bbb;
        }

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

        .hc-mini-stat {
            text-align: center;
        }

        .hc-mini-val {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1;
        }

        .hc-mini-val.brand { color: #f1643f; }
        .hc-mini-val.green { color: #00B894; }

        .hc-mini-label {
            font-size: 11px;
            color: #999;
            margin-top: 3px;
        }

        /* Card 3: bottom-right */
        .hc--vendor {
            grid-column: 2;
            grid-row: 2;
        }

        .hc-vendor-row {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hc-vendor-avatar {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: #E8E4DE;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Bricolage Grotesque', serif;
            font-size: 11px;
            font-weight: 700;
            color: #666;
            flex-shrink: 0;
        }

        .hc-vendor-info { flex: 1; min-width: 0; }
        .hc-vendor-name { font-size: 13px; font-weight: 600; color: #1a1a1a; }
        .hc-vendor-sub { font-size: 10px; color: #999; margin-top: 1px; }

        .hc-vendor-amt {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 14px;
            font-weight: 700;
            color: #1a1a1a;
            flex-shrink: 0;
        }


        /* ========================================
           Section 2: Social Proof Bar
           ======================================== */
        .m-proof {
            background: #f0ece7;
            padding: 36px 0;
        }

        .m-proof .container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 80px;
        }

        /* Logo Ribbon — Trusted Section */
        .m-logo-ribbon {
            background: #fff;
            padding: 0 0 32px;
            margin-top: -80px;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .m-logo-ribbon-tag {
            display: inline-block;
            background: #fff;
            color: #1a1a1a;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 6px 14px;
            border-radius: 4px;
            margin-bottom: 16px;
        }

        .m-logo-ribbon-heading {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 36px;
            font-weight: 500;
            color: #fff;
            margin-bottom: 48px;
            line-height: 1.2;
        }

        .m-logo-ribbon-label {
            font-size: 13px;
            font-weight: 500;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
            display: block;
        }

        .m-logo-track-wrapper {
            width: 100%;
            overflow: hidden;
            -webkit-mask-image: linear-gradient(90deg, transparent 15%, #000 35%, #000 65%, transparent 85%);
            mask-image: linear-gradient(90deg, transparent 15%, #000 35%, #000 65%, transparent 85%);
        }

        .m-logo-track {
            display: flex;
            width: max-content;
            animation: logo-scroll 25s linear infinite;
        }


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

        .m-logo-set {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .m-logo-item {
            display: flex;
            align-items: center;
            padding: 0 32px;
            border-right: 1px solid rgba(0,0,0,0.12);
            font-family: 'Bricolage Grotesque', serif;
            font-size: 18px;
            font-weight: 600;
            color: #4b5563;
            white-space: nowrap;
        }

        .m-logo-item:last-child {
            border-right: none;
        }

        /* ========================================
           Section 3: Showcase
           ======================================== */
        .m-showcase {
            padding: 100px 0;
            text-align: center;
        }

        .m-showcase-header {
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .m-showcase-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 960px;
            margin: 0 auto;
        }

        .m-showcase-stat {
            background: #ffffff;
            border: 1px solid var(--gray-4);
            border-radius: 16px;
            padding: 32px 20px;
            text-align: center;
            transition: border-color 0.2s ease;
        }

        .m-showcase-stat:hover {
            border-color: var(--primary);
        }

        .m-showcase-stat-icon {
            width: 48px;
            height: 48px;
            background: rgba(var(--primary-rgb), 0.08);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            color: var(--primary);
        }

        .m-showcase-stat-icon i {
            width: 24px;
            height: 24px;
        }

        .m-showcase-stat-value {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 32px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 4px;
        }

        .m-showcase-stat-label {
            font-size: 14px;
            color: #6b6b6b;
        }

        /* ========================================
           Global: 1440px container for home2
           ======================================== */
        .container {
            max-width: 1200px;
        }

        /* ========================================
           Section 4: Feature Bento (Interactive)
           ======================================== */
        .m-features {
            padding: 80px 0;
            background: #f7f3ee;
        }

        .m-features-top {
            margin-bottom: 48px;
        }

        .m-features-inner {
            background: #eae5df;
            border-radius: 28px;
            padding: 64px 60px 72px;
        }

        .m-features-header {
            text-align: center;
            max-width: none;
            margin: 0 auto;
        }

        .m-features-header .m-h2 {
            max-width: 900px;
            margin: 0 auto 12px;
        }

        .m-features-header .m-body {
            max-width: 650px;
            margin: 0 auto;
        }

        /* Mobile header inside bento (hidden on desktop) */
        .m-features-mobile-header {
            display: none;
        }

        /* Bento layout: cards left/right, illustration center */
        .m-features-bento {
            display: grid;
            grid-template-columns: 1fr 280px 1fr;
            grid-template-rows: auto auto;
            gap: 20px 48px;
            align-items: center;
        }

        /* Cards */
        .m-fcard {
            padding: 32px 28px;
            border-radius: 16px;
            transition: background 0.35s ease, box-shadow 0.35s ease;
            cursor: pointer;
        }

        .m-fcard.active {
            background: #fff;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            border: 1px solid transparent;
        }

        .m-fcard:not(.active) {
            background: transparent;
            border: 1px solid #d5d0c9;
        }

        .m-fcard:not(.active):hover {
            background: rgba(255,255,255,0.35);
        }

        /* Mobile-only illustrations - hidden on desktop */
        .m-feature-illustration {
            display: none;
        }

        .m-fcard-tag {
            color: var(--primary);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
            display: block;
        }

        .m-fcard h3 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 20px;
            font-weight: 500;
            color: #1a1a1a;
            line-height: 1.3;
            margin-bottom: 10px;
        }

        .m-fcard p {
            font-size: 14px;
            color: #6b6b6b;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .m-fcard-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 22px;
            background: var(--primary);
            color: #fff;
            border-radius: 24px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            opacity: 0.65;
            transition: opacity 0.25s, background 0.25s;
        }

        /* Active card → button uses brand color */
        .m-fcard.active .m-fcard-btn {
            opacity: 1;
            background: #f1643f;
        }

        /* Card hover → button becomes full active color */
        .m-fcard:hover .m-fcard-btn {
            opacity: 1;
        }

        /* Button hover → salmon-dark background */
        .m-fcard-btn:hover {
            opacity: 1;
            background: #f1643f;
        }

        /* Grid placement */
        .m-fcard-tl { grid-column: 1; grid-row: 1; }
        .m-fcard-bl { grid-column: 1; grid-row: 2; }
        .m-fcard-tr { grid-column: 3; grid-row: 1; }
        .m-fcard-br { grid-column: 3; grid-row: 2; }

        /* Center floating illustration */
        .m-mockup-wrapper {
            grid-column: 2;
            grid-row: 1 / 3;
            display: flex;
            justify-content: center;
            align-items: center;
            align-self: center;
            padding: 20px 0;
        }

        .m-mockup {
            width: 100%;
            position: relative;
        }

        /* All 4 floating illustration panels */
        .m-float-panel {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
            opacity: 0;
            transform: translateY(10px) scale(0.97);
            transition: opacity 0.4s ease, transform 0.4s ease;
            pointer-events: none;
        }

        .m-float-panel.active {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
            position: relative;
        }

        /* Floating UI cards — staggered reveal */
        .m-fui-card {
            background: #fff;
            border-radius: 14px;
            padding: 16px 18px;
            box-shadow: 0 6px 24px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
            opacity: 0;
            transform: translateY(16px);
            transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
        }

        .m-float-panel.active .m-fui-card.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .m-fui-card:hover {
            box-shadow: 0 8px 28px rgba(0,0,0,0.09), 0 0 0 1px rgba(0,0,0,0.04);
        }

        .m-fui-card-sm {
            padding: 12px 16px;
        }

        .m-fui-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .m-fui-label {
            font-size: 11px;
            color: #999;
            font-weight: 500;
        }

        .m-fui-title {
            font-size: 14px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .m-fui-sub {
            font-size: 11px;
            color: #999;
        }

        .m-fui-value {
            font-size: 14px;
            font-weight: 700;
            color: #1a1a1a;
        }

        .m-fui-value-sm {
            font-size: 12px;
            font-weight: 600;
        }

        .m-fui-badge {
            font-size: 10px;
            font-weight: 600;
            padding: 3px 9px;
            border-radius: 4px;
            display: inline-block;
        }

        .m-fui-badge-green { background: rgba(16,185,129,0.1); color: #10B981; }
        .m-fui-badge-orange { background: rgba(245,158,11,0.1); color: #F59E0B; }
        .m-fui-badge-blue { background: rgba(var(--primary-rgb),0.1); color: var(--primary); }

        .m-fui-divider {
            height: 1px;
            background: #f0ece7;
            margin: 8px 0;
        }

        /* Progress bar */
        .m-fui-progress {
            height: 6px;
            background: #f0ece7;
            border-radius: 3px;
            overflow: hidden;
            margin-top: 6px;
        }

        .m-fui-progress-fill {
            height: 100%;
            border-radius: 3px;
            transform-origin: left;
            transform: scaleX(0);
            transition: transform 4s ease-out;
        }
        .m-fui-progress-fill.animate {
            transform: scaleX(1);
        }

        /* Tags row */
        .m-fui-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 8px;
        }

        .m-fui-tag {
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 12px;
            background: #f5f2ee;
            color: #4a4a4a;
        }

        /* ---- Payables: Stripe-bordered invoice list ---- */
        .m-fui-stripe {
            border-left: 3px solid #e0dbd5;
            padding-left: 14px;
        }
        .m-fui-stripe-green { border-left-color: #10B981; }
        .m-fui-stripe-orange { border-left-color: #F59E0B; }
        .m-fui-stripe-blue { border-left-color: var(--primary); }

        /* ---- Tax: Circular progress ring ---- */
        .m-fui-ring-wrap {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .m-fui-ring {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: conic-gradient(var(--primary) 0deg 0deg, #f0ece7 0deg 360deg);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-shrink: 0;
        }
        .m-fui-ring::after {
            content: '';
            position: absolute;
            inset: 9px;
            border-radius: 50%;
            background: #fff;
        }
        .m-fui-ring-value {
            position: relative;
            z-index: 1;
            font-size: 16px;
            font-weight: 700;
            color: #1a1a1a;
        }
        .m-fui-ring-label {
            font-size: 13px;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.4;
        }
        .m-fui-ring-sub {
            font-size: 11px;
            color: #999;
        }
        .m-fui-stat-row {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }
        .m-fui-stat-box {
            flex: 1;
            background: #f9f7f4;
            border-radius: 10px;
            padding: 10px 12px;
            text-align: center;
        }
        .m-fui-stat-box .m-fui-value {
            font-size: 16px;
            display: block;
        }
        .m-fui-stat-box .m-fui-label {
            font-size: 10px;
            display: block;
            margin-top: 2px;
        }

        /* ---- Compliance: Calendar grid ---- */
        .m-fui-cal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        .m-fui-cal-title {
            font-size: 13px;
            font-weight: 600;
            color: #1a1a1a;
        }
        .m-fui-cal-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 3px;
            text-align: center;
        }
        .m-fui-cal-label {
            font-size: 9px;
            font-weight: 600;
            color: #bbb;
            padding: 2px 0 4px;
        }
        .m-fui-cal-day {
            font-size: 10px;
            padding: 5px 2px;
            border-radius: 6px;
            color: #6b6b6b;
        }
        @keyframes m-cal-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
        .m-float-panel.active .m-fui-cal-day.today,
        .m-float-panel.active .m-fui-cal-day.deadline-salmon,
        .m-float-panel.active .m-fui-cal-day.deadline-green,
        .m-float-panel.active .m-fui-cal-day.deadline-orange {
            animation: m-cal-pulse 2s ease-in-out infinite;
        }
        .m-float-panel.active .m-fui-cal-day.deadline-green { animation-delay: 0.3s; }
        .m-float-panel.active .m-fui-cal-day.deadline-salmon { animation-delay: 0.6s; }
        .m-float-panel.active .m-fui-cal-day.deadline-orange { animation-delay: 0.9s; }
        .m-fui-cal-day.deadline-salmon {
            background: rgba(var(--primary-rgb), 0.15);
            color: var(--primary);
            font-weight: 700;
        }
        .m-fui-cal-day.deadline-green {
            background: rgba(16,185,129,0.12);
            color: #10B981;
            font-weight: 700;
        }
        .m-fui-cal-day.deadline-orange {
            background: rgba(245,158,11,0.12);
            color: #F59E0B;
            font-weight: 700;
        }
        .m-fui-cal-day.today {
            background: #1a1a1a;
            color: #fff;
            font-weight: 700;
        }
        .m-fui-cal-legend {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }
        .m-fui-cal-legend-item {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 9px;
            color: #6b6b6b;
        }
        .m-fui-cal-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
        }

        /* ---- Fundraising: Donut chart ---- */
        .m-fui-donut-wrap {
            display: flex;
            align-items: center;
            gap: 20px;
            justify-content: center;
        }
        .m-fui-donut {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: conic-gradient(var(--primary) 0deg 0deg, #10B981 0deg 0deg, #F59E0B 0deg 0deg, #e0dbd5 0deg 360deg);
            position: relative;
            flex-shrink: 0;
        }
        .m-fui-donut::after {
            content: '';
            position: absolute;
            inset: 20px;
            border-radius: 50%;
            background: #fff;
        }
        .m-fui-donut-legend {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .m-fui-donut-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            color: #6b6b6b;
        }
        .m-fui-donut-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .m-fui-donut-item strong {
            color: #1a1a1a;
            font-weight: 600;
            margin-left: auto;
        }

        /* ========================================
           Section 5: Alternating Features
           ======================================== */
        .m-alternating {
            padding: 100px 0;
        }

        .m-alternating-header {
            text-align: center;
            max-width: 650px;
            margin: 0 auto 80px;
        }

        .m-alt-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            margin-bottom: 100px;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .m-alt-row:last-child {
            margin-bottom: 0;
        }

        .m-alt-row.reverse .m-alt-content {
            order: 2;
        }

        .m-alt-row.reverse .m-alt-visual {
            order: 1;
        }

        .m-alt-content {
            width: 100%;
            max-width: 480px;
            height: auto;
            min-height: 360px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            justify-self: center;
        }

        .m-alt-content .m-tag {
            margin-bottom: 16px;
        }

        .m-alt-content .m-h3 {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .m-alt-content .m-body {
            margin-bottom: 32px;
            font-size: 16px;
            line-height: 1.7;
        }

        .m-alt-features {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .m-alt-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 14px;
            color: #4a4a4a;
            line-height: 1.5;
        }


        /* Illustration card — responsive with max-width, darker cream bg */
        .m-alt-visual {
            background: var(--gray-3);
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.04);
            overflow: visible;
            display: flex;
            align-items: stretch;
            justify-content: center;
            width: 100%;
            max-width: 480px;
            justify-self: center;
        }

        /* macOS window chrome */
        .m-mac-window {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
            overflow: hidden;
            width: 100%;
            display: flex;
            flex-direction: column;
        }
        .m-mac-titlebar {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 12px 16px;
            background: #f9f9f9;
            border-bottom: 1px solid #ebe7e1;
        }
        .m-mac-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }
        .m-mac-dot-red { background: #FF5F57; }
        .m-mac-dot-yellow { background: #FFBD2E; }
        .m-mac-dot-green { background: #28C840; }
        .m-mac-titlebar-text {
            flex: 1;
            text-align: center;
            font-size: 11px;
            color: #999;
            font-weight: 500;
            margin-right: 36px;
        }
        .m-mac-body {
            padding: 14px;
            flex: 1;
            overflow: hidden;
        }

        /* Shared UI illustration internals */
        .m-ui { font-family: 'Hanken Grotesk', sans-serif; }

        .m-ui-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        .m-ui-title { font-size: 15px; font-weight: 700; color: #1a1a1a; }
        .m-ui-subtitle { font-size: 11px; color: #999; margin-top: 2px; }
        .m-ui-toolbar {
            display: flex;
            gap: 6px;
            align-items: center;
        }
        .m-ui-btn-sm {
            font-size: 10px;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 6px;
            background: #fff;
            color: #6b6b6b;
            border: 1px solid #e0dbd5;
        }
        .m-ui-btn-sm.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        .m-ui-search {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            border: 1px solid #e0dbd5;
            border-radius: 8px;
            padding: 6px 12px;
            margin-bottom: 16px;
        }
        .m-ui-search-icon {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            border: 1.5px solid #ccc;
            position: relative;
            flex-shrink: 0;
        }
        .m-ui-search-icon::after {
            content: '';
            width: 5px;
            height: 1.5px;
            background: #ccc;
            position: absolute;
            bottom: -1px;
            right: -3px;
            transform: rotate(45deg);
        }
        .m-ui-search-text {
            font-size: 11px;
            color: #ccc;
        }

        /* Stat cards row — 4 across like reference */
        .m-ui-stats {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
        }
        .m-ui-stat-card {
            flex: 1;
            background: #fff;
            border-radius: 10px;
            padding: 14px;
            border: 1px solid #ebe7e1;
        }
        .m-ui-stat-label {
            font-size: 10px;
            color: #999;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .m-ui-stat-label .dot {
            width: 6px; height: 6px; border-radius: 50%; display: inline-block;
        }
        .m-ui-stat-num { font-size: 20px; font-weight: 700; color: #1a1a1a; }
        .m-ui-stat-change { font-size: 10px; color: #10B981; margin-top: 3px; }
        .m-ui-stat-change.neg { color: #EF4444; }

        /* Line chart */
        .m-ui-chart {
            background: #fff;
            border-radius: 10px;
            border: 1px solid #ebe7e1;
            padding: 16px;
            margin-bottom: 12px;
        }
        .m-ui-chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }
        .m-ui-chart-title { font-size: 12px; font-weight: 600; color: #1a1a1a; }
        .m-ui-chart-legend { display: flex; gap: 14px; }
        .m-ui-chart-legend span {
            font-size: 10px; color: #6b6b6b;
            display: flex; align-items: center; gap: 5px;
        }
        .m-ui-chart-legend .dot {
            width: 6px; height: 6px; border-radius: 50%; display: inline-block;
        }

        /* SVG line chart */
        .m-ui-line-area {
            position: relative;
            height: 120px;
            margin-top: 8px;
        }
        .m-ui-line-area svg {
            width: 100%;
            height: 100%;
        }
        .m-ui-y-labels {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 18px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .m-ui-y-labels span {
            font-size: 8px;
            color: #bbb;
        }
        .m-ui-x-labels {
            display: flex;
            justify-content: space-between;
            padding-left: 28px;
            margin-top: 4px;
        }
        .m-ui-x-labels span {
            font-size: 8px;
            color: #bbb;
        }
        /* Floating tooltip on chart */
        .m-ui-tooltip {
            position: absolute;
            background: #fff;
            border: 1px solid #ebe7e1;
            border-radius: 8px;
            padding: 8px 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            font-size: 10px;
            line-height: 1.6;
            white-space: nowrap;
        }
        .m-ui-tooltip-row {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .m-ui-tooltip-row .dot {
            width: 6px; height: 6px; border-radius: 50%;
        }
        .m-ui-tooltip-row strong {
            font-weight: 700;
            color: #1a1a1a;
            margin-left: 4px;
        }

        /* Data table */
        .m-ui-table {
            width: 100%;
            border-collapse: collapse;
        }
        .m-ui-table th {
            font-size: 10px;
            font-weight: 600;
            color: #999;
            text-align: left;
            padding: 8px 10px;
            border-bottom: 1px solid #ebe7e1;
        }
        .m-ui-table td {
            font-size: 11px;
            color: #1a1a1a;
            padding: 10px;
            border-bottom: 1px solid #f5f2ee;
        }
        .m-ui-table tr:last-child td { border-bottom: none; }
        .m-ui-name-cell {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .m-ui-avatar {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: #ebe7e1;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 700;
            color: #999;
        }
        .m-ui-name-cell span { font-size: 10px; color: #999; display: block; }
        .m-ui-actions {
            display: flex;
            gap: 6px;
        }
        .m-ui-action-dot {
            width: 20px;
            height: 20px;
            border-radius: 4px;
            background: #f5f2ee;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .m-ui-action-dot::after {
            content: '';
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: #bbb;
        }
        .m-ui-badge {
            font-size: 10px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 4px;
            white-space: nowrap;
        }
        .m-ui-badge-green { background: rgba(16,185,129,0.1); color: #10B981; }
        .m-ui-badge-orange { background: rgba(245,158,11,0.1); color: #F59E0B; }
        .m-ui-badge-blue { background: rgba(var(--primary-rgb),0.1); color: var(--primary); }
        .m-ui-badge-red { background: rgba(239,68,68,0.1); color: #EF4444; }

        /* Summary row */
        .m-ui-summary {
            display: flex;
            gap: 10px;
            margin-top: 14px;
        }
        .m-ui-summary-card {
            flex: 1;
            background: #fff;
            border: 1px solid #ebe7e1;
            border-radius: 8px;
            padding: 12px 14px;
        }
        .m-ui-summary-card .m-ui-stat-label { margin-bottom: 2px; }
        .m-ui-summary-card .m-ui-stat-num { font-size: 15px; }

        /* Calendar grid */
        .m-ui-cal {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
            text-align: center;
        }
        .m-ui-cal-head { font-size: 9px; font-weight: 600; color: #bbb; padding: 2px; }
        .m-ui-cal-d { font-size: 10px; padding: 6px 2px; border-radius: 6px; color: #6b6b6b; }
        .m-ui-cal-d.mark-salmon { background: rgba(var(--primary-rgb),0.15); color: var(--primary); font-weight: 700; }
        .m-ui-cal-d.mark-green { background: rgba(16,185,129,0.12); color: #10B981; font-weight: 700; }
        .m-ui-cal-d.mark-orange { background: rgba(245,158,11,0.12); color: #F59E0B; font-weight: 700; }
        .m-ui-cal-d.mark-today { background: #1a1a1a; color: #fff; font-weight: 700; }

        /* Donut for fundraising */
        .m-ui-donut-area {
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 12px 0;
        }
        .m-ui-donut-ring {
            width: 110px; height: 110px; border-radius: 50%;
            background: conic-gradient(var(--primary) 0deg 223deg, #10B981 223deg 310deg, #F59E0B 310deg 339deg, #e0dbd5 339deg 360deg);
            position: relative; flex-shrink: 0;
        }
        .m-ui-donut-ring::after {
            content: ''; position: absolute; inset: 24px; border-radius: 50%; background: #faf8f5;
        }
        .m-ui-donut-ring-label {
            position: absolute; inset: 0;
            display: flex; align-items: center; justify-content: center;
            z-index: 1; font-size: 14px; font-weight: 700; color: #1a1a1a;
        }
        .m-ui-donut-list { display: flex; flex-direction: column; gap: 10px; }
        .m-ui-donut-list-item {
            display: flex; align-items: center; gap: 10px;
            font-size: 12px; color: #6b6b6b;
        }
        .m-ui-donut-list-item .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
        .m-ui-donut-list-item strong { margin-left: auto; color: #1a1a1a; font-weight: 600; }

        /* ========================================
           Section 6: Accent Section (How It Works)
           ======================================== */
        .m-accent {
            padding: 100px 0;
            background: #f9f8f6;
        }

        .m-accent-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 48px;
        }

        .m-accent-header .m-h2 {
            color: #1a1a1a;
        }

        .m-accent-header .m-body {
            color: #6b6b6b;
        }

        .m-accent-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .m-accent-card {
            background: #eae5df;
            border-radius: 12px;
            padding: 32px 28px;
        }

        .m-accent-icon {
            color: #f97316;
            margin-bottom: 20px;
        }

        .m-accent-icon i {
            width: 24px;
            height: 24px;
        }

        .m-accent-card h3 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .m-accent-card p {
            font-size: 15px;
            color: #6b6b6b;
            line-height: 1.6;
        }

        /* ========================================
           Section 7: Testimonials
           ======================================== */
        .m-testimonials {
            padding: 100px 0;
            background: #f0ece7;
        }

        .m-testimonials-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        .m-testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .m-testimonial-card {
            background: #fff;
            border: 1px solid #e0dbd5;
            border-radius: 16px;
            padding: 36px 32px;
        }

        .m-testimonial-stars {
            color: #F59E0B;
            font-size: 18px;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }

        .m-testimonial-card blockquote {
            font-size: 16px;
            color: #4a4a4a;
            line-height: 1.7;
            margin-bottom: 24px;
            font-style: normal;
        }

        .m-testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .m-testimonial-avatar {
            width: 44px;
            height: 44px;
            background: rgba(var(--primary-rgb), 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: var(--primary);
            flex-shrink: 0;
        }

        .m-testimonial-name {
            font-size: 15px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .m-testimonial-role {
            font-size: 13px;
            color: #6b6b6b;
        }

        /* ========================================
           Section 8: Security
           ======================================== */
        .m-security {
            padding: 100px 0;
            background: #f9f8f6;
        }

        .m-security-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 64px;
        }

        .m-security-header h2 {
            font-size: 42px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 0;
        }

        .m-security-header p {
            font-size: 17px;
            color: #6b6b6b;
        }

        .m-security-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 48px 40px;
        }

        .m-security-card {
            padding: 0;
        }

        .m-security-card-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .m-security-icon {
            color: #f97316;
            flex-shrink: 0;
        }

        .m-security-icon i {
            width: 20px;
            height: 20px;
        }

        .m-security-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            margin: 0;
        }

        .m-security-card p {
            font-size: 15px;
            color: #6b6b6b;
            line-height: 1.65;
            margin: 0;
        }

        /* ========================================
           Section 9: FAQ
           ======================================== */
        .m-faq {
            padding: 100px 0;
            background: #f0ece7;
        }

        .m-faq-header {
            text-align: center;
            max-width: 550px;
            margin: 0 auto 60px;
        }

        .m-faq-list {
            max-width: 780px;
            margin: 0 auto;
        }

        .m-faq-item {
            border-bottom: 1px solid #e0dbd5;
        }

        .m-faq-item:first-child {
            border-top: 1px solid #e0dbd5;
        }

        .m-faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0;
            cursor: pointer;
            gap: 16px;
        }

        .m-faq-question span:first-child {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 18px;
            font-weight: 500;
            color: #1a1a1a;
        }

        .m-faq-question .m-faq-icon {
            flex-shrink: 0;
            transition: transform 0.3s;
            color: #6b6b6b;
        }

        .m-faq-question .m-faq-icon svg {
            width: 20px;
            height: 20px;
        }

        .m-faq-item.active .m-faq-question .m-faq-icon {
            transform: rotate(180deg);
        }

        .m-faq-answer {
            display: none;
            padding-bottom: 24px;
            font-size: 15px;
            color: #6b6b6b;
            line-height: 1.7;
        }

        .m-faq-item.active .m-faq-answer {
            display: block;
        }

        /* ========================================
           Section 10: CTA Banner
           (Styles from monarch.css — m-cta-content)
           ======================================== */

        /* ========================================
           Responsive: Tablet
           ======================================== */
        @media (max-width: 1199px) {
            .container {
                max-width: 800px;
            }

            .m-hero-wrapper {
                height: auto;
                min-height: auto;
            }

            .m-hero-wrapper .m-hero-content h1 {
                font-size: 46px;
            }

            .m-alt-row {
                max-width: 100%;
                gap: 32px;
            }

            .m-alt-content {
                max-width: 100%;
            }

            .m-alt-visual {
                width: 100%;
                max-width: 480px;
                height: auto;
                aspect-ratio: unset;
            }

            .m-alternating {
                padding: 80px 0;
            }

            .m-security {
                padding: 80px 0;
            }
        }

        /* ========================================
           Responsive: Tablet (cont.)
           ======================================== */
        @media (max-width: 1199px) {
            .m-hero-wrapper .m-hero {
                padding-top: 140px;
                min-height: auto;
            }

            .m-hero-wrapper .m-hero .container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .m-hero-wrapper .m-hero-content {
                max-width: 600px;
            }

            .m-hero-wrapper .m-hero-content p {
                max-width: 100%;
            }

            .m-hero-wrapper .m-hero-content h1 {
                font-size: 42px;
            }

            .m-hero-wrapper .m-hero-form {
                justify-content: flex-start;
            }

            .m-hero-wrapper .m-hero-form input {
                max-width: 280px;
            }

            .m-hero-wrapper .m-hero-visual {
                width: 100%;
                max-width: 500px;
                margin: 0 auto;
                gap: 10px;
            }

            .m-h2 {
                font-size: 38px;
            }

            .m-features-inner {
                padding: 48px 32px 56px;
            }

            .m-features-bento {
                grid-template-columns: 1fr 220px 1fr;
                gap: 16px 28px;
            }

            .m-fcard {
                padding: 24px 20px;
            }

            .m-fcard h3 {
                font-size: 18px;
            }

            .m-fcard p {
                font-size: 13px;
            }

            .m-alt-row {
                gap: 32px;
                max-width: 100%;
                grid-template-columns: 1fr 1fr;
            }

            .m-alt-content,
            .m-alt-visual {
                max-width: 100%;
            }

            .m-alt-visual {
                width: 100%;
                max-width: 420px;
                height: auto;
                aspect-ratio: unset;
            }

            .m-alt-content .m-h3 {
                font-size: 26px;
            }

            .m-alternating {
                padding: 60px 0;
            }

            .m-alternating-header {
                margin-bottom: 60px;
            }

            .m-alt-row {
                margin-bottom: 60px;
            }

            .m-accent-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .m-testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .m-testimonials-grid .m-testimonial-card:last-child {
                grid-column: 1 / -1;
                max-width: 480px;
                margin: 0 auto;
            }

            .m-security-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 32px;
            }

            .m-proof .container {
                gap: 48px;
            }

            .m-showcase-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ========================================
           Responsive: Mobile (bento)
           ======================================== */
        @media (max-width: 809px) {
            .m-features-bento {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .m-fcard-tl, .m-fcard-bl, .m-fcard-tr, .m-fcard-br {
                grid-column: auto;
                grid-row: auto;
            }

            .m-fcard-center {
                grid-column: 1 / -1;
            }

            .m-mockup-wrapper {
                display: none;
            }
        }

        /* ========================================
           Responsive: Mobile
           ======================================== */
        @media (max-width: 809px) {
            .m-hero-wrapper .m-hero {
                padding-top: 120px;
            }

            .m-hero-wrapper {
                height: auto;
                min-height: auto;
            }

            .m-hero-wrapper .m-hero .container {
                gap: 10px;
            }

            .m-hero-wrapper .m-hero-content h1 {
                font-size: 32px;
            }

            .m-hero-wrapper .m-hero-content p {
                font-size: 16px;
                max-width: 100%;
            }

            .m-hero-wrapper .m-hero-form {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .m-hero-wrapper .m-hero-form input {
                width: 100%;
                max-width: 350px;
                padding: 14px 20px;
                font-size: 15px;
            }

            .m-hero-wrapper .m-hero-form .m-btn-primary {
                padding: 14px 28px;
            }

            .m-hero-wrapper .m-hero-visual {
                width: 100%;
                max-width: 360px;
                margin: 0 auto;
                gap: 8px;
            }

            .hc {
                padding: 10px;
                border-radius: 16px;
                gap: 6px;
            }

            .hc-item {
                padding: 10px 14px;
                border-radius: 10px;
            }

            .hc-score-row svg {
                width: 40px;
                height: 40px;
            }

            .hc-score-text {
                font-size: 20px;
            }

            .hc-score-sub {
                font-size: 10px;
            }

            .hc-dots {
                gap: 10px;
                margin-top: 6px;
                font-size: 10px;
            }

            .hc-mini-grid {
                gap: 6px;
            }

            .hc-mini-val {
                font-size: 16px;
            }

            .hc-mini-label, .hc-label {
                font-size: 10px;
            }

            .hc-title {
                font-size: 12px;
            }

            .hc-sub {
                font-size: 10px;
            }

            .hc-bars {
                height: 32px;
            }

            .hc-bar-labels {
                font-size: 8px;
            }

            .hc-mini-stat {
                padding: 8px 10px !important;
            }

            .hc-vendor-row {
                gap: 8px;
            }

            .hc-vendor-avatar {
                width: 24px;
                height: 24px;
                font-size: 9px;
            }

            .hc-vendor-name {
                font-size: 11px;
            }

            .hc-vendor-sub {
                font-size: 8px;
            }

            .hc-vendor-amt {
                font-size: 12px;
            }

            .hc-badge {
                font-size: 10px;
                padding: 3px 10px;
            }

            .hc-val {
                font-size: 13px;
            }

            .m-logo-ribbon {
                padding: 24px 0;
                margin-top: 0;
            }

            .m-logo-ribbon-label {
                font-size: 12px;
                margin-bottom: 12px;
            }

            .m-logo-item {
                font-size: 14px;
                padding: 0 20px;
            }

            .m-h2 {
                font-size: 32px;
            }

            .m-hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .m-btn-primary, .m-btn-secondary {
                justify-content: center;
            }

            .m-features {
                padding: 40px 0;
            }

            .m-features-inner {
                padding: 32px 16px;
                border-radius: 24px;
                background: #eae5df;
                margin: 0 16px;
            }

            /* Show original header on mobile */
            .m-features-top {
                margin-bottom: 24px;
            }

            .m-features-header {
                text-align: center;
            }

            .m-features-header .m-h2 {
                font-size: 26px;
                line-height: 1.2;
            }

            .m-features-header .m-body {
                font-size: 15px;
                margin-top: 12px;
            }

            /* Hide mobile header - using regular header */
            .m-features-mobile-header {
                display: none !important;
            }

            /* Simple vertical stack layout */
            .m-features-bento {
                display: flex !important;
                flex-direction: column;
                gap: 20px;
            }

            /* Hide the central mockup on mobile - each card has its own illustration */
            .m-mockup-wrapper {
                display: none !important;
            }

            /* Cards with illustration above content */
            .m-fcard-tl, .m-fcard-bl, .m-fcard-tr, .m-fcard-br {
                position: relative !important;
                left: auto !important;
                right: auto !important;
                top: auto !important;
                bottom: auto !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                transition: none !important;
                padding: 24px;
                background: #fff;
                border-radius: 20px;
                box-shadow: 0 4px 20px rgba(0,0,0,0.08);
                overflow: hidden;
            }

            /* Show feature illustrations on mobile - before each card */
            .m-feature-illustration {
                display: flex !important;
                flex-direction: column;
                gap: 8px;
                padding: 16px;
                background: #fff;
                border-radius: 16px;
                max-width: 100%;
                margin: 0 auto 12px;
                box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            }

            /* UI cards inside illustrations - always visible on mobile */
            .m-feature-illustration .m-fui-card {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
                background: #f8f7f5;
                padding: 12px 14px;
                border-radius: 10px;
            }

            .m-feature-illustration .m-fui-card-sm {
                padding: 10px 12px;
            }

            /* Cards styling */
            .m-fcard-tag {
                font-size: 11px;
                margin-bottom: 8px;
            }

            .m-fcard h3 {
                font-size: 20px;
                margin-bottom: 10px;
            }

            .m-fcard p {
                font-size: 15px;
                margin-bottom: 16px;
                line-height: 1.55;
            }

            .m-fcard-btn {
                display: inline-flex;
                width: auto;
                padding: 12px 24px;
                font-size: 14px;
            }

            /* Proper ordering: illustration then card for each feature */
            .m-feature-illustration[data-for="payables"] { order: 1; }
            .m-fcard-tl { order: 2; }
            .m-feature-illustration[data-for="compliance"] { order: 3; }
            .m-fcard-tr { order: 4; }
            .m-feature-illustration[data-for="tax"] { order: 5; }
            .m-fcard-bl { order: 6; }
            .m-feature-illustration[data-for="fundraising"] { order: 7; }
            .m-fcard-br { order: 8; }

            /* Floating UI panels inside card illustrations */
            .m-fui-card {
                padding: 14px 16px;
                border-radius: 12px;
                background: #fff;
            }

            .m-fui-card-sm {
                padding: 10px 12px;
            }

            .m-fui-title {
                font-size: 12px;
            }

            .m-fui-sub {
                font-size: 10px;
            }

            .m-fui-value {
                font-size: 13px;
            }

            .m-fui-label {
                font-size: 10px;
            }

            .m-fui-badge {
                font-size: 9px;
                padding: 3px 8px;
            }

            .m-fui-ring {
                width: 56px;
                height: 56px;
            }

            .m-fui-ring::after {
                inset: 8px;
            }

            .m-fui-ring-value {
                font-size: 14px;
            }

            .m-fui-ring-label {
                font-size: 11px;
            }

            .m-fui-ring-sub {
                font-size: 9px;
            }

            .m-fui-stat-row {
                gap: 10px;
                margin-top: 10px;
            }

            .m-fui-stat-box {
                padding: 10px;
                border-radius: 10px;
            }

            .m-fui-stat-box .m-fui-value {
                font-size: 14px;
            }

            .m-fui-stat-box .m-fui-label {
                font-size: 9px;
            }

            .m-fui-cal-title {
                font-size: 11px;
            }

            .m-fui-cal-grid {
                gap: 3px;
            }

            .m-fui-cal-label {
                font-size: 8px;
            }

            .m-fui-cal-day {
                font-size: 9px;
                padding: 4px 2px;
            }

            .m-fui-cal-legend {
                gap: 8px;
                margin-top: 8px;
            }

            .m-fui-cal-legend-item {
                font-size: 7px;
            }

            .m-fui-donut-wrap {
                gap: 12px;
            }

            .m-fui-donut {
                width: 60px;
                height: 60px;
            }

            .m-fui-donut::after {
                inset: 14px;
            }

            .m-fui-donut-legend {
                gap: 4px;
            }

            .m-fui-donut-item {
                font-size: 9px;
                gap: 6px;
            }

            .m-fui-donut-dot {
                width: 6px;
                height: 6px;
            }

            .m-fcard:not(.active) {
                background: rgba(255,255,255,0.35);
            }

            .m-alt-row,
            .m-alt-row.reverse {
                grid-template-columns: 1fr;
                gap: 24px;
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }

            .m-alt-row .m-alt-content,
            .m-alt-row.reverse .m-alt-content {
                order: 1;
                max-width: 100%;
                min-height: auto;
                text-align: left;
            }

            .m-alt-row .m-alt-visual,
            .m-alt-row.reverse .m-alt-visual {
                order: 2;
                width: 100%;
                max-width: 500px;
                height: auto;
                aspect-ratio: unset;
                margin: 0 auto;
            }

            .m-alt-content .m-h3 {
                font-size: 24px;
            }

            .m-alt-features {
                align-items: flex-start;
            }

            .m-alternating {
                padding: 60px 0;
            }

            .m-alternating-header {
                margin-bottom: 48px;
            }

            .m-alt-row {
                margin-bottom: 48px;
            }

            .m-security {
                padding: 60px 0;
            }

            .m-security-header {
                margin-bottom: 48px;
            }

            .m-accent-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .m-accent-card {
                padding: 24px 20px;
            }

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

            .m-testimonials-grid .m-testimonial-card:last-child {
                max-width: none;
            }

            .m-security-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .m-security-header h2 {
                font-size: 32px;
            }

            .m-cta-card {
                padding: 60px 32px;
            }

            .m-cta .m-h2 {
                font-size: 32px;
            }

            /* Scale internal UI elements for tablets */
            .m-mac-window {
                border-radius: 10px;
            }

            .m-mac-body {
                padding: 10px;
            }

            .m-mac-titlebar {
                padding: 8px 12px;
            }

            .m-mac-dot {
                width: 8px;
                height: 8px;
            }

            .m-mac-titlebar-text {
                font-size: 9px;
            }

            .m-ui-header {
                margin-bottom: 14px;
            }

            .m-ui-title {
                font-size: 12px;
            }

            .m-ui-subtitle {
                font-size: 9px;
            }

            .m-ui-stats {
                gap: 5px;
                margin-bottom: 10px;
            }

            .m-ui-stat-card {
                padding: 10px;
                border-radius: 8px;
            }

            .m-ui-stat-label {
                font-size: 8px;
                margin-bottom: 4px;
            }

            .m-ui-stat-label .dot {
                width: 5px;
                height: 5px;
            }

            .m-ui-stat-num {
                font-size: 14px;
            }

            .m-ui-stat-change {
                font-size: 8px;
            }

            .m-ui-chart {
                padding: 10px;
                margin-bottom: 8px;
                border-radius: 8px;
            }

            .m-ui-chart-title {
                font-size: 10px;
            }

            .m-ui-chart-legend span {
                font-size: 8px;
            }

            .m-ui-line-area {
                height: 80px;
            }

            .m-ui-y-labels span,
            .m-ui-x-labels span {
                font-size: 7px;
            }

            .m-ui-tooltip {
                font-size: 8px;
                padding: 6px 10px;
            }

            .m-ui-summary {
                gap: 6px;
            }

            .m-ui-summary-card {
                padding: 8px 10px;
            }

            .m-ui-summary-card .m-ui-stat-num {
                font-size: 11px;
            }

            /* Table for Tax section */
            .m-ui-search {
                padding: 5px 10px;
                margin-bottom: 10px;
            }

            .m-ui-search-icon {
                width: 12px;
                height: 12px;
            }

            .m-ui-search-text {
                font-size: 9px;
            }

            .m-ui-btn-sm {
                font-size: 8px;
                padding: 4px 8px;
            }

            .m-ui-table th {
                font-size: 8px;
                padding: 6px;
            }

            .m-ui-table td {
                font-size: 9px;
                padding: 6px;
            }

            .m-ui-avatar {
                width: 22px;
                height: 22px;
                font-size: 8px;
            }

            .m-ui-name-cell span {
                font-size: 8px;
            }

            .m-ui-badge {
                font-size: 8px;
                padding: 2px 6px;
            }

            .m-ui-action-dot {
                width: 16px;
                height: 16px;
            }

            /* Calendar for Compliance */
            .m-ui-cal-head {
                font-size: 7px;
            }

            .m-ui-cal-d {
                font-size: 8px;
                padding: 4px 2px;
            }

            /* Donut for Fundraising */
            .m-ui-donut-area {
                gap: 16px;
            }

            .m-ui-donut-ring {
                width: 80px;
                height: 80px;
            }

            .m-ui-donut-ring::after {
                inset: 18px;
            }

            .m-ui-donut-list-item {
                font-size: 10px;
            }
        }

        /* ========================================
           Responsive: 480px
           ======================================== */
        @media (max-width: 480px) {
            .m-hero-wrapper .m-hero {
                padding-top: 100px;
            }

            .m-hero-wrapper .m-hero-content h1 {
                font-size: 26px;
            }

            .m-hero-wrapper .m-hero-content p {
                font-size: 15px;
                margin-bottom: 28px;
                max-width: 100%;
            }

            .m-hero-wrapper .m-hero-form input {
                max-width: 100%;
                padding: 14px 16px;
                font-size: 14px;
                min-height: 48px;
            }

            .m-hero-wrapper .m-hero-form .m-btn-primary {
                padding: 14px 24px;
                font-size: 14px;
                min-height: 48px;
            }

            .m-hero-wrapper .m-hero-form .m-hero-note {
                font-size: 10px !important;
            }

            .m-hero-wrapper .m-hero-visual {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
                gap: 6px;
            }

            .hc {
                padding: 8px;
                border-radius: 14px;
                gap: 5px;
            }

            .hc-item {
                padding: 8px 10px;
                border-radius: 8px;
            }

            .hc-score-row svg {
                width: 32px;
                height: 32px;
            }

            .hc-score-text {
                font-size: 17px;
            }

            .hc-score-sub {
                font-size: 9px;
            }

            .hc-dots {
                gap: 8px;
                margin-top: 4px;
                font-size: 9px;
            }

            .hc-dot {
                width: 6px;
                height: 6px;
            }

            .hc-mini-grid {
                gap: 5px;
            }

            .hc-mini-val {
                font-size: 14px;
            }

            .hc-mini-stat {
                padding: 6px 8px !important;
            }

            .hc-bars {
                height: 28px;
            }

            .hc-bar-labels {
                font-size: 7px;
            }

            .hc-vendor-avatar {
                width: 20px;
                height: 20px;
                font-size: 8px;
            }

            .hc-vendor-name {
                font-size: 10px;
            }

            .hc-vendor-sub {
                font-size: 7px;
            }

            .hc-vendor-amt {
                font-size: 11px;
            }

            .hc-badge {
                font-size: 9px;
                padding: 2px 8px;
            }

            .hc-val {
                font-size: 11px;
            }

            .hc-vendor-row {
                gap: 6px;
            }

            .m-logo-ribbon {
                padding: 20px 0;
            }

            .m-logo-ribbon-label {
                font-size: 11px;
                margin-bottom: 10px;
            }

            .m-logo-item {
                font-size: 12px;
                padding: 0 16px;
            }

            .m-h2 {
                font-size: 26px;
            }

            .m-h3 {
                font-size: 20px;
            }

            .m-proof .container {
                gap: 24px;
            }

            .m-showcase {
                padding: 60px 0;
            }

            .m-showcase-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .m-showcase-stat {
                padding: 24px 16px;
            }

            .m-showcase-stat-value {
                font-size: 24px;
            }

            .m-showcase-stat-label {
                font-size: 12px;
            }

            /* Features section - smaller mobile */
            .m-features {
                padding: 24px 0;
            }

            .m-features-inner {
                padding: 20px 12px;
            }

            .m-features-header .m-h2 {
                font-size: 20px;
            }

            .m-features-header .m-body {
                font-size: 13px;
            }

            .m-features-bento {
                gap: 16px;
            }

            /* Feature illustrations at 480px */
            .m-feature-illustration {
                padding: 16px;
                gap: 8px;
                max-width: 100%;
            }

            .m-fcard-tag {
                font-size: 10px;
                margin-bottom: 6px;
            }

            .m-fcard h3 {
                font-size: 18px;
                margin-bottom: 8px;
            }

            .m-fcard p {
                font-size: 14px;
                margin-bottom: 14px;
                line-height: 1.5;
            }

            .m-fcard-btn {
                padding: 10px 20px;
                font-size: 13px;
            }

            /* Floating panels for 480px */
            .m-fui-card {
                padding: 12px 14px;
                border-radius: 10px;
            }

            .m-fui-card-sm {
                padding: 8px 10px;
            }

            .m-fui-title {
                font-size: 11px;
            }

            .m-fui-sub {
                font-size: 9px;
            }

            .m-fui-value {
                font-size: 12px;
            }

            .m-fui-label {
                font-size: 9px;
            }

            .m-fui-badge {
                font-size: 8px;
                padding: 3px 6px;
            }

            .m-fui-ring {
                width: 48px;
                height: 48px;
            }

            .m-fui-ring::after {
                inset: 6px;
            }

            .m-fui-ring-value {
                font-size: 12px;
            }

            .m-fui-ring-wrap {
                gap: 10px;
            }

            .m-fui-ring-label {
                font-size: 10px;
            }

            .m-fui-ring-sub {
                font-size: 8px;
            }

            .m-fui-stat-row {
                gap: 8px;
                margin-top: 8px;
            }

            .m-fui-stat-box {
                padding: 8px;
                border-radius: 8px;
            }

            .m-fui-stat-box .m-fui-value {
                font-size: 12px;
            }

            .m-fui-stat-box .m-fui-label {
                font-size: 8px;
            }

            .m-fui-cal-header {
                margin-bottom: 8px;
            }

            .m-fui-cal-title {
                font-size: 10px;
            }

            .m-fui-cal-grid {
                gap: 2px;
            }

            .m-fui-cal-label {
                font-size: 7px;
                padding: 2px 0;
            }

            .m-fui-cal-day {
                font-size: 8px;
                padding: 3px 2px;
                border-radius: 4px;
            }

            .m-fui-cal-legend {
                gap: 8px;
                margin-top: 8px;
            }

            .m-fui-cal-legend-item {
                font-size: 7px;
            }

            .m-fui-cal-dot {
                width: 5px;
                height: 5px;
            }

            .m-fui-donut-wrap {
                gap: 8px;
            }

            .m-fui-donut {
                width: 45px;
                height: 45px;
            }

            .m-fui-donut::after {
                inset: 10px;
            }

            .m-fui-donut-legend {
                gap: 3px;
            }

            .m-fui-donut-item {
                font-size: 8px;
                gap: 5px;
            }

            .m-fui-donut-dot {
                width: 5px;
                height: 5px;
            }

            .m-alt-row {
                margin-bottom: 48px;
                gap: 20px;
            }

            .m-alt-visual {
                padding: 12px;
                width: 100%;
                max-width: 100%;
                height: auto;
                aspect-ratio: unset;
                margin: 0 auto;
            }

            .m-alt-content .m-h3 {
                font-size: 20px;
            }

            .m-alt-content .m-body {
                font-size: 14px;
                margin-bottom: 24px;
            }

            .m-alt-features {
                gap: 14px;
            }

            .m-alt-features li {
                font-size: 13px;
            }

            /* Scale down macOS window mockups */
            .m-mac-window {
                border-radius: 8px;
            }

            .m-mac-body {
                padding: 8px;
            }

            .m-mac-titlebar {
                padding: 6px 8px;
                gap: 4px;
            }

            .m-mac-dot {
                width: 6px;
                height: 6px;
            }

            .m-mac-titlebar-text {
                font-size: 8px;
                margin-right: 20px;
            }

            /* Scale down ALL internal UI elements */
            .m-ui-header {
                margin-bottom: 10px;
            }

            .m-ui-title {
                font-size: 10px;
            }

            .m-ui-subtitle {
                font-size: 8px;
            }

            .m-ui-stats {
                gap: 4px;
                margin-bottom: 8px;
            }

            .m-ui-stat-card {
                padding: 6px;
                border-radius: 6px;
            }

            .m-ui-stat-label {
                font-size: 7px;
                margin-bottom: 3px;
            }

            .m-ui-stat-label .dot {
                width: 4px;
                height: 4px;
            }

            .m-ui-stat-num {
                font-size: 11px;
            }

            .m-ui-stat-change {
                font-size: 7px;
            }

            .m-ui-chart {
                padding: 8px;
                margin-bottom: 6px;
                border-radius: 6px;
            }

            .m-ui-chart-header {
                margin-bottom: 6px;
            }

            .m-ui-chart-title {
                font-size: 9px;
            }

            .m-ui-chart-legend {
                gap: 8px;
            }

            .m-ui-chart-legend span {
                font-size: 7px;
            }

            .m-ui-chart-legend .dot {
                width: 4px;
                height: 4px;
            }

            .m-ui-line-area {
                height: 60px;
                margin-top: 4px;
            }

            .m-ui-y-labels span,
            .m-ui-x-labels span {
                font-size: 6px;
            }

            .m-ui-x-labels {
                padding-left: 16px;
                margin-top: 2px;
            }

            .m-ui-tooltip {
                display: none;
            }

            .m-ui-summary {
                gap: 4px;
                margin-top: 8px;
            }

            .m-ui-summary-card {
                padding: 6px 8px;
                border-radius: 6px;
            }

            .m-ui-summary-card .m-ui-stat-label {
                margin-bottom: 1px;
            }

            .m-ui-summary-card .m-ui-stat-num {
                font-size: 9px;
            }

            /* Table styles for Tax section */
            .m-ui-search {
                padding: 4px 8px;
                border-radius: 6px;
                margin-bottom: 8px;
            }

            .m-ui-search-icon {
                width: 10px;
                height: 10px;
            }

            .m-ui-search-text {
                font-size: 8px;
            }

            .m-ui-btn-sm {
                font-size: 7px;
                padding: 3px 6px;
                border-radius: 4px;
            }

            .m-ui-table th {
                font-size: 7px;
                padding: 4px 5px;
            }

            .m-ui-table td {
                font-size: 8px;
                padding: 5px;
            }

            .m-ui-name-cell {
                gap: 5px;
            }

            .m-ui-avatar {
                width: 18px;
                height: 18px;
                border-radius: 4px;
                font-size: 7px;
            }

            .m-ui-name-cell span {
                font-size: 7px;
            }

            .m-ui-name-cell strong {
                font-size: 8px;
            }

            .m-ui-badge {
                font-size: 7px;
                padding: 2px 5px;
                border-radius: 3px;
            }

            .m-ui-actions {
                gap: 3px;
            }

            .m-ui-action-dot {
                width: 14px;
                height: 14px;
                border-radius: 3px;
            }

            /* Calendar styles for Compliance section */
            .m-ui-cal {
                gap: 2px;
            }

            .m-ui-cal-head {
                font-size: 6px;
                padding: 1px;
            }

            .m-ui-cal-d {
                font-size: 7px;
                padding: 3px 1px;
                border-radius: 4px;
            }

            /* Donut chart for Fundraising */
            .m-ui-donut-area {
                gap: 12px;
                padding: 8px 0;
            }

            .m-ui-donut-ring {
                width: 60px;
                height: 60px;
            }

            .m-ui-donut-ring::after {
                inset: 14px;
            }

            .m-ui-donut-ring-label {
                font-size: 10px;
            }

            .m-ui-donut-list {
                gap: 5px;
            }

            .m-ui-donut-list-item {
                font-size: 8px;
                gap: 6px;
            }

            .m-ui-donut-list-item .dot {
                width: 5px;
                height: 5px;
            }

            .m-ui-summary {
                gap: 6px;
            }

            .m-ui-summary-card {
                padding: 8px 10px;
            }

            .m-ui-summary-card .m-ui-stat-num {
                font-size: 12px;
            }

            .m-security-header h2 {
                font-size: 26px;
            }

            .m-security-card h3 {
                font-size: 16px;
            }

            .m-security-card p {
                font-size: 14px;
            }

            .m-faq-question span:first-child {
                font-size: 16px;
            }
        }

/* ========================================
   Extracted from: integrations.html
   ======================================== */
/* Integrations Page — Monarch Design System */

        /* Hero */
        .page-hero {
            background: #fff;
            position: relative;
            overflow: hidden;
            padding: 180px 0 80px;
            text-align: center;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -5%;
            width: 40%;
            height: 70%;
            background: radial-gradient(ellipse at center, rgba(255, 140, 80, 0.05) 0%, transparent 70%);
            filter: blur(50px);
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            right: -5%;
            width: 35%;
            height: 60%;
            background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.04) 0%, transparent 70%);
            filter: blur(50px);
            pointer-events: none;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }
        .hero-badge i { width: 16px; height: 16px; }
        .page-hero h1 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 48px;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 16px;
        }
        .page-hero h1 span { color: var(--primary); }
        .page-hero > .container > p {
            color: #6b6b6b;
            font-size: 18px;
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Integrations Section */
        .integrations-section {
            padding: 100px 0;
            background: var(--gray-2);
        }
        .integration-category {
            margin-bottom: 60px;
        }
        .integration-category:last-child {
            margin-bottom: 0;
        }
        .category-title {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 22px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 24px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--gray-4);
        }
        .integrations-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .integration-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(0,0,0,0.04);
        }
        .integration-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
        }
        .integration-logo {
            width: 64px;
            height: 64px;
            background: var(--gray-2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .integration-card:hover .integration-logo {
            transform: rotate(-5deg) scale(1.08);
        }
        .integration-logo img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            display: block;
            margin: auto;
        }
        .integration-card h4 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #1a1a1a;
        }
        .integration-card p {
            font-size: 14px;
            color: #6b6b6b;
            margin-bottom: 16px;
            line-height: 1.5;
        }
        .integration-status {
            font-size: 12px;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: 100px;
            display: inline-block;
        }
        .status-live {
            background: rgba(0, 184, 148, 0.08);
            color: #00B894;
        }
        .status-coming {
            background: rgba(107, 114, 128, 0.08);
            color: #4B5563;
        }

        /* API Section */
        .api-section {
            padding: 100px 0;
            background: #fff;
            position: relative;
            overflow: hidden;
        }
        .api-section::before {
            content: '';
            position: absolute;
            bottom: -10%;
            left: -5%;
            width: 35%;
            height: 60%;
            background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.04) 0%, transparent 70%);
            filter: blur(50px);
            pointer-events: none;
        }
        .api-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .api-content h2 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 36px;
            font-weight: 500;
            margin-bottom: 16px;
            color: #1a1a1a;
        }
        .api-content > p {
            color: #6b6b6b;
            font-size: 17px;
            margin-bottom: 24px;
            line-height: 1.7;
        }
        .api-features {
            list-style: none;
            margin-bottom: 32px;
        }
        .api-features li {
            padding: 8px 0;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: #4a4a4a;
            font-size: 15px;
            line-height: 1.6;
        }
        .api-features li i {
            color: #10B981;
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .api-visual {
            background: #22201d;
            border-radius: 20px;
            padding: 28px;
            font-family: 'SF Mono', Monaco, Consolas, monospace;
            font-size: 13px;
            line-height: 1.8;
            overflow: hidden;
            box-shadow: 0 2px 20px rgba(0,0,0,0.04);
        }
        .api-visual pre {
            margin: 0;
            white-space: pre-wrap;
            color: rgba(255, 255, 255, 0.85);
        }
        .api-visual .comment { color: rgba(255, 255, 255, 0.35); }
        .api-visual .method { color: #10B981; font-weight: 600; }
        .api-visual .url { color: #ff9c82; }
        .api-visual .key { color: #ff9c82; }
        .api-visual .string { color: #FBBF24; }
        .api-visual .number { color: #ffbeae; }

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

        @media (max-width: 809px) {
            .page-hero { padding: 100px 0 60px; }
            .page-hero h1 { font-size: 32px; }
            .page-hero > .container > p { font-size: 16px; }
            .integrations-section, .api-section { padding: 60px 0 70px; }
            .integrations-grid { grid-template-columns: 1fr; }
            .api-grid { grid-template-columns: 1fr; }
            .api-content h2 { font-size: 28px; }
            .api-visual { padding: 20px; }
            .api-visual pre { font-size: 12px; }
        }

        @media (max-width: 480px) {
            .page-hero { padding: 90px 0 40px; }
            .page-hero h1 { font-size: 26px; }
            .page-hero > .container > p { font-size: 15px; }
            .api-content h2 { font-size: 24px; }
            .api-visual { padding: 16px; }
            .api-visual pre { font-size: 11px; line-height: 1.6; }
            .integration-card { padding: 20px; }
        }

/* ========================================
   Extracted from: invoice-management.html
   ======================================== */
/* Light Mode Base */
        .feature-hero { padding: 160px 0 80px; background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%); position: relative; overflow: hidden; }
        .feature-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 60%); pointer-events: none; }
        .feature-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .feature-tag { display: inline-block; background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .feature-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; color: var(--text-primary); }
        .feature-hero p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }

        /* Feature visual - Light Mode */
        .feature-visual { background: var(--bg-primary); border-radius: 20px; box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.12), 0 0 0 1px rgba(var(--primary-rgb), 0.08); overflow: hidden; border: 1px solid var(--gray-4); width: 100%; max-width: 480px; margin: 0 auto; transform: scale(0.9); transform-origin: top right; }
        .demo-header { background: var(--gray-2); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(var(--primary-rgb), 0.08); }
        .dashboard-dots { display: flex; gap: 6px; }
        .dashboard-dots span { width: 10px; height: 10px; border-radius: 50%; }
        .dashboard-dots span:nth-child(1) { background: #EF4444; }
        .dashboard-dots span:nth-child(2) { background: #F59E0B; }
        .dashboard-dots span:nth-child(3) { background: #10B981; }
        .demo-title { font-size: 13px; font-weight: 600; color: #6B6580; }
        .demo-body { padding: 12px; background: var(--bg-primary); }

        /* Invoice demo */
        .invoice-demo { background: var(--gray-2); border-radius: 12px; padding: 12px; border: 1px solid var(--gray-4); margin-bottom: 8px; }
        .invoice-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
        .invoice-number { font-size: 14px; font-weight: 700; color: var(--text-primary); }
        .invoice-vendor { font-size: 12px; color: var(--gray-9); margin-top: 2px; }
        .invoice-status { padding: 4px 10px; border-radius: 20px; font-size: 10px; font-weight: 600; background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .extracted-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; margin-bottom: 8px; }
        .field-item { background: var(--bg-primary); border-radius: 8px; padding: 8px; }
        .field-label { font-size: 10px; color: var(--gray-9); margin-bottom: 2px; }
        .field-value { font-size: 13px; font-weight: 600; color: var(--text-primary); }

        /* Match status */
        .match-status { background: var(--gray-2); border-radius: 12px; padding: 10px; border: 1px solid var(--gray-4); }
        .match-title { font-size: 12px; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; }
        .match-items { display: flex; flex-direction: column; gap: 6px; }
        .match-item { display: flex; align-items: center; justify-content: space-between; padding: 6px 10px; background: var(--bg-primary); border-radius: 8px; }
        .match-item .name { font-size: 12px; font-weight: 500; color: var(--text-primary); display: flex; align-items: center; gap: 8px; }
        .match-item .status { display: flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; }
        .match-item .status.matched { color: #00B894; }
        .match-item .status.pending { color: #F59E0B; }

        /* Widgets Section - Light Mode */
        .widgets-section { padding: 80px 0; background: var(--gray-2); position: relative; }
        .widgets-section::before { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%); pointer-events: none; }
        .widgets-section .section-tag { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .widgets-section .section-header h2 { color: var(--text-primary); }
        .widgets-section .section-header p { color: var(--text-secondary); }
        .widgets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
        .widget-card { padding: 32px; background: var(--bg-primary); border-radius: 12px; border: 1px solid var(--gray-4); transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .widget-card:hover { background: var(--gray-2); border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); }
        .widget-icon { width: 56px; height: 56px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; transition: all 0.3s ease; }
        .widget-card:nth-child(6n+1) .widget-icon { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); }
        .widget-card:nth-child(6n+2) .widget-icon { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .widget-card:nth-child(6n+3) .widget-icon { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
        .widget-card:nth-child(6n+4) .widget-icon { background: rgba(241, 100, 63, 0.08); color: var(--primary); }
        .widget-card:nth-child(6n+5) .widget-icon { background: rgba(236, 72, 153, 0.08); color: #EC4899; }
        .widget-card:nth-child(6n+6) .widget-icon { background: rgba(20, 184, 166, 0.08); color: #14B8A6; }
        .widget-card:hover .widget-icon { transform: rotate(-8deg) scale(1.05); }
        .widget-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
        .widget-card p { color: var(--text-secondary); line-height: 1.6; }

        /* Workflow Section - Light Mode */
        .workflow-section { padding: 100px 0; background: var(--gray-1); position: relative; overflow: hidden; }
        .workflow-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%); pointer-events: none; }
        .workflow-section .section-header { text-align: center; max-width: 650px; margin: 0 auto 70px; position: relative; z-index: 1; }
        .workflow-section .section-tag { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .workflow-section .section-header h2 { font-size: 44px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
        .workflow-section .section-header p { color: var(--text-secondary); font-size: 18px; line-height: 1.7; }
        .workflow-visual { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; position: relative; z-index: 1; }
        .workflow-step { background: var(--bg-primary); border-radius: 16px; padding: 28px 24px; text-align: center; border: 1px solid var(--gray-4); box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); min-width: 160px; }
        .workflow-step .step-icon { width: 56px; height: 56px; background: rgba(var(--primary-rgb), 0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--mid-accent); }
        .workflow-step h4 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
        .workflow-step p { font-size: 12px; color: var(--gray-9); }
        .workflow-arrow { color: var(--mid-accent); flex-shrink: 0; }

        /* Section header overrides for light mode */
        .section-header h2 { color: var(--text-primary); }
        .section-header p { color: var(--text-secondary); }
        .section-tag { background: rgba(var(--primary-rgb), 0.08); border-color: rgba(var(--primary-rgb), 0.15); }

        @media (max-width: 809px) {
            .feature-hero .container { grid-template-columns: 1fr; }
            .feature-hero h1 { font-size: 32px; }
            .widgets-grid { grid-template-columns: 1fr; }
            .extracted-fields { grid-template-columns: 1fr; }
            .workflow-visual { flex-direction: column; }
            .workflow-arrow { transform: rotate(90deg); }
        }

/* ========================================
   Extracted from: mobile-apps.html
   ======================================== */
/* Light mode styles for mobile apps page */
        .feature-hero { padding: 160px 0 80px; background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%); position: relative; overflow: hidden; }
        .feature-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 60%); pointer-events: none; }
        .feature-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .feature-tag { display: inline-block; background: rgba(var(--primary-rgb), 0.08); color: var(--primary); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .feature-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; color: var(--text-primary); }
        .feature-hero p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }
        .app-buttons { display: flex; gap: 16px; }
        .app-btn { display: flex; align-items: center; gap: 12px; padding: 12px 24px; background: var(--navy); color: white; border-radius: 8px; text-decoration: none; border: 1px solid var(--navy); transition: all 0.3s ease; }
        .app-btn:hover { background: var(--navy); border-color: var(--text-primary); }
        .app-btn .icon { font-size: 28px; }
        .app-btn .text { text-align: left; }
        .app-btn .text span { display: block; font-size: 11px; opacity: 0.7; }
        .app-btn .text strong { font-size: 16px; color: #ffffff; }
        .feature-visual { background: var(--bg-primary); border-radius: 20px; box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.12), 0 0 0 1px rgba(var(--primary-rgb), 0.08); overflow: hidden; border: 1px solid var(--gray-4); }
        .demo-header { background: var(--gray-2); padding: 16px 24px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(var(--primary-rgb), 0.08); }
        .demo-dot { width: 12px; height: 12px; border-radius: 50%; }
        .demo-dot.red { background: #EF4444; }
        .demo-dot.yellow { background: #F59E0B; }
        .demo-dot.green { background: #10B981; }
        .demo-title { flex: 1; text-align: center; color: #6B6580; font-size: 13px; font-weight: 600; }
        .demo-body { padding: 24px; background: var(--bg-primary); }
        .phone-demo { display: flex; justify-content: center; gap: 24px; }
        .phone-frame { background: var(--navy); border-radius: 24px; padding: 8px; width: 160px; border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .phone-screen { background: var(--gray-2); border-radius: 18px; padding: 16px; min-height: 280px; }
        .phone-notch { width: 60px; height: 6px; background: var(--gray-4); border-radius: 3px; margin: 0 auto 16px; }
        .phone-app-header { font-size: 12px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
        .mini-stat { background: var(--bg-primary); border-radius: 8px; padding: 10px; margin-bottom: 8px; text-align: center; border: 1px solid var(--gray-4); }
        .mini-stat .value { font-size: 18px; font-weight: 800; color: var(--primary); }
        .mini-stat .label { font-size: 9px; color: var(--gray-9); }
        .mini-deadline { background: var(--bg-primary); border-radius: 6px; padding: 8px; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; border: 1px solid var(--gray-4); }
        .mini-deadline .dot { width: 6px; height: 6px; border-radius: 50%; background: #00B894; flex-shrink: 0; }
        .mini-deadline .dot.warning { background: #F59E0B; }
        .mini-deadline .text { font-size: 10px; color: var(--text-primary); flex: 1; }
        .mini-deadline .days { font-size: 9px; color: var(--gray-9); }

        /* Features Section - Light Mode */
        .features-section { padding: 80px 0; background: var(--gray-2); position: relative; }
        .features-section::before { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%); pointer-events: none; }
        .features-section .section-header h2 { color: var(--text-primary); }
        .features-section .section-header p { color: var(--text-secondary); }
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
        .feature-card { padding: 32px; background: var(--bg-primary); border-radius: 12px; border: 1px solid var(--gray-4); text-align: center; transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .feature-card:hover { background: var(--gray-2); border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); }
        .feature-icon { width: 64px; height: 64px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 20px; transition: all 0.3s ease; }
        .feature-card:nth-child(6n+1) .feature-icon { background: rgba(var(--primary-rgb), 0.08); color: var(--primary); }
        .feature-card:nth-child(6n+2) .feature-icon { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .feature-card:nth-child(6n+3) .feature-icon { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
        .feature-card:nth-child(6n+4) .feature-icon { background: rgba(241, 100, 63, 0.08); color: var(--primary); }
        .feature-card:nth-child(6n+5) .feature-icon { background: rgba(236, 72, 153, 0.08); color: #EC4899; }
        .feature-card:nth-child(6n+6) .feature-icon { background: rgba(20, 184, 166, 0.08); color: #14B8A6; }
        .feature-card:hover .feature-icon { transform: rotate(-8deg) scale(1.05); }
        .feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
        .feature-card p { color: var(--text-secondary); }

        /* Screenshots Section - Light Mode */
        .screenshots-section { padding: 80px 0; background: var(--gray-1); position: relative; overflow: hidden; }
        .screenshots-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%); pointer-events: none; }
        .screenshots-section .section-header h2 { color: var(--text-primary); }
        .screenshots-section .section-header p { color: var(--text-secondary); }
        .screenshots-grid { display: flex; justify-content: center; gap: 32px; margin-top: 60px; flex-wrap: wrap; }
        .screenshot { width: 220px; height: 440px; background: var(--bg-primary); border-radius: 24px; box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.1); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gray-9); text-align: center; padding: 20px; border: 1px solid var(--gray-4); }

        /* Platforms Section - Light Mode */
        .platforms-section { padding: 80px 0; background: var(--gray-2); position: relative; }
        .platforms-section .section-header h2 { color: var(--text-primary); }
        .platforms-section .section-header p { color: var(--text-secondary); }
        .platforms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 800px; margin: 60px auto 0; }
        .platform-card { background: var(--bg-primary); border-radius: 16px; padding: 40px; text-align: center; border: 1px solid var(--gray-4); transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .platform-card:hover { background: var(--gray-2); border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); }
        .platform-card .icon { font-size: 64px; margin-bottom: 20px; color: var(--text-primary); }
        .platform-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
        .platform-card p { color: var(--text-secondary); margin-bottom: 20px; }
        .platform-card .badge { display: inline-block; padding: 6px 16px; background: rgba(var(--primary-rgb), 0.08); color: var(--primary); border-radius: 20px; font-size: 14px; font-weight: 600; border: 1px solid rgba(var(--primary-rgb), 0.15); }

        @media (max-width: 809px) {
            .feature-hero .container { grid-template-columns: 1fr; }
            .feature-hero h1 { font-size: 32px; }
            .features-grid, .platforms-grid { grid-template-columns: 1fr; }
            .app-buttons { flex-direction: column; }
        }

/* ========================================
   Extracted from: multi-state-operations.html
   ======================================== */
/* Light mode styles for multi-state operations page */
        .feature-hero { padding: 220px 0 220px; background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%); position: relative; overflow: hidden; }
        .feature-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 60%); pointer-events: none; }
        .feature-hero .container { position: relative; z-index: 1; }
        .feature-tag { display: inline-block; background: rgba(var(--primary-rgb), 0.08); color: var(--primary); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .feature-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; color: var(--text-primary); }
        .feature-hero p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }
        .feature-content { max-width: 420px; }
        /* India Map on Land Platform */
        .india-map-bg {
            position: absolute;
            top: 0;
            right: 5%;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1000px;
            z-index: 2;
        }
        .india-map-bg object {
            display: block;
            height: 120%;
            width: auto;
            transform: rotateX(55deg) rotateZ(15deg) translateY(-40px);
            filter: drop-shadow(0 50px 40px rgba(var(--primary-rgb), 0.15));
        }
        /* Land/Platform */
        .map-land {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%) rotateX(55deg) rotateZ(15deg);
            width: 550px;
            height: 300px;
            background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.15) 0%, rgba(var(--primary-rgb), 0.08) 30%, rgba(var(--primary-rgb), 0.03) 60%, transparent 80%);
            border-radius: 50%;
            pointer-events: none;
        }
        /* State Popover with Line */
        .state-popover {
            position: fixed;
            pointer-events: none;
            opacity: 0;
            transform: translateX(-50%) translateY(-100%);
            transition: opacity 0.2s ease;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .state-popover.visible {
            opacity: 1;
        }
        .state-chip {
            background: var(--bg-primary);
            padding: 16px 20px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.15);
            white-space: nowrap;
            min-width: 200px;
            border: 1px solid var(--gray-4);
        }
        .state-chip-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--gray-4);
        }
        .state-chip .state-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
        }
        .state-chip .compliance-count {
            font-size: 12px;
            color: white;
            background: var(--primary);
            padding: 4px 10px;
            border-radius: 20px;
            font-weight: 600;
        }
        .state-chip .compliance-details {
            font-size: 12px;
            color: var(--gray-9);
            line-height: 1.6;
        }
        .state-chip .compliance-item {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 4px;
        }
        .state-chip .compliance-item::before {
            content: '✓';
            color: var(--primary);
            font-size: 10px;
        }
        .state-line {
            width: 2px;
            height: 40px;
            background: linear-gradient(to bottom, var(--primary), transparent);
        }
        .state-dot {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(6, 103, 191, 0.4);
        }

        /* States Section - Light Mode */
        .states-section { padding: 80px 0; background: var(--gray-2); position: relative; }
        .states-section::before { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%); pointer-events: none; }
        .states-section .section-header h2 { color: var(--text-primary); }
        .states-section .section-header p { color: var(--text-secondary); }
        .states-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
        .state-card { background: var(--bg-primary); border-radius: 12px; padding: 24px; border: 1px solid var(--gray-4); text-align: center; transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .state-card:hover { background: var(--gray-2); border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); }
        .state-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
        .state-card ul { list-style: none; font-size: 13px; color: var(--gray-9); }
        .state-card li { padding: 6px 0; }

        /* Compliance Types Section - Light Mode */
        .compliance-types { padding: 80px 0; background: var(--gray-1); position: relative; overflow: hidden; }
        .compliance-types::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%); pointer-events: none; }
        .compliance-types .section-header h2 { color: var(--text-primary); }
        .compliance-types .section-header p { color: var(--text-secondary); }
        .types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
        .type-card { background: var(--bg-primary); border-radius: 12px; padding: 32px; border: 1px solid var(--gray-4); transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .type-card:hover { background: var(--gray-2); border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); }
        .type-icon { width: 56px; height: 56px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; transition: all 0.3s ease; }
        .type-card:nth-child(6n+1) .type-icon { background: rgba(var(--primary-rgb), 0.08); color: var(--primary); }
        .type-card:nth-child(6n+2) .type-icon { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .type-card:nth-child(6n+3) .type-icon { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
        .type-card:nth-child(6n+4) .type-icon { background: rgba(241, 100, 63, 0.08); color: var(--primary); }
        .type-card:nth-child(6n+5) .type-icon { background: rgba(236, 72, 153, 0.08); color: #EC4899; }
        .type-card:nth-child(6n+6) .type-icon { background: rgba(20, 184, 166, 0.08); color: #14B8A6; }
        .type-card:hover .type-icon { transform: rotate(-8deg) scale(1.05); }
        .type-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
        .type-card p { color: var(--text-secondary); margin-bottom: 16px; }
        .type-card ul { list-style: none; font-size: 14px; }
        .type-card li { padding: 4px 0; color: var(--gray-9); }
        .type-card li::before { content: '✓'; color: #00B894; margin-right: 8px; }

        @media (max-width: 1199px) {
            .states-grid { grid-template-columns: repeat(2, 1fr); }
            .india-map-bg { right: -10%; }
            .india-map-bg object { height: 100%; }
            .feature-content { max-width: 380px; }
        }
        @media (max-width: 809px) {
            .feature-hero { padding: 120px 0 300px; }
            .feature-hero .container { grid-template-columns: 1fr; }
            .feature-hero h1 { font-size: 32px; }
            .feature-content { max-width: 100%; text-align: center; }
            .india-map-bg {
                top: auto;
                bottom: 20px;
                right: 50%;
                transform: translateX(50%);
                height: 280px;
            }
            .india-map-bg object {
                height: 100%;
                transform: rotateX(45deg) rotateZ(0deg);
            }
            .map-land {
                width: 300px;
                height: 150px;
                bottom: 20px;
                transform: translateX(-50%) rotateX(45deg) rotateZ(0deg);
            }
            .states-grid, .types-grid { grid-template-columns: 1fr; }
            .state-popover { display: none; }
        }
        @media (max-width: 480px) {
            .feature-hero { padding: 100px 0 260px; }
            .feature-hero h1 { font-size: 28px; }
            .india-map-bg { height: 220px; }
            .map-land { width: 240px; height: 120px; }
        }

/* ========================================
   Extracted from: password-vault.html
   ======================================== */
/* Light mode styles for Password Vault page */
        .feature-hero { padding: 160px 0 80px; background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%); }
        .feature-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .feature-tag { display: inline-block; background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .feature-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; color: var(--text-primary); }
        .feature-hero p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }
        .feature-visual { background: var(--bg-primary); border-radius: 20px; box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.12), 0 0 0 1px rgba(var(--primary-rgb), 0.08); overflow: hidden; border: 1px solid var(--gray-4); }
        .demo-header { background: var(--gray-2); padding: 16px 24px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(var(--primary-rgb), 0.08); }
        .demo-dot { width: 12px; height: 12px; border-radius: 50%; }
        .demo-dot.red { background: #ff5f57; }
        .demo-dot.yellow { background: #febc2e; }
        .demo-dot.green { background: #28c840; }
        .demo-title { flex: 1; text-align: center; color: #6B6580; font-size: 13px; font-weight: 500; }
        .demo-body { padding: 24px; background: var(--bg-primary); }
        .vault-demo { background: var(--gray-2); border-radius: 12px; padding: 20px; border: 1px solid var(--gray-4); }
        .vault-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-4); }
        .vault-header h5 { font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 8px; color: var(--text-primary); }
        .vault-header .lock { color: var(--mid-accent); }
        .credential-list { display: flex; flex-direction: column; gap: 12px; }
        .credential-item { display: flex; align-items: center; gap: 16px; background: var(--bg-primary); padding: 16px; border-radius: 8px; border: 1px solid var(--gray-4); }
        .credential-icon { width: 40px; height: 40px; background: rgba(var(--primary-rgb), 0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--mid-accent); }
        .credential-info { flex: 1; }
        .credential-info strong { display: block; font-size: 14px; margin-bottom: 2px; color: var(--text-primary); }
        .credential-info span { font-size: 12px; color: var(--gray-9); }
        .credential-actions { display: flex; gap: 8px; }
        .credential-actions button { width: 32px; height: 32px; border: 1px solid var(--gray-4); background: rgba(var(--primary-rgb), 0.04); border-radius: 6px; cursor: pointer; font-size: 14px; color: #6B6580; }
        .credential-actions button:hover { background: rgba(var(--primary-rgb), 0.08); border-color: rgba(var(--primary-rgb), 0.2); }

        /* Security Section - Light Mode */
        .security-section { padding: 80px 0; background: var(--gray-2); }
        .security-section .section-header h2 { color: var(--text-primary); }
        .security-section .section-header p { color: var(--text-secondary); }
        .security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
        .security-card { padding: 32px; background: var(--bg-primary); border-radius: 12px; border: 1px solid var(--gray-4); text-align: center; transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .security-card:hover { background: var(--gray-2); border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); }
        .security-icon { width: 72px; height: 72px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 36px; margin: 0 auto 24px; transition: all 0.3s ease; }
        .security-card:nth-child(6n+1) .security-icon { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); }
        .security-card:nth-child(6n+2) .security-icon { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .security-card:nth-child(6n+3) .security-icon { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
        .security-card:nth-child(6n+4) .security-icon { background: rgba(241, 100, 63, 0.08); color: var(--primary); }
        .security-card:nth-child(6n+5) .security-icon { background: rgba(236, 72, 153, 0.08); color: #EC4899; }
        .security-card:nth-child(6n+6) .security-icon { background: rgba(20, 184, 166, 0.08); color: #14B8A6; }
        .security-card:hover .security-icon { transform: rotate(-8deg) scale(1.05); }
        .security-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
        .security-card p { color: var(--text-secondary); line-height: 1.6; }

        /* Portals Section - Light Mode */
        .portals-section { padding: 80px 0; background: var(--bg-primary); }
        .portals-section .section-header h2 { color: var(--text-primary); }
        .portals-section .section-header p { color: var(--text-secondary); }
        .portals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
        .portal-card { background: var(--bg-primary); border-radius: 12px; padding: 24px; text-align: center; transition: all 0.3s ease; border: 1px solid var(--gray-4); box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .portal-card:hover { transform: translateY(-4px); background: var(--gray-2); border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); }
        .portal-card .icon { width: 64px; height: 64px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 16px; transition: all 0.3s ease; }
        .portal-card:nth-child(6n+1) .icon { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); }
        .portal-card:nth-child(6n+2) .icon { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .portal-card:nth-child(6n+3) .icon { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
        .portal-card:nth-child(6n+4) .icon { background: rgba(241, 100, 63, 0.08); color: var(--primary); }
        .portal-card:nth-child(6n+5) .icon { background: rgba(236, 72, 153, 0.08); color: #EC4899; }
        .portal-card:nth-child(6n+6) .icon { background: rgba(20, 184, 166, 0.08); color: #14B8A6; }
        .portal-card:hover .icon { transform: rotate(-8deg) scale(1.05); }
        .portal-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
        .portal-card p { font-size: 13px; color: var(--gray-9); }

        /* Sharing Section - Light Mode */
        .sharing-section { padding: 80px 0; background: var(--gray-2); }
        .sharing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; }
        .sharing-content h3 { font-size: 32px; font-weight: 800; margin-bottom: 20px; color: var(--text-primary); }
        .sharing-content p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }
        .sharing-features { display: flex; flex-direction: column; gap: 20px; }
        .sharing-feature { display: flex; gap: 16px; }
        .sharing-feature .icon { width: 48px; height: 48px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; transition: all 0.3s ease; }
        .sharing-feature:nth-child(6n+1) .icon { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); }
        .sharing-feature:nth-child(6n+2) .icon { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .sharing-feature:nth-child(6n+3) .icon { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
        .sharing-feature:nth-child(6n+4) .icon { background: rgba(241, 100, 63, 0.08); color: var(--primary); }
        .sharing-feature:nth-child(6n+5) .icon { background: rgba(236, 72, 153, 0.08); color: #EC4899; }
        .sharing-feature:nth-child(6n+6) .icon { background: rgba(20, 184, 166, 0.08); color: #14B8A6; }
        .sharing-feature:hover .icon { transform: rotate(-8deg) scale(1.05); }
        .sharing-feature h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
        .sharing-feature p { font-size: 14px; color: var(--text-secondary); }
        .sharing-visual { background: var(--bg-primary); border-radius: 16px; box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.12); padding: 24px; border: 1px solid var(--gray-4); }
        .share-access-demo { background: var(--gray-2); border-radius: 12px; padding: 20px; border: 1px solid var(--gray-4); }
        .share-access-demo h5 { font-size: 14px; font-weight: 700; margin-bottom: 16px; color: var(--text-primary); }
        .access-list { display: flex; flex-direction: column; gap: 12px; }
        .access-item { display: flex; align-items: center; justify-content: space-between; background: var(--bg-primary); padding: 12px 16px; border-radius: 8px; border: 1px solid var(--gray-4); }
        .access-item .user { display: flex; align-items: center; gap: 12px; }
        .access-item .avatar { width: 36px; height: 36px; background: linear-gradient(135deg, var(--accent) 0%, var(--primary-dark) 100%); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; }
        .access-item .name { font-size: 14px; font-weight: 500; color: var(--text-primary); }
        .access-item .role { font-size: 12px; color: var(--gray-9); }
        .access-item .badge { font-size: 11px; padding: 4px 8px; border-radius: 4px; font-weight: 600; }
        .access-item .badge.view { background: rgba(241, 100, 63, 0.08); color: var(--primary); }
        .access-item .badge.use { background: rgba(0, 184, 148, 0.08); color: #00B894; }

        /* Section header overrides for light mode */
        .section-header h2 { color: var(--text-primary); }
        .section-header p { color: var(--text-secondary); }
        .section-tag { background: rgba(var(--primary-rgb), 0.08); border-color: rgba(var(--primary-rgb), 0.15); }

        @media (max-width: 1199px) { .portals-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 809px) {
            .feature-hero .container, .sharing-grid { grid-template-columns: 1fr; }
            .feature-hero h1 { font-size: 32px; }
            .security-grid, .portals-grid { grid-template-columns: 1fr; }
        }

/* ========================================
   Extracted from: payment-processing.html
   ======================================== */
/* Light Mode Base */
        .feature-hero { padding: 160px 0 80px; background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%); position: relative; overflow: hidden; }
        .feature-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 60%); pointer-events: none; }
        .feature-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .feature-tag { display: inline-block; background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .feature-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; color: var(--text-primary); }
        .feature-hero p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }

        /* Feature visual - Light Mode */
        .feature-visual { background: var(--bg-primary); border-radius: 16px; box-shadow: 0 20px 40px -12px rgba(var(--primary-rgb), 0.12), 0 0 0 1px rgba(var(--primary-rgb), 0.08); overflow: hidden; border: 1px solid var(--gray-4); width: 100%; max-width: 520px; margin: 0 auto; }
        .demo-header { background: var(--gray-2); padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(var(--primary-rgb), 0.08); }
        .dashboard-dots { display: flex; gap: 6px; }
        .dashboard-dots span { width: 8px; height: 8px; border-radius: 50%; }
        .dashboard-dots span:nth-child(1) { background: #EF4444; }
        .dashboard-dots span:nth-child(2) { background: #F59E0B; }
        .dashboard-dots span:nth-child(3) { background: #10B981; }
        .demo-title { font-size: 12px; font-weight: 600; color: #6B6580; }
        .demo-body { padding: 14px; background: var(--bg-primary); }

        /* Payment batch demo */
        .payment-batch { background: var(--gray-2); border-radius: 10px; padding: 14px; border: 1px solid var(--gray-4); margin-bottom: 10px; }
        .batch-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
        .batch-title { font-size: 13px; font-weight: 700; color: var(--text-primary); }
        .batch-count { font-size: 11px; color: var(--gray-9); }
        .method-selector { display: flex; gap: 6px; margin-bottom: 10px; }
        .method-btn { padding: 5px 12px; border-radius: 6px; font-size: 11px; font-weight: 600; background: var(--bg-primary); color: var(--text-secondary); border: 1px solid var(--gray-4); cursor: pointer; }
        .method-btn.active { background: var(--mid-accent); color: #FFFFFF; border-color: var(--mid-accent); }
        .payment-list { display: flex; flex-direction: column; gap: 6px; }
        .payment-item { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; background: var(--bg-primary); border-radius: 8px; border: 1px solid var(--gray-4); }
        .payment-item .vendor-name { font-size: 12px; font-weight: 600; color: var(--text-primary); }
        .payment-item .amount { font-size: 12px; font-weight: 700; color: var(--mid-accent); }
        .payment-item .status-icon { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .payment-item .status-icon.pending { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
        .payment-item .status-icon.ready { background: rgba(0, 184, 148, 0.1); color: #00B894; }

        /* Batch summary */
        .batch-summary { background: var(--gray-2); border-radius: 10px; padding: 14px; border: 1px solid var(--gray-4); }
        .summary-row { display: flex; justify-content: space-between; align-items: center; padding: 4px 0; }
        .summary-row .label { font-size: 11px; color: var(--gray-9); }
        .summary-row .value { font-size: 13px; font-weight: 700; color: var(--text-primary); }
        .summary-row.total { border-top: 1px solid var(--gray-4); margin-top: 6px; padding-top: 8px; }
        .summary-row.total .value { color: var(--mid-accent); font-size: 14px; }

        /* Widgets Section - Light Mode */
        .widgets-section { padding: 80px 0; background: var(--gray-2); position: relative; }
        .widgets-section::before { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%); pointer-events: none; }
        .widgets-section .section-tag { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .widgets-section .section-header h2 { color: var(--text-primary); }
        .widgets-section .section-header p { color: var(--text-secondary); }
        .widgets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
        .widget-card { padding: 32px; background: var(--bg-primary); border-radius: 12px; border: 1px solid var(--gray-4); transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .widget-card:hover { background: var(--gray-2); border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); }
        .widget-icon { width: 56px; height: 56px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; transition: all 0.3s ease; }
        .widget-card:nth-child(6n+1) .widget-icon { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); }
        .widget-card:nth-child(6n+2) .widget-icon { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .widget-card:nth-child(6n+3) .widget-icon { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
        .widget-card:nth-child(6n+4) .widget-icon { background: rgba(241, 100, 63, 0.08); color: var(--primary); }
        .widget-card:nth-child(6n+5) .widget-icon { background: rgba(236, 72, 153, 0.08); color: #EC4899; }
        .widget-card:nth-child(6n+6) .widget-icon { background: rgba(20, 184, 166, 0.08); color: #14B8A6; }
        .widget-card:hover .widget-icon { transform: rotate(-8deg) scale(1.05); }
        .widget-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
        .widget-card p { color: var(--text-secondary); line-height: 1.6; }

        /* Payment Methods Section - Light Mode */
        .methods-section { padding: 100px 0; background: var(--gray-1); position: relative; overflow: hidden; }
        .methods-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%); pointer-events: none; }
        .methods-section .section-header { text-align: center; max-width: 650px; margin: 0 auto 70px; position: relative; z-index: 1; }
        .methods-section .section-tag { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .methods-section .section-header h2 { font-size: 44px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
        .methods-section .section-header p { color: var(--text-secondary); font-size: 18px; line-height: 1.7; }
        .methods-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
        .method-card { background: var(--bg-primary); border-radius: 16px; padding: 28px; text-align: center; border: 1px solid var(--gray-4); transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .method-card:hover { border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); transform: translateY(-4px); }
        .method-icon { width: 64px; height: 64px; background: rgba(var(--primary-rgb), 0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--mid-accent); font-size: 24px; font-weight: 800; }
        .method-card h4 { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
        .method-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

        /* Section header overrides for light mode */
        .section-header h2 { color: var(--text-primary); }
        .section-header p { color: var(--text-secondary); }
        .section-tag { background: rgba(var(--primary-rgb), 0.08); border-color: rgba(var(--primary-rgb), 0.15); }

        @media (max-width: 1199px) {
            .methods-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 809px) {
            .feature-hero .container { grid-template-columns: 1fr; }
            .feature-hero h1 { font-size: 32px; }
            .widgets-grid { grid-template-columns: 1fr; }
            .methods-grid { grid-template-columns: 1fr; }
            .method-selector { flex-wrap: wrap; }
        }

/* ========================================
   Extracted from: penalty-calculator.html
   ======================================== */
/* Light mode styles for penalty calculator page */
        .feature-hero { padding: 160px 0 80px; background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%); position: relative; overflow: hidden; }
        .feature-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 60%); pointer-events: none; }
        .feature-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .feature-tag { display: inline-block; background: rgba(var(--primary-rgb), 0.08); color: var(--primary); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .feature-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; color: var(--text-primary); }
        .feature-hero p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }
        .feature-visual { background: var(--bg-primary); border-radius: 20px; box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.12), 0 0 0 1px rgba(var(--primary-rgb), 0.08); overflow: hidden; border: 1px solid var(--gray-4); }
        .demo-header { background: var(--gray-2); padding: 16px 24px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(var(--primary-rgb), 0.08); }
        .demo-dot { width: 12px; height: 12px; border-radius: 50%; }
        .demo-dot.red { background: #EF4444; }
        .demo-dot.yellow { background: #F59E0B; }
        .demo-dot.green { background: #10B981; }
        .demo-title { flex: 1; text-align: center; color: #6B6580; font-size: 13px; font-weight: 600; }
        .demo-body { padding: 24px; background: var(--bg-primary); }
        .calc-demo { background: var(--gray-2); border-radius: 12px; padding: 24px; border: 1px solid var(--gray-4); }
        .calc-header { margin-bottom: 20px; }
        .calc-header h5 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
        .calc-header span { font-size: 13px; color: var(--gray-9); }
        .calc-item { background: var(--bg-primary); border-radius: 8px; padding: 16px; margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; border: 1px solid var(--gray-4); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03); }
        .calc-item .info h6 { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--text-primary); }
        .calc-item .info span { font-size: 12px; color: var(--gray-9); }
        .calc-item .amount { font-size: 18px; font-weight: 700; color: #EF4444; }
        .calc-total { background: #EF4444; color: white; border-radius: 8px; padding: 16px; display: flex; justify-content: space-between; align-items: center; }
        .calc-total span { font-size: 14px; font-weight: 600; }
        .calc-total .total { font-size: 24px; font-weight: 800; }

        /* Penalties Rules Section - Light Mode */
        .penalties-section { padding: 80px 0; background: var(--gray-2); position: relative; }
        .penalties-section::before { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%); pointer-events: none; }
        .penalties-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
        .penalties-section .section-header h2 { color: var(--text-primary); }
        .penalties-section .section-header p { color: var(--text-secondary); }
        .penalty-card { background: var(--bg-primary); border-radius: 12px; padding: 24px; border: 1px solid var(--gray-4); transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .penalty-card:hover { background: var(--gray-2); border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); }
        .penalty-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; color: var(--text-primary); }
        .penalty-card .icon { font-size: 24px; color: var(--primary); }
        .penalty-card ul { list-style: none; font-size: 14px; color: var(--text-secondary); }
        .penalty-card li { padding: 8px 0; border-bottom: 1px solid var(--gray-4); }
        .penalty-card li:last-child { border-bottom: none; }
        .penalty-card li strong { color: #EF4444; }

        /* Savings Section - Light Mode */
        .savings-section { padding: 80px 0; background: var(--gray-1); position: relative; overflow: hidden; }
        .savings-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%); pointer-events: none; }
        .savings-content { max-width: 800px; margin: 0 auto; text-align: center; }
        .savings-content h2 { color: var(--text-primary); }
        .savings-content > p { color: var(--text-secondary); }
        .savings-stat { display: flex; justify-content: center; gap: 60px; margin-top: 60px; }
        .savings-stat .stat { text-align: center; }
        .savings-stat .value { font-size: 48px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
        .savings-stat .label { font-size: 16px; color: var(--gray-9); }

        @media (max-width: 1199px) { .penalties-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 809px) {
            .feature-hero .container { grid-template-columns: 1fr; }
            .feature-hero h1 { font-size: 32px; }
            .penalties-grid { grid-template-columns: 1fr; }
            .savings-stat { flex-direction: column; gap: 32px; }
        }

/* ========================================
   Extracted from: pricing.html
   ======================================== */
/* Pricing Page Styles */
        .pricing-hero {
            padding: 180px 0 80px;
            background: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .pricing-hero::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 50%;
            height: 80%;
            background: none;
            pointer-events: none;
        }
        .pricing-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -5%;
            width: 40%;
            height: 70%;
            background: none;
            pointer-events: none;
        }

        .pricing-hero h1 {
            font-size: 48px;
            font-weight: 500;
            font-family: 'Bricolage Grotesque', serif;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .pricing-hero h1 span { color: var(--primary); }

        .pricing-hero .subtitle {
            color: var(--text-secondary);
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto 32px;
        }

        .hero-badge {
            display: inline-block;
            color: var(--primary);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 6px 14px;
            border-radius: 4px;
            margin-bottom: 16px;
            background: none;
        }

        /* Billing Toggle */
        .billing-toggle {
            display: inline-flex;
            background: rgba(var(--primary-rgb), 0.08);
            border-radius: 50px;
            padding: 4px;
            border: 1px solid rgba(var(--primary-rgb), 0.15);
        }

        .billing-toggle button {
            padding: 10px 24px;
            border: none;
            background: transparent;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .billing-toggle button.active {
            background: linear-gradient(135deg, var(--mid-accent), var(--primary));
            color: #fff;
        }

        .billing-toggle .save-badge {
            background: rgba(0, 184, 148, 0.2);
            color: #00B894;
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
        }

        .billing-toggle button.active .save-badge {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        /* Products Section */
        .products-section {
            padding: 60px 0 80px;
            background: var(--bg-primary);
        }

        .products-section .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .products-section .section-header h2 {
            color: var(--text-primary);
            font-size: 32px;
            margin-bottom: 12px;
            font-family: 'Bricolage Grotesque', serif;
            font-weight: 500;
        }

        .products-section .section-header p {
            color: var(--text-secondary);
            font-size: 18px;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 48px;
        }

        .product-card {
            background: white;
            border: 2px solid rgba(var(--primary-rgb), 0.1);
            border-radius: 20px;
            padding: 28px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .product-card:hover {
            border-color: rgba(var(--primary-rgb), 0.3);
            box-shadow: 0 12px 40px rgba(var(--primary-rgb), 0.12);
        }

        .product-card.selected {
            border-color: var(--mid-accent);
            background: linear-gradient(135deg, rgba(6, 103, 191, 0.05), rgba(var(--primary-rgb), 0.05));
            box-shadow: 0 12px 40px rgba(var(--primary-rgb), 0.15);
        }

        .product-card .checkbox {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 24px;
            height: 24px;
            border: 2px solid rgba(var(--primary-rgb), 0.3);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .product-card.selected .checkbox {
            background: var(--mid-accent);
            border-color: var(--mid-accent);
        }

        .product-card .checkbox i {
            color: #fff;
            width: 14px;
            height: 14px;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .product-card.selected .checkbox i {
            opacity: 1;
        }

        .product-icon {
            width: 56px;
            height: 56px;
            background: rgba(var(--primary-rgb), 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            color: var(--mid-accent);
        }

        .product-icon i {
            width: 28px;
            height: 28px;
        }

        .product-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .product-card > p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .tier-select {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid rgba(var(--primary-rgb), 0.2);
            border-radius: 10px;
            background: #fff;
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .tier-select:focus {
            outline: none;
            border-color: var(--mid-accent);
            box-shadow: 0 0 0 3px rgba(6, 103, 191, 0.1);
        }

        .product-price {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-top: 12px;
        }

        .product-price .amount {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-primary);
        }

        .product-price .period {
            font-size: 13px;
            color: var(--text-secondary);
        }

        /* Calculator Section */
        .calculator-section {
            background: #E8E4DE;
            padding: 24px 0;
            position: sticky;
            bottom: 0;
            z-index: 10;
            border-top: none;
        }

        .calculator-inner {
            background: white;
            border-radius: 16px;
            padding: 24px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        }

        .calculator-summary {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .summary-item {
            text-align: left;
        }

        .summary-item .label {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 4px;
        }

        .summary-item .value {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .total-price {
            text-align: right;
        }

        .total-price .label {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 4px;
        }

        .total-price .amount {
            font-size: 36px;
            font-weight: 800;
            color: var(--text-primary);
        }

        .total-price .period {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .calculator-actions {
            display: flex;
            gap: 12px;
        }

        /* Add-ons Section */
        .addons-section {
            padding: 80px 0;
            background: var(--bg-primary);
        }

        .addons-section .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .addons-section .section-header h2 {
            color: var(--text-primary);
            font-size: 32px;
            margin-bottom: 12px;
            font-family: 'Bricolage Grotesque', serif;
            font-weight: 500;
        }

        .addons-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 900px;
            margin: 0 auto;
        }

        .addon-card {
            background: var(--gray-2);
            border: 1px solid var(--gray-4);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .addon-card:hover {
            border-color: rgba(var(--primary-rgb), 0.25);
            box-shadow: 0 12px 40px rgba(var(--primary-rgb), 0.1);
        }

        .addon-card .icon {
            width: 48px;
            height: 48px;
            background: rgba(var(--primary-rgb), 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            color: var(--mid-accent);
        }

        .addon-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .addon-card p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 12px;
        }

        .addon-card .price {
            font-size: 20px;
            font-weight: 700;
            color: var(--mid-accent);
        }

        .addon-card .price span {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
        }

        /* Bundles Section */
        .bundles-section {
            padding: 80px 0;
            background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%);
        }

        .bundles-section .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .bundles-section .section-header h2 {
            color: var(--text-primary);
            font-family: 'Bricolage Grotesque', serif;
            font-weight: 500;
        }

        .bundles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .bundle-card {
            background: var(--bg-primary);
            border: 2px solid rgba(var(--primary-rgb), 0.1);
            border-radius: 20px;
            padding: 32px;
            position: relative;
            transition: all 0.3s ease;
        }

        .bundle-card:hover {
            border-color: rgba(var(--primary-rgb), 0.3);
            box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.12);
        }

        .bundle-card.popular {
            border-color: var(--mid-accent);
        }

        .bundle-card .popular-badge {
            position: absolute;
            top: -12px;
            right: 24px;
            background: linear-gradient(135deg, var(--mid-accent), var(--primary));
            color: #fff;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
        }

        .bundle-card h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .bundle-card > p {
            color: var(--text-secondary);
            font-size: 15px;
            margin-bottom: 20px;
        }

        .bundle-products {
            list-style: none;
            margin-bottom: 24px;
        }

        .bundle-products li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            color: var(--text-secondary);
            font-size: 14px;
        }

        .bundle-products li i {
            width: 18px;
            height: 18px;
            color: #00B894;
        }

        .bundle-price {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin-bottom: 20px;
        }

        .bundle-price .amount {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-primary);
        }

        .bundle-price .period {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .bundle-price .savings {
            background: rgba(0, 184, 148, 0.1);
            color: #00B894;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        /* Platform Section */
        .platform-section {
            padding: 80px 0;
            background: var(--bg-primary);
        }

        .platform-section .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .platform-section .section-header h2 {
            color: var(--text-primary);
            font-family: 'Bricolage Grotesque', serif;
            font-weight: 500;
        }

        .platform-features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 900px;
            margin: 0 auto;
        }

        .platform-feature {
            text-align: center;
        }

        .platform-feature .icon {
            width: 56px;
            height: 56px;
            background: rgba(0, 184, 148, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            color: #00B894;
        }

        .platform-feature h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .platform-feature p {
            font-size: 13px;
            color: var(--text-secondary);
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--gray-1);
        }

        .faq-section .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .faq-section .section-header h2 {
            color: var(--text-primary);
            font-family: 'Bricolage Grotesque', serif;
            font-weight: 500;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-primary);
            border: 1px solid var(--gray-4);
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: border-color 0.2s ease;
        }

        .faq-item:hover {
            border-color: rgba(var(--primary-rgb), 0.2);
        }

        .faq-question {
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            font-weight: 600;
            color: var(--text-primary);
            transition: background 0.2s ease;
        }

        .faq-question:hover {
            background: rgba(var(--primary-rgb), 0.03);
        }

        .faq-question .icon {
            width: 24px;
            height: 24px;
            color: var(--mid-accent);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question .icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 24px 20px;
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.7;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .btn {
            border-radius: 100px;
        }

        

        /* Responsive */
        @media (max-width: 1199px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .bundles-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
            .addons-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
            .platform-features {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 1199px) {
            .pricing-hero {
                padding-top: 140px;
            }
        }

        @media (max-width: 809px) {
            .pricing-hero {
                padding: 120px 0 40px;
            }
            .pricing-hero h1 {
                font-size: 36px;
            }
            .products-grid {
                grid-template-columns: 1fr;
            }
            .calculator-inner {
                flex-direction: column;
                text-align: center;
            }
            .calculator-summary {
                flex-wrap: wrap;
                justify-content: center;
            }
            .total-price {
                text-align: center;
            }
            .platform-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .pricing-hero {
                padding: 100px 0 32px;
            }
            .pricing-hero h1 {
                font-size: 28px;
            }
        }

/* ========================================
   Extracted from: privacy-policy.html
   ======================================== */
.page-hero.legal-hero {
            min-height: 50vh;
            padding-top: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 50%;
            height: 80%;
            background: radial-gradient(ellipse at center, rgba(255, 140, 80, 0.04) 0%, transparent 70%);
            filter: blur(40px);
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -5%;
            width: 40%;
            height: 70%;
            background: radial-gradient(ellipse at center, rgba(255, 140, 80, 0.04) 0%, transparent 70%);
            filter: blur(40px);
            pointer-events: none;
        }
        .page-hero h1 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 48px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 16px;
        }
        .page-hero h1 span { color: var(--primary); }
        .page-hero p {
            color: var(--text-secondary);
            font-size: 18px;
            line-height: 1.7;
            max-width: 560px;
            margin: 0 auto;
        }
        .hero-badge {
            display: inline-block;
            color: var(--primary);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 6px 14px;
            border-radius: 4px;
            margin-bottom: 16px;
            background: none;
        }
        .legal-content {
            padding: 80px 0;
            background: var(--gray-1);
        }
        .legal-container {
            max-width: 800px;
            margin: 0 auto;
            background: #E8E4DE;
            border: none;
            border-radius: 24px;
            padding: 6px;
        }
        .legal-inner {
            background: white;
            border-radius: 18px;
            padding: 48px;
        }
        .legal-content h2 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 22px;
            font-weight: 600;
            margin: 40px 0 16px;
            color: var(--text-primary);
            padding: 12px 16px;
            background: rgba(var(--primary-rgb), 0.04);
            border-left: 4px solid var(--primary);
            border-radius: 0 10px 10px 0;
        }
        .legal-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 24px 0 12px;
            color: var(--text-primary);
        }
        .legal-content p {
            color: var(--text-secondary);
            margin-bottom: 16px;
            line-height: 1.8;
        }
        .legal-content ul, .legal-content ol {
            margin: 16px 0;
            padding-left: 24px;
            color: var(--text-secondary);
        }
        .legal-content li {
            margin-bottom: 8px;
            line-height: 1.7;
        }
        .legal-content li strong {
            color: var(--text-primary);
        }
        .legal-content .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary);
            color: white;
            font-size: 13px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 100px;
            margin-bottom: 32px;
        }
        .legal-content .highlight-box {
            background: rgba(var(--primary-rgb), 0.04);
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
        }
        .legal-content .highlight-box p {
            margin: 0;
            color: var(--text-secondary);
        }
        .legal-content .highlight-box strong {
            color: var(--text-primary);
        }
        .legal-content a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .legal-content a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        .legal-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--gray-4);
        }
        .legal-content th, .legal-content td {
            padding: 14px 18px;
            border: 1px solid var(--gray-4);
            text-align: left;
        }
        .legal-content th {
            background: var(--gray-2);
            font-weight: 600;
            color: var(--text-primary);
            font-size: 14px;
        }
        .legal-content td {
            color: var(--text-secondary);
            font-size: 14px;
        }
        .legal-content tr:nth-child(even) td {
            background: rgba(var(--primary-rgb), 0.02);
        }
        @media (max-width: 809px) {
            .page-hero.legal-hero { min-height: 40vh; }
            .legal-inner { padding: 28px; }
        }
        @media (max-width: 480px) {
            .page-hero.legal-hero { min-height: 35vh; }
            .legal-inner { padding: 20px; }
            .legal-content { padding: 40px 0; }
            .legal-content h2 { font-size: 19px; padding: 10px 14px; }
        }

/* ========================================
   Extracted from: products/accounts-payable/approval-workflows/index.html
   ======================================== */
.card-stack-badge.green {
    background: rgba(0, 184, 148, 0.08);
    color: #00B894;
}

.card-stack-badge.yellow {
    background: rgba(245, 158, 11, 0.08);
    color: #F59E0B;
}

.card-stack-badge.red {
    background: rgba(239, 68, 68, 0.08);
    color: #EF4444;
}

.floating-card .fc-value.green {
    color: #00B894;
}

/* Before / After Section */

.m-ba-column.before .m-ba-header {
    color: #dc2626;
}

.m-ba-column.after .m-ba-header {
    color: #16a34a;
}

.m-learn-more i {
    width: 16px; height: 16px;
}

@media (max-width: 1199px)  {
        .m-persona-grid,
            .m-related-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ========================================
   Extracted from: products/accounts-payable/banking/index.html
   ======================================== */
.card-stack-badge.green {
    background: rgba(0, 184, 148, 0.08);
    color: #00B894;
}

.floating-card .fc-value.green {
    color: #00B894;
}

/* Integrations Section */

/* ========================================
   Extracted from: products/accounts-payable/dashboard/index.html
   ======================================== */
/* Tabbed Features */

.m-tabbed {
    padding: 100px 0;
    background: #faf8f5;
}

.m-tab-bar {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.m-tab-btn {
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #e0dbd5;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: #4a4a4a;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.m-tab-btn.active {
    background: #f1643f;
    color: #fff;
    border-color: #f1643f;
    transform: scale(1.08);
    box-shadow: 0 2px 8px rgba(241, 100, 63, 0.3);
}

.m-tab-btn:hover:not(.active) {
    border-color: #1a1a1a;
}

.m-tab-panel {
    display: none;
}

.m-tab-panel.active {
    display: block;
}

.m-tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.m-tab-content {
    width: 100%;
    order: 2;
}

.m-tab-visual {
    order: 1;
    background: var(--gray-3);
    border-radius: 20px;
    padding: 32px;
}

.m-tab-content h3 {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 28px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.m-tab-content p {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 16px;
    color: #6b6b6b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.m-tab-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.m-tab-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
}

.m-tab-checklist li i {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    margin-top: 2px;
}

.m-learn-more i {
    width: 16px; height: 16px;
}

@media (max-width: 1199px)  {
        .m-persona-grid,
            .m-related-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .m-tab-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .m-tab-content {
        order: 1;
        max-width: 100%;
    }

    .m-tab-visual {
        order: 2;
    }
}

    .m-tab-bar {
        gap: 6px;
    }

    .m-tab-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

/* ========================================
   Extracted from: products/accounts-payable/payments/index.html
   ======================================== */
/* Trust override - light variant */
        .section-trust {
            background: #f7f3ee;
        }
        .section-trust .trust-card {
            background: #fff;
            border-color: #e8e4de;
        }
        .section-trust .trust-card h3 {
            color: #1a1a1a;
        }
        .section-trust .trust-card p {
            color: #6b6b6b;
        }

/* ========================================
   Extracted from: products/accounts-payable/vendor-management/index.html
   ======================================== */
.card-stack-badge.green {
    background: rgba(16, 185, 129, 0.08);
    color: #10B981;
}

.card-stack-badge.yellow {
    background: rgba(245, 158, 11, 0.08);
    color: #F59E0B;
}

/* ========================================
   Extracted from: products/compliance-hub/dashboard/index.html
   ======================================== */
/* Black buttons only in CTA section */

/* Donut chart */

.donut-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.donut-chart {
    width: 80px;
    height: 80px;
    position: relative;
    flex-shrink: 0;
}

.donut-chart svg {
    width: 80px;
    height: 80px;
    transform: rotate(-90deg);
}

.donut-chart circle {
    fill: none;
    stroke-width: 8;
}

.donut-chart .bg {
    stroke: #E8E4DE;
}

.donut-chart .fill {
    stroke: #f1643f; stroke-linecap: round;
}

.donut-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bricolage Grotesque', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.donut-info .donut-title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.donut-info .donut-desc {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.stat-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-pair-item {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.stat-pair-value {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.stat-pair-label {
    font-size: 12px;
    color: #999;
}

.m-section-header h2 {
    margin-bottom: 20px;
}

.m-section-header p {
    margin-bottom: 0;
}

.m-ba-column.before .m-ba-header {
    color: #EF4444;
}

.m-ba-column.after .m-ba-header {
    color: #10B981;
}

.m-cta-card {
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #f1643f;
    background-image:
    radial-gradient(at 40% 20%, rgba(255,255,255,0.4) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(255,220,180,0.5) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(255,255,255,0.3) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(255,180,128,0.4) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(255,200,150,0.4) 0px, transparent 50%),
    radial-gradient(at 80% 100%, rgba(255,255,255,0.25) 0px, transparent 50%),
    radial-gradient(at 0% 0%, rgba(255,255,255,0.35) 0px, transparent 50%);
}

.m-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.12;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.m-cta-card > * {
    position: relative;
    z-index: 1;
}

.m-cta-btn {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.m-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    background: #000;
}

/* CTA Content Structure */

/* Tabbed Features - Special styling for dashboard */

.m-tabbed {
    padding: 100px 0;
    background: #faf8f5;
}

.m-tab-bar {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.m-tab-btn {
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #e0dbd5;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: #4a4a4a;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    will-change: transform, background-color, color, border-color;
}

.m-tab-btn.active {
    background: #f1643f;
    color: #fff;
    border-color: #f1643f;
    transform: scale(1.08);
    box-shadow: 0 2px 8px rgba(241, 100, 63, 0.3);
}

.m-tab-btn:hover:not(.active) {
    border-color: #1a1a1a;
}

.m-tab-panel {
    display: none;
}

.m-tab-panel.active {
    display: block;
}

.m-tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.m-tab-content {
    max-width: 520px;
    order: 2;
}

.m-tab-visual {
    order: 1;
    background: var(--gray-3);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.m-tab-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.m-learn-more i {
    width: 16px;
    height: 16px;
}

@media (max-width: 1199px)  {
        .m-ba-grid,
            .m-persona-grid,
            .m-tab-grid,
            .m-related-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .m-cta-card {
        padding: 60px 32px;
    }

    .m-tab-bar {
        flex-direction: column;
    }
}


/* Alt Features List with Circular Checks */

/* ========================================
   Extracted from: products/compliance-hub/discovery/index.html
   ======================================== */
/* Black buttons only in CTA section */

.m-ba-column.before .m-ba-header {
    color: #EF4444;
}

.m-ba-column.after .m-ba-header {
    color: #10B981;
}

/* FAQ Section */

.m-faq {
    padding: 100px 0;
    background: var(--gray-2);
}

.m-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.m-faq-accordion details {
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    cursor: pointer;
}

.m-faq-accordion summary {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    list-style: none;
    position: relative;
    padding-right: 32px;
}

.m-faq-accordion summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.2s;
}

.m-faq-accordion details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.m-faq-answer {
    margin-top: 16px;
    font-size: 15px;
    color: #6b6b6b;
    line-height: 1.7;
}

.m-learn-more i {
    width: 16px;
    height: 16px;
}

.m-cta-card {
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #f1643f;
    background-image:
    radial-gradient(at 40% 20%, rgba(255,255,255,0.4) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(255,220,180,0.5) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(255,255,255,0.3) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(255,180,128,0.4) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(255,200,150,0.4) 0px, transparent 50%),
    radial-gradient(at 80% 100%, rgba(255,255,255,0.25) 0px, transparent 50%),
    radial-gradient(at 0% 0%, rgba(255,255,255,0.35) 0px, transparent 50%);
}

.m-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.12;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.m-cta-card > * {
    position: relative;
    z-index: 1;
}

.m-cta-btn {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.m-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    background: #000;
}

/* CTA Content Structure */

@media (max-width: 1199px)  {
        .m-ba-grid,
            .m-persona-grid,
            .m-related-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

    .m-cta-card {
        padding: 60px 32px;
    }

/* ========================================
   Extracted from: products/compliance-hub/index.html
   ======================================== */
/* Black buttons only in CTA section */

/* Mini calendar */

.mini-cal {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-top: 12px;
}

.mini-cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #999;
}

.mini-cal-day.header {
    font-size: 10px;
    font-weight: 700;
    color: #bbb;
}

.mini-cal-day.today {
    background: #1a1a1a;
    color: #fff;
}

.mini-cal-day.highlight {
    background: rgba(196, 87, 58, 0.1);
    color: #C4573A;
}

.mini-cal-day.done {
    background: rgba(107, 114, 128, 0.08);
    color: #4B5563;
}

.m-ba-column.before .m-ba-header {
    color: #EF4444;
}

.m-ba-column.after .m-ba-header {
    color: #10B981;
}

.m-cta-card {
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #f1643f;
    background-image:
    radial-gradient(at 40% 20%, rgba(255,255,255,0.4) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(255,220,180,0.5) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(255,255,255,0.3) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(255,180,128,0.4) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(255,200,150,0.4) 0px, transparent 50%),
    radial-gradient(at 80% 100%, rgba(255,255,255,0.25) 0px, transparent 50%),
    radial-gradient(at 0% 0%, rgba(255,255,255,0.35) 0px, transparent 50%);
}

.m-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.12;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.m-cta-card > * {
    position: relative;
    z-index: 1;
}

.m-cta-btn {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.m-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    background: #000;
}

/* CTA Content Structure */

.m-explore a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

@media (max-width: 1199px)  {
        .m-ba-grid,
            .m-persona-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ========================================
   Extracted from: products/compliance-hub/multi-state/index.html
   ======================================== */
.m-tag i {
    width: 16px;
    height: 16px;
}

/* Black buttons only in CTA section */

/* Hero Visual */

.m-ba-column.before .m-ba-header {
    color: #EF4444;
}

.m-ba-column.after .m-ba-header {
    color: #10B981;
}

.m-cta-card {
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #f1643f;
    background-image:
    radial-gradient(at 40% 20%, rgba(255,255,255,0.4) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(255,220,180,0.5) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(255,255,255,0.3) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(255,180,128,0.4) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(255,200,150,0.4) 0px, transparent 50%),
    radial-gradient(at 80% 100%, rgba(255,255,255,0.25) 0px, transparent 50%),
    radial-gradient(at 0% 0%, rgba(255,255,255,0.35) 0px, transparent 50%);
}

.m-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.12;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.m-cta-card > * {
    position: relative;
    z-index: 1;
}

.m-cta-btn {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.m-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    background: #000;
}

/* CTA Content Structure */

@media (max-width: 1199px)  {
        .m-ba-grid,
            .m-persona-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

    .m-cta-card {
        padding: 60px 32px;
    }

/* Hero mockup: India map styles (page-specific) */

.hero-map-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}

.hero-map-wrapper object {
    display: block;
    height: 320px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(var(--primary-rgb), 0.12));
}

@media (max-width: 809px)  {
        .hero-map-wrapper {
        min-height: 240px;
    }

    .hero-map-wrapper object {
        height: 220px;
    }
}

@media (max-width: 480px)  {
        .hero-map-wrapper {
        min-height: 180px;
    }

    .hero-map-wrapper object {
        height: 160px;
    }
}

/* Multi-State Mockups */

.mockup-state-detection {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.state-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.state-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: rgba(107, 114, 128, 0.06);
    border-radius: 6px;
}

.state-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.state-compliance {
    font-size: 11px;
    color: #6b6b6b;
}

.state-badge {
    background: #6B7280;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
}

.mockup-state-calendar {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.calendar-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    overflow-x: auto;
}

.calendar-tab {
    padding: 6px 12px;
    background: #e5e7eb;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #4a4a4a;
    white-space: nowrap;
}

.calendar-tab.active {
    background: #4B5563;
    color: #fff;
}

.calendar-events {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calendar-event {
    padding: 12px;
    background: #FAFAFA;
    border-radius: 8px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-icon {
    width: 32px;
    height: 32px;
    background: #4B5563;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.event-content {
    flex: 1;
}

.event-title {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
    font-size: 13px;
}

.event-date {
    font-size: 11px;
    color: #6b6b6b;
}

.event-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.event-status.upcoming {
    background: rgba(107, 114, 128, 0.08);
    color: #6B7280;
}

.event-status.due-soon {
    background: rgba(107, 114, 128, 0.12);
    color: #374151;
}

.mockup-pt-calculator {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.calc-input-group {
    margin-bottom: 16px;
}

.calc-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 6px;
}

.calc-select {
    width: 100%;
    padding: 10px;
    background: #FAFAFA;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 13px;
    color: #1a1a1a;
}

.calc-result-box {
    background: rgba(107, 114, 128, 0.06);
    border: 2px solid #9CA3AF;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.calc-result-label {
    font-size: 11px;
    font-weight: 600;
    color: #4B5563;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.calc-result-amount {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 28px;
    font-weight: 700;
    color: #374151;
}

/* ========================================
   Extracted from: products/compliance-hub/penalty-calculator/index.html
   ======================================== */
/* Black buttons only in CTA section */

/* Hero Visual */

.m-ba-column.before .m-ba-header {
    color: #EF4444;
}

.m-ba-column.after .m-ba-header {
    color: #10B981;
}

.m-cta-card {
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #f1643f;
    background-image:
    radial-gradient(at 40% 20%, rgba(255,255,255,0.4) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(255,220,180,0.5) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(255,255,255,0.3) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(255,180,128,0.4) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(255,200,150,0.4) 0px, transparent 50%),
    radial-gradient(at 80% 100%, rgba(255,255,255,0.25) 0px, transparent 50%),
    radial-gradient(at 0% 0%, rgba(255,255,255,0.35) 0px, transparent 50%);
}

.m-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.12;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.m-cta-card > * {
    position: relative;
    z-index: 1;
}

.m-cta-btn {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.m-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    background: #000;
}

/* CTA Content Structure */

/* Comparison Table Styling */

.section-comparison-table {
    background: var(--gray-2);
}

.comparison-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: auto;
    background: #fff;
}

.comparison-table th {
    background: #3d2817;
    color: #fff;
    padding: 18px 24px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.comparison-table th:first-child {
    border-radius: 12px 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 12px 0 0;
}

.comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
    font-size: 15px;
    color: #1a1a1a;
    vertical-align: top;
}

.comparison-table tbody tr:hover td {
    background: #f9fafb;
}

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

.comparison-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 12px;
}

.comparison-table tbody tr:last-child td:last-child {
    border-radius: 0 0 12px 0;
}

@media (max-width: 809px)  {
        .comparison-wrapper {
        border-radius: 8px;
    }

    .comparison-table {
        min-width: 500px;
    }

    .comparison-table th,
            .comparison-table td {
        padding: 14px 16px;
        font-size: 14px;
    }

    .comparison-table th {
        font-size: 12px;
    }
}

    .m-cta-card {
        padding: 60px 32px;
    }

/* ========================================
   Extracted from: products/compliance-hub/smart-reminders/index.html
   ======================================== */
/* Card-stack inside alternating visual — override product-sections aspect-ratio */

.m-alt-visual > .card-stack {
    aspect-ratio: auto;
    max-width: 520px;
}

.m-alt-visual {
    background: transparent;
}

/* Channel Mockups - Clean Card Style */

.whatsapp-mockup {
    background: #faf8f5;
    border-radius: 12px;
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.notification-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.notification-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.09), 0 0 0 1px rgba(107, 114, 128, 0.2);
    transform: translateY(-1px);
}

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

.notification-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.notification-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(107, 114, 128, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon i {
    width: 16px;
    height: 16px;
    color: #6B7280;
}

.notification-meta {
    flex: 1;
}

.notification-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.notification-time {
    font-size: 10px;
    color: #999;
}

.notification-body {
    font-size: 12px;
    color: #4a4a4a;
    line-height: 1.5;
}

.notification-body strong {
    font-weight: 600;
    color: #1a1a1a;
}

.email-mockup {
    background: #faf8f5;
    border-radius: 12px;
    padding: 20px;
    max-width: 420px;
    margin: 0 auto;
}

.email-notification-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.email-notification-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.09), 0 0 0 1px rgba(107, 114, 128, 0.2);
    transform: translateY(-1px);
}

.email-notification-card:last-child {
    margin-bottom: 0;
}

.email-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.email-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(107, 114, 128, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.email-icon i {
    width: 16px;
    height: 16px;
    color: #4B5563;
}

.email-card-content {
    flex: 1;
}

.email-subject {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.email-sender {
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
}

.email-preview {
    font-size: 12px;
    color: #4a4a4a;
    line-height: 1.5;
}

.urgency-badge {
    display: inline-block;
    background: rgba(107, 114, 128, 0.08);
    color: #374151;
    font-size: 9px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}

.urgency-badge.warning {
    background: rgba(107, 114, 128, 0.08);
    color: #6B7280;
}

.sms-mockup {
    background: #faf8f5;
    border-radius: 12px;
    padding: 20px;
    max-width: 380px;
    margin: 0 auto;
}

.sms-notification-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.sms-notification-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.09), 0 0 0 1px rgba(107, 114, 128, 0.2);
    transform: translateY(-1px);
}

.sms-notification-card:last-child {
    margin-bottom: 0;
}

.sms-notification-card.urgent {

}

.sms-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.sms-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(107, 114, 128, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sms-icon i {
    width: 16px;
    height: 16px;
    color: #6B7280;
}

.sms-notification-card.urgent .sms-icon {
    background: rgba(107, 114, 128, 0.12);
}

.sms-notification-card.urgent .sms-icon i {
    color: #374151;
}

.sms-card-meta {
    flex: 1;
}

.sms-card-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.sms-card-time {
    font-size: 10px;
    color: #999;
}

.sms-message-body {
    font-size: 12px;
    color: #4a4a4a;
    line-height: 1.5;
}

.sms-message-body strong {
    font-weight: 600;
    color: #1a1a1a;
}

/* Black buttons only in CTA section */

.m-ba-column.before .m-ba-header {
    color: #EF4444;
}

.m-ba-column.after .m-ba-header {
    color: #10B981;
}

/* Comparison Table */

.m-comparison {
    padding: 100px 0;
    background: #faf8f5;
}

.m-comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

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

.m-comparison-table th {
    padding: 20px;
    background: #f7f3ee;
    font-family: 'Bricolage Grotesque', serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    border-bottom: 2px solid #e0dbd5;
}

.m-comparison-table td {
    padding: 20px;
    font-size: 15px;
    color: #4a4a4a;
    border-bottom: 1px solid #e0dbd5;
}

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

.m-comparison-table .col-old {
    color: #EF4444;
}

.m-comparison-table .col-new {
    color: #10B981;
}

.m-comparison-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.m-comparison-check i {
    width: 18px;
    height: 18px;
}

/* Column colors: old = red, new = green */
.m-comparison-table td:nth-child(2) .m-comparison-check i {
    color: #EF4444;
}
.m-comparison-table td:nth-child(3) .m-comparison-check i {
    color: #10B981;
}
.m-comparison-table td:nth-child(2) {
    color: #6b6b6b;
}
.m-comparison-table td:nth-child(3) {
    color: #1a1a1a;
}

@media (max-width: 809px) {
    .m-comparison { padding: 60px 0; }
    .m-comparison-table { border-radius: 14px; }
    .m-comparison-table th,
    .m-comparison-table td { padding: 14px 12px; font-size: 13px; }
    .m-comparison-check { gap: 6px; }
    .m-comparison-check i { width: 16px; height: 16px; }
}

@media (max-width: 480px) {
    .m-comparison { padding: 40px 0; }
    .m-comparison-table th,
    .m-comparison-table td { padding: 10px 8px; font-size: 12px; }
}

/* FAQ Section */

.m-faq {
    padding: 100px 0;
    background: #f7f3ee;
}

.m-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.m-faq-accordion details {
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    cursor: pointer;
}

.m-faq-accordion summary {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    list-style: none;
    position: relative;
    padding-right: 32px;
}

.m-faq-accordion summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.2s;
}

.m-faq-accordion details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.m-faq-answer {
    margin-top: 16px;
    font-size: 15px;
    color: #6b6b6b;
    line-height: 1.7;
}

.m-cta-card {
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #f1643f;
    background-image:
    radial-gradient(at 40% 20%, rgba(255,255,255,0.4) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(255,220,180,0.5) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(255,255,255,0.3) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(255,180,128,0.4) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(255,200,150,0.4) 0px, transparent 50%),
    radial-gradient(at 80% 100%, rgba(255,255,255,0.25) 0px, transparent 50%),
    radial-gradient(at 0% 0%, rgba(255,255,255,0.35) 0px, transparent 50%);
}

.m-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.12;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.m-cta-card > * {
    position: relative;
    z-index: 1;
}

.m-cta-btn {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.m-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    background: #000;
}

/* CTA Content Structure */

@media (max-width: 1199px)  {
        .whatsapp-mockup,
            .email-mockup,
            .sms-mockup {
        max-width: 100%;
    }
}

    .m-cta-card {
        padding: 60px 32px;
    }

    .whatsapp-mockup,
            .email-mockup,
            .sms-mockup {
        padding: 16px;
    }

    .notification-card,
            .email-notification-card,
            .sms-notification-card {
        padding: 14px 16px;
    }

    .notification-title,
            .sms-card-title,
            .email-subject {
        font-size: 12px;
    }

    .notification-body,
            .email-preview,
            .sms-message-body {
        font-size: 11px;
    }

/* ========================================
   Extracted from: products/fundraising-suite/cap-table/index.html
   ======================================== */
/* Ownership bar */

.ownership-bar {
    display: flex;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    margin: 8px 0;
}

.ownership-bar .seg {
    height: 100%;
}

.ownership-bar .seg.founders {
    background: #374151; flex: 62;
}

.ownership-bar .seg.investors {
    background: #6B7280; flex: 25;
}

.ownership-bar .seg.esop {
    background: #9CA3AF; flex: 13;
}

.ownership-legend {
    display: flex;
    gap: 12px;
}

.ownership-legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #999;
}

.ownership-legend-item .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ownership-legend-item .dot.founders {
    background: #374151;
}

.ownership-legend-item .dot.investors {
    background: #6B7280;
}

.ownership-legend-item .dot.esop {
    background: #9CA3AF;
}

.m-section-header h2 {
    margin-bottom: 20px;
}

.m-section-header p {
    margin-bottom: 0;
}

.m-ba-column.before .m-ba-header {
    color: #EF4444;
}

.m-ba-column.after .m-ba-header {
    color: #10B981;
}

.m-learn-more i {
    width: 16px;
    height: 16px;
}

@media (max-width: 1199px)  {
        .m-ba-grid,
            .m-persona-grid,
            .m-related-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ========================================
   Extracted from: products/fundraising-suite/due-diligence/index.html
   ======================================== */
/* Hero */

.m-section-header h2 {
    margin-bottom: 20px;
}

.m-section-header p {
    margin-bottom: 0;
}

.m-ba-column.before .m-ba-header {
    color: #EF4444;
}

.m-ba-column.after .m-ba-header {
    color: #10B981;
}

/* Metrics */

/* Alternating */

/* CTA */

/* Timeline override */

/* ========================================
   Extracted from: products/fundraising-suite/esop-management/index.html
   ======================================== */
/* Hero */

/* Pool progress bar */

.pool-track {
    height: 8px; background: #E8E4DE; border-radius: 4px; overflow: hidden; margin: 8px 0;
}

.pool-fill {
    height: 100%; border-radius: 4px; background: linear-gradient(90deg, #f1643f, var(--primary)); width: 68%;
}

/* Metrics */

.m-section-header h2 {
    margin-bottom: 20px;
}

.m-section-header p {
    margin-bottom: 0;
}

.m-ba-column.before .m-ba-header {
    color: #EF4444;
}

.m-ba-column.after .m-ba-header {
    color: #10B981;
}

/* Alternating */

/* Related */

.m-learn-more i {
    width: 16px; height: 16px;
}

/* CTA */

/* Overrides */

@media (max-width: 1199px)  {
        .m-ba-grid, .m-related-grid {
        grid-template-columns: 1fr; gap: 32px;
    }
}

/* ========================================
   Extracted from: products/fundraising-suite/index.html
   ======================================== */
/* Page-specific styles for Audit & Due Diligence Suite */

/* ========================================
   Extracted from: products/fundraising-suite/investor-relations/index.html
   ======================================== */
.m-section-header h2 {
    margin-bottom: 20px;
}

.m-section-header p {
    margin-bottom: 0;
}

.m-learn-more i {
    width: 16px;
    height: 16px;
}

.section-trust {
    background: var(--gray-2);
}

@media (max-width: 1199px)  {
        .m-persona-grid,
            .m-related-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ========================================
   Extracted from: products/fundraising-suite/valuation/index.html
   ======================================== */
.m-section-header h2 {
    margin-bottom: 20px;
}

.m-section-header p {
    margin-bottom: 0;
}

.m-ba-column.before .m-ba-header {
    color: #EF4444;
}

.m-ba-column.after .m-ba-header {
    color: #10B981;
}

.m-learn-more i {
    width: 16px;
    height: 16px;
}

@media (max-width: 1199px)  {
        .m-ba-grid,
            .m-related-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ========================================
   Extracted from: products/fundraising-suite/virtual-data-room/index.html
   ======================================== */
.m-section-header h2 {
    margin-bottom: 20px;
}

.m-section-header p {
    margin-bottom: 0;
}

.m-ba-column.before .m-ba-header {
    color: #EF4444;
}

.m-ba-column.after .m-ba-header {
    color: #10B981;
}

/* ========================================
   Extracted from: products/tax-suite/gst-reconciliation/index.html
   ======================================== */
.m-section-header h2 {
    margin-bottom: 20px;
}

.m-section-header p {
    margin-bottom: 0;
}

.m-ba-column.before .m-ba-header {
    color: #EF4444;
}

.m-ba-column.after .m-ba-header {
    color: #10B981;
}

/* ========================================
   Extracted from: products/tax-suite/index.html
   ======================================== */
/* Mini vertical bar chart for hero */

.cs-chart-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.cs-bars-landscape {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    flex: 1;
    min-height: 80px;
}

.cs-bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    height: 100%;
    justify-content: flex-end;
}

.cs-bar-col .bar {
    width: 100%;
    border-radius: 4px 4px 0 0;
}

.cs-bar-col .bar-label {
    font-size: 9px;
    color: #999;
    white-space: nowrap;
}

.cs-metric-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ========================================
   Extracted from: products/tax-suite/tds-management/index.html
   ======================================== */
.m-section-header h2 {
    margin-bottom: 20px;
}

.m-section-header p {
    margin-bottom: 0;
}

.m-ba-column.before .m-ba-header {
    color: #EF4444;
}

.m-ba-column.after .m-ba-header {
    color: #10B981;
}

/* Tabbed Features */

.m-tabbed {
    padding: 100px 0;
    background: #faf8f5;
}

.m-tab-bar {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.m-tab-btn {
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #e0dbd5;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: #4a4a4a;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    will-change: transform, background-color, color, border-color;
}

.m-tab-btn.active {
    background: #f1643f;
    color: #fff;
    border-color: #f1643f;
    transform: scale(1.08);
    box-shadow: 0 2px 8px rgba(241, 100, 63, 0.3);
}

.m-tab-btn:hover:not(.active) {
    border-color: #1a1a1a;
}

.m-tab-panel {
    display: none;
}

.m-tab-panel.active {
    display: block;
}

.m-tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.m-tab-content {
    width: 100%;
    order: 2;
}

.m-tab-visual {
    order: 1;
    background: var(--gray-3);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.section-comparison-table {
    background: var(--gray-2);
}

@media (max-width: 1199px)  {
        .m-ba-grid,
            .m-tab-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .m-tab-bar {
        flex-direction: column;
    }
}

/* ========================================
   Extracted from: smart-reminders.html
   ======================================== */
/* Hero */
        .feature-hero { padding: 160px 0 80px; background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%); position: relative; overflow: hidden; }
        .feature-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 60%); pointer-events: none; }
        .feature-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
        .feature-tag { display: inline-block; background: rgba(var(--primary-rgb), 0.1); color: var(--mid-accent); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(var(--primary-rgb), 0.2); }
        .feature-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; color: var(--text-primary); }
        .feature-hero p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }

        /* Feature Visual Card - Light */
        .feature-visual {
            background: var(--bg-primary);
            border-radius: 20px;
            box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.12), 0 0 0 1px rgba(var(--primary-rgb), 0.08);
            overflow: hidden;
            border: 1px solid var(--gray-4);
            max-width: 380px;
            margin: 0 auto;
        }
        .demo-header {
            padding: 12px 16px;
            background: var(--gray-2);
            border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .demo-dot { width: 10px; height: 10px; border-radius: 50%; }
        .demo-dot.red { background: #EF4444; }
        .demo-dot.yellow { background: #F59E0B; }
        .demo-dot.green { background: #10B981; }
        .demo-title { flex: 1; text-align: center; color: #6B6580; font-size: 12px; font-weight: 600; }
        .demo-body { padding: 14px; }
        .notification-demo { display: flex; flex-direction: column; gap: 8px; }

        .notif-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 10px 12px;
            background: var(--gray-2);
            border-radius: 8px;
            position: relative;
            transition: all 0.2s ease;
            border: 1px solid rgba(var(--primary-rgb), 0.06);
        }
        .notif-item:hover {
            border-color: rgba(var(--primary-rgb), 0.25);
            background: var(--gray-1);
        }

        .notif-icon {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            background: rgba(var(--primary-rgb), 0.1);
            color: var(--mid-accent);
        }
        .notif-icon i, .notif-icon svg { width: 14px; height: 14px; }
        .notif-icon.whatsapp,
        .notif-icon.email,
        .notif-icon.sms {
            background: rgba(var(--primary-rgb), 0.1);
            color: var(--mid-accent);
        }

        .notif-content { flex: 1; min-width: 0; }
        .notif-content .notif-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2px; }
        .notif-content strong { font-size: 12px; font-weight: 600; color: var(--text-primary); }
        .notif-content .notif-time { font-size: 10px; color: var(--gray-9); white-space: nowrap; }
        .notif-content .notif-msg { font-size: 11px; color: #6B6580; line-height: 1.4; }
        .notif-badge { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; }
        .notif-badge.new { background: rgba(var(--primary-rgb), 0.1); color: var(--mid-accent); border: 1px solid rgba(var(--primary-rgb), 0.2); }
        .notif-badge.urgent { background: rgba(239, 68, 68, 0.1); color: #EF4444; border: 1px solid rgba(239, 68, 68, 0.2); }

        /* Channels Section */
        .channels-section { padding: 80px 0; background: var(--bg-primary); }
        .channels-section .section-header h2 { color: var(--text-primary); }
        .channels-section .section-header p { color: var(--text-secondary); }
        .channels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
        .channel-card { padding: 40px 32px; background: var(--gray-2); border-radius: 20px; border: 1px solid var(--gray-4); text-align: center; transition: all 0.3s ease; position: relative; overflow: hidden; }
        .channel-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; transition: all 0.3s ease; }
        .channel-card:nth-child(1)::before { background: #00B894; }
        .channel-card:nth-child(2)::before { background: var(--mid-accent); }
        .channel-card:nth-child(3)::before { background: #EC4899; }
        .channel-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(var(--primary-rgb), 0.1); background: var(--bg-primary); }
        .channel-card:nth-child(1):hover { border-color: #00B894; }
        .channel-card:nth-child(2):hover { border-color: var(--mid-accent); }
        .channel-card:nth-child(3):hover { border-color: #EC4899; }
        .channel-icon { width: 80px; height: 80px; margin: 0 auto 24px; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
        .channel-icon i, .channel-icon svg { width: 36px; height: 36px; }
        .channel-icon.whatsapp { background: rgba(0, 184, 148, 0.1); color: #00B894; }
        .channel-icon.email { background: rgba(var(--primary-rgb), 0.1); color: var(--mid-accent); }
        .channel-icon.sms { background: rgba(236, 72, 153, 0.1); color: #EC4899; }
        .channel-card:hover .channel-icon { transform: rotate(-8deg) scale(1.05); }
        .channel-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
        .channel-card > p { color: #6B6580; margin-bottom: 24px; font-size: 15px; line-height: 1.6; }
        .channel-card ul { list-style: none; text-align: left; background: rgba(var(--primary-rgb), 0.04); border-radius: 12px; padding: 20px 24px; }
        .channel-card li { padding: 10px 0; font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(var(--primary-rgb), 0.06); }
        .channel-card li:last-child { border-bottom: none; }
        .channel-card:nth-child(1) li::before { content: '✓'; color: #00B894; font-weight: 700; }
        .channel-card:nth-child(2) li::before { content: '✓'; color: var(--mid-accent); font-weight: 700; }
        .channel-card:nth-child(3) li::before { content: '✓'; color: #EC4899; font-weight: 700; }

        /* Schedule / Timeline Section */
        .schedule-section { padding: 80px 0; background: var(--gray-1); }
        .schedule-section .section-header h2 { color: var(--text-primary); }
        .schedule-section .section-header p { color: var(--text-secondary); }
        .schedule-visual { max-width: 800px; margin: 60px auto 0; }
        .timeline { position: relative; padding-left: 40px; }
        .timeline::before { display: none; }
        .timeline-item { position: relative; padding: 20px 24px; background: var(--bg-primary); border-radius: 12px; margin-bottom: 20px; box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.06); border: 1px solid var(--gray-4); }
        .timeline-item::before { display: none; }
        .timeline-item .days { font-size: 12px; font-weight: 700; color: var(--mid-accent); text-transform: uppercase; margin-bottom: 8px; }
        .timeline-item h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
        .timeline-item p { font-size: 14px; color: var(--text-secondary); }

        /* Customize Section */
        .customize-section { padding: 80px 0; background: var(--bg-primary); }
        .customize-section .section-header h2 { color: var(--text-primary); }
        .customize-section .section-header p { color: var(--text-secondary); }
        .customize-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; }
        .customize-features { display: flex; flex-direction: column; gap: 24px; }
        .customize-item { display: flex; gap: 16px; padding: 20px; background: var(--gray-2); border-radius: 12px; border: 1px solid rgba(var(--primary-rgb), 0.06); }
        .customize-item .icon { width: 48px; height: 48px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; transition: all 0.3s ease; }
        .customize-item:nth-child(6n+1) .icon { background: rgba(var(--primary-rgb), 0.1); color: var(--mid-accent); }
        .customize-item:nth-child(6n+2) .icon { background: rgba(0, 184, 148, 0.1); color: #00B894; }
        .customize-item:nth-child(6n+3) .icon { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
        .customize-item:nth-child(6n+4) .icon { background: rgba(241, 100, 63, 0.1); color: var(--primary); }
        .customize-item:nth-child(6n+5) .icon { background: rgba(236, 72, 153, 0.1); color: #EC4899; }
        .customize-item:nth-child(6n+6) .icon { background: rgba(16, 185, 129, 0.1); color: #10B981; }
        .customize-item:hover .icon { transform: rotate(-8deg) scale(1.05); }
        .customize-item h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
        .customize-item p { font-size: 14px; color: var(--text-secondary); }

        /* Customize Visual Card - Light */
        .customize-visual {
            background: var(--bg-primary);
            border-radius: 20px;
            box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.12), 0 0 0 1px rgba(var(--primary-rgb), 0.08);
            overflow: hidden;
            border: 1px solid var(--gray-4);
            max-width: 374px;
            margin: 0 auto;
        }
        .cust-header {
            padding: 13px 20px;
            background: var(--gray-2);
            border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .cust-dot { width: 10px; height: 10px; border-radius: 50%; }
        .cust-dot:nth-child(1) { background: #EF4444; }
        .cust-dot:nth-child(2) { background: #F59E0B; }
        .cust-dot:nth-child(3) { background: #10B981; }
        .cust-title { flex: 1; text-align: center; color: #6B6580; font-size: 13px; font-weight: 600; }
        .cust-body { padding: 19px; }
        .cust-schedule-label { font-size: 11px; font-weight: 700; color: var(--gray-9); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 13px; }
        .cust-reminder-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 13px;
            background: var(--gray-2);
            border: 1px solid rgba(var(--primary-rgb), 0.06);
            border-radius: 10px;
            margin-bottom: 9px;
        }
        .cust-reminder-row:hover { border-color: rgba(var(--primary-rgb), 0.25); }
        .cust-day {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: rgba(var(--primary-rgb), 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .cust-day-num { font-size: 16px; font-weight: 700; color: var(--mid-accent); line-height: 1; }
        .cust-day-mon { font-size: 9px; font-weight: 600; color: var(--accent); text-transform: uppercase; }
        .cust-reminder-info { flex: 1; min-width: 0; }
        .cust-reminder-name { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
        .cust-reminder-detail { font-size: 12px; color: var(--gray-9); }
        .cust-channels { display: flex; gap: 5px; }
        .cust-ch {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            background: rgba(var(--primary-rgb), 0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-4);
        }
        .cust-ch.active { background: rgba(var(--primary-rgb), 0.1); color: var(--mid-accent); }
        .cust-ch i, .cust-ch svg { width: 13px; height: 13px; }
        .cust-status-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 15px;
            padding: 11px 14px;
            background: var(--gray-2);
            border: 1px solid rgba(var(--primary-rgb), 0.06);
            border-radius: 10px;
        }
        .cust-status-label { font-size: 11px; color: var(--gray-9); font-weight: 600; }
        .cust-status-badges { display: flex; gap: 6px; }
        .cust-badge {
            font-size: 10px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 20px;
            background: rgba(var(--primary-rgb), 0.1);
            color: var(--mid-accent);
            border: 1px solid rgba(var(--primary-rgb), 0.2);
        }

        @media (max-width: 809px) {
            .feature-hero .container, .customize-grid { grid-template-columns: 1fr; }
            .feature-hero h1 { font-size: 32px; }
            .channels-grid { grid-template-columns: 1fr; }
        }

/* ========================================
   Extracted from: support.html
   ======================================== */
/* Light mode page styles */

        /* Page hero light mode */
        .page-hero { background: #fff; position: relative; overflow: hidden; padding: 180px 0 80px; text-align: center; }
        .page-hero::before { content: ''; position: absolute; top: -20%; left: -10%; width: 50%; height: 80%; background: radial-gradient(ellipse at center, rgba(255, 140, 80, 0.04) 0%, transparent 70%); pointer-events: none; filter: blur(40px); }
        .page-hero::after { content: ''; position: absolute; bottom: -30%; right: -5%; width: 40%; height: 70%; background: radial-gradient(ellipse at center, rgba(255, 140, 80, 0.04) 0%, transparent 70%); pointer-events: none; filter: blur(40px); }
        .page-hero h1 { font-family: 'Bricolage Grotesque', serif; font-size: 48px; font-weight: 500; color: var(--text-primary); margin-bottom: 16px; }
        .page-hero h1 span { color: var(--primary); }
        .page-hero p { color: var(--text-secondary); font-size: 18px; line-height: 1.7; max-width: 560px; margin: 0 auto 32px; }
        .hero-badge { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; padding: 6px 14px; border-radius: 4px; margin-bottom: 16px; background: none; }

        .search-box { max-width: 600px; margin: 0 auto; position: relative; }
        .search-box input { width: 100%; padding: 18px 130px 18px 28px; border: 1px solid #e0dbd5; border-radius: 100px; font-size: 16px; background: #fff; color: #1a1a1a; box-shadow: 0 2px 8px rgba(0,0,0,0.04); box-sizing: border-box; }
        .search-box input::placeholder { color: #9ca3af; }
        .search-box input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1); }
        .search-box button { position: absolute; right: 5px; top: 5px; bottom: 5px; background: #1a1a1a; color: white; border: none; padding: 0 28px; border-radius: 100px; cursor: pointer; font-weight: 500; font-size: 14px; }
        .search-box button:hover { background: #000; }

        .categories-section { padding: 80px 0; background: var(--gray-1) !important; }
        .categories-grid { display: grid; grid-template-columns: repeat(3, 1fr) !important; gap: 32px !important; max-width: none !important; margin-top: 0 !important; }
        .category-card { background: var(--bg-primary) !important; border: 1px solid var(--gray-4) !important; border-radius: 20px; padding: 32px !important; transition: all 0.3s; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03) !important; display: block !important; grid-template-columns: none !important; }
        .category-card:hover { background: var(--bg-primary) !important; border-color: var(--gray-4) !important; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06) !important; transform: translateY(-2px); }
        .category-icon { width: 56px; height: 56px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; font-weight: 700; transition: all 0.3s ease; }
        .category-icon svg, .category-icon i { width: 28px; height: 28px; }
        .category-card:nth-child(6n+1) .category-icon { background: rgba(var(--primary-rgb), 0.08); color: var(--primary); }
        .category-card:nth-child(6n+2) .category-icon { background: rgba(0,184,148,0.08); color: #00B894; }
        .category-card:nth-child(6n+3) .category-icon { background: rgba(245,158,11,0.08); color: #F59E0B; }
        .category-card:nth-child(6n+4) .category-icon { background: rgba(241,100,63,0.08); color: var(--primary); }
        .category-card:nth-child(6n+5) .category-icon { background: rgba(236,72,153,0.08); color: #EC4899; }
        .category-card:nth-child(6n+6) .category-icon { background: rgba(20,184,166,0.08); color: #14B8A6; }
        .category-card:hover .category-icon { transform: none; }
        .category-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--text-primary); }
        .category-card > p { color: var(--text-secondary); font-size: 14px; margin-bottom: 16px; }
        .category-card ul { list-style: none; }
        .category-card li { padding: 8px 0; border-bottom: 1px solid var(--gray-4); }
        .category-card li:last-child { border-bottom: none; }
        .category-card a { color: var(--primary); text-decoration: none; font-size: 14px; }
        .category-card a:hover { text-decoration: underline; color: var(--primary-dark); }

        .section-header h2 { color: var(--text-primary); }
        .section-header p { color: var(--text-secondary); }

        

        @media (max-width: 1199px) {
            .categories-grid { grid-template-columns: repeat(2, 1fr) !important; }
        }

        @media (max-width: 809px) {
            .page-hero { padding: 120px 0 40px; }
            .page-hero h1 { font-size: 36px; }
            .categories-grid { grid-template-columns: 1fr !important; }
            .search-box input { padding: 14px 18px; }
            .category-card { padding: 24px !important; }
            .categories-section,
        }

        @media (max-width: 480px) {
            .page-hero { padding: 100px 0 32px; }
            .page-hero h1 { font-size: 28px; }
            .search-box input { padding: 12px 16px; font-size: 15px; }
            .category-card { padding: 20px; }
            .category-card h3 { font-size: 18px; }
            .categories-section { padding: 48px 0; }
        }

/* ========================================
   Extracted from: tds-management.html
   ======================================== */
/* Light Mode Base */
        .feature-hero { padding: 160px 0 80px; background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%); position: relative; overflow: hidden; }
        .feature-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 60%); pointer-events: none; }
        .feature-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .feature-tag { display: inline-block; background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .feature-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; color: var(--text-primary); }
        .feature-hero p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }

        /* Feature visual - Light Mode */
        .feature-visual { background: var(--bg-primary); border-radius: 16px; box-shadow: 0 20px 40px -12px rgba(var(--primary-rgb), 0.12), 0 0 0 1px rgba(var(--primary-rgb), 0.08); overflow: hidden; border: 1px solid var(--gray-4); width: 100%; max-width: 440px; margin: 0 auto; }
        .demo-header { background: var(--gray-2); padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(var(--primary-rgb), 0.08); }
        .dashboard-dots { display: flex; gap: 6px; }
        .dashboard-dots span { width: 8px; height: 8px; border-radius: 50%; }
        .dashboard-dots span:nth-child(1) { background: #EF4444; }
        .dashboard-dots span:nth-child(2) { background: #F59E0B; }
        .dashboard-dots span:nth-child(3) { background: #10B981; }
        .demo-title { font-size: 12px; font-weight: 600; color: #6B6580; }
        .demo-body { padding: 12px; background: var(--bg-primary); }

        /* TDS sections list */
        .tds-sections { background: var(--gray-2); border-radius: 10px; padding: 12px; border: 1px solid var(--gray-4); margin-bottom: 8px; }
        .sections-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
        .sections-title { font-size: 12px; font-weight: 700; color: var(--text-primary); }
        .section-list { display: flex; flex-direction: column; gap: 4px; }
        .section-item { display: flex; align-items: center; justify-content: space-between; padding: 6px 10px; background: var(--bg-primary); border-radius: 6px; }
        .section-item .section-code { font-size: 11px; font-weight: 700; color: var(--mid-accent); }
        .section-item .section-name { font-size: 11px; color: var(--text-secondary); flex: 1; margin-left: 8px; }
        .section-item .section-rate { font-size: 10px; font-weight: 600; color: var(--text-primary); padding: 3px 6px; background: rgba(var(--primary-rgb), 0.08); border-radius: 4px; }

        /* Challan status */
        .challan-status { background: var(--gray-2); border-radius: 10px; padding: 12px; border: 1px solid var(--gray-4); margin-bottom: 8px; }
        .challan-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
        .challan-title { font-size: 12px; font-weight: 700; color: var(--text-primary); }
        .challan-items { display: flex; flex-direction: column; gap: 4px; }
        .challan-item { display: flex; align-items: center; justify-content: space-between; padding: 6px 10px; background: var(--bg-primary); border-radius: 6px; }
        .challan-item .month { font-size: 11px; font-weight: 600; color: var(--text-primary); }
        .challan-item .amount { font-size: 11px; font-weight: 700; color: var(--mid-accent); }
        .challan-item .status { padding: 3px 6px; border-radius: 20px; font-size: 9px; font-weight: 600; }
        .challan-item .status.paid { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .challan-item .status.pending { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }

        /* Filing status */
        .filing-status { background: var(--gray-2); border-radius: 10px; padding: 12px; border: 1px solid var(--gray-4); }
        .filing-header { font-size: 12px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
        .filing-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
        .filing-item { background: var(--bg-primary); border-radius: 6px; padding: 8px; text-align: center; }
        .filing-item .form-name { font-size: 12px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
        .filing-item .form-status { font-size: 10px; font-weight: 600; }
        .filing-item .form-status.filed { color: #00B894; }
        .filing-item .form-status.due { color: #F59E0B; }

        /* Widgets Section - Light Mode */
        .widgets-section { padding: 80px 0; background: var(--gray-2); position: relative; }
        .widgets-section::before { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%); pointer-events: none; }
        .widgets-section .section-tag { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .widgets-section .section-header h2 { color: var(--text-primary); }
        .widgets-section .section-header p { color: var(--text-secondary); }
        .widgets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
        .widget-card { padding: 32px; background: var(--bg-primary); border-radius: 12px; border: 1px solid var(--gray-4); transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .widget-card:hover { background: var(--gray-2); border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); }
        .widget-icon { width: 56px; height: 56px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; transition: all 0.3s ease; }
        .widget-card:nth-child(6n+1) .widget-icon { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); }
        .widget-card:nth-child(6n+2) .widget-icon { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .widget-card:nth-child(6n+3) .widget-icon { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
        .widget-card:nth-child(6n+4) .widget-icon { background: rgba(241, 100, 63, 0.08); color: var(--primary); }
        .widget-card:nth-child(6n+5) .widget-icon { background: rgba(236, 72, 153, 0.08); color: #EC4899; }
        .widget-card:nth-child(6n+6) .widget-icon { background: rgba(20, 184, 166, 0.08); color: #14B8A6; }
        .widget-card:hover .widget-icon { transform: rotate(-8deg) scale(1.05); }
        .widget-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
        .widget-card p { color: var(--text-secondary); line-height: 1.6; }

        /* TDS Sections Grid - Light Mode */
        .sections-section { padding: 100px 0; background: var(--gray-1); position: relative; overflow: hidden; }
        .sections-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%); pointer-events: none; }
        .sections-section .section-header { text-align: center; max-width: 650px; margin: 0 auto 70px; position: relative; z-index: 1; }
        .sections-section .section-tag { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .sections-section .section-header h2 { font-size: 44px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
        .sections-section .section-header p { color: var(--text-secondary); font-size: 18px; line-height: 1.7; }
        .tds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
        .tds-card { background: var(--bg-primary); border-radius: 12px; padding: 20px; text-align: center; border: 1px solid var(--gray-4); transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .tds-card:hover { border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); transform: translateY(-4px); }
        .tds-card .tds-code { font-size: 20px; font-weight: 800; color: var(--mid-accent); margin-bottom: 4px; }
        .tds-card .tds-rate { font-size: 24px; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; }
        .tds-card .tds-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }

        /* Section header overrides for light mode */
        .section-header h2 { color: var(--text-primary); }
        .section-header p { color: var(--text-secondary); }
        .section-tag { background: rgba(var(--primary-rgb), 0.08); border-color: rgba(var(--primary-rgb), 0.15); }

        @media (max-width: 1199px) {
            .tds-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 809px) {
            .feature-hero .container { grid-template-columns: 1fr; }
            .feature-hero h1 { font-size: 32px; }
            .widgets-grid { grid-template-columns: 1fr; }
            .filing-items { grid-template-columns: 1fr; }
            .tds-grid { grid-template-columns: 1fr; }
        }

/* ========================================
   Extracted from: team-collaboration.html
   ======================================== */
/* Light mode styles for team collaboration page */
        .feature-hero { padding: 160px 0 80px; background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%); position: relative; overflow: hidden; }
        .feature-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 60%); pointer-events: none; }
        .feature-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .feature-tag { display: inline-block; background: rgba(var(--primary-rgb), 0.08); color: var(--primary); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .feature-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; color: var(--text-primary); }
        .feature-hero p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }
        .feature-visual { background: var(--bg-primary); border-radius: 20px; box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.12), 0 0 0 1px rgba(var(--primary-rgb), 0.08); overflow: hidden; border: 1px solid var(--gray-4); }
        .demo-header { background: var(--gray-2); padding: 16px 24px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(var(--primary-rgb), 0.08); }
        .demo-dot { width: 12px; height: 12px; border-radius: 50%; }
        .demo-dot.red { background: #EF4444; }
        .demo-dot.yellow { background: #F59E0B; }
        .demo-dot.green { background: #10B981; }
        .demo-title { flex: 1; text-align: center; color: #6B6580; font-size: 13px; font-weight: 600; }
        .demo-body { padding: 24px; background: var(--bg-primary); }
        .team-demo { background: var(--gray-2); border-radius: 12px; padding: 20px; border: 1px solid var(--gray-4); }
        .task-card { background: var(--bg-primary); border-radius: 8px; padding: 16px; margin-bottom: 12px; border: 1px solid var(--gray-4); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03); }
        .task-card:last-child { margin-bottom: 0; }
        .task-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
        .task-title { font-weight: 700; font-size: 14px; color: var(--text-primary); }
        .task-badge { font-size: 11px; padding: 4px 8px; border-radius: 4px; font-weight: 600; }
        .task-badge.pending { background: rgba(245, 158, 11, 0.08); color: #D97706; }
        .task-badge.review { background: rgba(241, 100, 63, 0.08); color: var(--primary); }
        .task-footer { display: flex; justify-content: space-between; align-items: center; }
        .task-assignee { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary); }
        .task-assignee .avatar { width: 24px; height: 24px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 600; }
        .task-date { font-size: 12px; color: var(--gray-9); }

        /* Collaboration Features Section - Light Mode */
        .collab-section { padding: 80px 0; background: var(--gray-2); position: relative; }
        .collab-section::before { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%); pointer-events: none; }
        .collab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
        .collab-card { padding: 32px; background: var(--bg-primary); border-radius: 12px; border: 1px solid var(--gray-4); transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .collab-card:hover { background: var(--gray-2); border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); }
        .collab-icon { width: 56px; height: 56px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; transition: all 0.3s ease; }
        .collab-card:nth-child(6n+1) .collab-icon { background: rgba(var(--primary-rgb), 0.08); color: var(--primary); }
        .collab-card:nth-child(6n+2) .collab-icon { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .collab-card:nth-child(6n+3) .collab-icon { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
        .collab-card:nth-child(6n+4) .collab-icon { background: rgba(241, 100, 63, 0.08); color: var(--primary); }
        .collab-card:nth-child(6n+5) .collab-icon { background: rgba(236, 72, 153, 0.08); color: #EC4899; }
        .collab-card:nth-child(6n+6) .collab-icon { background: rgba(20, 184, 166, 0.08); color: #14B8A6; }
        .collab-card:hover .collab-icon { transform: rotate(-8deg) scale(1.05); }
        .collab-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
        .collab-card p { color: var(--text-secondary); line-height: 1.6; }
        .collab-section .section-header h2 { color: var(--text-primary); }
        .collab-section .section-header p { color: var(--text-secondary); }

        /* Workflow Section - Light Mode */
        .workflow-section { padding: 80px 0; background: var(--gray-1); position: relative; overflow: hidden; }
        .workflow-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%); pointer-events: none; }
        .workflow-visual { max-width: 800px; margin: 60px auto 0; }
        .workflow-steps { display: flex; justify-content: space-between; position: relative; }
        .workflow-steps::before { content: ''; position: absolute; top: 30px; left: 60px; right: 60px; height: 2px; background: rgba(var(--primary-rgb), 0.15); }
        .workflow-step { text-align: center; position: relative; z-index: 1; }
        .workflow-step .icon { width: 60px; height: 60px; background: var(--bg-primary); border: 2px solid rgba(var(--primary-rgb), 0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 16px; transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); }
        .workflow-step:nth-child(6n+1) .icon { background: rgba(var(--primary-rgb), 0.08); color: var(--primary); border-color: var(--primary); }
        .workflow-step:nth-child(6n+2) .icon { background: rgba(0, 184, 148, 0.08); color: #00B894; border-color: #00B894; }
        .workflow-step:nth-child(6n+3) .icon { background: rgba(245, 158, 11, 0.08); color: #F59E0B; border-color: #F59E0B; }
        .workflow-step:nth-child(6n+4) .icon { background: rgba(241, 100, 63, 0.08); color: var(--primary); border-color: var(--primary); }
        .workflow-step:hover .icon { transform: rotate(-8deg) scale(1.05); }
        .workflow-step.active .icon { background: var(--primary); color: white; border-color: var(--primary); }
        .workflow-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
        .workflow-step p { font-size: 13px; color: var(--gray-9); }
        .workflow-section .section-header h2 { color: var(--text-primary); }
        .workflow-section .section-header p { color: var(--text-secondary); }

        @media (max-width: 809px) {
            .feature-hero .container { grid-template-columns: 1fr; }
            .feature-hero h1 { font-size: 32px; }
            .collab-grid { grid-template-columns: 1fr; }
            .workflow-steps { flex-direction: column; gap: 24px; }
            .workflow-steps::before { display: none; }
        }

/* ========================================
   Extracted from: terms-of-service.html
   ======================================== */
.page-hero.legal-hero {
            min-height: 50vh;
            padding-top: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 50%;
            height: 80%;
            background: radial-gradient(ellipse at center, rgba(255, 140, 80, 0.04) 0%, transparent 70%);
            filter: blur(40px);
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -5%;
            width: 40%;
            height: 70%;
            background: radial-gradient(ellipse at center, rgba(255, 140, 80, 0.04) 0%, transparent 70%);
            filter: blur(40px);
            pointer-events: none;
        }
        .page-hero h1 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 48px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 16px;
        }
        .page-hero h1 span { color: var(--primary); }
        .page-hero p {
            color: var(--text-secondary);
            font-size: 18px;
            line-height: 1.7;
            max-width: 560px;
            margin: 0 auto;
        }
        .hero-badge {
            display: inline-block;
            color: var(--primary);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 6px 14px;
            border-radius: 4px;
            margin-bottom: 16px;
            background: none;
        }
        .legal-content {
            padding: 80px 0;
            background: var(--gray-1);
        }
        .legal-container {
            max-width: 800px;
            margin: 0 auto;
            background: #E8E4DE;
            border: none;
            border-radius: 24px;
            padding: 6px;
        }
        .legal-inner {
            background: white;
            border-radius: 18px;
            padding: 48px;
        }
        .legal-content h2 {
            font-family: 'Bricolage Grotesque', serif;
            font-size: 22px;
            font-weight: 600;
            margin: 40px 0 16px;
            color: var(--text-primary);
            padding: 12px 16px;
            background: rgba(var(--primary-rgb), 0.04);
            border-left: 4px solid var(--primary);
            border-radius: 0 10px 10px 0;
        }
        .legal-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 24px 0 12px;
            color: var(--text-primary);
        }
        .legal-content p {
            color: var(--text-secondary);
            margin-bottom: 16px;
            line-height: 1.8;
        }
        .legal-content ul, .legal-content ol {
            margin: 16px 0;
            padding-left: 24px;
            color: var(--text-secondary);
        }
        .legal-content li {
            margin-bottom: 8px;
            line-height: 1.7;
        }
        .legal-content li strong {
            color: var(--text-primary);
        }
        .legal-content .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary);
            color: white;
            font-size: 13px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 100px;
            margin-bottom: 32px;
        }
        .legal-content .highlight-box {
            background: rgba(var(--primary-rgb), 0.04);
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
        }
        .legal-content .highlight-box p {
            margin: 0;
            color: var(--text-secondary);
        }
        .legal-content .highlight-box strong {
            color: var(--text-primary);
        }
        .legal-content a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .legal-content a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        .legal-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--gray-4);
        }
        .legal-content th, .legal-content td {
            padding: 14px 18px;
            border: 1px solid var(--gray-4);
            text-align: left;
        }
        .legal-content th {
            background: var(--gray-2);
            font-weight: 600;
            color: var(--text-primary);
            font-size: 14px;
        }
        .legal-content td {
            color: var(--text-secondary);
            font-size: 14px;
        }
        .legal-content tr:nth-child(even) td {
            background: rgba(var(--primary-rgb), 0.02);
        }
        @media (max-width: 809px) {
            .page-hero.legal-hero { min-height: 40vh; }
            .legal-inner { padding: 28px; }
        }
        @media (max-width: 480px) {
            .page-hero.legal-hero { min-height: 35vh; }
            .legal-inner { padding: 20px; }
            .legal-content { padding: 40px 0; }
            .legal-content h2 { font-size: 19px; padding: 10px 14px; }
        }

/* ========================================
   Extracted from: vendor-management.html
   ======================================== */
/* Light Mode Base */
        .feature-hero { padding: 160px 0 80px; background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%); position: relative; overflow: hidden; }
        .feature-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 60%); pointer-events: none; }
        .feature-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .feature-tag { display: inline-block; background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .feature-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; color: var(--text-primary); }
        .feature-hero p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }

        /* Feature visual - Light Mode */
        .feature-visual { background: var(--bg-primary); border-radius: 20px; box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.12), 0 0 0 1px rgba(var(--primary-rgb), 0.08); overflow: hidden; border: 1px solid var(--gray-4); max-width: 440px; margin: 0 auto; }
        .demo-header { background: var(--gray-2); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(var(--primary-rgb), 0.08); }
        .dashboard-dots { display: flex; gap: 6px; }
        .dashboard-dots span { width: 10px; height: 10px; border-radius: 50%; }
        .dashboard-dots span:nth-child(1) { background: #EF4444; }
        .dashboard-dots span:nth-child(2) { background: #F59E0B; }
        .dashboard-dots span:nth-child(3) { background: #10B981; }
        .demo-title { font-size: 13px; font-weight: 600; color: #6B6580; }
        .demo-body { padding: 16px; background: var(--bg-primary); }

        /* Vendor card demo */
        .vendor-card-demo { background: var(--gray-2); border-radius: 12px; padding: 16px; border: 1px solid var(--gray-4); margin-bottom: 12px; }
        .vendor-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .vendor-avatar { width: 48px; height: 48px; background: rgba(var(--primary-rgb), 0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--mid-accent); font-weight: 700; font-size: 16px; }
        .vendor-info h4 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
        .vendor-info p { font-size: 12px; color: var(--gray-9); }
        .vendor-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
        .vendor-badge { padding: 4px 10px; border-radius: 20px; font-size: 10px; font-weight: 600; display: flex; align-items: center; gap: 4px; }
        .vendor-badge.verified { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .vendor-badge.msme { background: rgba(241, 100, 63, 0.08); color: var(--primary); }
        .vendor-badge.gst { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); }
        .vendor-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
        .vendor-stat { text-align: center; padding: 8px; background: var(--bg-primary); border-radius: 8px; }
        .vendor-stat .value { font-size: 16px; font-weight: 700; color: var(--text-primary); }
        .vendor-stat .label { font-size: 10px; color: var(--gray-9); }

        /* Verification status */
        .verification-list { background: var(--gray-2); border-radius: 12px; padding: 12px; border: 1px solid var(--gray-4); }
        .verification-item { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--gray-4); }
        .verification-item:last-child { border-bottom: none; }
        .verification-item .name { font-size: 13px; font-weight: 500; color: var(--text-primary); display: flex; align-items: center; gap: 8px; }
        .verification-item .status { font-size: 11px; padding: 4px 10px; border-radius: 20px; font-weight: 600; }
        .verification-item .status.verified { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .verification-item .status.pending { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }

        /* Widgets Section - Light Mode */
        .widgets-section { padding: 80px 0; background: var(--gray-2); position: relative; }
        .widgets-section::before { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%); pointer-events: none; }
        .widgets-section .section-tag { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .widgets-section .section-header h2 { color: var(--text-primary); }
        .widgets-section .section-header p { color: var(--text-secondary); }
        .widgets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
        .widget-card { padding: 32px; background: var(--bg-primary); border-radius: 12px; border: 1px solid var(--gray-4); transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .widget-card:hover { background: var(--gray-2); border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); }
        .widget-icon { width: 56px; height: 56px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; transition: all 0.3s ease; }
        .widget-card:nth-child(6n+1) .widget-icon { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); }
        .widget-card:nth-child(6n+2) .widget-icon { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .widget-card:nth-child(6n+3) .widget-icon { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
        .widget-card:nth-child(6n+4) .widget-icon { background: rgba(241, 100, 63, 0.08); color: var(--primary); }
        .widget-card:nth-child(6n+5) .widget-icon { background: rgba(236, 72, 153, 0.08); color: #EC4899; }
        .widget-card:nth-child(6n+6) .widget-icon { background: rgba(20, 184, 166, 0.08); color: #14B8A6; }
        .widget-card:hover .widget-icon { transform: rotate(-8deg) scale(1.05); }
        .widget-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
        .widget-card p { color: var(--text-secondary); line-height: 1.6; }

        /* Vendor Types Section - Light Mode */
        .types-section { padding: 100px 0; background: var(--gray-1); position: relative; overflow: hidden; }
        .types-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%); pointer-events: none; }
        .types-section .section-header { text-align: center; max-width: 650px; margin: 0 auto 70px; position: relative; z-index: 1; }
        .types-section .section-tag { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .types-section .section-header h2 { font-size: 44px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
        .types-section .section-header p { color: var(--text-secondary); font-size: 18px; line-height: 1.7; }
        .types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
        .type-card { background: var(--bg-primary); border-radius: 16px; padding: 28px; text-align: center; border: 1px solid var(--gray-4); transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .type-card:hover { border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); transform: translateY(-4px); }
        .type-icon { width: 64px; height: 64px; background: rgba(var(--primary-rgb), 0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--mid-accent); }
        .type-card h4 { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
        .type-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

        /* Section header overrides for light mode */
        .section-header h2 { color: var(--text-primary); }
        .section-header p { color: var(--text-secondary); }
        .section-tag { background: rgba(var(--primary-rgb), 0.08); border-color: rgba(var(--primary-rgb), 0.15); }

        @media (max-width: 1199px) {
            .types-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 809px) {
            .feature-hero .container { grid-template-columns: 1fr; }
            .feature-hero h1 { font-size: 32px; }
            .widgets-grid { grid-template-columns: 1fr; }
            .types-grid { grid-template-columns: 1fr; }
            .vendor-stats { grid-template-columns: 1fr; }
        }

/* ========================================
   Extracted from: virtual-cards-expenses.html
   ======================================== */
/* Light Mode Base */
        .feature-hero { padding: 160px 0 80px; background: linear-gradient(180deg, #ffffff 60%, var(--gray-1) 100%); position: relative; overflow: hidden; }
        .feature-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 60%); pointer-events: none; }
        .feature-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .feature-tag { display: inline-block; background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .feature-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; color: var(--text-primary); }
        .feature-hero p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }

        /* Feature visual - Light Mode */
        .feature-visual { background: var(--bg-primary); border-radius: 20px; box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.12), 0 0 0 1px rgba(var(--primary-rgb), 0.08); overflow: hidden; border: 1px solid var(--gray-4); max-width: 440px; margin: 0 auto; }
        .demo-header { background: var(--gray-2); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(var(--primary-rgb), 0.08); }
        .dashboard-dots { display: flex; gap: 6px; }
        .dashboard-dots span { width: 10px; height: 10px; border-radius: 50%; }
        .dashboard-dots span:nth-child(1) { background: #EF4444; }
        .dashboard-dots span:nth-child(2) { background: #F59E0B; }
        .dashboard-dots span:nth-child(3) { background: #10B981; }
        .demo-title { font-size: 13px; font-weight: 600; color: #6B6580; }
        .demo-body { padding: 16px; background: var(--bg-primary); }

        /* Virtual card demo */
        .virtual-card { background: linear-gradient(135deg, var(--mid-accent) 0%, var(--primary-dark) 50%, var(--primary) 100%); border-radius: 16px; padding: 20px; color: #FFFFFF; margin-bottom: 12px; position: relative; overflow: hidden; }
        .virtual-card::before { content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%); pointer-events: none; }
        .card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
        .card-logo { font-size: 18px; font-weight: 800; letter-spacing: 1px; }
        .card-type { font-size: 11px; opacity: 0.8; }
        .card-number { font-size: 18px; font-weight: 600; letter-spacing: 3px; margin-bottom: 16px; font-family: 'SF Mono', Monaco, monospace; }
        .card-footer { display: flex; justify-content: space-between; align-items: flex-end; }
        .card-holder .label { font-size: 10px; opacity: 0.7; margin-bottom: 2px; }
        .card-holder .name { font-size: 13px; font-weight: 600; }
        .card-balance .label { font-size: 10px; opacity: 0.7; margin-bottom: 2px; text-align: right; }
        .card-balance .amount { font-size: 18px; font-weight: 800; }

        /* Card limit bar */
        .limit-bar { background: var(--gray-2); border-radius: 12px; padding: 14px; border: 1px solid var(--gray-4); margin-bottom: 12px; }
        .limit-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
        .limit-title { font-size: 12px; font-weight: 600; color: var(--text-primary); }
        .limit-amount { font-size: 12px; color: var(--gray-9); }
        .limit-track { height: 8px; background: var(--gray-4); border-radius: 4px; overflow: hidden; }
        .limit-fill { height: 100%; background: linear-gradient(90deg, var(--mid-accent), var(--primary)); border-radius: 4px; width: 35%; }

        /* Recent transactions */
        .recent-expenses { background: var(--gray-2); border-radius: 12px; padding: 14px; border: 1px solid var(--gray-4); }
        .expenses-header { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
        .expense-list { display: flex; flex-direction: column; gap: 8px; }
        .expense-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: var(--bg-primary); border-radius: 8px; }
        .expense-icon { width: 32px; height: 32px; background: rgba(var(--primary-rgb), 0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--mid-accent); }
        .expense-details { flex: 1; }
        .expense-merchant { font-size: 13px; font-weight: 600; color: var(--text-primary); }
        .expense-category { font-size: 11px; color: var(--gray-9); }
        .expense-amount { font-size: 13px; font-weight: 700; color: var(--text-primary); }

        /* Widgets Section - Light Mode */
        .widgets-section { padding: 80px 0; background: var(--gray-2); position: relative; }
        .widgets-section::before { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%); pointer-events: none; }
        .widgets-section .section-tag { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .widgets-section .section-header h2 { color: var(--text-primary); }
        .widgets-section .section-header p { color: var(--text-secondary); }
        .widgets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
        .widget-card { padding: 32px; background: var(--bg-primary); border-radius: 12px; border: 1px solid var(--gray-4); transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03); }
        .widget-card:hover { background: var(--gray-2); border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08); }
        .widget-icon { width: 56px; height: 56px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; transition: all 0.3s ease; }
        .widget-card:nth-child(6n+1) .widget-icon { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); }
        .widget-card:nth-child(6n+2) .widget-icon { background: rgba(0, 184, 148, 0.08); color: #00B894; }
        .widget-card:nth-child(6n+3) .widget-icon { background: rgba(245, 158, 11, 0.08); color: #F59E0B; }
        .widget-card:nth-child(6n+4) .widget-icon { background: rgba(241, 100, 63, 0.08); color: var(--primary); }
        .widget-card:nth-child(6n+5) .widget-icon { background: rgba(236, 72, 153, 0.08); color: #EC4899; }
        .widget-card:nth-child(6n+6) .widget-icon { background: rgba(20, 184, 166, 0.08); color: #14B8A6; }
        .widget-card:hover .widget-icon { transform: rotate(-8deg) scale(1.05); }
        .widget-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
        .widget-card p { color: var(--text-secondary); line-height: 1.6; }

        /* Controls Section - Light Mode */
        .controls-section { padding: 100px 0; background: var(--gray-1); position: relative; overflow: hidden; }
        .controls-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%); pointer-events: none; }
        .controls-section .section-header { text-align: center; max-width: 650px; margin: 0 auto 70px; position: relative; z-index: 1; }
        .controls-section .section-tag { background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); border: 1px solid rgba(var(--primary-rgb), 0.15); }
        .controls-section .section-header h2 { font-size: 44px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
        .controls-section .section-header p { color: var(--text-secondary); font-size: 18px; line-height: 1.7; }
        .controls-visual { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
        .control-card { background: var(--bg-primary); border-radius: 16px; padding: 20px; border: 1px solid var(--gray-4); margin-bottom: 16px; }
        .control-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
        .control-title { font-size: 16px; font-weight: 700; color: var(--text-primary); }
        .control-toggle { width: 48px; height: 26px; background: var(--mid-accent); border-radius: 13px; position: relative; cursor: pointer; }
        .control-toggle::after { content: ''; position: absolute; width: 22px; height: 22px; background: var(--bg-primary); border-radius: 50%; top: 2px; right: 2px; transition: all 0.2s; }
        .control-toggle.off { background: var(--gray-4); }
        .control-toggle.off::after { right: auto; left: 2px; }
        .control-items { display: flex; flex-wrap: wrap; gap: 8px; }
        .control-item { padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 500; background: rgba(var(--primary-rgb), 0.08); color: var(--mid-accent); display: flex; align-items: center; gap: 6px; }
        .control-item.blocked { background: rgba(239, 68, 68, 0.08); color: #EF4444; text-decoration: line-through; }

        /* Section header overrides for light mode */
        .section-header h2 { color: var(--text-primary); }
        .section-header p { color: var(--text-secondary); }
        .section-tag { background: rgba(var(--primary-rgb), 0.08); border-color: rgba(var(--primary-rgb), 0.15); }

        @media (max-width: 809px) {
            .feature-hero .container { grid-template-columns: 1fr; }
            .feature-hero h1 { font-size: 32px; }
            .widgets-grid { grid-template-columns: 1fr; }
        }
