            :root {
                --primary: #1f3864;
                --primary-light: #2a4a7f;
                --accent: #ad1b02;
                --accent-hover: #8a1501;
                --accent-glow: rgba(173, 27, 2, 0.3);
                --secondary: #d85604;
                --gold: #e88d14;
                --text-dark: #1f3864;
                --text-muted: #64748b;
                --text-light: #d3d5d8;
                --bg-light: #f8fafc;
                --white: #ffffff;
                --gradient-start: #1f3864;
                --gradient-end: #2a4a7f;
            }

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

            body {
                font-family:
                    'Inter',
                    -apple-system,
                    BlinkMacSystemFont,
                    sans-serif;
                color: var(--text-dark);
                background: var(--white);
                line-height: 1.6;
                overflow-x: hidden;
            }

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

            /* Navigation */
            nav {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 1000;
                padding: 16px 0;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
                transition: all 0.3s ease;
            }

            nav.scrolled {
                padding: 12px 0;
                box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
            }

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

            .nav-toggle {
                display: none;
            }

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

            .logo {
                display: flex;
                align-items: center;
                gap: 10px;
                font-size: 24px;
                font-weight: 800;
                color: var(--primary);
                text-decoration: none;
            }

            .logo-text {
                font-size: 24px;
                font-weight: 800;
                color: white;
            }

            .logo-icon {
                width: 40px;
                height: 40px;
                background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-weight: 700;
                font-size: 18px;
            }

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

            .nav-links a {
                color: var(--text-muted);
                text-decoration: none;
                font-weight: 500;
                font-size: 15px;
                transition: color 0.2s;
            }

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

            .btn {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                padding: 12px 24px;
                border-radius: 8px;
                font-weight: 600;
                font-size: 15px;
                text-decoration: none;
                cursor: pointer;
                transition: all 0.3s ease;
                border: none;
            }

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

            .btn-primary:hover {
                background: var(--primary-light);
                transform: translateY(-2px);
                box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
            }

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

            .btn-accent:hover {
                background: var(--accent-hover);
                transform: translateY(-2px);
                box-shadow: 0 10px 30px var(--accent-glow);
            }

            /* Hero Section */
            .hero {
                min-height: 100vh;
                background: linear-gradient(135deg, #050505 0%, #000000 50%, #ffffff 100%);
                position: relative;
                display: flex;
                align-items: center;
                padding: 120px 0 80px;
                overflow: hidden;
            }

            .hero::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background:
                    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(173, 27, 2, 0.15) 0%, transparent 50%),
                    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(216, 86, 4, 0.1) 0%, transparent 50%);
            }

            .hero::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background:
                    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(31, 56, 100, 0.2) 0%, transparent 50%);
            }

            .hero-grid {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-image:
                    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
                background-size: 60px 60px;
            }

            .hero-text h1 {
                font-size: 56px;
                font-weight: 800;
                color: white;
                line-height: 1.1;
                margin-bottom: 24px;
            }

            .hero-text h1 span {
                background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }

            .hero-text p {
                font-size: 18px;
                color: #cbd5e1;
                margin-bottom: 32px;
                max-width: 500px;
            }

            .hero-buttons {
                display: flex;
                gap: 16px;
                margin-bottom: 48px;
            }

            .hero-stats {
                display: flex;
                gap: 40px;
            }

            .stat-value {
                font-size: 32px;
                font-weight: 700;
                color: white;
            }

            .stat-label {
                font-size: 14px;
                color: #94a3b8;
            }

            .hero-visual {
                position: relative;
            }

            .hero-dashboard {
                background: linear-gradient(145deg, #ffffff 0%, #e8e8e8 100%);
                border-radius: 16px;
                padding: 24px;
                border: 1px solid rgba(255, 255, 255, 0.3);
                box-shadow:
                    0 25px 50px rgba(0, 0, 0, 0.4),
                    0 0 0 1px rgba(0, 0, 0, 0.1) inset;
                transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
                transition: transform 0.5s ease;
            }

            .hero-dashboard:hover {
                transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
            }

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

            .dashboard-title {
                color: #1f3864;
                font-weight: 600;
                font-size: 14px;
            }

            .dashboard-menu {
                display: flex;
                gap: 8px;
            }

            .menu-dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: #ad1b02;
            }

            .dashboard-stats {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
                margin-bottom: 20px;
            }

            .dash-stat {
                background: white;
                border-radius: 10px;
                padding: 16px;
                border: 1px solid rgba(0, 0, 0, 0.08);
            }

            .dash-stat-label {
                font-size: 12px;
                color: #666;
                margin-bottom: 4px;
            }

            .dash-stat-value {
                font-size: 20px;
                font-weight: 700;
                color: #1f3864;
            }

            .dash-stat-value.green {
                color: #10b981;
            }

            .dash-stat-value.gold {
                color: #f59e0b;
            }

            .dashboard-chart {
                height: 120px;
                background: white;
                border-radius: 10px;
                position: relative;
                overflow: hidden;
                border: 1px solid rgba(0, 0, 0, 0.08);
            }

            .chart-line {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 60%;
                background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 100' preserveAspectRatio='none'%3E%3Cpath d='M0,80 Q50,60 100,70 T200,50 T300,60 T400,30 T500,40' stroke='%23ffffff' fill='none' stroke-width='3'/%3E%3C/svg%3E")
                    repeat-x;
                background-size: 500px 100%;
                animation: chartMove 20s linear infinite;
                opacity: 1;
            }

            .hero-dashboard:hover {
                transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
            }

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

            .dashboard-title {
                color: white;
                font-weight: 600;
                font-size: 14px;
            }

            .dashboard-menu {
                display: flex;
                gap: 8px;
            }

            .menu-dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.5);
            }

            .dashboard-stats {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
                margin-bottom: 20px;
            }

            .dash-stat {
                background: rgba(255, 255, 255, 0.15);
                border-radius: 10px;
                padding: 16px;
                border: 1px solid rgba(255, 255, 255, 0.1);
            }

            .dash-stat-label {
                font-size: 12px;
                color: rgba(255, 255, 255, 0.7);
                margin-bottom: 4px;
            }

            .dash-stat-value {
                font-size: 20px;
                font-weight: 700;
                color: white;
            }

            .dash-stat-value.green {
                color: #10b981;
            }

            .dash-stat-value.gold {
                color: #f59e0b;
            }

            .dashboard-chart {
                height: 120px;
                background: rgba(255, 255, 255, 0.08);
                border-radius: 10px;
                position: relative;
                overflow: hidden;
                border: 1px solid rgba(255, 255, 255, 0.1);
            }

            .chart-line {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 60%;
                background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 100' preserveAspectRatio='none'%3E%3Cpath d='M0,80 Q50,60 100,70 T200,50 T300,60 T400,30 T500,40' stroke='%23ffffff' fill='none' stroke-width='3'/%3E%3C/svg%3E")
                    repeat-x;
                background-size: 500px 100%;
                animation: chartMove 20s linear infinite;
                opacity: 1;
            }

            .hero-dashboard:hover {
                transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
            }

            .dashboard-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 20px;
                padding-bottom: 16px;
                border-bottom: 1px solid rgba(173, 27, 2, 0.15);
            }

            .dashboard-title {
                color: #1f3864;
                font-weight: 600;
                font-size: 14px;
            }

            .dashboard-menu {
                display: flex;
                gap: 8px;
            }

            .menu-dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: #ad1b02;
            }

            .dashboard-stats {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
                margin-bottom: 20px;
            }

            .dash-stat {
                background: white;
                border-radius: 10px;
                padding: 16px;
                border: 1px solid rgba(173, 27, 2, 0.1);
            }

            .dash-stat-label {
                font-size: 12px;
                color: #64748b;
                margin-bottom: 4px;
            }

            .dash-stat-value {
                font-size: 20px;
                font-weight: 700;
                color: #1f3864;
            }

            .dash-stat-value.green {
                color: #059669;
            }

            .dash-stat-value.gold {
                color: #d85604;
            }

            .dashboard-chart {
                height: 120px;
                background: linear-gradient(180deg, #f0e6e0 0%, white 100%);
                border-radius: 10px;
                position: relative;
                overflow: hidden;
                border: 1px solid rgba(173, 27, 2, 0.1);
            }

            .chart-line {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 60%;
                background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 100' preserveAspectRatio='none'%3E%3Cpath d='M0,80 Q50,60 100,70 T200,50 T300,60 T400,30 T500,40' stroke='%23ffffff' fill='none' stroke-width='3'/%3E%3C/svg%3E")
                    repeat-x;
                background-size: 500px 100%;
                animation: chartMove 20s linear infinite;
                opacity: 1;
            }

            .hero-dashboard:hover {
                transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
            }

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

            .dashboard-title {
                color: white;
                font-weight: 600;
                font-size: 14px;
            }

            .dashboard-menu {
                display: flex;
                gap: 8px;
            }

            .menu-dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.3);
            }

            .dashboard-stats {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
                margin-bottom: 20px;
            }

            .dash-stat {
                background: rgba(255, 255, 255, 0.08);
                border-radius: 10px;
                padding: 16px;
            }

            .dash-stat-label {
                font-size: 12px;
                color: #94a3b8;
                margin-bottom: 4px;
            }

            .dash-stat-value {
                font-size: 20px;
                font-weight: 700;
                color: white;
            }

            .dash-stat-value.green {
                color: var(--accent);
            }

            .dash-stat-value.gold {
                color: var(--secondary);
            }

            .dashboard-chart {
                height: 120px;
                background: linear-gradient(180deg, rgba(173, 27, 2, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
                border-radius: 10px;
                position: relative;
                overflow: hidden;
                border: 1px solid rgba(255, 255, 255, 0.15);
            }

            .chart-line {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 60%;
                background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 100' preserveAspectRatio='none'%3E%3Cpath d='M0,80 Q50,60 100,70 T200,50 T300,60 T400,30 T500,40' stroke='%23ffffff' fill='none' stroke-width='3'/%3E%3C/svg%3E")
                    repeat-x;
                background-size: 500px 100%;
                animation: chartMove 20s linear infinite;
                opacity: 0.9;
            }

            .hero::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background:
                    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(173, 27, 2, 0.08) 0%, transparent 50%),
                    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(216, 86, 4, 0.05) 0%, transparent 50%);
            }

            .hero-grid {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-image:
                    linear-gradient(rgba(31, 56, 100, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(31, 56, 100, 0.03) 1px, transparent 1px);
                background-size: 60px 60px;
            }

            .hero-text h1 {
                font-size: 56px;
                font-weight: 800;
                color: var(--primary);
                line-height: 1.1;
                margin-bottom: 24px;
            }

            .hero-text h1 span {
                background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }

            .hero-text p {
                font-size: 18px;
                color: var(--text-muted);
                margin-bottom: 32px;
                max-width: 500px;
            }

            .hero-buttons {
                display: flex;
                gap: 16px;
                margin-bottom: 48px;
            }

            .hero-stats {
                display: flex;
                gap: 40px;
            }

            .stat-value {
                font-size: 32px;
                font-weight: 700;
                color: var(--primary);
            }

            .stat-label {
                font-size: 14px;
                color: var(--text-muted);
            }

            .hero-visual {
                position: relative;
            }

            .hero-dashboard {
                background: white;
                border-radius: 16px;
                padding: 24px;
                border: 1px solid rgba(31, 56, 100, 0.1);
                box-shadow:
                    0 25px 50px rgba(31, 56, 100, 0.15),
                    0 0 0 1px rgba(31, 56, 100, 0.05) inset;
                transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
                transition: transform 0.5s ease;
            }

            .hero-dashboard:hover {
                transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
            }

            .dashboard-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 20px;
                padding-bottom: 16px;
                border-bottom: 1px solid rgba(31, 56, 100, 0.1);
            }

            .dashboard-title {
                color: var(--primary);
                font-weight: 600;
                font-size: 14px;
            }

            .dashboard-menu {
                display: flex;
                gap: 8px;
            }

            .menu-dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: rgba(31, 56, 100, 0.3);
            }

            .dashboard-stats {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
                margin-bottom: 20px;
            }

            .dash-stat {
                background: #f8fafc;
                border-radius: 10px;
                padding: 16px;
            }

            .dash-stat-label {
                font-size: 12px;
                color: var(--text-muted);
                margin-bottom: 4px;
            }

            .dash-stat-value {
                font-size: 20px;
                font-weight: 700;
                color: var(--primary);
            }

            .dash-stat-value.green {
                color: var(--accent);
            }

            .dash-stat-value.gold {
                color: var(--secondary);
            }

            .dashboard-chart {
                height: 120px;
                background: linear-gradient(180deg, rgba(173, 27, 2, 0.05) 0%, #f8fafc 100%);
                border-radius: 10px;
                position: relative;
                overflow: hidden;
            }

            .chart-line {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 60%;
                background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 100' preserveAspectRatio='none'%3E%3Cpath d='M0,80 Q50,60 100,70 T200,50 T300,60 T400,30 T500,40' stroke='%23ffffff' fill='none' stroke-width='2'/%3E%3C/svg%3E")
                    repeat-x;
                background-size: 500px 100%;
                animation: chartMove 20s linear infinite;
            }

            .hero::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background:
                    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(173, 27, 2, 0.2) 0%, transparent 50%),
                    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(216, 86, 4, 0.15) 0%, transparent 50%);
            }

            .hero-grid {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-image:
                    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
                background-size: 60px 60px;
            }

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

            .hero-text h1 {
                font-size: 56px;
                font-weight: 800;
                color: white;
                line-height: 1.1;
                margin-bottom: 24px;
            }

            .hero-text h1 span {
                background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }

            .hero-text p {
                font-size: 18px;
                color: var(--text-light);
                margin-bottom: 32px;
                max-width: 500px;
            }

            .hero-buttons {
                display: flex;
                gap: 16px;
                margin-bottom: 48px;
            }

            .hero-stats {
                display: flex;
                gap: 40px;
            }

            .stat {
                text-align: left;
            }

            .stat-value {
                font-size: 32px;
                font-weight: 700;
                color: white;
            }

            .stat-label {
                font-size: 14px;
                color: var(--text-light);
            }

            .hero-visual {
                position: relative;
            }

            .hero-dashboard {
                background: linear-gradient(145deg, var(--primary-light) 0%, var(--primary) 100%);
                border-radius: 16px;
                padding: 24px;
                border: 1px solid rgba(255, 255, 255, 0.1);
                box-shadow:
                    0 25px 50px rgba(0, 0, 0, 0.4),
                    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
                transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
                transition: transform 0.5s ease;
            }

            .hero-dashboard:hover {
                transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
            }

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

            .dashboard-title {
                color: white;
                font-weight: 600;
                font-size: 14px;
            }

            .dashboard-menu {
                display: flex;
                gap: 8px;
            }

            .menu-dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.3);
            }

            .dashboard-stats {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
                margin-bottom: 20px;
            }

            .dash-stat {
                background: rgba(255, 255, 255, 0.05);
                border-radius: 10px;
                padding: 16px;
            }

            .dash-stat-label {
                font-size: 12px;
                color: var(--text-light);
                margin-bottom: 4px;
            }

            .dash-stat-value {
                font-size: 20px;
                font-weight: 700;
                color: white;
            }

            .dash-stat-value.green {
                color: var(--accent);
            }

            .dash-stat-value.gold {
                color: var(--gold);
            }

            .dashboard-chart {
                height: 120px;
                background: linear-gradient(180deg, rgba(173, 27, 2, 0.1) 0%, transparent 100%);
                border-radius: 10px;
                position: relative;
                overflow: hidden;
            }

            .chart-line {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 60%;
                background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 100' preserveAspectRatio='none'%3E%3Cpath d='M0,80 Q50,60 100,70 T200,50 T300,60 T400,30 T500,40' stroke='%23ffffff' fill='none' stroke-width='2'/%3E%3C/svg%3E")
                    repeat-x;
                background-size: 500px 100%;
                animation: chartMove 20s linear infinite;
            }

            @keyframes chartMove {
                0% {
                    background-position: 0 0;
                }
                100% {
                    background-position: 500px 0;
                }
            }

            /* Features Section */
            .features {
                padding: 100px 0;
                background: var(--bg-light);
            }

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

            .section-tag {
                display: inline-block;
                padding: 6px 16px;
                background: rgba(173, 27, 2, 0.1);
                color: var(--accent);
                font-size: 13px;
                font-weight: 600;
                border-radius: 20px;
                margin-bottom: 16px;
            }

            .section-title {
                font-size: 40px;
                font-weight: 700;
                color: var(--primary);
                margin-bottom: 16px;
            }

            .section-desc {
                font-size: 17px;
                color: var(--text-muted);
            }

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

            .feature-card {
                background: white;
                border-radius: 16px;
                padding: 32px;
                border: 1px solid rgba(0, 0, 0, 0.05);
                transition: all 0.3s ease;
            }

            .feature-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            }

            .feature-icon {
                width: 56px;
                height: 56px;
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 24px;
                margin-bottom: 20px;
            }

            .feature-icon.sales {
                background: rgba(173, 27, 2, 0.1);
                color: var(--accent);
            }
            .feature-icon.inventory {
                background: rgba(216, 86, 4, 0.1);
                color: var(--secondary);
            }
            .feature-icon.finance {
                background: rgba(31, 56, 100, 0.1);
                color: var(--primary);
            }
            .feature-icon.reporting {
                background: rgba(232, 141, 20, 0.1);
                color: var(--gold);
            }
            .feature-icon.hr {
                background: rgba(232, 141, 20, 0.1);
                color: var(--gold);
            }
            .feature-icon.customers {
                background: rgba(173, 27, 2, 0.1);
                color: var(--accent);
            }
            .feature-icon.multi {
                background: rgba(31, 56, 100, 0.1);
                color: var(--primary);
            }
            .feature-icon.manufacturing {
                background: rgba(216, 86, 4, 0.1);
                color: var(--secondary);
            }
            .feature-icon.services {
                background: rgba(31, 56, 100, 0.1);
                color: var(--primary);
            }
            .feature-icon.expenses {
                background: rgba(173, 27, 2, 0.1);
                color: var(--accent);
            }
            .feature-icon.banking {
                background: rgba(232, 141, 20, 0.1);
                color: var(--gold);
            }
            .feature-icon.debt {
                background: rgba(216, 86, 4, 0.1);
                color: var(--secondary);
            }

            .feature-card h3 {
                font-size: 18px;
                font-weight: 600;
                color: var(--primary);
                margin-bottom: 8px;
            }

            .feature-card p {
                font-size: 14px;
                color: var(--text-muted);
                line-height: 1.6;
            }

            /* Benefits Section */
            .benefits {
                padding: 100px 0;
                background: white;
            }

            .benefits-content {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 80px;
                align-items: center;
            }

            .benefits-text h2 {
                font-size: 40px;
                font-weight: 700;
                color: var(--primary);
                margin-bottom: 20px;
                line-height: 1.2;
            }

            .benefits-text p {
                font-size: 17px;
                color: var(--text-muted);
                margin-bottom: 32px;
            }

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

            .benefit-list li {
                display: flex;
                align-items: center;
                gap: 12px;
                padding: 12px 0;
                font-size: 15px;
                color: var(--text-dark);
            }

            .benefit-list li::before {
                content: '✓';
                width: 24px;
                height: 24px;
                background: var(--accent);
                color: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 12px;
                font-weight: 700;
            }

            .benefits-visual {
                position: relative;
            }

            .benefits-card {
                background: white;
                border-radius: 20px;
                padding: 32px;
                box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
                border: 1px solid rgba(0, 0, 0, 0.05);
            }

            .benefits-metrics {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .metric-card {
                background: var(--bg-light);
                border-radius: 12px;
                padding: 20px;
                text-align: center;
            }

            .metric-value {
                font-size: 28px;
                font-weight: 700;
                color: var(--primary);
            }

            .metric-label {
                font-size: 13px;
                color: var(--text-muted);
            }

            /* Testimonials */
            .testimonials {
                padding: 100px 0;
                background: linear-gradient(135deg, #1f3864 0%, #2a4a7f 100%);
                position: relative;
                overflow: hidden;
            }

            .testimonials::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-image:
                    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
                background-size: 40px 40px;
            }

            .testimonials .section-header {
                position: relative;
                z-index: 1;
            }

            .testimonials .section-tag {
                background: #ffffff;
                color: #ad1b02;
                font-weight: 700;
            }

            .testimonials .section-title {
                color: #ffffff;
                font-weight: 700;
            }

            .testimonials .section-desc {
                color: rgba(255, 255, 255, 0.85);
            }

            .testimonials-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
                position: relative;
                z-index: 1;
            }

            .testimonial-card {
                background: rgba(255, 255, 255, 0.12);
                border: 1px solid rgba(255, 255, 255, 0.25);
                border-radius: 16px;
                padding: 32px;
                backdrop-filter: blur(10px);
            }

            .testimonial-header {
                display: flex;
                align-items: center;
                gap: 16px;
                margin-bottom: 20px;
            }

            .testimonial-avatar {
                width: 48px;
                height: 48px;
                border-radius: 50%;
                background: linear-gradient(135deg, #ad1b02 0%, #d85604 100%);
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-weight: 700;
                font-size: 18px;
                overflow: hidden;
                flex-shrink: 0;
            }

            .testimonial-info h4 {
                color: #ffffff;
                font-weight: 600;
                font-size: 16px;
            }

            .testimonial-info span {
                color: rgba(255, 255, 255, 0.7);
                font-size: 13px;
            }

            .testimonial-text {
                color: rgba(255, 255, 255, 0.9);
                font-size: 14px;
                line-height: 1.7;
                font-style: italic;
            }

            .testimonial-rating {
                color: #f59e0b;
                font-size: 18px;
                margin-bottom: 16px;
            }

            .testimonials .section-title {
                color: #ffffff;
                font-weight: 700;
            }

            .testimonials .section-desc {
                color: #e2e8f0;
            }

            .testimonials-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
                position: relative;
                z-index: 1;
            }

            .testimonial-card {
                background: rgba(255, 255, 255, 0.12);
                border: 1px solid rgba(255, 255, 255, 0.2);
                border-radius: 16px;
                padding: 32px;
                backdrop-filter: blur(10px);
            }

            .testimonial-header {
                display: flex;
                align-items: center;
                gap: 16px;
                margin-bottom: 20px;
            }

            .testimonial-avatar {
                width: 48px;
                height: 48px;
                border-radius: 50%;
                background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-weight: 700;
                font-size: 18px;
                overflow: hidden;
                flex-shrink: 0;
            }

            .testimonial-info h4 {
                color: white;
                font-weight: 600;
                font-size: 16px;
            }

            .testimonial-info span {
                color: #94a3b8;
                font-size: 13px;
            }

            .testimonial-text {
                color: #cbd5e1;
                font-size: 14px;
                line-height: 1.7;
                font-style: italic;
            }

            .testimonial-rating {
                color: var(--secondary);
                font-size: 18px;
                margin-bottom: 16px;
            }

            .testimonial-avatar {
                width: 48px;
                height: 48px;
                border-radius: 50%;
                background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-weight: 700;
                font-size: 18px;
                overflow: hidden;
                flex-shrink: 0;
            }

            .testimonial-avatar-logo {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 50%;
            }

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

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

            .cta h2 {
                font-size: 44px;
                font-weight: 700;
                color: var(--primary);
                margin-bottom: 16px;
            }

            .cta p {
                font-size: 18px;
                color: var(--text-muted);
                margin-bottom: 32px;
            }

            .cta-buttons {
                display: flex;
                justify-content: center;
                gap: 16px;
            }

            /* Footer */
            footer {
                background: var(--primary);
                padding: 60px 0 30px;
                color: white;
            }

            .footer-content {
                display: grid;
                grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
                gap: 40px;
                margin-bottom: 40px;
            }

            .footer-brand p {
                color: var(--text-light);
                font-size: 14px;
                margin-top: 16px;
                max-width: 300px;
            }

            .footer-col h4 {
                font-weight: 600;
                margin-bottom: 20px;
                font-size: 15px;
            }

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

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

            .footer-col ul a {
                color: var(--text-light);
                text-decoration: none;
                font-size: 14px;
                transition: color 0.2s;
            }

            .footer-col ul a:hover {
                color: var(--accent);
            }

            .footer-bottom {
                padding-top: 30px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                text-align: center;
                color: var(--text-light);
                font-size: 14px;
            }

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

            .animate-in {
                animation: fadeInUp 0.8s ease forwards;
            }

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

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

                .hero-text h1 {
                    font-size: 42px;
                }

                .hero-text p {
                    margin: 0 auto 32px;
                }

                .hero-buttons {
                    justify-content: center;
                }

                .hero-stats {
                    justify-content: center;
                }

                .hero-dashboard {
                    transform: none;
                    max-width: 500px;
                    margin: 0 auto;
                }

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

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

                .benefits-content {
                    grid-template-columns: 1fr;
                }

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

            @media (max-width: 768px) {
                .nav-toggle {
                    display: flex;
                    flex-direction: column;
                    gap: 5px;
                    cursor: pointer;
                    padding: 8px;
                }

                .nav-toggle span {
                    width: 25px;
                    height: 3px;
                    background: var(--primary);
                    border-radius: 2px;
                }

                .nav-links {
                    display: none;
                    position: absolute;
                    top: 100%;
                    left: 0;
                    right: 0;
                    background: white;
                    flex-direction: column;
                    padding: 20px;
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                }

                .nav-links.active {
                    display: flex;
                }

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

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

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

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

                .section-title {
                    font-size: 28px;
                }

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

                .cta-buttons {
                    flex-direction: column;
                }

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

/* Blog + inner marketing pages */
.blog-preview {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(31, 56, 100, 0.08);
    box-shadow: 0 4px 20px rgba(31, 56, 100, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(31, 56, 100, 0.12);
}

.blog-card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

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

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--accent);
}

.blog-card-meta a {
    color: var(--accent);
    text-decoration: none;
}

.blog-card-body h2,
.blog-card-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

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

.blog-card-body h2 a:hover,
.blog-card-body h3 a:hover {
    color: var(--accent);
}

.blog-card-body p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.blog-card-link:hover {
    color: var(--accent);
}

.blog-preview-cta {
    margin-top: 40px;
    text-align: center;
}

.marketing-site {
    background: var(--bg-light);
}

.marketing-nav--inner {
    position: sticky;
    top: 0;
}

.marketing-main {
    min-height: 60vh;
}

.marketing-page-hero {
    padding: 120px 0 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

.marketing-page-hero .section-tag,
.marketing-page-hero .section-title,
.marketing-page-hero .section-desc {
    color: white;
}

.marketing-page-hero .section-desc {
    opacity: 0.9;
    max-width: 640px;
}

.marketing-page-content {
    padding: 48px 0 80px;
}

.blog-search {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    max-width: 640px;
}

.blog-write-link {
    white-space: nowrap;
}

.blog-search input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
}

.blog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px;
    color: var(--text-muted);
}

.blog-pagination {
    margin-top: 32px;
}

.blog-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.blog-category-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(31, 56, 100, 0.12);
    background: #fff;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.blog-category-chip:hover,
.blog-category-chip.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.article-body figure.aibiz-article-media {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(31, 56, 100, 0.12);
}

.article-body figure.aibiz-article-media img {
    width: 100%;
    display: block;
}

.article-body figure.aibiz-article-media figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #64748b;
    background: #f8fafc;
    border-top: 1px solid rgba(31, 56, 100, 0.08);
}

.article-body ul,
.article-body ol {
    margin: 1rem 0 1rem 1.25rem;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.marketing-footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 24px;
}

.marketing-footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.marketing-footer a:hover {
    color: white;
}

.footer-logo {
    height: 100px;
    background: white;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 16px;
}

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

.article-page {
    padding: 120px 0 80px;
}

.article-header {
    max-width: 760px;
    margin: 0 auto 32px;
    padding: 0 24px;
}

.article-header h1 {
    font-size: 42px;
    line-height: 1.15;
    color: var(--primary);
    margin: 16px 0;
}

.article-meta {
    color: var(--text-muted);
    font-size: 15px;
}

.article-cover {
    max-width: 960px;
    margin: 0 auto 32px;
    padding: 0 24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(31, 56, 100, 0.15);
}

.article-cover img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.article-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
    font-size: 18px;
    line-height: 1.8;
    color: #334155;
}

.article-body h2,
.article-body h3 {
    color: var(--primary);
    margin-top: 2em;
}

.article-body a {
    color: var(--accent);
}

.article-tags {
    max-width: 760px;
    margin: 32px auto 0;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.article-tags a {
    background: white;
    border: 1px solid rgba(31, 56, 100, 0.12);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
}

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

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

    .article-header h1 {
        font-size: 30px;
    }

    .blog-search {
        flex-direction: column;
    }
}

.blog-nav-user {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.editorial-auth {
    padding: 120px 0 80px;
    min-height: 70vh;
}

.editorial-auth-card {
    max-width: 440px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(31, 56, 100, 0.12);
    border: 1px solid rgba(31, 56, 100, 0.08);
}

.editorial-auth-header h1 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 8px;
}

.editorial-auth-header p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.editorial-auth-header a {
    color: var(--accent);
    font-weight: 600;
}

.editorial-auth-form {
    display: grid;
    gap: 16px;
}

.editorial-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.editorial-field input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(31, 56, 100, 0.15);
    font-size: 15px;
}

.editorial-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.editorial-auth-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
}

.editorial-auth-actions a {
    font-size: 14px;
    color: var(--primary);
}

.editorial-auth-footnote {
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
}

.editorial-auth-footnote a {
    color: var(--accent);
    font-weight: 600;
}

.editorial-auth-status {
    margin-bottom: 16px;
    font-size: 14px;
    color: #059669;
}
