
:root {
    --primary-dark: #090e17;
    --secondary-dark: #1a1f2e;
    --card-bg: #1e2538;
    --accent-blue: #8a56ff;
    --accent-purple: #8a56ff;
    --accent-green: #8a56ff;
    --accent-orange: #8a56ff;
    --text-light: #f8fafc;
    --text-secondary: #94a3b8;
    --gradient-blue: linear-gradient(45deg, #8a56ff, #5e24ff);
    --gradient-purple: linear-gradient(45deg, #8a56ff, #5e24ff);
    --gradient-accent: linear-gradient(45deg, #8a56ff, #5e24ff);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(9, 14, 23, 0.97) 0%, rgba(17, 23, 36, 0.95) 100%);
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 30%, rgba(138, 86, 255, 0.08), transparent 35%),
        radial-gradient(circle at 90% 70%, rgba(138, 86, 255, 0.08), transparent 35%);
    z-index: 1;
}

        .hero-content {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 10;
            gap: 60px;
        }

        .hero-text {
            flex: 1;
            max-width: 600px;
            position: relative;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(0, 226, 255, 0.1);
            color: var(--accent-blue);
            padding: 0.5rem 1rem;
            border-radius: 30px;
            margin-bottom: 1.5rem;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid rgba(0, 226, 255, 0.2);
        }

        .hero-badge i {
            margin-right: 0.5rem;
        }

        .hero-title {
            font-size: 3.8rem;
            line-height: 1.1;
            margin-bottom: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: white;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        
        .performance-widget {
            background-color: rgba(30, 37, 56, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 1.2rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .widget-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .widget-title {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-light);
        }

        .live-indicator {
            display: flex;
            align-items: center;
            font-size: 0.85rem;
            color: var(--accent-green);
        }

        .live-indicator::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--accent-green);
            margin-right: 0.5rem;
            animation: pulse 2s infinite;
        }

        .performance-metrics {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
        }

        .metric {
            flex: 1;
            display: flex;
            flex-direction: column;
            border-radius: 8px;
            padding: 0.8rem;
            background-color: rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .metric::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-accent);
        }

        .metric-value {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent-blue);
        }

        .metric-period {
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-bottom: 0.25rem;
        }

        .trend {
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .trend-up {
            color: var(--accent-green);
        }

        .trend-down {
            color: #FF5E7A;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        
        .security-badges {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .security-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .security-badge i {
            color: var(--accent-green);
        }

        
        .hero-media {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 24px;
            align-items: center;
        }

        .hero-image {
            position: relative;
            width: 100%;
            max-width: 550px;
        }

        .image-glow {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 16px;
            background: radial-gradient(circle at center, rgba(0, 226, 255, 0.15), transparent 70%);
            filter: blur(20px);
            z-index: 1;
        }

        .hero-image img {
            width: 113px;
            border-radius: 16px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            animation: float 6s ease-in-out infinite;
            position: relative;
            z-index: 2;
        }

        .tech-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: var(--gradient-accent);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: 0 10px 25px rgba(0, 226, 255, 0.3);
            transform: rotate(5deg);
            z-index: 3;
        }

        
        .trading-activity {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 4;
            pointer-events: none;
        }

        .activity-dot {
            position: absolute;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--accent-blue);
            box-shadow: 0 0 10px var(--accent-blue);
            animation: blink 3s ease-in-out infinite;
        }

        .activity-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
            animation: lineMove 4s linear infinite;
        }

        .dot-1 {
            top: 30%;
            left: 20%;
            animation-delay: 0.5s;
        }

        .dot-2 {
            top: 50%;
            right: 25%;
            animation-delay: 1.5s;
        }

        .dot-3 {
            bottom: 25%;
            left: 40%;
            animation-delay: 1s;
        }

        .line-1 {
            top: 40%;
            left: 0;
            width: 80%;
            animation-delay: 0.3s;
        }

        .line-2 {
            bottom: 30%;
            right: 0;
            width: 60%;
            animation-delay: 1.2s;
        }

        @keyframes blink {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.3); }
        }

        @keyframes lineMove {
            0% { transform: translateX(-100%) scaleY(1); }
            50% { transform: translateX(100%) scaleY(1.2); }
            100% { transform: translateX(100%) scaleY(1); opacity: 0; }
        }

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

        
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            width: 100%;
            margin-top: 20px;
        }

        .stat-card {
            background-color: rgba(30, 37, 56, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 1.2rem;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            top: 0;
            left: 0;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

        .stat-icon {
            color: var(--accent-blue);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        
        .crypto-ticker {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 0.75rem 0;
            background-color: rgba(26, 31, 46, 0.8);
            backdrop-filter: blur(10px);
            overflow: hidden;
            z-index: 20;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .ticker-container {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 40px;
        }

        .ticker-track {
            display: flex;
            animation: tickerScroll 60s linear infinite;
            will-change: transform;
        }

        .ticker-track:hover {
            animation-play-state: paused;
        }

        .ticker-items {
            display: flex;
            flex-shrink: 0;
        }

        .ticker-item {
            display: flex;
            align-items: center;
            padding: 0 2rem;
            color: var(--text-light);
            min-width: 220px;
            position: relative;
        }

        .ticker-item::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 20px;
            background-color: rgba(255, 255, 255, 0.1);
        }

        .ticker-item img {
            width: 24px;
            height: 24px;
            margin-right: 0.75rem;
            filter: drop-shadow(0 0 3px rgba(0, 226, 255, 0.3));
        }

        .ticker-name {
            font-weight: 600;
            margin-right: 0.75rem;
        }

        .ticker-price {
            margin-right: 0.75rem;
            font-family: 'Roboto Mono', monospace;
            font-weight: 500;
        }

        .ticker-change {
            font-weight: 600;
            border-radius: 4px;
            padding: 0.15rem 0.5rem;
            min-width: 60px;
            text-align: center;
        }

        .ticker-change.positive {
            background-color: rgba(29, 201, 160, 0.15);
            color: var(--accent-green);
        }

        .ticker-change.negative {
            background-color: rgba(255, 94, 122, 0.15);
            color: #FF5E7A;
        }

        @keyframes tickerScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        
        .advantages {
            background-color: var(--secondary-dark);
            position: relative;
            overflow: hidden;
        }

        .advantages::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 226, 255, 0.05), transparent 70%);
            top: -200px;
            right: -200px;
            border-radius: 50%;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 10;
        }

        .advantage-card {
            background-color: var(--card-bg);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .advantage-card::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 4px;
            top: 0;
            left: 0;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .advantage-card:hover::before {
            transform: scaleX(1);
        }

        .advantage-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            position: relative;
            color: var(--accent-blue);
            background: rgba(138, 86, 255, 0.1);
        }

        .advantage-card:nth-child(2) .advantage-icon {
            color: var(--accent-purple);
            background: rgba(138, 86, 255, 0.1);
        }

        .advantage-card:nth-child(3) .advantage-icon {
            color: var(--accent-green);
            background: rgba(138, 86, 255, 0.1);
        }

        .advantage-card:nth-child(4) .advantage-icon {
            color: var(--accent-orange);
            background: rgba(138, 86, 255, 0.1);
        }

        .advantage-card:nth-child(5) .advantage-icon {
            color: #8A56FF;
            background: rgba(138, 86, 255, 0.1);
        }

        .advantage-card:nth-child(6) .advantage-icon {
            color: #8A56FF;
            background: rgba(138, 86, 255, 0.1);
        }

        .advantage-title {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .advantage-description {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        
        .chart-container {
            width: 100%;
            height: 250px;
            position: relative;
            background-color: var(--card-bg);
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .chart-line {
            stroke: var(--accent-blue);
            stroke-width: 2;
            fill: none;
        }

        .chart-area {
            fill: url(#gradient);
            opacity: 0.2;
        }

        .chart-dot {
            fill: var(--accent-blue);
            r: 5;
            transition: r 0.3s ease;
            cursor: pointer;
        }

        .chart-dot:hover {
            r: 7;
            fill: white;
            stroke: var(--accent-blue);
            stroke-width: 2;
        }

        .chart-tooltip {
            position: absolute;
            background-color: var(--card-bg);
            border-radius: 8px;
            padding: 0.75rem;
            font-size: 0.9rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 100;
            border: 1px solid rgba(0, 226, 255, 0.2);
            pointer-events: none;
        }

        .chart-tooltip-date {
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-bottom: 0.25rem;
        }

        .chart-tooltip-value {
            font-weight: 600;
            color: var(--accent-blue);
        }

        
        .performance-history-widget {
            background-color: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            margin-top: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .history-table-container {
            width: 100%;
            overflow-x: auto;
            padding: 1.5rem;
            scrollbar-width: thin;
            scrollbar-color: var(--accent-blue) var(--card-bg);
        }

        .history-table {
            width: 100%;
            border-collapse: collapse;
            color: var(--text-light);
        }

        .history-table th {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 1rem;
            text-align: left;
            font-weight: 600;
            border-bottom: 2px solid rgba(0, 226, 255, 0.2);
        }

        .history-table td {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: background-color 0.3s ease;
        }

        .history-table tbody tr:hover td {
            background-color: rgba(0, 0, 0, 0.15);
        }

        .history-table .positive {
            color: var(--accent-green);
            font-weight: 600;
        }

        .history-table .negative {
            color: #FF5E7A;
            font-weight: 600;
        }

        .history-info {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            padding: 1.5rem;
            background-color: rgba(0, 0, 0, 0.15);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .stats-box {
            background-color: rgba(0, 0, 0, 0.15);
            border-radius: 10px;
            padding: 1.5rem;
            transition: transform 0.3s ease;
        }

        .stats-box:hover {
            transform: translateY(-5px);
        }

        .stats-title {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .stats-title i {
            color: var(--accent-blue);
        }

        .stats-value {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
            color: var(--accent-blue);
        }

        .stats-subtitle {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        
        .plans {
            position: relative;
            overflow: hidden;
        }

        .plans::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(138, 86, 255, 0.05), transparent 70%);
            bottom: -200px;
            left: -200px;
            border-radius: 50%;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 10;
        }

        .plan-card {
            background-color: var(--card-bg);
            border-radius: 16px;
            padding: 3rem 2rem;
            position: relative;
            transition: all 0.4s ease;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .plan-card.popular {
            border: 2px solid transparent;
            background-image: linear-gradient(var(--card-bg), var(--card-bg)), 
                            var(--gradient-accent);
            background-origin: border-box;
            background-clip: padding-box, border-box;
            box-shadow: 0 15px 35px rgba(0, 226, 255, 0.15);
            position: relative;
            z-index: 20;
            transform: scale(1.05);
        }

        .plan-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .popular-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gradient-accent);
            color: white;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            box-shadow: 0 4px 10px rgba(0, 226, 255, 0.2);
        }

        .plan-name {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            text-align: center;
            font-weight: 700;
        }

        .plan-price {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 0.5rem;
            font-weight: 800;
            color: var(--accent-blue);
        }

        .plan-period {
            text-align: center;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }

        .plan-description {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .plan-features {
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .plan-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .plan-feature i {
            color: var(--accent-green);
            margin-right: 1rem;
            margin-top: 0.2rem;
        }

        .plan-cta {
            text-align: center;
        }

        
        .calculator-widget {
            background-color: var(--card-bg);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            margin-top: 2rem;
        }

        .calculator-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .calculator-input-group {
            margin-bottom: 1.5rem;
        }

        .calculator-label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-secondary);
        }

        .calculator-range {
            width: 100%;
            margin-bottom: 0.5rem;
            -webkit-appearance: none;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            outline: none;
        }

        .calculator-range::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            background: var(--accent-blue);
            border-radius: 50%;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .calculator-range::-webkit-slider-thumb:hover {
            transform: scale(1.2);
        }

        .calculator-range-labels {
            display: flex;
            justify-content: space-between;
        }

        .calculator-range-min,
        .calculator-range-max {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .calculator-range-value {
            font-weight: 600;
            color: var(--accent-blue);
        }

        .calculator-select {
            width: 100%;
            padding: 0.75rem;
            border-radius: 8px;
            background-color: #293042;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            cursor: pointer;
        }

        .calculator-results {
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .calculator-results-title {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 1.2rem;
        }

        .calculator-result-item {
            margin-bottom: 1.5rem;
        }

        .calculator-result-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }

        .calculator-result-label {
            color: var(--text-secondary);
        }

        .calculator-result-value {
            font-weight: 600;
        }

        .calculator-progress {
            width: 100%;
            height: 8px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
        }

        .calculator-progress-bar {
            height: 100%;
            border-radius: 4px;
            transition: width 0.5s ease;
        }

        .calculator-progress-monthly {
            width: 10%;
            background-color: var(--accent-blue);
        }

        .calculator-progress-total {
            width: 40%;
            background-color: var(--accent-green);
        }

        .calculator-progress-capital {
            width: 70%;
            background: var(--gradient-accent);
        }

        .calculator-cta {
            text-align: center;
            margin-top: 2rem;
        }

        
        .trust-section {
            background-color: var(--secondary-dark);
            position: relative;
            overflow: hidden;
        }

        .trust-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 226, 255, 0.05), transparent 70%);
            bottom: -200px;
            right: -200px;
            border-radius: 50%;
        }

        .trust-indicators {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
            z-index: 10;
        }

        .trust-card {
            background-color: var(--card-bg);
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            min-height: 420px;
        }

        .trust-card::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 4px;
            top: 0;
            left: 0;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .trust-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .trust-card:hover::before {
            transform: scaleX(1);
        }

        .trust-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            background: rgba(0, 226, 255, 0.1);
            color: var(--accent-blue);
        }

        .trust-card:nth-child(2) .trust-icon {
            background: rgba(138, 86, 255, 0.1);
            color: var(--accent-purple);
        }

        .trust-card:nth-child(3) .trust-icon {
            background: rgba(29, 201, 160, 0.1);
            color: var(--accent-green);
        }

        .trust-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .trust-features {
            list-style: none;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .trust-features li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            color: var(--text-secondary);
        }

        .trust-features li i {
            color: var(--accent-green);
            margin-right: 1rem;
            margin-top: 0.2rem;
            font-size: 1rem;
        }

        .trust-seal {
            display: flex;
            justify-content: center;
            margin-top: auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .trust-seal img {
            height: 50px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .trust-seal img:hover {
            opacity: 1;
        }

        .trust-certifications {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .certificate {
            padding: 0.5rem 1rem;
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .trust-insurance {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin-top: auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--accent-green);
            font-weight: 600;
        }

        .partners-section {
            margin-top: 4rem;
            text-align: center;
        }

        .partners-section h3 {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .partners-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 3rem;
        }

        .partner-logo {
            height: 50px;
            width: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.6;
            transition: all 0.3s ease;
            filter: grayscale(100%);
        }

        .partner-logo:hover {
            opacity: 1;
            filter: grayscale(0%);
            transform: scale(1.1);
        }

        .partner-logo img {
            max-height: 100%;
            max-width: 100%;
        }

        
        .testimonials {
            background-color: var(--secondary-dark);
            position: relative;
            overflow: hidden;
        }

        .testimonials-carousel {
            position: relative;
            z-index: 10;
            overflow: hidden;
            padding: 2rem 0;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-slide {
            min-width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            padding: 0 1rem;
            transition: opacity 0.5s ease;
        }

        .testimonial-card {
            flex: 1;
            min-width: 300px;
            background-color: var(--card-bg);
            border-radius: 16px;
            padding: 2rem;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: rgba(0, 226, 255, 0.1);
            font-family: sans-serif;
            line-height: 1;
        }

        .stars-container {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 0.5rem;
        }

        .star {
            color: #ffc107;
            font-size: 1.2rem;
        }

        .testimonial-content {
            position: relative;
            z-index: 10;
            color: var(--text-secondary);
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

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

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: white;
            background: var(--gradient-blue);
        }

        .testimonial-info h4 {
            margin-bottom: 0.25rem;
            font-weight: 600;
        }

        .testimonial-info p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-control {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--card-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .testimonial-control:hover {
            background-color: var(--accent-blue);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }

        .testimonial-indicators {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .testimonial-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--text-secondary);
            opacity: 0.3;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-indicator.active {
            opacity: 1;
            background-color: var(--accent-blue);
            transform: scale(1.3);
        }

        
        .faq {
            position: relative;
            overflow: hidden;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .faq-item {
            background-color: var(--card-bg);
            border-radius: 12px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--accent-blue);
        }

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .faq-question.active i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s ease;
            color: var(--text-secondary);
        }

        .faq-answer.active {
            padding: 0 2rem 1.5rem;
            max-height: 500px;
        }

        
        .cta {
            background: var(--gradient-blue);
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            margin: 5rem auto;
            max-width: 1200px;
        }

        .cta::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            top: -150px;
            right: -150px;
            border-radius: 50%;
        }

        .cta::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            bottom: -100px;
            left: -100px;
            border-radius: 50%;
        }

        .cta-content {
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .cta-description {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

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

        .btn-white:hover {
            background-color: #f0f0f0;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .btn-transparent {
            background-color: transparent;
            border: 2px solid white;
            color: white;
        }

        .btn-transparent:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        
        footer {
            background-color: var(--secondary-dark);
            padding: 5rem 0 2rem;
            position: relative;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .footer-logo img {
            height: 30px;
            margin-right: 10px;
        }

        .footer-logo h3 {
            font-size: 1.3rem;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }

        .footer-description {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.7;
            max-width: 350px;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--card-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--gradient-accent);
            transform: translateY(-3px);
        }

        .footer-heading {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-blue);
            transform: translateX(5px);
            display: inline-block;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            color: var(--text-secondary);
        }

        .footer-contact-item i {
            margin-right: 1rem;
            color: var(--accent-blue);
            margin-top: 0.3rem;
        }

        .copyright {
            text-align: center;
            color: var(--text-secondary);
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
        }

        
        .live-data-widget {
            background-color: var(--card-bg);
            border-radius: 16px;
            padding: 1.5rem;
            margin-top: 2rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .live-data-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .live-data-title {
            font-size: 1.2rem;
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        .live-data-title i {
            margin-right: 0.75rem;
            color: var(--accent-blue);
        }

        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
        }

        .data-item {
            padding: 1rem;
            border-radius: 10px;
            background-color: rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .data-item:hover {
            transform: translateY(-5px);
            background-color: rgba(0, 0, 0, 0.2);
        }

        .data-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
        }

        .data-value {
            font-size: 1.3rem;
            font-weight: 700;
        }

        .data-trend {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        .negative{
            color: #FF5E7A;
        }

        .positive{
            color: var(--accent-green);
        }

        
        .slide-up, .slide-right, .slide-left {
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .slide-up {
            transform: translateY(50px);
        }

        .slide-right {
            transform: translateX(-50px);
        }

        .slide-left {
            transform: translateX(50px);
        }

        .slide-up.animated, .slide-right.animated, .slide-left.animated {
            opacity: 1;
            transform: translate(0);
        }

        .fade-in {
            animation: fadeInAnimation 1.2s ease forwards;
        }

        @keyframes fadeInAnimation {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        
        .advantage-card, .plan-card, .testimonial-card, .trust-card {
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: translateY(0) scale(1);
        }

        .advantage-card:hover, .plan-card:hover, .testimonial-card:hover, .trust-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        }

        
        .btn-primary::after, .btn-outline::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 10px;
            background: var(--gradient-accent);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .btn-primary:hover::after, .btn-outline:hover::after {
            opacity: 0.4;
            animation: pulse 2s infinite;
        }

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

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

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

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

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

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

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        .pulse {
            animation: pulse 3s ease-in-out infinite;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        .delay-4 {
            animation-delay: 0.8s;
        }

        .delay-5 {
            animation-delay: 1s;
        }

        
        .particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.3;
            pointer-events: none;
        }

        
        @media (max-width: 1200px) {
            .plans-grid,
            .advantages-grid,
            .trust-indicators {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
            
            .hero-title {
                font-size: 3.2rem;
            }
            
            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .performance-metrics {
                flex-wrap: wrap;
            }
            
            .metric {
                min-width: calc(50% - 0.5rem);
            }

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

        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: left;
            }
            
            .hero-text {
                max-width: 100%;
            }
            
            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .security-badges {
                justify-content: flex-start;
            }
        }

        @media (max-width: 768px) {

            header .container{
                padding: 0 1.5rem !important;
            }

            .mobile-version{
                display: block;
            }

            .desktop-version{
                display: none;
            }

            .advantage-icon,.trust-icon {
                width: 40px;
                height: 40px;
                font-size: 0.8rem;
                margin-bottom: 0;
            }

            .advantage-description{
                font-size: 14px;
                line-height: 20px;
            }

            .none{
                display: none;
            }
            .flexir{
                display: flex;
                gap: 10px;
                align-items: center;
                margin-bottom: 10px;
            }
            .flexir h3{
                margin-bottom: 0;
                font-size: 16px;
                font-weight: 500;
            }
            .crypto-ticker{
                margin-top: 60px;
            }
            .hero-media{
                margin-top: 50px;
            }
            .hero-image img{
                left: 26px;
                top: -49px;
            }
            .container {
                padding: 0 20px;
            }
            
            .hero-content {
                margin-bottom: 16px !important;
                padding: 0;
            }

            .testimonial-info p{
                text-wrap: nowrap;
            }

            .partners-section h3{
                margin-bottom: 6px;
            }

            .history-table td{
                text-wrap: nowrap;
                font-size: 14px;
            }

            .testimonial-avatar{
                display: none;
            }

            .faq-question{
                padding: 10px 15px;
                font-size: 14px;
            }

            .cta-title{
                font-size: 18px !important;
                line-height: 24px;
            }

            .cta-description{
                font-size: 14px;
            }
            .cta-content {
                padding: 37px 2em;
            }
            .cta{
                margin: 20px auto;
                position: relative;
                top: -30px
            }

            footer{
                padding: 21px 0 2rem;
            }

            .history-table th{
                padding: 10px 23px;
                text-wrap: nowrap;
                font-size: 14px;
            }

            .positive{
                text-align: center;
            }

            .testimonials-carousel{
                padding: 0px !important;
            }

            .stats-value{
                font-size: 14px;
            }

            .testimonial-card{
                min-width: 100% !important;
                width: 100% !important;
            }

            .testimonial-content{
                line-height: 19px;
                font-size: 14px;
            }

            .testimonial-info h4{
                margin-bottom: 0px;
                font-weight: 400;
            }

            .trust-features li i{
                margin-left: 10px;
            }

            .trust-features li{
                margin-bottom: 6px;
            }

            .trust-card{
                min-height: initial;
            }
            
            .trust-features{
                margin-bottom: 8px;
            }

            .certificate{
                display: none;
            }

            .hero-title {
                font-size: 2.5rem;
                margin-bottom: 10px;
            }
            
            .hero-subtitle {
                font-size: 14px;
                line-height: 19px;
            }
            
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    position: relative; /* Pour servir de conteneur de référence */
}
            
            .hero-stats {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            
            .stat-card {
                padding: 1rem;
            }
            
            .stat-value {
                font-size: 1.6rem;
            }
            
            .stat-label {
                font-size: 0.8rem;
            }
            
            .advantages-grid,
            .plans-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonial-slide {
                flex-direction: column;
            }
            
            .plan-card.popular {
                transform: scale(1);
            }
            
            .plan-card.popular:hover {
                transform: translateY(-10px);
            }
            
            .mobile-toggle {
                display: block;
            }

            .hero-title{
                font-size: 20px;
            }

            .hero{
                padding: 78px 0 80px;
            }
            
            nav {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--secondary-dark);
                padding: 1rem;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                z-index: 1000;
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0;
                padding: 1rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            
            nav ul li:last-child {
                border-bottom: none;
            }
            
            .header-buttons {
                display: none;
            }
            
            .header-buttons.active {
                display: flex;
                flex-direction: column;
                width: 100%;
                gap: 1rem;
                padding: 1rem;
                background-color: var(--secondary-dark);
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .performance-metrics {
                flex-direction: column;
            }
            
            .metric {
                margin-bottom: 1rem;
            }
            

            
            .history-info {
                grid-template-columns: 1fr;
            }
            
            .trust-indicators {
                grid-template-columns: 1fr;
            }
            
            .partners-logos {
                gap: 1.5rem;
            }
            
            .partners-section h3 {
                font-size: 1.3rem;
            }

            .footer-content{
                display: block;
            }

            .security-badges {
                justify-content: center;
                align-items: center;
                gap: 0.75rem;
            }

            .btn-lg {
                padding: 10px 15px !important;
                font-size: 16px !important;
            }

            #cours{
                display: none;
            }

            #advantages{
                padding: 30px 0px;
            }
            .section-title{
                font-size: 22px !important;
                margin-bottom: 6px !important;
                line-height: 26px !important;
            }
            .section-subtitle{
                font-size: 14px;
            }
            .advantage-card,.trust-card{
                padding: 16px;
            }
            .accent-line {
                margin: 10px auto 20px !important;
            }
            .section{
                padding: 37px 0px 35px !important;
            }
            #plans{
                padding: 10px 0px 35px !important;
            }

            .plan-card{
                padding: 15px;
            }

            .plan-price {
                font-size: 18px;
                font-weight: 500;
                margin-bottom: 0px;
            }

            .plan-name {
                margin-bottom: -6px;
            }

            .flexage{
                display: flex;
                align-items: center;
                gap: 10px;
                justify-content: center;
                margin-bottom: 10px;
            }

            .plan-description{
                font-size: 12px;
                line-height: 15px;
            }

            .plan-feature {
                margin-bottom: 1px;
                font-size: 14px;
                font-weight: 300;
            }

            .plan-features{
                margin-bottom: 14px;
                margin-top: -15px;
            }
            .btn {
                padding: 10px;
                font-size: 15px;
            }

            .popular-badge {
                top: 0px;
                right: -3px;
            }

            .calculator-results{
                background-color: transparent;
                margin-top: -29px;
                padding: 0px;
            }

            .calculator-cta{
                margin-top: 6px;
            }

            .plan-period{
                margin-bottom: 0px;
            }

        }

        @media (max-width: 480px) {

            
            .security-badges {
                
                align-items: flex-start;
                gap: 0.75rem;
            }
            
            .hero-badge {
                font-size: 0.8rem;
            }
            
            .testimonial-indicators {
                gap: 0.3rem;
            }
            
            .testimonial-indicator {
                width: 8px;
                height: 8px;
            }
            
            .testimonial-controls {
                gap: 1rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            
            .btn {
                width: 100%;
            }
        }

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

        .btn-primary {
            background-size: 200% auto;
            animation: shine 8s linear infinite;
            background-image: linear-gradient(45deg, 
                rgba(0, 198, 255, 1) 0%, 
                rgba(0, 114, 255, 1) 33%, 
                rgba(0, 198, 255, 1) 66%, 
                rgba(0, 114, 255, 1) 100%
            );
        }

        .btn-outline:hover {
            animation: shine 8s linear infinite;
            background-size: 200% auto;
            background-image: linear-gradient(45deg, 
                rgba(0, 226, 255, 1) 0%, 
                rgba(138, 86, 255, 1) 50%, 
                rgba(0, 226, 255, 1) 100%
            );
            -webkit-text-fill-color: var(--primary-dark);
            color: var(--primary-dark);
            border-color: transparent;
        }

        
        .hero::after,
        .advantages::after,
        .trust-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%239C92AC' fill-opacity='0.05' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 2;
        }

        
        .stat-card:hover .stat-icon {
            animation: bounce 1s ease infinite;
        }

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

        
        .typed-cursor {
            opacity: 1;
            animation: typedjsBlink 0.7s infinite;
            display: inline-block;
            width: 0.5em;
            margin-left: 5px;
        }

        @keyframes typedjsBlink {
            50% { opacity: 0.0; }
        }
    

       

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section {
            padding: 5rem 0;
            position: relative;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 1rem;
            position: relative;
            z-index: 10;
        }

        .section-title span {
            color: var(--accent-blue);
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 3rem;
            position: relative;
            z-index: 10;
        }

        .accent-line {
            display: block;
            width: 80px;
            height: 4px;
            background: var(--gradient-accent);
            margin: 1rem auto 2rem;
            border-radius: 2px;
        }

        
        header {
            background-color: rgba(10, 14, 23, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 0.8rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
        }

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

        .logo img {
            height: 45px;
        }

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

        nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        nav ul li {
            margin: 0 25px;
        }

        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
            font-size: 1.05rem;
            letter-spacing: 0.3px;
        }

        nav ul li a:hover {
            color: var(--accent-blue);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background: var(--gradient-accent);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after,
        nav ul li a.active::after {
            width: 100%;
        }

        .header-buttons {
            display: flex;
            gap: 20px;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--gradient-blue);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 226, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 226, 255, 0.4);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--accent-blue);
            color: var(--accent-blue);
        }

        .btn-outline:hover {
            background-color: var(--accent-blue);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }

        .btn-lg {
            padding: 1rem 2rem;
            font-size: 1.1rem;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }


        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }

            .mobile-toggle {
                display: block;
            }
            
            nav {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--secondary-dark);
                padding: 1rem;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                z-index: 1000;
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0;
                padding: 1rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            
            nav ul li:last-child {
                border-bottom: none;
            }
            
            .header-buttons {
                display: none;
            }
            
            .header-buttons.active {
                display: flex;
                flex-direction: column;
                width: 100%;
                gap: 1rem;
                padding: 1rem;
                background-color: var(--secondary-dark);
            }
            .advantage-icon, .trust-icon, .security-badge i {
    color: var(--accent-blue) !important;
    background: rgba(138, 86, 255, 0.1) !important;
}



        }

.hero {
  background: linear-gradient(135deg, #0d0f1e 0%, #131629 100%);
  padding: 100px 0;
}
.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 500px;
}
.hero-buttons .btn-primary {
  background: linear-gradient(90deg, #7c3aed, #9333ea);
  box-shadow: 0 8px 16px rgba(124, 58, 237, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: transform 0.2s;
}
.hero-buttons .btn-primary:hover {
  transform: translateY(-2px);
}
.hero-buttons .btn-outline {
  border: 2px solid #7c3aed;
  color: #7c3aed;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  margin-left: 1rem;
}
.hero-buttons .btn-outline:hover {
  background: #7c3aed;
  color: #fff;
}


section.feedback {
  background-color: #0e0f1a;
  padding: 80px 0;
}
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.feedback-card {
  background: #1b1d38;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s, background 0.3s;
}
.feedback-card:hover {
  transform: translateY(-4px);
  background: #272b4a;
}
.feedback-card .stars {
  color: #facc15;
  margin-bottom: 12px;
}
.feedback-card p {
  font-size: 1rem;
  color: #cbd5e1;
  margin: 16px 0;
}
.feedback-card h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}
.feedback-card span {
  font-size: 0.875rem;
  color: #94a3b8;
}


header nav ul li {
  margin: 0 1rem;
}
header nav ul li a {
  color: #fff;
  font-weight: 500;
  transition: color 0.2s;
}
header nav ul li a:hover,
header nav ul li a.active {
  color: #9333ea;
}


.crypto-ticker {
  background: rgba(255,255,255,0.05);
  padding: 8px 0;
}
.ticker-item {
  padding: 0 1rem;
}
.ticker-item img {
  width: 20px;
  margin-right: 6px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #e2e8f0;
  background: #0b0c17;
}
a.btn {
  font-weight: 600;
}

.cta {
  background: linear-gradient(135deg, #272b4a 0%, #1b1d38 100%);
  padding: 60px 0;
  text-align: center;
}
.cta .btn-white {
  background: #fff;
  color: #1b1d38;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  margin-right: 1rem;
}
.cta .btn-transparent {
  border: 2px solid #fff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
}

.logo-text { font-size: 1.5rem; font-weight: 700; color: #9333ea; }
.crypto-ticker {
  background: #11121a;
  padding: 10px 0;
  overflow: hidden;
}
.ticker-container {
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: scrollTicker 30s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  margin: 0 2rem;
  color: #e2e8f0;
  font-family: 'Inter', sans-serif;
}
.ticker-item i {
  margin-right: 8px;
  font-size: 1.2rem;
}
.ticker-item .price {
  margin: 0 6px;
  font-weight: 600;
}
.ticker-item .change {
  font-weight: 600;
}
.ticker-item .change.positive {
  color: #22c55e;
}
.ticker-item .change.negative {
  color: #ef4444;
}
@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.crypto-ticker {
  background: #1E2538;
  padding: 16px 0;
}
.ticker-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.ticker-items {
  display: flex;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding: 0 16px;
}
.ticker-item {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: #1E2538;
  padding: 8px 12px;
  border-radius: 8px;
}
.ticker-logo {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.ticker-name {
  font-weight: 600;
  margin-right: 6px;
  color: #e2e8f0;
}
.ticker-price {
  font-weight: 500;
  margin-right: 6px;
  color: #94a3b8;
}
.ticker-change.positive {
  color: #22c55e;
  font-weight: 600;
}
.ticker-change.negative {
  color: #ef4444;
  font-weight: 600;
}

.ticker-wrapper::-webkit-scrollbar {
  display: none;
}
.ticker-wrapper {
  -ms-overflow-style: none;  
  scrollbar-width: none;  
}


.market-section {
  padding: 60px 0;
  background: #0b0c17;
}
.market-section .section-title {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.market-card {
  background: #1b1d38;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s, background 0.2s;
}
.market-card:hover {
  transform: translateY(-4px);
  background: #272b4a;
}
.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.card-header img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}
.card-header .name {
  color: #e2e8f0;
  font-weight: 600;
}
.card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-body .price {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}
.card-body .change {
  font-weight: 600;
}
.card-body .change.positive {
  color: #22c55e;
}
.card-body .change.negative {
  color: #ef4444;
}
.sparkline {
  width: 50px;
  height: 20px;
  stroke: #7c3aed;
  stroke-width: 1.5;
  stroke-linecap: round;
  fill: none;
  margin-left: 8px;
}

.faq-answer {
  display: none;
}
.faq-answer.active {
  display: block;
}
.faq-question i.rotated {
  transform: rotate(180deg);
  transition: transform 0.2s;
}
.calculator-widget {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}
.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.calculator-input-group { margin-bottom: 1.5rem; }
.calculator-label { color: var(--text-secondary); margin-bottom: 0.5rem; display: block; }
.calculator-range {
    width: 100%; height: 6px; background: rgba(255, 255, 255, 0.1);
    border-radius: 3px; outline: none;
}
.calculator-range::-webkit-slider-thumb {
    -webkit-appearance: none; width: 20px; height: 20px;
    background: var(--accent-purple); border-radius: 50%; cursor: pointer;
    transition: transform 0.3s ease;
}
.calculator-range::-webkit-slider-thumb:hover { transform: scale(1.2); }
.calculator-range-labels { display: flex; justify-content: space-between; }
.calculator-range-value {
    text-align: center; font-size: 1.2rem; font-weight: 700;
    color: var(--accent-purple); margin-top: 0.5rem;
}
.calculator-results { background: rgba(0,0,0,0.2); border-radius: 12px; padding: 2rem; }
.calculator-result-item { margin-bottom: 1rem; }
.calculator-result-header { display: flex; justify-content: space-between; margin-bottom: 0.5rem; }
.calculator-progress { width: 100%; height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.calculator-progress-bar { height: 100%; border-radius: 4px; transition: width 0.5s ease; }
.calculator-progress-monthly { background: var(--accent-purple); }
.calculator-progress-total { background: var(--accent-purple); }
.calculator-progress-capital { background: var(--accent-purple); }
/* === RESPONSIVE FORMULAIRES ET TABLEAUX === */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }

    form {
        width: 100% !important;
        padding: 15px !important;
    }

    input, select, textarea, button {
        width: 100% !important;
        font-size: 1rem !important;
        padding: 0.75rem !important;
        margin-bottom: 1rem;
    }

    table {
        width: 100%;
        font-size: 0.95rem;
        overflow-x: auto;
        display: block;
    }

    th, td {
        padding: 8px;
        white-space: nowrap;
    }

    .btn, .btn-primary, .btn-outline, .btn-lg {
        width: 100% !important;
        padding: 0.9rem !important;
        font-size: 1rem !important;
        text-align: center;
    }

    .hero-image, .hero-media, .stat-card {
        width: 100% !important;
        text-align: center;
    }

    .stat-card {
        margin-bottom: 1rem;
    }

    .logo img {
        max-width: 120px;
        height: auto !important;
    }

    footer {
        text-align: center;
        padding: 1.5rem 1rem;
    }
    /* Styles spécifiques pour le bouton "Découvrez nos offres" */
#moveable-button {
    position: relative; /* Permet le déplacement */
    transform: translateX(0); /* Position initiale */
    transition: transform 0.3s ease; /* Animation fluide */
    width: 100%; /* Pleine largeur dans la colonne mobile */
    max-width: 300px; /* Limite la largeur */
    margin: 0 auto; /* Centrage initial */
    box-sizing: border-box;
}
}


@media (max-width: 768px) {
    header .mobile-toggle {
        display: block; /* Affiche le bouton burger sur mobile */
    }

    header nav {
        display: none; /* Cache le menu par défaut */
    }

    header nav.active {
        display: block; /* Affiche le menu lorsque le bouton burger est activé */
    }



    .mobile-version {
        display: block;
    }

    .desktop-version {
        display: none;
    }

    .advantage-icon,
    .trust-icon {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
        margin-bottom: 0;
    }

    .advantage-description {
        font-size: 14px;
        line-height: 20px;
    }

    .none {
        display: none;
    }

    .flexir {
        display: flex;
        gap: 10px;
        align-items: center;
        margin-bottom: 10px;
    }

    .flexir h3 {
        margin-bottom: 0;
        font-size: 16px;
        font-weight: 500;
    }

    .crypto-ticker {
        margin-top: 60px;
    }

    .hero-media {
        margin-top: 50px;
    }

    .hero-image img {
        left: 26px;
        top: -49px;
    }

    .container {
        padding: 0 20px;
    }

    .hero-content {
        margin-bottom: 16px !important;
        padding: 0;
    }

    .testimonial-info p {
        text-wrap: nowrap;
    }

    .partners-section h3 {
        margin-bottom: 6px;
    }

    .history-table td {
        text-wrap: nowrap;
        font-size: 14px;
    }

    .testimonial-avatar {
        display: none;
    }

    .faq-question {
        padding: 10px 15px;
        font-size: 14px;
    }

    .cta-title {
        font-size: 18px !important;
        line-height: 24px;
    }

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

    .cta-content {
        padding: 37px 2em;
    }

    .cta {
        margin: 20px auto;
        position: relative;
        top: -30px;
    }

    footer {
        padding: 21px 0 2rem;
    }

    .history-table th {
        padding: 10px 23px;
        text-wrap: nowrap;
        font-size: 14px;
    }

    .positive {
        text-align: center;
    }

    .testimonials-carousel {
        padding: 0px !important;
    }

    .stats-value {
        font-size: 14px;
    }

    .testimonial-card {
        min-width: 100% !important;
        width: 100% !important;
    }

    .testimonial-content {
        line-height: 19px;
        font-size: 14px;
    }

    .testimonial-info h4 {
        margin-bottom: 0px;
        font-weight: 400;
    }

    .trust-features li i {
        margin-left: 10px;
    }

    .trust-features li {
        margin-bottom: 6px;
    }

    .trust-card {
        min-height: initial;
    }

    .trust-features {
        margin-bottom: 8px;
    }

    .certificate {
        display: none;
    }

    .hero-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 19px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        justify-content: center;
        align-items: center;
        margin-bottom: 2rem;
        position: relative;
        width: 100%;
        max-width: 400px;
        padding: 0 40px; /* Plus d'espace pour le déplacement */
        overflow: visible; /* Permet au bouton de sortir si besoin */
    }

    .hero-buttons button {
        width: 100%;
        max-width: 350px; /* Ajustez la largeur maximale des boutons */
        padding: 10px 20px;
        font-size: 1rem;
        text-align: center;
    }

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

    .stat-card {
        padding: 1rem;
    }

    .stat-value {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .advantages-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-slide {
        flex-direction: column;
    }

    .plan-card.popular {
        transform: scale(1);
    }

    .plan-card.popular:hover {
        transform: translateY(-10px);
    }

    .mobile-toggle {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--secondary-dark);
        padding: 1rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 0;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    .header-buttons {
        display: none;
    }

    .header-buttons.active {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        padding: 1rem;
        background-color: var(--secondary-dark);
    }

    .section-title {
        font-size: 22px !important;
        margin-bottom: 6px !important;
        line-height: 26px !important;
    }

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

    .advantage-card,
    .trust-card {
        padding: 16px;
    }

    .accent-line {
        margin: 10px auto 20px !important;
    }

    .section {
        padding: 37px 0px 35px !important;
    }

    #plans {
        padding: 10px 0px 35px !important;
    }

    .plan-card {
        padding: 15px;
    }

    .plan-price {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 0px;
    }

    .plan-name {
        margin-bottom: -6px;
    }

    .flexage {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
        margin-bottom: 10px;
    }

    .plan-description {
        font-size: 12px;
        line-height: 15px;
    }

    .plan-feature {
        margin-bottom: 1px;
        font-size: 14px;
        font-weight: 300;
    }

    .plan-features {
        margin-bottom: 14px;
        margin-top: -15px;
    }

    .btn {
        padding: 10px;
        font-size: 15px;
    }

    .popular-badge {
        top: 0px;
        right: -3px;
    }

    .calculator-results {
        background-color: transparent;
        margin-top: -29px;
        padding: 0px;
    }

    .calculator-cta {
        margin-top: 6px;
    }

    .plan-period {
        margin-bottom: 0px;
    }

    /* Footer */
    footer {
        padding: 1.2rem 1rem;
        background-color: rgba(15, 18, 28, 0.95);
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-content {
        display: block;
        text-align: center;
        padding: 0;
    }

    .footer-contact-item {
        justify-content: center;
        margin-bottom: 0.8rem;
        font-size: 0.9rem;
        color: var(--text-secondary);
        display: flex;
        align-items: center;
    }

    .footer-contact-item i {
        margin-right: 0.5rem;
        font-size: 1rem;
        color: var(--accent-blue);
    }

    .footer-social {
        justify-content: center;
        margin-top: 1rem;
        gap: 0.8rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background-color: rgba(30, 37, 56, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-light);
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }

    .social-link:hover {
        background: var(--gradient-accent);
        transform: translateY(-3px);
        color: var(--primary-dark);
    }

    .copyright {
        margin-top: 1rem;
        font-size: 0.8rem;
        color: rgba(148, 163, 184, 0.8);
        padding-top: 0.8rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Liens rapides */
    .liens-rapides ul {
        padding: 0;
        text-align: center;
    }

    .liens-rapides li {
        margin: 0.5rem 0;
        font-size: 0.9rem;
    }

    /* Ajustement spécifique pour la barre de sélection */
    .calculator-range {
        height: 4px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }

    .calculator-range::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 12px;
        height: 12px;
        background: var(--accent-purple);
        border-radius: 50%;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .calculator-range::-webkit-slider-thumb:hover {
        transform: scale(1.1);
    }

    .calculator-range-labels {
        font-size: 0.8rem;
    }

    .calculator-range-value {
        font-size: 0.9rem;
    }

    /* Boutons du calculateur */
    .calculator-widget .btn {
        width: 100%;
        padding: 0.9rem;
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    /* Ajustement du calculateur */
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .calculator-input-group {
        margin-bottom: 1rem;
    }

    .calculator-range-value {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 24px;
        align-items: center;
        text-align: center;
        position: relative;
        padding: 0 40px; /* Plus d'espace pour le déplacement */
        overflow: visible; /* Permet au bouton de sortir si besoin */
    }

    #moveable-button {
        position: relative; /* Retour à relative pour rester dans le flux */
        transform: translateX(0);
        transition: transform 0.3s ease;
        width: 100%;
        max-width: 300px;
        padding: 0.75rem;
        font-size: 0.9rem;
        display: block;
        box-sizing: border-box;
    }

    /* Déplacement à gauche */
    #moveable-button.move-left {
        transform: translateX(-10px); /* Déplacement significatif */
    }

    /* Déplacement à droite */
    #moveable-button.move-right {
        transform: translateX(100px); /* Déplacement significatif */
    }

    /* Ajustement des titres et textes */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    /* Espacement général */
    .container {
        padding: 0 1rem;
    }

    /* Correction des chevauchements */
    .crypto-ticker {
        margin-top: 1rem;
    }

    .hero-media {
        margin-top: 1.5rem;
    }

    .advantage-icon,
    .trust-icon,
    .security-badge i {
        color: var(--accent-blue) !important;
        background: rgba(138, 86, 255, 0.1) !important;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 400px;
        padding: 0 20px;
    }

    .hero-buttons .btn {
        width: 100%; /* Makes buttons full-width */
        max-width: 350px; /* Optionally limit max width */
        padding: 0.75rem;
        font-size: 1rem;
        margin: 0.5rem 0; /* Add some space between the buttons */
        text-align: center;
    }

    /* Ensure proper button styles on hover or focus */
    .hero-buttons .btn-primary:hover, 
    .hero-buttons .btn-outline:hover {
        transform: translateY(-3px); /* Optional hover effect */
    }
}


/* ============================================================================
   Pin mobile hamburger icon to the top-right corner
============================================================================ */
@media (max-width: 768px) {
    .mobile-toggle {
      /* only enlarge it */
      width: 1rem !important;
      height: 3rem !important;
      /* (optionally) make the icon itself bigger */
      font-size: 1.5rem !important;
    }
    /* Toujours afficher le bouton burger */
.mobile-toggle {
    display: block !important;
  }
  
  /* Le pinner en haut‑droite sur mobile */
  @media (max-width: 768px) {
    .mobile-toggle {
      position: fixed !important;
      top: 0 !important;
      right: 0 !important;
      /* (optionnel) ajuste la taille si besoin */
      width: 4rem !important;
      height: 4rem !important;
      padding: 0.5rem !important;
      z-index: 2000 !important;
      margin: 0 !important;
      transform: none !important;
    }
  }  
  }

/* ============================================================================
   Show hamburger only on mobile, hide on desktop
============================================================================ */
/* Hide burger by default (desktop) */
.mobile-toggle {
  display: none !important;
}

/* Show & pin burger only on mobile screens */
@media (max-width: 768px) {
  .mobile-toggle {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 4rem !important;
    height: 4rem !important;
    padding: 0.5rem !important;
    z-index: 2000 !important;
    margin: 0 !important;
    transform: none !important;
  }
}

/* Styles moved from inscription.html */
.logo img {
    height: 32px !important;
    width: auto !important;
    max-height: 32px !important;
}
        :root {
            --primary-dark: #0a0e17;
            --secondary-dark: #1a1f2e;
            --card-bg: #1e2538;
            --accent-blue: #9333EA;
            --accent-purple: #8a56ff;
            --accent-green: #9333EA;
            --accent-orange: #ff9f43;
            --text-light: #f8fafc;
            --text-secondary: #94a3b8;
            --gradient-blue: linear-gradient(45deg, #9333EA, #9333EA);
            --gradient-purple: linear-gradient(45deg, #8a56ff, #9333EA);
            --gradient-accent: linear-gradient(45deg, #9333EA, #8a56ff);
            --error-red: #ff5e7a;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .container {
            max-width: 1600px;
            width: 90%;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: rgba(10, 14, 23, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 0.8rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
        }
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        .logo img {
            height: 45px;
        }
        nav {
            flex: 1;
            display: flex;
            justify-content: center;
        }
        nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        nav ul li {
            margin: 0 25px;
        }
        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
            font-size: 1.05rem;
            letter-spacing: 0.3px;
        }
        nav ul li a:hover {
            color: var(--accent-blue);
        }
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background: var(--gradient-accent);
            transition: width 0.3s ease;
        }
        nav ul li a:hover::after,
        nav ul li a.active::after {
            width: 100%;
        }
        .header-buttons {
            display: flex;
            gap: 20px;
        }
        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .btn-primary {
            background: var(--gradient-blue);
            color: white;
            box-shadow: 0 4px 15px rgba(131, 73, 224, 0.3);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(173, 58, 240, 0.4);
        }
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--accent-blue);
            color: var(--accent-blue);
        }
        .btn-outline:hover {
            background-color: var(--accent-blue);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }
        .btn-lg {
            padding: 1rem 2rem;
            font-size: 1.1rem;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        main {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 100px 0 60px;
            position: relative;
        }
        main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 10% 30%, rgba(138, 86, 255, 0.08), transparent 50%),
                       radial-gradient(circle at 90% 70%, rgba(138, 86, 255, 0.08), transparent 50%);
            z-index: 0;
        }
        .contact-wrapper {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 0;
            max-width: 1200px;
            position: relative;
            z-index: 1;
            margin: 60px 0px;
        }
        .contact-info {
            flex: 1;
            background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
            padding: 3rem;
            border-radius: 16px 0 0 16px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }
        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%1212151e"/><path d="M0 0L100 100" stroke="%23ffffff" stroke-width="0.5" stroke-opacity="0.05"/><path d="M100 0L0 100" stroke="%23ffffff" stroke-width="0.5" stroke-opacity="0.05"/></svg>');
            opacity: 0.3;
            z-index: 0;
        }
        .contact-info-content {
            position: relative;
            z-index: 1;
        }
        .container.header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
            max-width: 1300px;
            width: 920%;
            margin: 0 auto;
        }
        .container.header-content .logo img {
    height: 1px;   
    width: auto;    
    max-height: 10%;
}
        .contact-info h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .contact-info p {
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-secondary);
            max-width: 450px;
        }
        .benefits-list {
            margin-bottom: 2rem;
        }
        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        .benefit-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: rgba(138, 86, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--accent-blue);
            flex-shrink: 0;
        }
        .benefit-text {
            font-size: 1.05rem;
        }
        .benefit-item:nth-child(2) .benefit-icon {
            background-color: rgba(138, 86, 255, 0.1);
            color: var(--accent-purple);
        }
        .benefit-item:nth-child(3) .benefit-icon {
            background-color: rgba(138, 86, 255, 0.1);
            color: var(--accent-purple);
        }
        .contact-method {
            margin-top: auto;
        }
        .contact-method h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--text-light);
            font-weight: 600;
        }
        .contact-links {
            display: flex;
            gap: 1rem;
        }
        .contact-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            font-size: 1.3rem;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .contact-link:hover {
            transform: translateY(-5px);
            background-color: var(--accent-blue);
            color: var(--primary-dark);
            box-shadow: 0 10px 25px rgba(157, 58, 238, 0.3);
        }
        .contact-form-container {
            flex: 1;
            background-color: var(--card-bg);
            border-radius: 0 16px 16px 0;
            padding: 3rem;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            animation: fadeIn 0.8s ease forwards;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .contact-header {
            margin-bottom: 2rem;
        }
        .contact-header h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: var(--text-light);
        }
        .contact-header p {
            color: var(--text-secondary);
            font-size: 1.05rem;
        }
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        .form-group {
            position: relative;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-light);
        }
        .form-input {
            width: 100%;
            padding: 1rem 1.2rem;
            padding-left: 3rem;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 1rem;
            transition: all 0.3s ease;
            height: 54px;
        }
        .form-input:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 2px rgba(152, 56, 241, 0.2);
        }
        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }
        .form-icon {
            position: absolute;
            left: 1rem;
            top: 50% !important;
            transform: translateY(10%) !important;
            color: #903CFF !important;  /* ← your purple */
        }
        .form-select {
            width: 100%;
            padding: 1rem 1.2rem;
            padding-left: 3rem;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 1rem;
            transition: all 0.3s ease;
            height: 54px;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-5-5 1.5-1.5L8 8.5 11.5 5 13 6.5l-5 5z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
        }
        .form-select:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 2px rgba(141, 44, 233, 0.2);
        }
        .form-textarea {
            width: 100%;
            padding: 1rem 1.2rem;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 1rem;
            transition: all 0.3s ease;
            min-height: 120px;
            resize: vertical;
        }
        .form-textarea:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 2px rgba(156, 48, 245, 0.2);
        }
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-top: 1rem;
        }
        .checkbox-group input {
            width: 18px;
            height: 18px;
            accent-color: var(--accent-blue);
            margin-top: 3px;
        }
        .checkbox-group label {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.5;
        }
        .checkbox-group label a {
            color: var(--accent-blue);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .checkbox-group label a:hover {
            text-decoration: underline;
        }
        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            font-size: 1.1rem;
            background: var(--gradient-blue);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            margin-top: 1rem;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(148, 41, 236, 0.3);
        }
        .plan-selector {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .plan-option {
            position: relative;
        }
        .plan-option input {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }
        .plan-card {
            display: block;
            padding: 1.2rem 1rem;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }
        .plan-name {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }
        .plan-price {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .plan-option input:checked + .plan-card {
            border-color: var(--accent-blue);
            background-color: rgba(161, 71, 235, 0.1);
            box-shadow: 0 5px 15px rgba(156, 43, 231, 0.2);
        }
        .plan-option input:checked + .plan-card .plan-name {
            color: var(--accent-blue);
        }
        .range-slider {
            position: relative;
            margin-top: 0.5rem;
        }
        .range-slider input {
            width: 100%;
            height: 5px;
            -webkit-appearance: none;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            outline: none;
        }
        .range-slider input::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--accent-blue);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .range-slider input::-webkit-slider-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(182, 55, 241, 0.5);
        }
        .range-info {
            display: flex;
            justify-content: space-between;
            margin-top: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .amount-display {
            text-align: center;
            margin-top: 1rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-blue);
        }
        .particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }
        .particle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.3;
            pointer-events: none;
        }
        .success-message {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(10, 14, 23, 0.95);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s ease;
        }
        .success-message.show {
            opacity: 1;
            visibility: visible;
        }
        .success-content {
            background-color: var(--card-bg);
            border-radius: 16px;
            padding: 3rem;
            text-align: center;
            max-width: 500px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            animation: scaleIn 0.5s ease forwards;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        @keyframes scaleIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        .success-icon {
            font-size: 4rem;
            color: var(--accent-purple);
            margin-bottom: 1.5rem;
        }
        .success-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .success-message p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        .close-success {
            padding: 1rem 2rem;
            background: var(--gradient-accent);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .close-success:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(166, 44, 236, 0.3);
        }
        footer {
            background-color: var(--secondary-dark);
            padding: 2rem 0;
            position: relative;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .footer-logo {
            display: flex;
            align-items: center;
        }
        .footer-logo img {
            height: 30px;
        }
        .footer-links {
            display: flex;
            gap: 2rem;
        }
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--accent-blue);
        }
        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 1080px) {
            .contact-wrapper {
                flex-direction: column-reverse;
                max-width: 600px;
                margin: -25px 0px;
            }
            .contact-info {
                border-radius: 16px 16px 0 0;
                padding: 2.5rem;
            }
            .contact-form-container {
                border-radius: 0 0 16px 16px;
                padding: 2.5rem;
            }
            .plan-selector {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            #opt{
                display: none;
            }
            .plan-price {
                font-size: 12px;
            }
            .contact-info h2{
                font-size: 20px !important;
                line-height: 25px;
            }
            .checkbox-group label{
                font-size: 12px;
            }
            .submit-btn {
                width: 100%;
                padding: 16px;
                margin-top: 0px;
                font-size: 14px;
            }
            .contact-info p{
                font-size: 14px;
                line-height: 20px;
            }
            .benefit-text{
                font-size: 14px;
            }
            .contact-info {
                padding: 2.5rem 2.5rem 0.5rem 2.5rem;
            }
            .form-input {
                padding: 12px !important;
                padding-left: 40px !important;
                border-radius: 8px;
                height: initial !important;
                font-size: 14px;
            }
            .form-icon{
                font-size: 13px;
                top: 71%;
            }
            .plan-card{
                padding: 10px;
            }
            .form-row{
                gap: 13px;
            }
            .plan-name{
                margin-bottom: 0;
                font-size: 14px;
            }
            .contact-form-container{
                padding: 26px !important;
            }
            .contact-header h2 {
                font-size: 18px !important;
                margin-bottom: 4px;
                line-height: 34px;
            }
            .contact-header p{
                line-height: 20px;
                font-size: 14px !important;
            }
            .form-row {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .plan-selector {
                grid-template-columns: 1fr;
            }
            .mobile-toggle {
                display: block;
            }
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--secondary-dark);
                padding: 1rem;
                z-index: 1000;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
            }
            nav ul li {
                margin: 0.5rem 0;
            }
            .header-buttons {
                display: none;
            }
            .header-buttons.active {
                display: flex;
                flex-direction: column;
                width: 100%;
                gap: 1rem;
                padding: 1rem;
                background-color: var(--secondary-dark);
            }
            .footer-content {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }
            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }
            .contact-info h2 {
                font-size: 1.8rem;
            }
            .contact-header h2 {
                font-size: 1.8rem;
            }
        }


        .checkbox-group {
            display: flex;
            flex-direction: column; /* stack checkbox + text */
            align-items: flex-start;
            gap: 0.5rem;
            margin: 1.5rem 0;
          }
          
          .checkbox-group input[type="checkbox"] {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border: 2px solid var(--text-secondary);
            border-radius: 4px;
            position: relative;
            cursor: pointer;
          }
          
          /* draw the checkmark */
          .checkbox-group input[type="checkbox"]:checked::before {
            content: "";
            position: absolute;
            top: 3px;
            left: 7px;
            width: 5px;
            height: 10px;
            border: solid var(--accent-blue);
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
          }
          
          .checkbox-group label {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.4;
          }
          