*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #f59e0b; --primary-dark: #d97706; --primary-light: #fbbf24;
  --bg: #0a0a0f; --card: #111118; --border: rgba(255,255,255,0.07);
  --text: #ffffff; --muted: rgba(255,255,255,0.55); --muted2: rgba(255,255,255,0.7);
  --emerald: #10b981;
}
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Outfit', sans-serif; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.gradient-text { background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 40%, #d97706 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.badge { display: inline-flex; align-items: center; border-radius: 9999px; font-size: 0.7rem; font-weight: 600; padding: 0.3rem 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; border: 1px solid rgba(245,158,11,0.3); background: rgba(245,158,11,0.1); color: #fbbf24; }
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #000; font-weight: 700; font-size: 0.95rem; padding: 0.85rem 2rem; border-radius: 0.75rem; border: 1px solid #fcd34d; cursor: pointer; text-decoration: none; box-shadow: 0 0 20px rgba(251,191,36,0.3); transition: all 0.3s; font-family: 'Outfit', sans-serif; }
.btn-primary:hover { box-shadow: 0 0 35px rgba(251,191,36,0.55); transform: scale(1.02); }
.btn-ghost { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; background: rgba(255,255,255,0.04); color: #fff; font-weight: 600; font-size: 0.95rem; padding: 0.85rem 2rem; border-radius: 0.75rem; border: 1px solid rgba(255,255,255,0.18); cursor: pointer; text-decoration: none; transition: all 0.3s; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-sm { display: inline-flex; align-items: center; gap: 0.3rem; background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #000; font-weight: 700; font-size: 0.8rem; padding: 0.55rem 1.2rem; border-radius: 0.6rem; border: 1px solid #fcd34d; cursor: pointer; text-decoration: none; transition: all 0.3s; font-family: 'Outfit', sans-serif; }
.card { background: rgba(17,17,24,0.7); border: 1px solid var(--border); border-radius: 1.25rem; backdrop-filter: blur(10px); transition: border-color 0.3s, box-shadow 0.3s; }
.card:hover { border-color: rgba(245,158,11,0.15); box-shadow: 0 0 30px rgba(245,158,11,0.05); }
header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.1rem 0; background: rgba(10,10,15,0.85); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.05); transition: all 0.3s; }
header .inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-icon { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, #fbbf24, #d97706); display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 20px; height: 20px; color: #000; }
.logo-text { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.2rem; color: #fff; }
.logo-text span { color: var(--primary); }
nav { display: flex; align-items: center; gap: 2rem; }
nav a { color: var(--muted); font-size: 0.875rem; font-weight: 500; text-decoration: none; transition: color 0.2s; }
nav a:hover, nav a.active { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-actions .login { color: var(--muted); font-size: 0.875rem; font-weight: 500; text-decoration: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; position: relative; z-index: 101; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }
.mobile-nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: rgba(10,10,15,0.97); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 1.5rem; flex-direction: column; gap: 1rem; z-index: 99; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: rgba(255,255,255,0.7); font-size: 1rem; text-decoration: none; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.page-hero { padding: 8rem 0 4rem; text-align: center; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(245,158,11,0.06) 0%, transparent 70%); pointer-events: none; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; margin: 1rem 0 1rem; }
.page-hero p { font-size: 1rem; color: var(--muted2); max-width: 580px; margin: 0 auto; line-height: 1.75; }
section.content { padding: 2rem 0 5rem; }
footer { background: rgba(255,255,255,0.01); border-top: 1px solid var(--border); padding: 2rem 0 1.5rem; margin-top: 2rem; }

.wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200; width: 56px; height: 56px; border-radius: 9999px; background: linear-gradient(135deg, #25D366, #128C7E); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 20px rgba(37,211,102,0.45); text-decoration: none; transition: all 0.3s; }
.wa-float:hover { transform: scale(1.1); }
@media (max-width: 900px) { nav { display: none; } .header-actions { display: none; } .hamburger { display: flex; } }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; }
.contact-card { padding: 2rem; }
.contact-icon { width: 56px; height: 56px; border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.contact-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; font-family: 'Outfit',sans-serif; }
.contact-card p { font-size: 0.875rem; color: var(--muted2); line-height: 1.75; margin-bottom: 1.25rem; }
.contact-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 600; padding: 0.75rem 1.5rem; border-radius: 0.75rem; text-decoration: none; transition: all 0.3s; }
.contact-link.whatsapp { background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.25); color: #25D366; }
.contact-link.whatsapp:hover { background: rgba(37,211,102,0.2); }
.contact-link.telegram { background: rgba(0,136,204,0.1); border: 1px solid rgba(0,136,204,0.25); color: #29b6f6; }
.contact-link.telegram:hover { background: rgba(0,136,204,0.2); }
.contact-link.email { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2); color: var(--primary); }
.contact-link.email:hover { background: rgba(245,158,11,0.15); }
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 3rem; }
.info-box { text-align: center; padding: 1.5rem; }
.info-box .val { font-size: 1.4rem; font-weight: 800; color: var(--primary); font-family: 'Outfit',sans-serif; margin-bottom: 0.3rem; }
.info-box .lbl { font-size: 0.8rem; color: var(--muted2); font-weight: 600; }
.trial-box { background: linear-gradient(135deg,rgba(245,158,11,0.08),rgba(251,191,36,0.04)); border: 1px solid rgba(245,158,11,0.15); border-radius: 1.5rem; padding: 2.5rem 2rem; text-align: center; margin-top: 3rem; }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } .info-grid { grid-template-columns: 1fr; } }

/* ===== LANGUAGE SWITCHER WIDGET ===== */
.ls-widget { position: relative; display: inline-flex; align-items: center; }
.ls-toggle { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 0.6rem; padding: 0.45rem 0.85rem; cursor: pointer; color: #fff; font-size: 0.8rem; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; transition: all 0.2s; white-space: nowrap; }
.ls-toggle:hover { background: rgba(255,255,255,0.08); border-color: rgba(245,158,11,0.4); color: var(--primary); }
.ls-toggle.ls-open { border-color: rgba(245,158,11,0.4); background: rgba(245,158,11,0.06); color: var(--primary); }
.ls-flag-icon { font-size: 1rem; line-height: 1; }
.ls-flag-fr::before { content: "🇫🇷"; }
.ls-flag-en::before { content: "🇬🇧"; }
.ls-flag-ar::before { content: "🇸🇦"; }
.ls-flag-es::before { content: "🇪🇸"; }
.ls-flag-de::before { content: "🇩🇪"; }
.ls-text { font-size: 0.78rem; font-weight: 700; }
.ls-menu { display: none; position: absolute; top: calc(100% + 0.45rem); right: 0; background: #13131c; border: 1px solid rgba(255,255,255,0.1); border-radius: 0.85rem; padding: 0.35rem; min-width: 170px; z-index: 9999; box-shadow: 0 12px 40px rgba(0,0,0,0.6); animation: lsDropIn 0.18s ease; }
.ls-menu.open { display: block; }
@keyframes lsDropIn { from { opacity: 0; transform: translateY(-8px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.ls-item { display: flex; align-items: center; gap: 0.6rem; padding: 0.55rem 0.75rem; border-radius: 0.55rem; cursor: pointer; transition: all 0.15s; font-size: 0.83rem; color: var(--muted2); font-family: 'Plus Jakarta Sans', sans-serif; }
.ls-item:hover { background: rgba(245,158,11,0.08); color: #fff; }
.ls-item.active { background: rgba(245,158,11,0.12); color: var(--primary); font-weight: 700; }
.ls-name-main { flex: 1; font-weight: 500; }
.ls-name-code { font-size: 0.72rem; font-weight: 800; color: var(--muted); opacity: 0.7; }
.ls-item.active .ls-name-code { color: var(--primary); opacity: 1; }
/* FOOTER FULL */
footer { background: rgba(0,0,0,0.5); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.875rem; color: var(--muted); max-width: 380px; line-height: 1.75; margin: 1.25rem 0; }
.footer-socials { display: flex; gap: 0.75rem; }
.social-btn { width: 38px; height: 38px; border-radius: 9999px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; transition: all 0.25s; text-decoration: none; color: #fff; }
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { background: var(--primary); color: #000; }
.footer-col h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 1.5rem; font-family: 'Outfit', sans-serif; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.footer-col ul a { font-size: 0.875rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--primary); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-bottom-right { display: flex; align-items: center; gap: 1.5rem; }
.footer-bottom-right span { font-size: 0.75rem; color: var(--muted); }
.footer-bottom-right strong { font-weight: 700; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } .footer-bottom { flex-direction: column; align-items: flex-start; } }


/* floating translator */
.lang-float{position:fixed;left:1.5rem;bottom:1.5rem;z-index:999999;pointer-events:auto;isolation:isolate;}
.lang-float-btn{display:flex;align-items:center;gap:.45rem;background:rgba(19,19,28,.96);border:1px solid rgba(255,255,255,.12);color:#fff;border-radius:9999px;padding:.7rem .9rem;cursor:pointer;box-shadow:0 10px 30px rgba(0,0,0,.35);font:600 .82rem "Plus Jakarta Sans",sans-serif;pointer-events:auto;-webkit-tap-highlight-color:transparent;touch-action:manipulation;user-select:none;}
.lang-float-btn:hover{border-color:rgba(245,158,11,.35);color:var(--primary);}
.lang-float-menu{display:none;position:absolute;bottom:calc(100% + .6rem);left:0;min-width:190px;background:#13131c;border:1px solid rgba(255,255,255,.1);border-radius:.9rem;padding:.35rem;box-shadow:0 12px 40px rgba(0,0,0,.6);z-index:1000000;pointer-events:auto;}
.lang-float-menu.open{display:block;}
.lang-float-item{width:100%;display:flex;align-items:center;gap:.65rem;background:none;border:none;color:var(--muted2);padding:.6rem .75rem;border-radius:.6rem;cursor:pointer;font:500 .83rem "Plus Jakarta Sans",sans-serif;text-align:left;}
.lang-float-item span:nth-child(2){flex:1;}
.lang-float-item strong{font-size:.72rem;opacity:.7;}
.lang-float-item:hover,.lang-float-item.active{background:rgba(245,158,11,.12);color:var(--primary);}
@media (max-width:900px){
  .header-access{display:none !important;}
  .lang-float{left:.85rem;bottom:calc(env(safe-area-inset-bottom, 0px) + .85rem);}
  .lang-float-btn{padding:.58rem .78rem;font-size:.76rem;gap:.38rem;border-radius:9999px;box-shadow:0 8px 22px rgba(0,0,0,.32);}
  .lang-float-menu{min-width:170px;}
}
@media (max-width:480px){
  .lang-float{left:.75rem;bottom:calc(env(safe-area-inset-bottom, 0px) + .7rem);}
  .lang-float-btn{padding:.52rem .72rem;font-size:.74rem;}
}