:root {
            --primary: #317bc6;
            --primary-dark: #1c4d88;
            --secondary: #3d5af1;
            --accent: #f7c948;
            --dark: #0a0e2a;
            --dark-card: #111533;
            --text-light: #8892b0;
            --text-white: #ffffff;
            --gradient-hero: linear-gradient(135deg, #0a0e2a 0%, #0d1540 50%, #0a1628 100%);
            --gradient-green: linear-gradient(135deg, #317bc6, #1c4d88);
            --gradient-blue: linear-gradient(135deg, #3d5af1, #2541d4);
            --card-bg: rgba(255,255,255,0.05);
            --border-color: rgba(255,255,255,0.1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', sans-serif;
            background: #fff;
            color: #1a1a2e;
            overflow-x: hidden;
        }
        @media (min-width: 1400px) {
        .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
            max-width: 1240px;
        }
    }

        /* ===== NAVBAR ===== */
        .navbar {
            background: var(--dark);
            padding: 5px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(10, 14, 42, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0,0,0,0.3);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .brand-icon {
            width: 310px;
            display: flex;
            align-items: center;
            justify-content: center;
        }   
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.75) !important;
            font-size: 13.5px;
            font-weight: 500;
            padding: 20px 14px !important;
            transition: color 0.2s;
        }

        .navbar-nav .nav-link:hover { color: white !important; }

        .btn-login {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.25);
            color: white;
            padding: 7px 20px;
            border-radius: 8px;
            font-size: 13.5px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-login:hover {
            background: rgba(255,255,255,0.1);
            color: white;
            border-color: rgba(255,255,255,0.4);
        }

        .btn-started {
            background: var(--gradient-green);
            border: none;
            color: white;
            padding: 8px 20px;
            border-radius: 8px;
            font-size: 13.5px;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0, 198, 162, 0.3);
        }

        .btn-started:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 198, 162, 0.4);
            color: white;
        }

        /* ===== HERO SECTION ===== */
        .hero-section {
            background: linear-gradient(135deg, rgb(2, 11, 48) 0%, rgb(13, 30, 114) 38%, rgb(10, 32, 96) 65%, rgb(1, 12, 36) 100%);
            /* min-height: 100vh; */
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: 
                radial-gradient(ellipse at 20% 50%, rgba(61, 90, 241, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(0, 198, 162, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-grid-bg {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image:url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
            background-size: 50px 50px;
            pointer-events: none;
            opacity: .04;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 198, 162, 0.1);
            border: 1px solid rgba(0, 198, 162, 0.25);
            color: var(--primary);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 24px;
            letter-spacing: 0.3px;
        }

        .hero-badge .dot {
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.3); }
        }

        .hero-title {
            font-size: clamp(38px, 5vw, 58px);
            font-weight: 800;
            color: white;
            line-height: 1.15;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }

        .hero-title .highlight {
            background: var(--gradient-green);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            color: rgba(255,255,255,0.6);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 36px;
            max-width: 440px;
        }

        .hero-cta-group {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }

        .btn-hero-primary {
            background: var(--gradient-green);
            border: none;
            color: white;
            padding: 13px 28px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            box-shadow: 0 6px 20px rgba(0, 198, 162, 0.35);
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 198, 162, 0.45);
            color: white;
        }

        .btn-hero-secondary {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            color: white;
            padding: 13px 28px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .btn-hero-secondary:hover {
            background: rgba(255,255,255,0.14);
            color: white;
            transform: translateY(-2px);
        }

        .hero-trust-badges {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.55);
            font-size: 12px;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(8px);
            padding: 10px 14px;
            border-radius: 12px;
        }

        .trust-badge i { color: var(--primary); font-size: 14px; }

        /* Currency Converter Card */
        .converter-card {
            background: #1a1f4a;
            border-radius: 20px;
            padding: 24px;
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 30px 80px rgba(0,0,0,0.4);
            position: relative;
            animation: floatCard 4s ease-in-out infinite;
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .converter-header {
            display: flex;
            justify-content: left;
            align-items: center;
            margin-bottom: 20px;
            gap: 12px;
        }

        .converter-title {
            color: white;
            font-size: 14px;
            font-weight: 600;
        }

        .converter-status {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(0, 198, 162, 0.12);
            border: 1px solid rgba(0, 198, 162, 0.2);
            border-radius: 20px;
            padding: 4px 10px;
            font-size: 11px;
            color: var(--primary);
            font-weight: 500;
        }

        .converter-status .dot {
            width: 5px;
            height: 5px;
            background: var(--primary);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .converter-input-group {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            padding: 14px 16px;
            margin-bottom: 12px;
        }

        .converter-input-label {
            font-size: 11px;
            color: rgba(255,255,255,0.4);
            margin-bottom: 6px;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        .converter-input-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .converter-amount {
            font-size: 26px;
            font-weight: 700;
            color: white;
        }

        .currency-selector {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.08);
            border-radius: 8px;
            padding: 6px 12px;
            cursor: pointer;
            width: 100%;
        }
        .form-select,.form-control { 
            font-size: 14px !important;
        }

        .currency-flag {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .currency-code {
            color: white;
            font-size: 13px;
            font-weight: 600;
        }

        .converter-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 10px 0;
            position: relative;
        }

        .swap-btn {
            width: 36px;
            height: 36px;
            background: var(--gradient-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0, 198, 162, 0.4);
        }

        .swap-btn:hover { transform: rotate(180deg); }

        .converter-result {
            font-size: 28px;
            font-weight: 800;
            color: white;
        }

        .fee-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-top: 1px solid rgba(255,255,255,0.06);
            margin-top: 12px;
        }

        .fee-label {
            font-size: 12px;
            color: rgba(255,255,255,0.45);
        }

        .fee-value {
            font-size: 12px;
            color: rgba(255,255,255,0.75);
            font-weight: 500;
        }

        .fee-value.green { color: var(--primary); }

        .btn-convert {
            background: var(--gradient-green);
            border: none;
            color: white;
            width: 100%;
            padding: 13px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            margin-top: 16px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 6px 20px rgba(0, 198, 162, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-convert:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 198, 162, 0.4);
        }

        .amount-badge {
            position: absolute;
            top: -14px;
            right: 20px;
            background: var(--accent);
            color: #000;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
        }

        /* ===== EXCHANGE RATES SECTION ===== */
        .rates-section {
            padding: 70px 0;
            background: #fff;
        }

        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 198, 162, 0.08);
            border: 1px solid rgba(0, 198, 162, 0.2);
            color: var(--primary);
            padding: 5px 14px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: 0.3px;
        }

        .section-title {
            font-size: clamp(26px, 3.5vw, 38px);
            font-weight: 800;
            color: #0a0e2a;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .section-subtitle {
            color: #6b7280;
            font-size: 15px;
            line-height: 1.7;
        }

        .rate-card {
            background: #fff;
            border: 1px solid #e8ecf0;
            border-radius: 14px;
            padding: 18px 20px;
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .rate-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 3px;
            background: var(--gradient-green);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .rate-card:hover {
            border-color: var(--primary);
            box-shadow: 0 8px 30px rgba(0, 198, 162, 0.12);
            transform: translateY(-3px);
        }

        .rate-card:hover::before { transform: scaleX(1); }

        .rate-pair {
            font-size: 13px;
            font-weight: 700;
            color: #0a0e2a;
            margin-bottom: 4px;
        }

        .rate-value {
            font-size: 22px;
            font-weight: 800;
            color: #0a0e2a;
            margin-bottom: 4px;
        }

        .rate-change {
            font-size: 12px;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 20px;
        }

        .rate-change.up {
            color: #10b981;
            background: rgba(16, 185, 129, 0.1);
        }

        .rate-change.down {
            color: #ef4444;
            background: rgba(239, 68, 68, 0.1);
        }

        .rate-sparkline {
            height: 40px;
            margin-top: 10px;
        }

        .refresh-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
        }

        .refresh-btn:hover {
            color: var(--primary-dark);
        }

        .btn-view-rates {
            background: transparent;
            border: 1.5px solid var(--primary);
            color: var(--primary);
            padding: 11px 28px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .btn-view-rates:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 198, 162, 0.3);
        }

        /* ===== SERVICES SECTION ===== */
        .services-section {
            padding: 80px 0;
            background: #f8f9ff;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            padding: 28px 24px;
            border: 1px solid #e8ecf0;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .service-card::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 3px;
            background: var(--gradient-green);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            border-color: transparent;
        }

        .service-card:hover::after { transform: scaleX(1); }

        .service-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 16px;
        }

        .icon-blue { background: rgba(61, 90, 241, 0.1); color: #3d5af1; }
        .icon-green { background: rgba(0, 198, 162, 0.1); color: #00c6a2; }
        .icon-orange { background: rgba(247, 201, 72, 0.15); color: #f7a000; }
        .icon-purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
        .icon-teal { background: rgba(20, 184, 166, 0.1); color: #14b8a6; }
        .icon-red { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

        .service-title {
            font-size: 16px;
            font-weight: 700;
            color: #0a0e2a;
            margin-bottom: 10px;
        }

        .service-desc {
            font-size: 13.5px;
            color: #6b7280;
            line-height: 1.65;
        }

        /* ===== TRUST SECTION ===== */
        .trust-section {
            padding: 90px 0;
            background: var(--dark);
            position: relative;
            overflow: hidden;


            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: 50px 50px;
            pointer-events: none;

            
        }

        .trust-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: 
                radial-gradient(ellipse at 10% 50%, rgba(61, 90, 241, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 90% 20%, rgba(0, 198, 162, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .trust-eyebrow { color: var(--primary); }

        .trust-title {
            color: white;
            font-size: clamp(28px, 3.5vw, 42px);
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .trust-title .designed {
            color: var(--accent);
        }

        .trust-subtitle {
            color: rgba(255,255,255,0.5);
            font-size: 15px;
        }

        .trust-feature-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: 24px;
            height: 100%;
            transition: all 0.4s;
        }

        .trust-feature-card:hover {
            background: rgba(255,255,255,0.07);
            border-color: rgba(0, 198, 162, 0.3);
            transform: translateY(-4px);
        }

        .trust-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 14px;
        }

        .trust-feature-title {
            font-size: 15px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .trust-feature-desc {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            line-height: 1.65;
        }

        .stats-row {
            margin-top: 50px;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.08);
        }

        .stat-item { text-align: center; }

        .stat-number {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            color: white;
            line-height: 1.1;
        }

        .stat-number span { color: var(--primary); }

        .stat-label {
            font-size: 13px;
            color: rgba(255,255,255,0.45);
            margin-top: 6px;
            font-weight: 500;
        }

        /* ===== HOW IT WORKS ===== */
        .hiw-section {
            padding: 90px 0;
            background: #fff;
        }

        .step-card {
            text-align: center;
            position: relative;
        }

        .step-connector {
            position: absolute;
            top: 30px;
            left: calc(50% + 40px);
            right: calc(-50% + 40px);
            height: 2px;
            background: linear-gradient(90deg, var(--primary), rgba(0, 198, 162, 0.2));
        }

        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            margin: 0 auto 20px;
            position: relative;
            z-index: 1;
        }

        .step-1 .step-number { background: rgba(61, 90, 241, 0.12); color: #3d5af1; border: 2px solid rgba(61, 90, 241, 0.25); }
        .step-2 .step-number { background: rgba(0, 198, 162, 0.12); color: var(--primary); border: 2px solid rgba(0, 198, 162, 0.25); }
        .step-3 .step-number { background: rgba(247, 201, 72, 0.12); color: #f7a000; border: 2px solid rgba(247, 201, 72, 0.25); }
        .step-4 .step-number { background: rgba(139, 92, 246, 0.12); color: #8b5cf6; border: 2px solid rgba(139, 92, 246, 0.25); }

        .step-icon-inner {
            font-size: 22px;
        }

        .step-title {
            font-size: 16px;
            font-weight: 700;
            color: #0a0e2a;
            margin-bottom: 10px;
        }

        .step-desc {
            font-size: 13.5px;
            color: #6b7280;
            line-height: 1.65;
        }

        .btn-start {
            background: var(--gradient-green);
            border: none;
            color: white;
            padding: 14px 36px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            box-shadow: 0 6px 20px rgba(0, 198, 162, 0.35);
        }

        .btn-start:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 198, 162, 0.45);
            color: white;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials-section {
            padding: 90px 0;
            background: #f8f9ff;
        }

        .testimonial-card {
            background: white;
            border-radius: 16px;
            padding: 28px;
            border: 1px solid #e8ecf0;
            height: 100%;
            transition: all 0.4s;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
        }

        .stars { color: #f7c948; font-size: 14px; margin-bottom: 14px; }

        .testimonial-text {
            font-size: 14px;
            color: #374151;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .reviewer-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            color: white;
        }

        .reviewer-name {
            font-size: 14px;
            font-weight: 700;
            color: #0a0e2a;
        }

        .reviewer-location {
            font-size: 12px;
            color: #9ca3af;
        }

        /* ===== APP SECTION ===== */
        .app-section {
            padding: 90px 0;
            background: linear-gradient(135deg, rgb(15, 36, 96) 0%, rgb(26, 58, 143) 50%, rgb(11, 77, 61) 100%);
            position: relative;
            overflow: hidden;
        }

        .app-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(0, 198, 162, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .app-title {
            font-size: clamp(30px, 4vw, 48px);
            font-weight: 800;
            color: white;
            letter-spacing: -0.5px;
            line-height: 1.15;
        }

        .app-title .on-terms { color: var(--primary); }

        .app-subtitle {
            color: rgba(255,255,255,0.55);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .app-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
        }

        .app-feature-icon {
            width: 22px;
            height: 22px;
            background: rgba(0, 198, 162, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .app-feature-icon i {
            font-size: 10px;
            color: var(--primary);
        }

        .app-feature-text {
            font-size: 14px;
            color: rgba(255,255,255,0.65);
            line-height: 1.5;
        }

        .store-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 12px;
            padding: 12px 20px;
            text-decoration: none;
            transition: all 0.3s;
            min-width: 150px;
        }

        .store-btn:hover {
            background: rgba(255,255,255,0.14);
            transform: translateY(-2px);
            border-color: rgba(255,255,255,0.25);
        }

        .store-btn-icon { font-size: 24px; color: white; }

        .store-btn-text { color: white; }
        .store-btn-sub { font-size: 10px; color: rgba(255,255,255,0.55); }
        .store-btn-name { font-size: 15px; font-weight: 700; line-height: 1; }

        .app-rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 24px;
        }

        .app-rating-stars { color: #f7c948; font-size: 14px; }
        .app-rating-text { font-size: 13px; color: rgba(255,255,255,0.5); }
        .app-rating-text strong { color: white; }

        /* Phone Mockup */
        .phone-mockup-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .phone-glow {
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 198, 162, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .phone-mockup {
            background: #1a1f4a;
            border-radius: 36px;
            padding: 12px;
            border: 2px solid rgba(255,255,255,0.12);
            width: 240px;
            position: relative;
            z-index: 1;
            box-shadow: 0 40px 80px rgba(0,0,0,0.5);
            animation: floatCard 4s ease-in-out infinite;
        }

        .phone-screen {
            background: #0d1228;
            border-radius: 28px;
            overflow: hidden;
        }

        .phone-header {
            background: linear-gradient(135deg, #0a0e2a, #1a1f4a);
            padding: 20px 16px 16px;
        }

        .phone-balance-label {
            font-size: 10px;
            color: rgba(255,255,255,0.5);
            margin-bottom: 4px;
        }

        .phone-balance {
            font-size: 24px;
            font-weight: 800;
            color: white;
        }

        .phone-balance .currency { font-size: 14px; font-weight: 600; color: var(--primary); }

        .phone-body { padding: 14px; }

        .phone-txn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .phone-txn-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            margin-right: 10px;
        }

        .phone-txn-name { font-size: 11px; font-weight: 600; color: white; }
        .phone-txn-date { font-size: 9px; color: rgba(255,255,255,0.4); }
        .phone-txn-amount { font-size: 12px; font-weight: 700; }
        .phone-txn-amount.credit { color: var(--primary); }
        .phone-txn-amount.debit { color: #ef4444; }

        /* ===== FAQ SECTION ===== */
        .faq-section {
            padding: 90px 0;
            background: #fff;
        }

        .accordion-item {
            border: 1px solid #e8ecf0;
            border-radius: 12px !important;
            margin-bottom: 10px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .accordion-item:hover { border-color: var(--primary); }

        .accordion-button {
            font-size: 15px;
            font-weight: 600;
            color: #0a0e2a;
            background: white;
            padding: 18px 22px;
            box-shadow: none !important;
        }

        .accordion-button:not(.collapsed) {
            background: rgba(0, 198, 162, 0.04);
            color: var(--primary);
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300c6a2'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .accordion-body {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.7;
            padding: 0 22px 18px;
            background: rgba(0, 198, 162, 0.02);
        }

        .faq-support {
            background: linear-gradient(135deg, #f0fdf9, #e6f7f4);
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            border: 1px solid rgba(0, 198, 162, 0.15);
        }

        .faq-support-title { font-size: 18px; font-weight: 700; color: #0a0e2a; margin-bottom: 8px; }
        .faq-support-text { font-size: 14px; color: #6b7280; margin-bottom: 20px; }

        .btn-chat {
            background: var(--gradient-green);
            border: none;
            color: white;
            padding: 12px 28px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .btn-chat:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 198, 162, 0.35);
        }

        /* ===== NEWSLETTER ===== */
        .newsletter-section {
            padding: 40px 0;
            background: #f8f9ff;
            border-top: 1px solid #e8ecf0;
        }

        .newsletter-title {
            font-size: 18px;
            font-weight: 700;
            color: #0a0e2a;
        }

        .newsletter-sub {
            font-size: 14px;
            color: #6b7280;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid #e8ecf0;
            border-radius: 10px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.3s;
        }

        .newsletter-input:focus { border-color: var(--primary); }

        .btn-subscribe {
            background: var(--gradient-green);
            border: none;
            color: white;
            padding: 12px 24px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-subscribe:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 198, 162, 0.35);
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--dark);
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-brand-text {
            font-size: 14px;
            color: rgba(255,255,255,0.45);
            line-height: 1.7;
            margin: 16px 0 20px;
        }

        .social-links { display: flex; gap: 10px; }

        .social-link {
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.5);
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        .footer-heading {
            font-size: 14px;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
        }

        .footer-links { list-style: none; padding: 0; }

        .footer-links li { margin-bottom: 10px; }

        .footer-links a {
            color: rgba(255,255,255,0.45);
            font-size: 13.5px;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover { color: var(--primary); }

        .footer-divider {
            border-color: rgba(255,255,255,0.07);
            margin: 40px 0 24px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-copyright {
            font-size: 13px;
            color: rgba(255,255,255,0.35);
        }

        .footer-legal {
            display: flex;
            gap: 20px;
        }

        .footer-legal a {
            font-size: 13px;
            color: rgba(255,255,255,0.35);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-legal a:hover { color: var(--primary); }

        /* ===== ANIMATIONS ===== */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-right {
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }
        .delay-5 { transition-delay: 0.5s; }

        /* Sparkline SVG */
        .sparkline { fill: none; stroke-width: 2; }
        .sparkline-up { stroke: #10b981; }
        .sparkline-down { stroke: #ef4444; }
        .sparkline-fill-up { fill: rgba(16, 185, 129, 0.1); }
        .sparkline-fill-down { fill: rgba(239, 68, 68, 0.1); }

        /* Counter animation */
        .counter { display: inline-block; }

        /* Step number badge */
        .step-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            width: 22px;
            height: 22px;
            background: var(--primary);
            border-radius: 50%;
            font-size: 10px;
            font-weight: 700;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Carousel dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 30px;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            background: #d1d5db;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
        }

        .carousel-dot.active {
            background: var(--primary);
            width: 24px;
            border-radius: 4px;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-section { padding: 100px 0 60px; }
            .converter-card { margin-top: 40px; }
            .step-connector { display: none; }
            .stats-row .col { margin-bottom: 20px; }
        }

        @media (max-width: 767px) {
            .hero-cta-group { gap: 10px; }
            .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
            .hero-trust-badges { justify-content: center; }
            .newsletter-form { flex-direction: column; }
            .footer-bottom { text-align: center; justify-content: center; }
            .footer-legal { justify-content: center; flex-wrap: wrap; }
            .navbar-collapse { background: var(--dark); padding: 16px; border-radius: 12px; margin-top: 10px; }
        }

        @media (max-width: 575px) {
            .hero-title { font-size: 32px; }
            .section-title { font-size: 24px; }
            .stat-number { font-size: 28px; }
        }

        /* Live rates ticker */
        .rates-ticker {
            background: rgba(0, 198, 162, 0.05);
            border: 1px solid rgba(0, 198, 162, 0.15);
            border-radius: 8px;
            padding: 8px 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 24px;
            width: fit-content;
        }

        /* Navbar mobile */
        .navbar-toggler {
            border: 1px solid rgba(255,255,255,0.2);
            padding: 6px 10px;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Gradient text */
        .gradient-text {
            background: var(--gradient-green);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }


        .product-rate-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(217, 214, 214, 1);
    transition: background 0.2s ease, transform 0.2s ease;
}

.product-rate-item:hover {
    background: rgba(0, 198, 162, 0.06);
    transform: translateX(2px);
}

.product-rate-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-icon-badge {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 198, 162, 0.1);
    color: var(--primary);
    font-size: 12px;
    flex-shrink: 0;
}

.product-name {
    color: var(--primary);
}
.product-rate-right {
    text-align: right;
}

.product-rate-right .rate-value {
    font-size: 14px;
    font-weight: 700;
    color:var(--primary);
    margin-bottom: 2px;
}

.product-rate-right .rate-change {
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.rate-change.up {
    color: #00c6a2;
}

.rate-change.down {
    color: #ef4444;
}

.rates-forexmaster-btn {
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
}

.rates-forexmaster-btn.active {
    background-color: #0d6efd;
    border: 1px solid #023a8f;
    color: #fff;
}

.forexmaster-btn {
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;

    background-color: #e0e0e0;
    color: #333;
    border: none;
    opacity: 0.7;
}
.forexmaster-btn.active {
    background-color: #0d6efd;
    border: 1px solid #023a8f;
    color: #fff;
    opacity: 1;
}


.select2-container .select2-selection--single{
    height: 35px !important;
    border-radius: 8px !important;
}