        /* CSS Variables */
        :root {
            --primary-50: #f0fdf4;
            --primary-100: #dcfce7;
            --primary-500: #22c55e;
            --primary-600: #16a34a;
            --primary-700: #15803d;
            --secondary: #1e293b;
            --secondary-light: #334155;
            --text-main: #1f2937;
            --text-muted: #6b7280;
            --bg-body: #f9fafb;
            --bg-white: #ffffff;
            --border-color: #e5e7eb;
            --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);
            --font-sans: 'Inter', sans-serif;
            --font-heading: 'Poppins', sans-serif;
            --container-width: 1200px;
            --transition: all 0.3s ease;
        }

        /* Reset & Base Styles */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--bg-body);
            color: var(--text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            color: var(--secondary);
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        .text-center { text-align: center; }
        .hidden { display: none !important; }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            font-family: var(--font-sans);
        }

        .btn-primary {
            background-color: var(--primary-600);
            color: white;
            box-shadow: 0 4px 14px 0 rgba(22, 163, 74, 0.39);
        }

        .btn-primary:hover {
            background-color: var(--primary-700);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(22, 163, 74, 0.23);
        }

        .btn-secondary {
            background-color: var(--secondary);
            color: white;
            border: 1px solid var(--secondary-light);
        }

        .btn-secondary:hover {
            background-color: var(--secondary-light);
        }
        
        .btn-block {
            width: 100%;
            display: flex;
        }

        /* Sections */
        .section {
            padding: 80px 0;
            position: relative;
        }

        .section-light { background-color: var(--bg-white); }
        .section-gray { background-color: var(--bg-body); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px auto;
        }

        .subtitle {
            color: var(--primary-600);
            text-transform: uppercase;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 8px;
            display: block;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 16px;
        }

        /* Header & Navigation */
        .header {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo-link {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--secondary);
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background-color: var(--primary-600);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: transform 0.3s;
        }

        .logo-link:hover .logo-icon { transform: rotate(12deg); }
        .text-primary { color: var(--primary-600); }

        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-link {
            color: var(--text-muted);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-link:hover { color: var(--primary-600); }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            padding: 8px;
        }

        .mobile-menu {
            display: none;
            background-color: white;
            border-top: 1px solid var(--border-color);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: var(--shadow-md);
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.3s ease-in-out;
        }

        .mobile-menu.active {
            max-height: 400px;
        }

        .mobile-nav-link {
            display: block;
            padding: 16px 20px;
            color: var(--text-main);
            font-weight: 500;
            border-bottom: 1px solid var(--border-color);
        }
        .mobile-nav-link:last-child { border-bottom: none; }
        .mobile-nav-link:hover { color: var(--primary-600); background-color: var(--bg-body); }

        /* Hero Section */
        .hero {
            background-color: #0f172a;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            color: white;
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.1;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border-radius: 50px;
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
            margin-bottom: 24px;
            font-size: 0.875rem;
            color: #cbd5e1;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background-color: var(--primary-500);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
            70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
            100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
        }

        .hero-title {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .gradient-text {
            background: linear-gradient(to right, #4ade80, #86efac);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-desc {
            font-size: 1.125rem;
            color: #94a3b8;
            margin-bottom: 32px;
            max-width: 600px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
        }

        .hero-image-wrapper {
            position: relative;
        }

        .hero-image {
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .floating-card {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: white;
            padding: 16px;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 16px;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        .floating-icon {
            width: 48px;
            height: 48px;
            background-color: var(--primary-100);
            color: var(--primary-600);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .floating-text-sm { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
        .floating-text-lg { font-size: 1.125rem; font-weight: 700; color: var(--secondary); }

        /* How It Works */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            position: relative;
        }

        .step-card {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .step-icon-wrapper {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
            margin-bottom: 24px;
            position: relative;
            color: var(--primary-600);
            transition: transform 0.3s;
        }

        .step-card:hover .step-icon-wrapper {
            transform: translateY(-5px);
        }

        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            background: var(--primary-600);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.875rem;
            box-shadow: var(--shadow-sm);
        }

        .step-title { margin-bottom: 12px; font-size: 1.25rem; }
        .step-desc { font-size: 0.875rem; color: var(--text-muted); }

        /* Brokers Section */
        .brokers-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .broker-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-md);
            display: flex;
            flex-direction: column;
            transition: var(--transition);
        }

        .broker-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .broker-content {
            padding: 32px;
            flex-grow: 1;
        }

        .broker-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 24px;
        }

        .exness-logo {
            background: #facc15;
            color: var(--secondary);
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 1.75rem;
            padding: 8px 16px;
            border-radius: 12px;
            font-style: italic;
            letter-spacing: -1px;
        }

        .tickmill-logo {
            color: #dc2626;
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 1.75rem;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .tickmill-icon {
            width: 20px;
            height: 20px;
            background-color: #dc2626;
            border-radius: 2px;
        }

        .badge-popular {
            background: var(--primary-100);
            color: var(--primary-700);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 50px;
            text-transform: uppercase;
        }

        .broker-title { font-size: 1.5rem; margin-bottom: 8px; }
        .broker-desc { color: var(--text-muted); margin-bottom: 24px; }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .bg-green-light { background: var(--primary-50); color: var(--primary-600); }
        .bg-blue-light { background: #eff6ff; color: #2563eb; }
        .bg-purple-light { background: #faf5ff; color: #9333ea; }

        .feature-label { font-size: 0.875rem; color: var(--text-muted); font-weight: 500; }
        .feature-value { font-weight: 700; color: var(--secondary); font-size: 1.125rem; }

        .broker-footer {
            padding: 24px 32px;
            background: var(--bg-body);
            border-top: 1px solid var(--border-color);
        }

        .link-note { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 12px; }

        /* Form Section */
        .form-container {
            background: white;
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-color);
            display: grid;
            grid-template-columns: 2fr 3fr;
            overflow: hidden;
            max-width: 1000px;
            margin: 0 auto;
        }

        .form-info {
            background: var(--secondary);
            color: white;
            padding: 40px;
            position: relative;
        }

        .form-info-title { color: white; margin-bottom: 16px; font-size: 1.5rem; }
        .form-info-desc { color: #cbd5e1; margin-bottom: 32px; font-size: 0.875rem; }

        .form-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .form-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.875rem;
            color: #e2e8f0;
        }
        .form-feature svg { color: var(--primary-500); flex-shrink: 0; }

        .form-wrapper { padding: 40px; }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }

        .form-group { margin-bottom: 24px; }

        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 8px;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #d1d5db;
            border-radius: 12px;
            font-family: var(--font-sans);
            font-size: 1rem;
            transition: var(--transition);
            background-color: white;
            outline: none;
        }

        .form-control:focus {
            border-color: var(--primary-500);
            box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
        }

        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 16px;
        }

        .form-hint { font-size: 0.75rem; color: var(--text-muted); margin-top: 6px; }

        .success-msg {
            margin-top: 16px;
            padding: 16px;
            background-color: var(--primary-50);
            border: 1px solid var(--primary-100);
            border-radius: 12px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: var(--primary-700);
            font-size: 0.875rem;
        }
        
        .success-msg strong { display: block; margin-bottom: 4px; }

        /* Content & FAQ Section */
        .content-article {
            max-width: 800px;
            margin: 0 auto;
        }

        .article-title { text-align: center; margin-bottom: 24px; font-size: 2rem; }
        .article-desc { text-align: center; color: var(--text-muted); margin-bottom: 48px; font-size: 1.125rem; }

        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin-bottom: 64px;
        }

        .benefit-card {
            background: white;
            padding: 24px;
            border-radius: 16px;
            border: 1px solid var(--border-color);
        }

        .benefit-title {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.25rem;
            margin-bottom: 12px;
        }

        .benefit-title svg { color: var(--primary-600); }
        .benefit-text { color: var(--text-muted); font-size: 0.875rem; }

        .faq-title { text-align: center; margin-bottom: 32px; font-size: 1.75rem; }
        
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
        }

        .faq-question {
            font-size: 1.125rem;
            color: var(--secondary);
            margin-bottom: 12px;
        }

        .faq-answer {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            background-color: var(--secondary);
            color: #cbd5e1;
            padding: 64px 0 32px 0;
            margin-top: auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.5fr;
            gap: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 48px;
            margin-bottom: 32px;
        }

        .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.25rem;
            color: white;
            margin-bottom: 16px;
        }
        
        .footer-logo-icon {
            width: 32px;
            height: 32px;
            background-color: var(--primary-600);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .footer-desc { font-size: 0.875rem; margin-bottom: 24px; max-width: 300px; }
        
        .social-links { display: flex; gap: 16px; }
        .social-link { color: #cbd5e1; transition: color 0.3s; }
        .social-link:hover { color: var(--primary-500); }

        .footer-title { color: white; font-size: 1.125rem; margin-bottom: 20px; }
        
        .footer-links { display: flex; flex-direction: column; gap: 12px; }
        .footer-link { font-size: 0.875rem; transition: color 0.3s; }
        .footer-link:hover { color: var(--primary-400); }

        .footer-legal-text { font-size: 0.75rem; line-height: 1.6; text-align: justify; color: #94a3b8; }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.75rem;
            color: #94a3b8;
        }

        .footer-bottom-links { display: flex; gap: 16px; }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-grid { grid-template-columns: 1fr; text-align: center; }
            .hero-badge { margin: 0 auto 24px auto; }
            .hero-desc { margin: 0 auto 32px auto; }
            .hero-actions { justify-content: center; }
            .floating-card { bottom: 20px; left: 20px; }
            
            .steps-grid { grid-template-columns: repeat(2, 1fr); }
            
            .form-container { grid-template-columns: 1fr; }
            .form-info { padding: 32px; }
        }

        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            
            .hero-title { font-size: 2.5rem; }
            .hero-actions { flex-direction: column; }
            
            .brokers-grid { grid-template-columns: 1fr; }
            
            .benefits-grid { grid-template-columns: 1fr; }
            
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
        }

        @media (max-width: 576px) {
            .steps-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; gap: 0; }
            .section { padding: 50px 0; }
            .section-title { font-size: 2rem; }
            .hero { padding: 60px 0; }
        }