        /* ====== EXACT SAME STYLES AS HOMEPAGE ====== */
        /* (All styles from index.css are copied here for completeness.
           In production, you can move these to a shared external CSS file.)
        */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--darker);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            display: block;
        }
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 32px;
        }
        :root {
            --primary: #00C853;
            --primary-dark: #009624;
            --primary-light: #5EFC82;
            --secondary: #2962FF;
            --accent: #FF6B35;
            --dark: #1a1f2e;
            --darker: #121625;
            --gray: #8a94a6;
            --light-gray: #2a3042;
            --white: #FFFFFF;
            --shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            --transition: all 0.2s ease;
            --radius: 16px;
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #FF4081 100%);
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-border: rgba(255, 255, 255, 0.12);
        }
        .section-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--primary);
            background: rgba(0, 200, 83, 0.12);
            padding: 4px 14px;
            border-radius: 100px;
            margin-bottom: 12px;
            border: 1px solid rgba(0, 200, 83, 0.15);
        }
        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 8px;
        }
        .title-accent {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            background: transparent;
            color: var(--white);
        }
        .btn-primary {
            background: var(--gradient);
            box-shadow: 0 4px 20px rgba(0, 200, 83, 0.25);
            color: var(--white);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 200, 83, 0.35);
        }
        .btn-ghost {
            background: var(--glass-bg);
            backdrop-filter: blur(4px);
            border: 1px solid var(--glass-border);
            color: var(--white);
        }
        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
        }
        /* ====== NAVIGATION ====== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 0;
            transition: var(--transition);
            background: transparent;
        }
        .site-header.scrolled {
            background: rgba(18, 22, 37, 0.92);
            backdrop-filter: blur(16px);
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: var(--shadow);
        }
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            font-size: 1.3rem;
            letter-spacing: -0.02em;
            text-decoration: none;
            color: var(--white);
            transition: var(--transition);
        }
        .nav-brand:hover {
            opacity: 0.85;
            transform: scale(1.02);
        }
        .nav-brand img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary);
            background: var(--dark);
            box-shadow: 0 0 0 2px rgba(0,200,83,0.2);
            transition: var(--transition);
        }
        .nav-brand img:hover {
            transform: rotate(-6deg) scale(1.05);
            border-color: var(--primary-light);
            box-shadow: 0 0 20px rgba(0,200,83,0.3);
        }
        .brand-name {
            color: var(--white);
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: -0.02em;
            white-space: nowrap;
        }
        .brand-highlight {
            color: var(--primary);
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }
        .nav-link {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--gray);
            transition: var(--transition);
            position: relative;
            letter-spacing: 0.01em;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: var(--transition);
            border-radius: 4px;
        }
        .nav-link:hover {
            color: var(--white);
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .nav-link.active {
            color: var(--white);
        }
        .nav-link.active::after {
            width: 100%;
        }
        .nav-login {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--glass-bg);
            padding: 8px 18px;
            border-radius: 60px;
            border: 1px solid var(--glass-border);
            font-weight: 600;
            color: var(--white);
        }
        .nav-login:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 28px;
            height: 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }
        .hamburger .bar {
            width: 100%;
            height: 2.5px;
            background: var(--white);
            border-radius: 4px;
            transition: var(--transition);
            transform-origin: center;
        }
        .hamburger.active .bar:nth-child(1) {
            transform: translateY(8.75px) rotate(45deg);
        }
        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .hamburger.active .bar:nth-child(3) {
            transform: translateY(-8.75px) rotate(-45deg);
        }
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            .nav-links { display: none !important; }
        }
        /* ====== PRELOADER ====== */
        #preloader {
            position: fixed;
            inset: 0;
            z-index: 99999;
            background: var(--darker);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.8s ease, visibility 0.8s ease;
            opacity: 1;
            visibility: visible;
        }
        #preloader.hide {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        .preloader-content {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 120px;
            height: 120px;
        }
        .preloader-ring {
            position: absolute;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 4px solid transparent;
            border-top-color: var(--primary);
            border-right-color: var(--secondary);
            animation: spin 1s linear infinite;
        }
        .preloader-ring::before {
            content: '';
            position: absolute;
            inset: 8px;
            border-radius: 50%;
            border: 4px solid transparent;
            border-bottom-color: var(--accent);
            border-left-color: var(--primary-light);
            animation: spin 0.6s linear infinite reverse;
        }
        .preloader-logo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 30px rgba(0, 200, 83, 0.15);
            animation: pulse-logo 1.2s ease-in-out infinite alternate;
            z-index: 2;
        }
        .preloader-logo img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        @keyframes pulse-logo {
            0% { transform: scale(0.95); opacity: 0.7; }
            100% { transform: scale(1.05); opacity: 1; }
        }
        /* ====== MOBILE MENU ====== */
        .menu-overlay {
            position: fixed;
            inset: 0;
            z-index: 999;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            pointer-events: none;
        }
        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            width: 85%;
            max-width: 380px;
            z-index: 1000;
            background: rgba(18, 22, 37, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 0 24px 24px 0;
            box-shadow: 4px 0 30px rgba(0, 0, 0, 0.4);
            transform: translateX(-100%);
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }
        .mobile-menu.active {
            transform: translateX(0);
        }
        .mobile-menu-inner {
            display: flex;
            flex-direction: column;
            height: 100%;
            padding: 32px 24px 40px;
        }
        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .mobile-menu-brand {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--white);
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .mobile-menu-close {
            background: transparent;
            border: none;
            color: var(--gray);
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px;
            transition: var(--transition);
            line-height: 1;
        }
        .mobile-menu-close:hover {
            color: var(--white);
            transform: rotate(90deg);
        }
        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 6px;
            flex: 1;
        }
        .mobile-nav-links li a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--gray);
            transition: var(--transition);
            text-decoration: none;
        }
        .mobile-nav-links li a:hover,
        .mobile-nav-links li a:focus {
            background: rgba(255, 255, 255, 0.06);
            color: var(--white);
        }
        .mobile-nav-links li a.active {
            color: var(--white);
            background: rgba(0, 200, 83, 0.08);
        }
        .mobile-nav-links li a.mobile-login {
            margin-top: 16px;
            background: var(--gradient);
            color: var(--white);
            justify-content: center;
            padding: 14px;
            border-radius: 60px;
            font-weight: 600;
        }
        .mobile-nav-links li a.mobile-login:hover {
            opacity: 0.85;
            transform: scale(1.02);
        }
        @media (min-width: 769px) {
            .hamburger { display: none !important; }
            .mobile-menu,
            .menu-overlay { display: none !important; }
        }
        /* ====== PAGE CONTENT ====== */
        .page-content {
            padding: 160px 0 80px;
            background: var(--dark);
            min-height: 70vh;
        }
        .page-content .container {
            max-width: 820px;
        }
        .page-content h1 {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 8px;
        }
        .page-content h2 {
            font-size: 1.6rem;
            font-weight: 600;
            margin-top: 40px;
            margin-bottom: 12px;
            color: var(--white);
        }
        .page-content h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 28px;
            margin-bottom: 8px;
            color: var(--white);
        }
        .page-content p {
            color: var(--gray);
            line-height: 1.9;
            margin-bottom: 16px;
        }
        .page-content ul {
            list-style: disc;
            padding-left: 24px;
            margin-bottom: 20px;
        }
        .page-content ul li {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 6px;
        }
        .page-content .highlight-box {
            background: rgba(0, 200, 83, 0.06);
            border-left: 4px solid var(--primary);
            padding: 20px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 30px 0;
        }
        .page-content .highlight-box strong {
            color: var(--white);
        }
        .page-content .highlight-box.warning {
            border-left-color: var(--accent);
            background: rgba(255, 107, 53, 0.06);
        }
        .page-content a {
            color: var(--primary);
            transition: var(--transition);
        }
        .page-content a:hover {
            color: var(--primary-light);
        }
        /* ====== FOOTER (same as homepage) ====== */
        .site-footer {
            background: var(--dark);
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding: 60px 0 32px;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .footer-brand-link {
            font-size: 1.2rem;
        }
        .footer-description {
            color: var(--gray);
            font-size: 0.95rem;
            margin-top: 8px;
            max-width: 280px;
        }
        .footer-links h4,
        .footer-social h4 {
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--gray);
            margin-bottom: 16px;
        }
        .footer-links ul {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-links a {
            color: var(--gray);
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--white);
        }
        .footer-social-icons {
            display: flex;
            gap: 12px;
        }
        .footer-social-icons a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            transition: var(--transition);
            font-size: 1rem;
        }
        .footer-social-icons a:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-4px);
        }
        .footer-bottom {
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: var(--gray);
        }
        .footer-legal {
            display: flex;
            gap: 16px;
        }
        .footer-legal a {
            transition: var(--transition);
        }
        .footer-legal a:hover {
            color: var(--white);
        }
        @media (max-width: 1200px) {
            .container { padding: 0 28px; }
        }
        @media (max-width: 992px) {
            .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
        }
        @media (max-width: 768px) {
            .page-content { padding: 140px 0 60px; }
            .footer-top { grid-template-columns: 1fr; gap: 28px; }
            .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
        }
        @media (max-width: 576px) {
            .container { padding: 0 20px; }
        }