:root { --bg-base: #030712; --bg-surface: #0b1329; --bg-card: rgba(15, 23, 42, 0.75); --bg-card-hover: rgba(30, 41, 59, 0.85); --border: rgba(56, 189, 248, 0.16); --border-hover: rgba(56, 189, 248, 0.45); --accent-cyan: #38bdf8; --accent-blue: #3b82f6; --accent-purple: #8b5cf6; --accent-green: #10b981; --text-main: #f8fafc; --text-muted: #94a3b8; --glow-cyan: 0 0 35px rgba(56, 189, 248, 0.25); --glow-blue: 0 0 40px rgba(59, 130, 246, 0.25); --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; --font-mono: 'JetBrains Mono', monospace; } * { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font-main); } body { background-color: var(--bg-base); color: var(--text-main); overflow-x: hidden; line-height: 1.6; background-image: radial-gradient(circle at 10% 15%, rgba(59, 130, 246, 0.12) 0%, transparent 40%), radial-gradient(circle at 88% 20%, rgba(56, 189, 248, 0.1) 0%, transparent 45%), radial-gradient(circle at 50% 60%, rgba(139, 92, 246, 0.06) 0%, transparent 50%), linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px); background-size: 100% 100%, 100% 100%, 100% 100%, 48px 48px, 48px 48px; } .container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; } /* TOP ANNOUNCEMENT BAR (Style OVHcloud / OuiHeberg) */ .topbar { background: linear-gradient(90deg, #1e1b4b 0%, #0f172a 50%, #082f49 100%); border-bottom: 1px solid rgba(56, 189, 248, 0.2); padding: 0.5rem 1rem; font-size: 0.82rem; text-align: center; color: #cbd5e1; display: flex; align-items: center; justify-content: center; gap: 0.8rem; flex-wrap: wrap; } .topbar-badge { background: #10b981; color: #fff; font-size: 0.7rem; font-weight: 800; padding: 0.15rem 0.55rem; border-radius: 9999px; letter-spacing: 0.5px; text-transform: uppercase; } .topbar a { color: var(--accent-cyan); font-weight: 700; text-decoration: none; } .topbar a:hover { text-decoration: underline; } /* NAVBAR ENTERPRISE */ .navbar-wrapper { position: sticky; top: 0; z-index: 100; background: rgba(3, 7, 18, 0.85); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255, 255, 255, 0.07); } .navbar { display: flex; justify-content: space-between; align-items: center; height: 75px; } .logo { display: flex; align-items: center; gap: 0.65rem; font-size: 1.45rem; font-weight: 800; letter-spacing: -0.5px; text-decoration: none; color: var(--text-main); } .logo-tag { font-size: 0.65rem; font-family: var(--font-mono); padding: 0.2rem 0.5rem; border-radius: 6px; background: rgba(56, 189, 248, 0.12); border: 1px solid var(--border); color: var(--accent-cyan); font-weight: 700; } .nav-links { display: flex; align-items: center; gap: 1.8rem; } .nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.2s; } .nav-links a:hover, .nav-links a.active { color: var(--accent-cyan); } .nav-status { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.35rem 0.85rem; border-radius: 9999px; background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.25); color: #34d399 !important; font-size: 0.82rem !important; } .pulse-dot { width: 8px; height: 8px; background-color: #10b981; border-radius: 50%; box-shadow: 0 0 10px #10b981; animation: pulse 2s infinite; } @keyframes pulse { 0% { transform: scale(0.95); opacity: 0.8; } 50% { transform: scale(1.3); opacity: 1; } 100% { transform: scale(0.95); opacity: 0.8; } } .nav-actions { display: flex; align-items: center; gap: 0.8rem; } /* BUTTONS */ .btn { display: inline-flex; align-items: center; gap: 0.55rem; border-radius: 10px; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); font-size: 0.95rem; border: none; } .btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; } .btn-lg { padding: 0.95rem 2rem; font-size: 1.05rem; border-radius: 12px; } .btn-block { width: 100%; justify-content: center; padding: 0.85rem 1.5rem; } .btn-primary { background: linear-gradient(135deg, #2563eb 0%, #0284c7 100%); color: #fff; box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35); } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37, 99, 235, 0.55); } .btn-outline { background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border); color: var(--text-main); } .btn-outline:hover { background: rgba(56, 189, 248, 0.1); border-color: var(--accent-cyan); color: var(--accent-cyan); transform: translateY(-2px); } .btn-glass { background: rgba(15, 23, 42, 0.6); border: 1px solid rgba(255, 255, 255, 0.12); color: var(--text-main); backdrop-filter: blur(12px); } .btn-glass:hover { background: rgba(30, 41, 59, 0.8); border-color: var(--border-hover); transform: translateY(-2px); } /* HERO SECTION (Style EternalZero / OuiHeberg) */ .hero { padding: 5rem 0 3.5rem; text-align: center; position: relative; } .badge-flag { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1.1rem; border-radius: 9999px; background: rgba(56, 189, 248, 0.08); border: 1px solid var(--border); font-size: 0.85rem; font-weight: 600; color: var(--accent-cyan); margin-bottom: 2rem; } .hero h1 { font-size: 3.8rem; font-weight: 800; line-height: 1.12; letter-spacing: -1.5px; margin-bottom: 1.5rem; } .text-gradient { background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .hero-desc { font-size: 1.25rem; color: var(--text-muted); max-width: 720px; margin: 0 auto 2.5rem; font-weight: 400; } .hero-features-strip { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2.8rem; } .hero-feature-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.92rem; font-weight: 600; color: #e2e8f0; background: rgba(15, 23, 42, 0.6); padding: 0.45rem 1rem; border-radius: 9999px; border: 1px solid rgba(255, 255, 255, 0.08); } .hero-feature-item svg { width: 18px; height: 18px; color: var(--accent-cyan); } .hero-cta { display: flex; justify-content: center; gap: 1.2rem; margin-bottom: 4rem; flex-wrap: wrap; } /* STATS BAR */ .stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: 2rem 2.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; backdrop-filter: blur(16px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35); margin-bottom: 4rem; } .stat-item { text-align: center; } .stat-val { font-family: var(--font-mono); font-size: 2.2rem; font-weight: 800; color: var(--accent-cyan); margin-bottom: 0.3rem; } .stat-label { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; } /* SECTIONS */ .section { padding: 5rem 0; } .section-head { text-align: center; margin-bottom: 3.5rem; } .section-tag { font-family: var(--font-mono); font-size: 0.78rem; font-weight: 700; color: var(--accent-cyan); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.8rem; } .section-head h2 { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.8px; margin-bottom: 0.8rem; } .section-head p { font-size: 1.1rem; color: var(--text-muted); max-width: 620px; margin: 0 auto; } /* PRICING GRID (Style PlanetHoster / OuiHeberg) */ .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-bottom: 4rem; } .pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 22px; padding: 2.4rem; position: relative; backdrop-filter: blur(16px); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; } .pricing-card:hover { border-color: var(--border-hover); transform: translateY(-5px); box-shadow: var(--glow-cyan); } .pricing-card.featured { background: linear-gradient(180deg, rgba(30, 58, 138, 0.4) 0%, rgba(15, 23, 42, 0.85) 100%); border: 2px solid var(--accent-cyan); box-shadow: 0 0 35px rgba(56, 189, 248, 0.2); } .card-badge { display: inline-block; font-size: 0.72rem; font-family: var(--font-mono); font-weight: 700; padding: 0.25rem 0.65rem; border-radius: 6px; background: rgba(255, 255, 255, 0.08); color: var(--text-muted); margin-bottom: 1.2rem; width: fit-content; } .card-badge.highlight { background: rgba(56, 189, 248, 0.18); border: 1px solid var(--accent-cyan); color: var(--accent-cyan); } .pricing-card h3 { font-size: 1.55rem; font-weight: 800; margin-bottom: 0.5rem; } .card-desc { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1.8rem; min-height: 48px; } .price { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); } .price .amount { font-family: var(--font-mono); font-size: 3rem; font-weight: 800; letter-spacing: -1px; } .price .period { color: var(--text-muted); font-size: 0.92rem; } .features-list { list-style: none; margin-bottom: 2.2rem; display: flex; flex-direction: column; gap: 0.85rem; flex-grow: 1; } .features-list li { font-size: 0.92rem; color: var(--text-main); display: flex; align-items: center; gap: 0.65rem; } .features-list li span { color: var(--accent-cyan); font-weight: 800; } /* BENTO GRID ENTERPRISE (Style EternalZero / OVHcloud) */ .bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; margin-bottom: 4rem; } .bento-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 22px; padding: 2.5rem; backdrop-filter: blur(16px); transition: all 0.3s ease; display: flex; flex-direction: column; justify-content: space-between; } .bento-card:hover { border-color: var(--border-hover); transform: translateY(-4px); } .bento-card.col-8 { grid-column: span 8; } .bento-card.col-4 { grid-column: span 4; } .bento-card.col-6 { grid-column: span 6; } .bento-card.col-12 { grid-column: span 12; } .bento-icon { font-size: 2.2rem; margin-bottom: 1.2rem; } .bento-title { font-size: 1.45rem; font-weight: 800; margin-bottom: 0.6rem; } .bento-sub { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; } .bento-check-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.8rem; margin-top: 1.5rem; } .bento-check-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: #e2e8f0; } .bento-check-list li span { color: var(--accent-green); font-weight: 800; } /* TRUST STRIP */ .trust-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2.5rem; padding: 1.5rem 2rem; margin: 2rem auto 3.5rem; background: rgba(15, 23, 42, 0.45); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 18px; backdrop-filter: blur(12px); } .trust-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.92rem; font-weight: 600; color: var(--text-main); } .trust-item .trust-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; background: rgba(56, 189, 248, 0.12); border: 1px solid rgba(56, 189, 248, 0.25); color: var(--accent-cyan); } /* FREE BANNER */ .free-banner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; background: linear-gradient(90deg, rgba(37, 99, 235, 0.25) 0%, rgba(56, 189, 248, 0.18) 100%); border: 1px solid rgba(56, 189, 248, 0.35); border-radius: 18px; padding: 1.25rem 2rem; margin-bottom: 3rem; } .free-banner-content { display: flex; align-items: center; gap: 1.2rem; } .free-badge { background: #10b981; color: #fff; font-size: 0.75rem; font-weight: 800; padding: 0.3rem 0.75rem; border-radius: 9999px; letter-spacing: 0.5px; text-transform: uppercase; } .free-banner-text { font-size: 0.95rem; font-weight: 500; } .free-banner-text strong { color: var(--accent-cyan); } /* TABLEAU COMPARATIF */ .comparison-section { margin: 4.5rem 0; } .table-responsive { overflow-x: auto; border-radius: 18px; border: 1px solid var(--border); background: var(--bg-card); backdrop-filter: blur(16px); } .compare-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 0.92rem; } .compare-table th, .compare-table td { padding: 1.2rem 1.6rem; border-bottom: 1px solid rgba(255, 255, 255, 0.06); } .compare-table th { background: rgba(11, 17, 32, 0.85); font-weight: 700; color: var(--text-main); font-size: 0.95rem; } .compare-table tr:last-child td { border-bottom: none; } .compare-table tr:hover td { background: rgba(255, 255, 255, 0.02); } .check-green { color: #34d399; font-weight: 800; } .val-highlight { font-family: var(--font-mono); font-weight: 700; color: var(--accent-cyan); } /* FOOTER ENTERPRISE */ .footer-wrapper { background: #02040a; border-top: 1px solid rgba(255, 255, 255, 0.06); padding: 5rem 0 2.5rem; margin-top: 5rem; } .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; } .footer-brand p { font-size: 0.92rem; color: var(--text-muted); max-width: 320px; margin-top: 1.2rem; line-height: 1.6; } .footer-col h5 { font-size: 0.95rem; font-weight: 700; color: var(--text-main); margin-bottom: 1.3rem; letter-spacing: 0.5px; } .footer-col a, .footer-col p { display: block; color: var(--text-muted); text-decoration: none; font-size: 0.9rem; margin-bottom: 0.7rem; transition: color 0.2s; } .footer-col a:hover { color: var(--accent-cyan); } .footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.04); display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); font-size: 0.85rem; flex-wrap: wrap; gap: 1rem; } /* RESPONSIVE MOBILE */ @media (max-width: 1024px) { .bento-card.col-8, .bento-card.col-4, .bento-card.col-6 { grid-column: span 12; } .stats-bar { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { .navbar { height: auto; padding: 1rem 0; flex-direction: column; gap: 1rem; } .nav-links { flex-wrap: wrap; justify-content: center; gap: 0.8rem; } .hero h1 { font-size: 2.6rem; } .stats-bar { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; } }