:root{
  --bg:#ffffff;
  --surface:#ffffff;
  --surface-2:#f6f8fb;
  --text:#111827;
  --muted:#667085;
  --line:#e5e7eb;
  --primary:#2563eb;
  --primary-dark:#1d4ed8;
  --secondary:#eef2ff;
  --success:#16a34a;
  --shadow:0 12px 32px rgba(15,23,42,.08);
  --radius:18px;
  --container:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:linear-gradient(180deg,#ffffff 0%,#f9fbff 100%);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
button{font:inherit}
.container{max-width:var(--container);margin:0 auto;padding:0 20px}

h1,h2,h3{
  line-height:1.12;
  letter-spacing:-0.04em;
  margin:0 0 10px;
}

h1{font-size:clamp(2.3rem,5vw,4.3rem)}
h2{font-size:clamp(1.8rem,3vw,2.7rem)}
.h3{font-size:1.15rem;margin-bottom:8px}

.lead{font-size:1.06rem;color:var(--muted);max-width:760px}
.muted{color:var(--muted)}
.center{text-align:center}

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:transparent;
  border-bottom:1px solid transparent;
  box-shadow:none;
  backdrop-filter:blur(12px);
  transition:all .3s ease;
}

.site-header.scrolled{
  background:rgba(255,255,255,.92);
  border-bottom:1px solid rgba(229,231,235,.9);
  box-shadow:0 8px 30px rgba(15,23,42,.08);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:78px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  font-size:1.1rem;
  color:#fff;
}

.site-header.scrolled .brand{
  color:#111827;
}

.brand-badge{
  width:38px;
  height:38px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  color:#fff;
  font-weight:800;
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex:1;
  justify-content:center;
}

.nav a{
  color:rgba(255,255,255,.88);
  font-weight:600;
  position:relative;
}

.site-header.scrolled .nav a{
  color:#1f2937;
}

.nav a.active,
.nav a:hover{
  color:#fff;
}

.site-header.scrolled .nav a.active,
.site-header.scrolled .nav a:hover{
  color:var(--primary);
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:#2563eb;
  transition:width .25s ease;
}

.nav a:hover::after{
  width:100%;
}

.nav-dropdown{position:relative}

.nav-dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  min-width:250px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:10px;
  display:none;
}

.nav-dropdown:hover .nav-dropdown-menu{display:block}

.nav-dropdown-menu a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  color:#111827 !important;
}

.nav-dropdown-menu a:hover{
  background:var(--surface-2);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:nowrap;
}

.language-switcher{
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px;
  background:#f8fbff;
  border:1px solid #e3ebfb;
  border-radius:16px;
}

.lang-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border:1px solid transparent;
  background:#ffffff;
  color:#111827;
  border-radius:12px;
  cursor:pointer;
  font-weight:700;
  font-size:14px;
  line-height:1;
  transition:all .25s ease;
  box-shadow:0 4px 12px rgba(15,23,42,.04);
}

.lang-btn img{
  width:18px;
  height:18px;
  object-fit:cover;
  border-radius:50%;
  flex-shrink:0;
  border:1px solid #e5e7eb;
}

.lang-btn:hover{
  transform:translateY(-1px);
  border-color:#d7e3ff;
  background:#f8fbff;
}

.lang-btn.active{
  background:linear-gradient(135deg,#0f172a,#1e293b);
  color:#ffffff;
  border-color:#0f172a;
  box-shadow:0 10px 20px rgba(15,23,42,.18);
}

.lang-btn.active img{
  border-color:rgba(255,255,255,.25);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:14px;
  padding:12px 18px;
  font-weight:700;
  border:1px solid transparent;
  transition:.25s ease;
  box-shadow:0 8px 20px rgba(15,23,42,.08);
}

.btn:hover{transform:translateY(-1px)}

.btn-primary{
  background:linear-gradient(135deg,#2563eb,#4f46e5);
  color:#fff;
}

.btn-primary:hover{
  background:linear-gradient(135deg,#1d4ed8,#4338ca);
  box-shadow:0 12px 25px rgba(37,99,235,.25);
}

.btn-secondary{
  background:#fff;
  border-color:var(--line);
  color:var(--text);
}

.btn-secondary:hover{
  background:var(--surface-2);
}

.site-header .btn-secondary{
  background:rgba(255,255,255,.10);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
}

.site-header .btn-secondary:hover{
  background:rgba(255,255,255,.16);
}

.site-header.scrolled .btn-secondary{
  background:#fff;
  color:#111827;
  border-color:#e5e7eb;
}

.btn-block{width:100%}

.whatsapp-btn{
  background:#25D366 !important;
  border:1px solid #25D366 !important;
  color:#ffffff !important;
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
}

.whatsapp-btn:hover{
  background:#1ebe5d !important;
  border-color:#1ebe5d !important;
}

.whatsapp-btn img{
  width:18px !important;
  height:18px !important;
  max-width:18px !important;
  object-fit:contain !important;
  flex-shrink:0 !important;
}

.whatsapp-header{
  padding:10px 14px;
  font-size:.9rem;
  white-space:nowrap;
}

.menu-toggle{
  width:42px;
  height:42px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  background:#fff;
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  cursor:pointer;
}

.menu-toggle span{
  width:18px;
  height:2px;
  background:#111827;
  display:block;
  border-radius:2px;
}

.mobile-menu{
  display:none;
  padding:10px 0 18px;
  border-top:1px solid var(--line);
}

.mobile-menu a{
  display:block;
  padding:12px 4px;
  border-bottom:1px dashed #eef2f7;
  font-weight:600;
}

/* HERO PREMIUM */
.hero-banner{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding-top:110px;
  background:
    linear-gradient(rgba(5,10,25,.48), rgba(5,10,25,.72)),
    url('images/hero-home.jpg') center center / cover no-repeat;
  animation:heroZoom 20s ease-in-out infinite alternate;
}

.hero-banner::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.06), transparent 20%),
    radial-gradient(circle at 20% 30%, rgba(37,99,235,.22), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(124,58,237,.18), transparent 28%);
  z-index:1;
  pointer-events:none;
}

.hero-banner-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.36), rgba(0,0,0,.14));
  z-index:2;
}

.hero-banner-content{
  position:relative;
  z-index:3;
  max-width:820px;
  color:#fff;
  padding-top:40px;
  padding-bottom:40px;
  animation:fadeHero 1s ease;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#1d4ed8;
  background:linear-gradient(135deg,#eff6ff,#eef2ff);
  border:1px solid #dbeafe;
  border-radius:999px;
  padding:8px 14px;
  font-size:.85rem;
  font-weight:700;
}

.hero-banner .kicker{
  color:#fff;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(8px);
}

.hero-banner h1{
  color:#fff;
  font-size:clamp(3rem,6vw,6rem);
  line-height:.98;
  letter-spacing:-.055em;
  margin-bottom:20px;
  max-width:900px;
  font-weight:900;
}

.hero-subtext{
  font-size:1.14rem;
  line-height:1.9;
  color:rgba(255,255,255,.86);
  max-width:700px;
  margin:0 0 18px;
}

.hero-benefits{
  margin-top:24px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  width:100%;
}

.hero-benefits span{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  padding:9px 15px;
  border-radius:999px;
  font-size:.88rem;
  font-weight:600;
  backdrop-filter:blur(10px);
  box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.hero-btns{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.hero-btns .btn{
  min-width:190px;
  padding:15px 24px;
  border-radius:16px;
  font-weight:800;
}

.hero-btns .btn-primary{
  box-shadow:0 18px 38px rgba(37,99,235,.28);
}

.hero-btns .btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 24px 44px rgba(37,99,235,.36);
}

.hero-btns .btn-secondary{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  backdrop-filter:blur(10px);
}

.hero-btns .btn-secondary:hover{
  background:rgba(255,255,255,.16);
}

.hero-stats{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:34px;
}

.hero-stat{
  min-width:170px;
  padding:18px 20px;
  border-radius:20px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
  box-shadow:0 14px 30px rgba(0,0,0,.14);
}

.hero-stat strong{
  display:block;
  color:#fff;
  font-size:1.05rem;
  font-weight:800;
  margin-bottom:5px;
}

.hero-stat span{
  color:rgba(255,255,255,.74);
  font-size:.92rem;
}

.trust-line{
  margin-top:22px;
  color:rgba(255,255,255,.72);
  font-size:.95rem;
  letter-spacing:.01em;
}

.hero-scroll-indicator{
  position:absolute;
  bottom:28px;
  left:50%;
  transform:translateX(-50%);
  width:30px;
  height:50px;
  border:1.5px solid rgba(255,255,255,.42);
  border-radius:20px;
  z-index:3;
  display:flex;
  justify-content:center;
  padding-top:8px;
}

.hero-scroll-indicator span{
  width:5px;
  height:10px;
  border-radius:10px;
  background:#fff;
  animation:scrollDot 1.6s infinite;
}

/* GENERAL LAYOUT */
.grid,.hero-grid,.footer-grid{display:grid;gap:24px}
.hero-grid{grid-template-columns:1.08fr .92fr;align-items:center}

.section{
  padding:70px 0;
  position:relative;
}

.section::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:1px;
  background:linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.section-sm{padding:26px 0}

.logo-strip,.flag-list,.pill-list,.btns{display:flex;flex-wrap:wrap;gap:12px}

.logo-item,.flag,.pill{
  padding:11px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  font-weight:600;
}

.flag{gap:8px;display:inline-flex;align-items:center}

.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  transition:transform .25s ease, box-shadow .25s ease;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 45px rgba(15,23,42,.12);
}

.pad{padding:24px}

.hero-panel{padding:20px}

.screen{
  background:#111827;
  border-radius:20px;
  padding:16px;
  color:#fff;
  min-height:400px;
  box-shadow:0 22px 44px rgba(15,23,42,.18);
}

.screen-top{display:flex;gap:8px;margin-bottom:18px}
.dot{width:10px;height:10px;border-radius:50%;background:#9ca3af}
.screen-body{display:grid;gap:18px}
.bar{height:18px;border-radius:999px;background:linear-gradient(90deg,#374151,#4b5563);width:60%}

.poster-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.poster{
  height:190px;
  border-radius:16px;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  background-size:cover;
  background-position:center;
  transition:.3s ease;
}
.poster:hover{transform:scale(1.05);box-shadow:0 10px 25px rgba(0,0,0,.2)}

.stat-row{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.stat{background:#1f2937;border-radius:14px;padding:14px;display:grid;gap:4px}

.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}

.article-thumb{
  height:180px;
  background:linear-gradient(135deg,#dbeafe,#eef2ff);
  border-radius:18px 18px 0 0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  transition:transform .4s ease;
}

.article-body{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.article-card{overflow:hidden;height:100%}
.article-card:hover .article-thumb{transform:scale(1.05)}

.feature-card{
  position:relative;
  overflow:hidden;
  border:1px solid #e6eaf2;
  border-radius:24px;
  background:
    radial-gradient(circle at top right, rgba(37,99,235,.08), transparent 35%),
    linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  box-shadow:0 18px 45px rgba(15,23,42,.08);
  padding:30px;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.feature-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 55px rgba(37,99,235,.14);
  border-color:#c7d7fe;
}

.feature-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(37,99,235,.04), transparent 55%);
  pointer-events:none;
}

.feature-card .icon{
  width:64px;
  height:64px;
  border-radius:18px;
  display:grid;
  place-items:center;
  font-size:1.55rem;
  margin-bottom:18px;
  background:linear-gradient(135deg,#eef4ff 0%,#e9ecff 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}

.feature-card:nth-child(1) .icon{background:linear-gradient(135deg,#eff6ff 0%,#dbeafe 100%)}
.feature-card:nth-child(2) .icon{background:linear-gradient(135deg,#eef2ff 0%,#ddd6fe 100%)}
.feature-card:nth-child(3) .icon{background:linear-gradient(135deg,#fdf2f8 0%,#fbcfe8 100%)}

.feature-card .h3{
  font-size:1.55rem;
  line-height:1.2;
  margin-bottom:12px;
  color:#0f172a;
}

.feature-card .muted{
  font-size:1.02rem;
  line-height:1.75;
  color:#64748b;
  margin:0;
  max-width:30ch;
}

/* PRICING */
.price-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.price-card{position:relative}

.price{
  font-size:2.2rem;
  font-weight:900;
  letter-spacing:-.03em;
  margin-bottom:18px;
}

.price small{
  font-size:1rem;
  color:var(--muted);
  font-weight:600;
}

.checklist{
  list-style:none;
  padding:0;
  margin:0 0 22px;
  display:grid;
  gap:10px;
}

.checklist li{
  position:relative;
  padding-inline-start:24px;
}

.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--success);
  font-weight:900;
}

body.rtl .checklist li::before{left:auto;right:0}
body.rtl .checklist li{padding-inline-start:0;padding-inline-end:24px}

.badge{
  position:absolute;
  top:18px;
  right:18px;
  background:#eff6ff;
  color:#1d4ed8;
  padding:6px 10px;
  border-radius:999px;
  font-size:.8rem;
  font-weight:800;
}

body.rtl .badge{right:auto;left:18px}
.popular{border-color:#bfdbfe;box-shadow:0 18px 38px rgba(37,99,235,.14)}

.pricing-premium-section{position:relative}

.pricing-head .pricing-subtext{
  max-width:720px;
  margin:10px auto 0;
}

.pricing-premium{
  align-items:stretch;
  gap:28px;
}

.pricing-premium .price-card{
  position:relative;
  overflow:hidden;
  border:1px solid #e6eaf2;
  border-radius:24px;
  background:
    radial-gradient(circle at top right, rgba(37,99,235,.06), transparent 35%),
    linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  box-shadow:0 18px 45px rgba(15,23,42,.08);
  padding:30px;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.pricing-premium .price-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 55px rgba(15,23,42,.12);
  border-color:#c7d7fe;
}

.pricing-premium .price-card .h3{
  font-size:1.5rem;
  margin-bottom:12px;
  color:#0f172a;
}

.pricing-premium .price{
  font-size:2.8rem;
  line-height:1;
  font-weight:900;
  margin:12px 0 22px;
  color:#0f172a;
}

.pricing-premium .price small{
  font-size:1rem;
  font-weight:600;
  color:#64748b;
}

.pricing-premium .checklist{
  gap:12px;
  margin-bottom:28px;
}

.pricing-premium .checklist li{
  color:#475569;
  font-weight:500;
}

.pricing-premium .btn{
  margin-top:auto;
}

.pricing-premium .featured-plan{
  border:1px solid #bfd4ff;
  background:
    radial-gradient(circle at top right, rgba(37,99,235,.12), transparent 38%),
    linear-gradient(180deg,#ffffff 0%,#f3f7ff 100%);
  box-shadow:0 22px 60px rgba(37,99,235,.16);
  transform:scale(1.03);
}

.pricing-premium .featured-plan:hover{
  transform:scale(1.03) translateY(-6px);
}

.pricing-premium .badge{
  top:18px;
  right:18px;
  background:linear-gradient(135deg,#2563eb,#4f46e5);
  color:#fff;
  padding:7px 12px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.02em;
  box-shadow:0 10px 20px rgba(37,99,235,.22);
}

body.rtl .pricing-premium .badge{
  right:auto;
  left:18px;
}

/* HOW IT WORKS */
.steps{display:grid;gap:22px}

.step{
  position:relative;
  background:linear-gradient(180deg,#ffffff 0%,#f9fbff 100%);
  border:1px solid #e7ebf3;
  border-radius:24px;
  padding:26px 24px 24px 24px;
  box-shadow:0 14px 35px rgba(15,23,42,.06);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow:hidden;
}

.step:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 45px rgba(37,99,235,.10);
  border-color:#cfdcff;
}

.step::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:6px;
  height:100%;
  background:linear-gradient(180deg,#2563eb 0%,#7c3aed 100%);
  border-radius:24px 0 0 24px;
}

body.rtl .step::before{
  left:auto;
  right:0;
  border-radius:0 24px 24px 0;
}

.step .h3{
  font-size:1.2rem;
  margin-bottom:10px;
  color:#0f172a;
}

.step .muted{
  font-size:1.02rem;
  line-height:1.75;
  color:#64748b;
  margin:0;
}

.callout{
  background:linear-gradient(135deg,#eff6ff,#f5f3ff);
  border:1px solid #dbeafe;
  border-radius:22px;
  padding:26px;
}

.premium-callout{
  position:relative;
  background:linear-gradient(135deg,#eef4ff 0%,#f7f9ff 100%);
  border:1px solid #dbe5ff;
  border-radius:30px;
  padding:32px;
  box-shadow:0 18px 45px rgba(15,23,42,.08);
  overflow:hidden;
}

.premium-callout::after{
  content:"";
  position:absolute;
  top:-80px;
  right:-80px;
  width:220px;
  height:220px;
  background:radial-gradient(circle, rgba(37,99,235,.12) 0%, rgba(37,99,235,0) 70%);
  pointer-events:none;
}

body.rtl .premium-callout::after{
  right:auto;
  left:-80px;
}

.premium-callout .kicker{margin-bottom:16px}

.premium-callout .h3{
  font-size:2rem;
  line-height:1.2;
  margin-bottom:16px;
  max-width:520px;
}

.callout-text{
  max-width:560px;
  font-size:1.05rem;
  line-height:1.8;
  margin-bottom:26px;
  color:#64748b;
}

.premium-callout .pill-list{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:26px;
}

.premium-callout .pill{
  background:rgba(255,255,255,.95);
  border:1px solid #dfe7fb;
  padding:14px 18px;
  border-radius:999px;
  font-weight:700;
  color:#0f172a;
  box-shadow:0 8px 18px rgba(15,23,42,.04);
  transition:transform .2s ease, box-shadow .2s ease;
}

.premium-callout .pill:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 20px rgba(37,99,235,.08);
}

.callout-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.callout-actions .btn{
  min-width:170px;
}

.section .grid.grid-2 > div:first-child > h2{max-width:620px}
.section .grid.grid-2 > div:first-child > .kicker{margin-bottom:14px}

/* FAQ */
.faq-list{display:grid;gap:12px}
.faq-item{border:1px solid var(--line);border-radius:16px;overflow:hidden;background:#fff}

.faq-question{
  width:100%;
  text-align:start;
  background:#fff;
  border:0;
  padding:18px 20px;
  cursor:pointer;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.faq-answer{
  display:none;
  padding:0 20px 18px;
  color:var(--muted);
}

.faq-item.open .faq-answer{display:block}

.faq-premium-section{position:relative}

.faq-head .faq-subtext{
  max-width:760px;
  margin:10px auto 0;
}

.faq-premium-wrap{
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:28px;
  align-items:start;
}

.premium-faq-list{
  display:grid;
  gap:16px;
}

.premium-faq-list .faq-item{
  border:1px solid #e6eaf2;
  border-radius:22px;
  background:linear-gradient(180deg,#ffffff 0%,#f9fbff 100%);
  box-shadow:0 14px 35px rgba(15,23,42,.06);
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.premium-faq-list .faq-item:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 40px rgba(37,99,235,.08);
  border-color:#cfdcff;
}

.premium-faq-list .faq-question{
  width:100%;
  background:transparent;
  border:0;
  padding:22px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  cursor:pointer;
  text-align:left;
  font-size:1.05rem;
  font-weight:700;
  color:#0f172a;
}

body.rtl .premium-faq-list .faq-question{text-align:right}

.faq-icon{
  width:34px;
  height:34px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#eef4ff;
  color:#2563eb;
  font-size:1.25rem;
  font-weight:800;
  flex-shrink:0;
}

.premium-faq-list .faq-answer{
  display:none;
  padding:0 24px 22px;
  color:#64748b;
  line-height:1.8;
  font-size:.99rem;
}

.premium-faq-list .faq-item.open .faq-answer{display:block}
.premium-faq-list .faq-item.open .faq-icon{background:#2563eb;color:#fff}

.faq-side-card{
  background:linear-gradient(135deg,#eef4ff 0%,#f7f9ff 100%);
  border:1px solid #dbe5ff;
  border-radius:28px;
  padding:28px;
  box-shadow:0 18px 45px rgba(15,23,42,.08);
}

.faq-side-card .h3{
  font-size:1.7rem;
  margin:14px 0 12px;
}

.faq-side-text{
  font-size:1rem;
  line-height:1.75;
  margin-bottom:22px;
}

/* TESTIMONIALS */
.testimonials-section{
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
}

.testimonials-head{margin-bottom:36px}

.stars-row{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-bottom:18px;
  font-size:54px;
  line-height:1;
  color:#facc15;
}

.testimonials-head h2{margin-bottom:14px}

.testimonials-text{
  max-width:900px;
  margin:0 auto;
}

.testimonials-slider-wrap{
  display:flex;
  align-items:center;
  gap:18px;
}

.testimonials-slider {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: 22px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.testimonial-slide img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:22px;
  border:1px solid #e5e7eb;
  box-shadow:0 18px 40px rgba(15,23,42,.08);
  background:#fff;
  transition:transform .25s ease, box-shadow .25s ease;
}

.testimonial-slide img:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 50px rgba(15,23,42,.12);
}

.testimonials-nav{
  width:46px;
  height:46px;
  border-radius:50%;
  border:1px solid #dbe5ff;
  background:#ffffff;
  color:#111827;
  cursor:pointer;
  font-size:28px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.testimonials-nav:hover{
  background:#eef4ff;
}
@media (min-width: 769px) and (max-width: 1050px) {
  .testimonial-slide {
    flex: 0 0 calc((100% - 22px) / 2);
    min-width: calc((100% - 22px) / 2);
  }
}
@media (min-width: 1051px) {
  .testimonial-slide {
    flex: 0 0 calc((100% - 44px) / 3);
    min-width: calc((100% - 44px) / 3);
  }
}
/* FEATURES OVERVIEW */
.features-overview-section{
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
}

.features-overview-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.features-overview-content h2{
  margin:14px 0 24px;
  max-width:580px;
}

.overview-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:16px;
}

.overview-list li{
  position:relative;
  padding-left:30px;
  font-size:1.08rem;
  color:#475569;
  line-height:1.6;
  font-weight:500;
}

.overview-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  color:#111827;
  font-weight:800;
}

body.rtl .overview-list li{
  padding-left:0;
  padding-right:30px;
}

body.rtl .overview-list li::before{
  left:auto;
  right:0;
}

.features-overview-media{
  position:relative;
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.overview-main-image{
  width:100%;
  max-width:520px;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 24px 55px rgba(15,23,42,.14);
  border:1px solid #e5e7eb;
  background:#fff;
}

.overview-main-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.overview-floating-image{
  position:absolute;
  left:-20px;
  bottom:30px;
  width:180px;
  border-radius:24px;
  overflow:hidden;
  transform:rotate(-18deg);
  box-shadow:0 20px 45px rgba(15,23,42,.18);
  border:4px solid #fff;
  background:#fff;
}

.overview-floating-image img{
  width:100%;
  display:block;
  object-fit:cover;
}

body.rtl .overview-floating-image{
  left:auto;
  right:-20px;
  transform:rotate(18deg);
}

/* DOCS HUB */
.docs-hub-head{
  margin-bottom:36px;
}

.docs-device-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.docs-device-card{
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  border:1px solid #e6eaf2;
  border-radius:24px;
  padding:28px 20px;
  text-align:center;
  box-shadow:0 16px 40px rgba(15,23,42,.06);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.docs-device-card:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 50px rgba(37,99,235,.10);
  border-color:#cfdcff;
}

.docs-device-card img{
  width:92px;
  height:92px;
  object-fit:contain;
  margin:0 auto 16px;
  border-radius:20px;
}

.docs-device-card span{
  display:block;
  font-weight:700;
  color:#0f172a;
  line-height:1.5;
}

.page-list{display:grid;gap:16px}
.doc-list a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
}
.doc-list a:hover{
  border-color:#bfdbfe;
  background:#f8fbff;
}

/* REGIONS SLIDER */
.regions-slider-section{padding:8px 0 20px}
.regions-slider-wrap{display:flex;align-items:center;gap:16px}
.regions-slider{overflow:hidden;flex:1}
.regions-track{display:flex;gap:20px;transition:transform .5s ease;will-change:transform}
.region-slide{min-width:calc((100% - 40px) / 3);text-align:center;flex-shrink:0}
.region-slide img{width:100%;height:140px;object-fit:cover;border-radius:12px}
.region-slide p{margin-top:10px;color:var(--muted);font-style:italic}

.regions-nav{
  width:42px;
  height:42px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:50%;
  cursor:pointer;
  font-size:26px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.regions-nav:hover{background:var(--surface-2)}

/* FOOTER */
.footer{
  padding:55px 0 32px;
  background:#0f172a;
  color:#e5e7eb;
  margin-top:40px;
}

.footer .muted,.footer a{color:#cbd5e1}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:26px}
.footer h3{margin-bottom:10px}
.footer a{display:block;padding:4px 0}

/* FORMS */
.form-grid{display:grid;gap:16px}

.input,textarea,select{
  width:100%;
  padding:14px 14px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  font:inherit;
  color:var(--text);
}

textarea{min-height:140px;resize:vertical}

.notice{
  padding:14px 16px;
  background:#ecfdf3;
  color:#166534;
  border:1px solid #bbf7d0;
  border-radius:12px;
}

.table-like{display:grid;gap:12px}
.table-row{
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px;
  padding:16px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}

body.rtl{
  direction:rtl;
  text-align:right;
}

body.rtl .language-switcher{flex-direction:row-reverse}
body.rtl .nav-wrap,
body.rtl .nav,
body.rtl .hero-grid,
body.rtl .grid{direction:rtl}

/* ANIMATIONS */
@keyframes heroZoom{
  from{background-size:100%}
  to{background-size:110%}
}

@keyframes fadeHero{
  from{opacity:0;transform:translateY(25px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes scrollDot{
  0%{opacity:0;transform:translateY(0)}
  30%{opacity:1}
  100%{opacity:0;transform:translateY(14px)}
}

/* RESPONSIVE */
@media (max-width: 1050px){
  .nav{display:none}
  .menu-toggle{display:inline-flex}
  .mobile-menu.open{display:block}
  .grid-2,.footer-grid{grid-template-columns:1fr}
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .price-grid{grid-template-columns:1fr}
  .nav-wrap{min-height:74px}
  .nav-actions{margin-left:auto}
  body.rtl .nav-actions{margin-left:0;margin-right:auto}
  .language-switcher{flex-wrap:wrap;justify-content:center}
  .features-premium{grid-template-columns:repeat(2,1fr)}
  .pricing-premium{grid-template-columns:1fr}
  .pricing-premium .featured-plan{transform:none}
  .pricing-premium .featured-plan:hover{transform:translateY(-6px)}
  .premium-callout .h3{font-size:1.7rem}
  .faq-premium-wrap{grid-template-columns:1fr}
  .testimonial-slide{min-width:calc((100% - 22px) / 2)}
  .features-overview-grid{grid-template-columns:1fr;gap:34px}
  .features-overview-media{min-height:360px}
  .overview-main-image{
    width:100%;
    max-width:420px;
    margin:0 auto;
  }
  .overview-main-image img{
    width:100%;
    height:auto;
    object-fit:contain;
    display:block;
  }
  .overview-floating-image{
    left:10px;
    bottom:10px;
    width:150px;
  }
  body.rtl .overview-floating-image{right:10px}
  .docs-device-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width: 900px){
  .region-slide{min-width:calc((100% - 20px) / 2)}
  .hero-banner{
    min-height:86vh;
    background-position:center center;
  }
  .hero-banner-content{
    max-width:100%;
    padding-top:30px;
    padding-bottom:30px;
  }
}

@media (max-width: 768px){
  .language-switcher{
    gap:6px;
    padding:4px;
    border-radius:14px;
  }

  .lang-btn{
    padding:8px 10px;
    font-size:13px;
    gap:6px;
  }

  .lang-btn img{
    width:16px;
    height:16px;
  }

  .whatsapp-btn img{
    width:16px !important;
    height:16px !important;
  }

  .nav-actions{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:nowrap;
  }

  .whatsapp-header{
    padding:8px 10px !important;
    min-width:auto !important;
    font-size:.85rem !important;
    border-radius:12px !important;
  }

  .whatsapp-header span{display:none}

  .hero-banner{
    min-height:86vh;
    padding:90px 0 40px;
    animation:none;
  }

  .hero-banner h1{
    font-size:2.6rem;
    line-height:1.03;
  }

  .hero-subtext{
    font-size:1rem;
    line-height:1.7;
  }

  .hero-btns{
    flex-direction:column;
  }

  .hero-btns .btn{
    width:100%;
    min-width:unset;
  }

  .hero-stats{
    gap:12px;
  }

  .hero-stat{
    width:100%;
  }

  .hero-scroll-indicator{
    display:none;
  }

  .features-premium{
    grid-template-columns:1fr;
    gap:18px;
  }

  .feature-card{
    padding:24px;
    border-radius:20px;
  }

  .feature-card .icon{
    width:58px;
    height:58px;
    font-size:1.35rem;
    margin-bottom:14px;
  }

  .feature-card .h3{font-size:1.3rem}
  .feature-card .muted{
    font-size:.98rem;
    max-width:none;
  }

  .steps{gap:16px}

  .step{
    padding:22px 18px 20px 18px;
    border-radius:20px;
  }

  .premium-callout{
    padding:24px;
    border-radius:24px;
  }

  .premium-callout .h3{font-size:1.45rem}

  .callout-text{
    font-size:.98rem;
    line-height:1.7;
  }

  .premium-callout .pill{
    width:100%;
    justify-content:center;
    text-align:center;
  }

  .callout-actions{
    flex-direction:column;
  }

  .callout-actions .btn{
    width:100%;
    min-width:unset;
  }

  .premium-faq-list .faq-question{
    padding:18px 18px;
    font-size:1rem;
  }

  .premium-faq-list .faq-answer{
    padding:0 18px 18px;
  }

  .faq-side-card{
    padding:22px;
    border-radius:22px;
  }

  .faq-side-card .h3{font-size:1.4rem}

  .stars-row{font-size:40px}

  .testimonial-slide{min-width:100%}

  .testimonial-slide img{height:360px}

  .testimonials-slider-wrap{gap:10px}

  .testimonials-nav{
    width:38px;
    height:38px;
    font-size:22px;
  }

  .overview-list li{font-size:1rem}

  .features-overview-media{min-height:300px}

  .overview-main-image{border-radius:22px}

  .overview-floating-image{
    width:120px;
    border-radius:18px;
    transform:rotate(-12deg);
  }

  body.rtl .overview-floating-image{
    transform:rotate(12deg);
  }
}

@media (max-width: 640px){
  .nav-actions .btn{display:none}
  .section{padding:54px 0}
  .container{padding:0 16px}
  h1{font-size:2rem;line-height:1.15}
  h2{font-size:1.6rem;line-height:1.2}
  .lead{font-size:.98rem}
  .btn{width:100%}
  .btns{flex-direction:column}
  .logo-strip,.flag-list,.pill-list{gap:10px}
  .logo-item,.flag,.pill{width:100%;justify-content:center;text-align:center}
  .regions-slider-wrap{gap:10px}
  .region-slide{min-width:100%}
  .region-slide img{height:180px}
  .regions-nav{width:36px;height:36px;font-size:22px}
  .hero-banner{
    min-height:78vh;
    padding:30px 0;
  }
  .hero-banner h1{
    font-size:2.2rem;
    line-height:1.12;
  }
  .hero-subtext{
    font-size:.98rem;
    line-height:1.7;
  }
  .hero-benefits{gap:10px}
  .hero-benefits span{
    font-size:.84rem;
    padding:7px 12px;
  }
  .docs-device-grid{grid-template-columns:1fr}
  .docs-device-card{padding:22px 16px}
}
/* =========================
   MOBILE FINAL OPTIMIZATION
   ========================= */

@media (max-width: 768px) {
  .container {
    padding: 0 14px;
  }

  .site-header {
    backdrop-filter: blur(12px);
  }

  .nav-wrap {
    min-height: 70px;
    gap: 10px;
  }

  .brand {
    font-size: 1rem;
    gap: 8px;
    min-width: 0;
  }

  .brand-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .nav-actions {
    gap: 8px;
    margin-left: auto;
  }

  .language-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 12px;
    flex-wrap: nowrap;
  }

  .lang-btn {
    padding: 7px 8px;
    min-width: unset;
    border-radius: 10px;
  }

  .lang-btn span {
    display: none;
  }

  .lang-btn img {
    width: 16px;
    height: 16px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .mobile-menu {
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid #e5e7eb;
    padding: 8px 0 14px;
  }

  .mobile-menu a {
    padding: 13px 4px;
    font-size: 0.98rem;
  }

  .hero-banner {
    min-height: 88vh;
    padding: 92px 0 34px;
    align-items: center;
    background-position: center center;
    animation: none;
  }

  .hero-banner-content {
    max-width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero-banner h1 {
    font-size: clamp(2.1rem, 8vw, 2.9rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
    max-width: 100%;
  }

  .hero-subtext {
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 100%;
    margin-bottom: 14px;
  }

  .hero-benefits {
    gap: 8px;
    margin-top: 16px;
  }

  .hero-benefits span {
    font-size: 0.8rem;
    padding: 7px 11px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-btns .btn {
    width: 100%;
    min-width: unset;
    padding: 14px 18px;
  }

  .hero-stats {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-stat {
    width: 100%;
    min-width: unset;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .hero-stat strong {
    font-size: 0.98rem;
  }

  .hero-stat span {
    font-size: 0.86rem;
  }

  .trust-line {
    margin-top: 14px;
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .section {
    padding: 46px 0;
  }

  .section-sm {
    padding: 20px 0;
  }

  h2 {
    font-size: 1.65rem;
    line-height: 1.12;
  }

  .lead {
    font-size: 0.97rem;
    line-height: 1.7;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .price-grid,
  .features-overview-grid,
  .faq-premium-wrap,
  .support-wrap,
  .contact-wrap,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .article-thumb {
    height: 190px;
  }

  .article-body {
    padding: 16px;
  }

  .feature-card,
  .pricing-premium .price-card,
  .premium-callout,
  .faq-side-card,
  .support-form-card,
  .support-side-card,
  .contact-form-card,
  .contact-side-card,
  .docs-device-card {
    border-radius: 20px;
  }

  .feature-card,
  .pricing-premium .price-card,
  .premium-callout,
  .faq-side-card {
    padding: 22px;
  }

  .pricing-premium .featured-plan {
    transform: none !important;
  }

  .pricing-premium .featured-plan:hover {
    transform: translateY(-4px) !important;
  }

  .pricing-premium .price {
    font-size: 2.2rem;
  }

  .callout-actions,
  .contact-quick-actions,
  .support-quick-actions {
    flex-direction: column;
    gap: 10px;
  }

  .callout-actions .btn,
  .contact-quick-actions .btn,
  .support-quick-actions .btn {
    width: 100%;
    min-width: unset;
  }

  .overview-list {
    gap: 12px;
  }

  .overview-list li {
    font-size: 0.98rem;
    padding-left: 24px;
  }

  body.rtl .overview-list li {
    padding-left: 0;
    padding-right: 24px;
  }

  .features-overview-media {
    min-height: auto;
  }

  .overview-main-image {
    max-width: 100%;
    border-radius: 20px;
  }

  .overview-floating-image {
    width: 110px;
    bottom: 8px;
    left: 8px;
    border-radius: 16px;
    transform: rotate(-10deg);
  }

  body.rtl .overview-floating-image {
    left: auto;
    right: 8px;
    transform: rotate(10deg);
  }

  .docs-hero,
  .support-hero,
  .contact-hero {
    padding-top: 115px !important;
    padding-bottom: 50px !important;
    min-height: auto;
  }

  .docs-hero {
    height: 220px !important;
  }

  .docs-device-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .docs-device-card {
    padding: 20px 16px;
  }

  .docs-device-card img {
    width: 78px;
    height: 78px;
  }

  .docs-bottom-links a {
    padding: 16px 16px;
    border-radius: 16px;
  }

  .testimonials-slider-wrap,
  .regions-slider-wrap {
    gap: 10px;
  }

  .testimonial-slide {
    min-width: 100% !important;
  }

  .testimonial-slide img {
    height: 320px;
    border-radius: 18px;
  }

  .testimonials-nav,
  .regions-nav {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .region-slide {
    min-width: 100% !important;
  }

  .region-slide img {
    height: 170px;
    border-radius: 12px;
  }

  .faq-question {
    padding: 17px 16px !important;
    font-size: 0.98rem !important;
  }

  .faq-answer {
    padding: 0 16px 16px !important;
    font-size: 0.94rem !important;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .input,
  textarea,
  select {
    padding: 13px 13px;
    border-radius: 12px;
    font-size: 16px;
  }

  .footer {
    padding: 42px 0 24px;
  }

  .footer-grid {
    gap: 18px;
  }

  .footer a {
    padding: 5px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-badge {
    width: 32px;
    height: 32px;
  }

  .hero-banner {
    min-height: 84vh;
    padding-top: 88px;
    padding-bottom: 28px;
  }

  .hero-banner h1 {
    font-size: 1.95rem;
  }

  .hero-subtext {
    font-size: 0.94rem;
  }

  .hero-benefits span {
    font-size: 0.77rem;
    padding: 6px 10px;
  }

  .hero-stat {
    padding: 13px 14px;
  }

  h2 {
    font-size: 1.5rem;
  }

  .article-thumb {
    height: 170px;
  }

  .testimonial-slide img {
    height: 280px;
  }

  .docs-hero {
    height: 200px !important;
  }

  .docs-device-card span {
    font-size: 0.93rem;
  }

  .support-form-card,
  .support-side-card,
  .contact-form-card,
  .contact-side-card {
    padding: 18px;
  }
}
/* DOCUMENTATION MOBILE FIX */
@media (max-width:768px){

  .site-header{
    padding:10px 0;
  }

  .brand span:last-child{
    font-size:1rem;
  }

  .language-switcher{
    gap:3px;
    padding:3px;
  }

  .lang-btn{
    width:32px;
    height:32px;
    padding:0;
    border-radius:10px;
  }

  .lang-btn span{
    display:none;
  }

  .lang-btn img{
    width:15px;
    height:15px;
  }

  .menu-toggle{
    width:42px;
    height:42px;
  }

  .docs-hero{
    height:auto !important;
    min-height:220px;
    padding:105px 0 35px !important;
    display:flex;
    align-items:center;
  }

  .docs-hero-overlay h1{
    font-size:2rem !important;
    line-height:1.05;
    margin-bottom:14px;
  }

  .docs-hero-overlay p{
    font-size:1rem;
    line-height:1.55;
    max-width:320px;
    margin:auto;
  }

  .docs-hub-section{
    padding-top:28px !important;
  }

  .docs-hub-head{
    margin-bottom:18px !important;
  }

  .docs-hub-head .muted{
    font-size:1rem;
    line-height:1.5;
    max-width:300px;
    margin:auto;
  }

  .premium-callout{
    margin-top:18px;
    padding:22px !important;
    border-radius:18px;
  }

  .premium-callout p{
    font-size:1rem;
    line-height:1.7;
  }

}
/* ULTRA PREMIUM MOBILE HEADER */
@media (max-width:768px){

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  background:rgba(8,15,35,.72);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.nav-wrap{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  gap:0;
}

.brand span:last-child{
  display:none;   /* cache StreamWave */
}

.brand-badge{
  width:38px;
  height:38px;
  font-size:1rem;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(37,99,235,.25);
}

.nav-actions{
  gap:8px;
}

.language-switcher{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:4px;
  gap:4px;
}

.lang-btn{
  width:34px;
  height:34px;
  border-radius:10px;
  padding:0;
  background:transparent;
}

.lang-btn img{
  width:16px;
  height:16px;
}

.lang-btn span{
  display:none;
}

.lang-btn.active{
  background:#ffffff;
}

.menu-toggle{
  width:42px;
  height:42px;
  border-radius:14px;
  background:#ffffff;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.menu-toggle span{
  background:#111827;
}

.mobile-menu{
  margin-top:72px;
  background:#ffffff;
  border-radius:0 0 18px 18px;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
  padding:10px 16px 18px;
}

.mobile-menu a{
  padding:14px 4px;
  border-bottom:1px solid #f1f5f9;
  font-weight:600;
}

.mobile-menu a:last-child{
  border-bottom:none;
}

body{
  padding-top:72px;
}

}
/* DEVICE PILLS - DESKTOP + MOBILE */
.logo-strip{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:14px;
  width:100%;
  margin:0 auto;
}

.logo-item{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid #dbe5ff;
  font-weight:700;
  font-size:.95rem;
  color:#0f172a;
  background:linear-gradient(135deg,#ffffff 0%,#f8fbff 100%);
  box-shadow:0 8px 20px rgba(15,23,42,.05);
  transition:all .25s ease;
}

.logo-item:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(37,99,235,.12);
  border-color:#bfd4ff;
}

/* Couleurs différentes par bouton */
.logo-item:nth-child(1){
  background:linear-gradient(135deg,#eef4ff 0%,#dbeafe 100%);
}

.logo-item:nth-child(2){
  background:linear-gradient(135deg,#eefdf3 0%,#dcfce7 100%);
}

.logo-item:nth-child(3){
  background:linear-gradient(135deg,#fff1f2 0%,#ffe4e6 100%);
}

.logo-item:nth-child(4){
  background:linear-gradient(135deg,#fff7ed 0%,#ffedd5 100%);
}

.logo-item:nth-child(5){
  background:linear-gradient(135deg,#f5f3ff 0%,#ede9fe 100%);
}

.logo-item:nth-child(6){
  background:linear-gradient(135deg,#ecfeff 0%,#cffafe 100%);
}

@media (max-width:768px){
  .logo-strip{
    gap:10px;
    justify-content:center;
  }

  .logo-item{
    padding:10px 14px;
    font-size:.88rem;
  }
}
.floating-whatsapp{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#25D366;
  color:#fff;
  padding:12px 16px;
  border-radius:999px;
  box-shadow:0 14px 30px rgba(37,211,102,.28);
  font-weight:800;
  border:1px solid #25D366;
  transition:all .25s ease;
}

.floating-whatsapp:hover{
  transform:translateY(-2px) scale(1.02);
  background:#1ebe5d;
  border-color:#1ebe5d;
}

.floating-whatsapp img{
  width:20px;
  height:20px;
  object-fit:contain;
}

@media (max-width:768px){
  .floating-whatsapp{
    right:14px;
    bottom:14px;
    padding:11px 14px;
    gap:8px;
  }

  .floating-whatsapp span{
    display:none;
  }

  .floating-whatsapp img{
    width:22px;
    height:22px;
  }
}
.hero-cta-group{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn-whatsapp{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#25D366;
  color:#fff;
  border-radius:14px;
  padding:14px 22px;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 14px 28px rgba(37,211,102,.22);
  transition:.25s ease;
}

.btn-whatsapp:hover{
  background:#1ebe5d;
  transform:translateY(-2px);
}

.btn-whatsapp img{
  width:20px;
  height:20px;
}

.btn-whatsapp.large{
  padding:16px 28px;
}

@media(max-width:768px){

.hero-cta-group{
  flex-direction:column;
}

.hero-cta-group .btn{
  width:100%;
  justify-content:center;
}

}
.docs-cta-section{
  padding:70px 0;
  background:linear-gradient(180deg,#f8fbff 0%,#eef5ff 100%);
  border-top:1px solid #e5e7eb;
}

.docs-cta-buttons{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.docs-cta-buttons .btn{
  padding:14px 22px;
  border-radius:14px;
}

.btn-whatsapp{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#25D366;
  color:#fff;
  font-weight:800;
}

.btn-whatsapp:hover{
  background:#1ebe5d;
}
.grid.grid-3 a.card{
  text-decoration:none;
  transition:.25s ease;
}

.grid.grid-3 a.card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(15,23,42,.10);
  border-color:#c7d2fe;
}

/* RTL FIX - PRICING FEATURES */
body.rtl .pricing-premium .price-card ul li,
html[dir="rtl"] .pricing-premium .price-card ul li,
body.rtl .price-card ul li,
html[dir="rtl"] .price-card ul li {
  text-align: right !important;
  padding-left: 0 !important;
  padding-right: 26px !important;
}

body.rtl .pricing-premium .price-card ul li::before,
html[dir="rtl"] .pricing-premium .price-card ul li::before,
body.rtl .price-card ul li::before,
html[dir="rtl"] .price-card ul li::before {
  left: auto !important;
  right: 0 !important;
}

@media (max-width: 768px) {
  body.rtl .pricing-premium .price-card ul li,
  html[dir="rtl"] .pricing-premium .price-card ul li,
  body.rtl .price-card ul li,
  html[dir="rtl"] .price-card ul li {
    padding-right: 24px !important;
    padding-left: 0 !important;
  }

  body.rtl .pricing-premium .price-card ul li::before,
  html[dir="rtl"] .pricing-premium .price-card ul li::before,
  body.rtl .price-card ul li::before,
  html[dir="rtl"] .price-card ul li::before {
    right: 0 !important;
    left: auto !important;
  }
}
/* SLIDERS FIX RTL */
body.rtl .regions-slider,
body.rtl .testimonials-slider,
html[dir="rtl"] .regions-slider,
html[dir="rtl"] .testimonials-slider {
  direction: ltr !important;
}

body.rtl .regions-track,
body.rtl .testimonials-track,
html[dir="rtl"] .regions-track,
html[dir="rtl"] .testimonials-track {
  flex-direction: row !important;
}
body.rtl .testimonial-slide,
body.rtl .region-card {
  direction: rtl;
  text-align: right;
}

.card.pad a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.card.pad a:hover {
  text-decoration: underline;
}
/* SECTION FEATURES OVERVIEW - same style as Why choose us */

.features-overview-section{
    background:#f5f8ff !important;
    border:1px solid #dbe7ff;
    border-radius:28px;
    padding:70px 40px;
    margin:60px auto;
    box-shadow:0 20px 45px rgba(37,99,235,.06);
}

/* grid spacing */
.features-overview-grid{
    gap:50px;
    align-items:center;
}

/* premium hover */
.features-overview-section:hover{
    transform:translateY(-2px);
    transition:all .3s ease;
}

/* responsive */
@media(max-width:768px){

.features-overview-section{
    padding:35px 20px;
    border-radius:22px;
    margin:30px 14px;
}

.features-overview-grid{
    gap:30px;
}

}