
:root{
  --primary:#4e73df;
  --primary-dark:#2e59d9;
  --green:#1cc88a;
  --dark:#1a2639;
  --muted:#667085;
  --soft:#f7f9fc;
  --border:#e6eaf1;
  --white:#ffffff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:18px}
body{
  margin:0;
  min-width:0;
  overflow-x:hidden;
  font-family:'Poppins',sans-serif;
  color:var(--dark);
  background:var(--white);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit}
.site-header{
  min-height:78px;
  padding:12px max(5%,24px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--border);
  position:relative;
  z-index:10;
}
.site-logo{
  display:block;
  width:118px;
  height:48px;
  object-fit:contain;
}
.header-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}
.lang-selector{
  width:auto;
  min-width:86px;
  padding:9px 12px;
  border:1px solid var(--border);
  border-radius:10px;
  background:#fff;
  color:var(--dark);
  font:600 .86rem 'Poppins',sans-serif;
  cursor:pointer;
}
.header-actions{display:flex;gap:8px}
.header-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  min-height:40px;
  padding:9px 16px;
  border-radius:11px;
  text-decoration:none;
  font-size:.85rem;
  font-weight:700;
  transition:background .2s,color .2s,border-color .2s;
}
.header-btn.signup{background:var(--green);color:#fff;border:1px solid var(--green)}
.header-btn.signup:hover{background:#16ad76;border-color:#16ad76}
.header-btn.login{background:#fff;color:var(--dark);border:1px solid var(--border)}
.header-btn.login:hover{border-color:#cfd6e2;background:#fafbfc}
.page-mini-nav{
  min-height:48px;
  padding:0 max(5%,24px);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  overflow-x:auto;
  white-space:nowrap;
  background:#fff;
  border-bottom:1px solid var(--border);
  scrollbar-width:none;
}
.page-mini-nav::-webkit-scrollbar{display:none}
.page-mini-nav a{
  padding:14px 0 12px;
  text-decoration:none;
  color:#596579;
  font-size:.85rem;
  font-weight:650;
  border-bottom:2px solid transparent;
}
.page-mini-nav a:hover,.page-mini-nav a.active{color:var(--primary);border-bottom-color:var(--primary)}
.hero{
  padding:76px max(5%,24px) 68px;
  background:linear-gradient(180deg,#f8faff 0%,#fff 100%);
}
.hero-inner{
  max-width:1120px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(280px,.75fr);
  gap:64px;
  align-items:center;
}
.breadcrumb{
  margin-bottom:20px;
  color:#7a8495;
  font-size:.84rem;
}
.breadcrumb a{color:var(--primary);text-decoration:none;font-weight:700}
.hero h1{
  margin:0 0 20px;
  max-width:760px;
  font-size:clamp(2.25rem,5vw,4rem);
  line-height:1.12;
  letter-spacing:-1.6px;
  font-weight:850;
}
.hero h1 .blue{color:var(--primary)}
.hero p{
  max-width:660px;
  margin:0 0 30px;
  color:var(--muted);
  font-size:1.04rem;
}
.cta-row{display:flex;flex-wrap:wrap;gap:11px}
.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:48px;
  padding:12px 20px;
  border-radius:12px;
  text-decoration:none;
  font-size:.9rem;
  font-weight:750;
  transition:background .2s,border-color .2s;
}
.cta.primary{background:var(--green);color:#fff;border:1px solid var(--green)}
.cta.primary:hover{background:#16ad76;border-color:#16ad76}
.cta.secondary{background:#fff;color:var(--dark);border:1px solid var(--border)}
.cta.secondary:hover{background:#fafbfc;border-color:#cfd6e2}
.hero-visual{display:flex;justify-content:center}
.visual-card{
  width:min(340px,100%);
  aspect-ratio:1/1;
  border:1px solid #dfe5ef;
  border-radius:28px;
  background:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:22px;
  padding:36px;
}
.visual-card:before{display:none}
.visual-card i{
  width:104px;
  height:104px;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:linear-gradient(135deg,var(--primary),#3d9dcc);
  font-size:2.85rem;
  filter:none;
}
.visual-card .visual-label{
  position:static;
  color:var(--dark);
  font-size:.88rem;
  font-weight:700;
  text-align:center;
}
.section{padding:70px max(5%,24px)}
.section.alt{background:var(--soft)}
.section-inner{max-width:1080px;margin:0 auto}
.section-head{max-width:720px;margin:0 auto 42px;text-align:center}
.badge{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  color:var(--primary);
  background:#edf2ff;
  font-size:.73rem;
  font-weight:800;
  letter-spacing:.6px;
  text-transform:uppercase;
}
.section h2{
  margin:13px 0 12px;
  font-size:clamp(1.75rem,3.5vw,2.45rem);
  line-height:1.25;
  letter-spacing:-.8px;
  font-weight:850;
}
.section-head p{margin:0;color:var(--muted)}
.grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.card,.contact-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:24px;
  box-shadow:none;
  transition:border-color .2s;
}
.card:hover,.contact-box:hover{transform:none;box-shadow:none;border-color:#cfd7e5}
.card-icon{
  width:46px;
  height:46px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:17px;
  background:#eef3ff;
  color:var(--primary);
  font-size:1.2rem;
}
.card h3,.contact-box h3{margin:0 0 8px;font-size:1.02rem;font-weight:800}
.card p,.contact-box p{margin:0;color:var(--muted);font-size:.9rem}
.contact-box p+p{margin-top:18px}
.price-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.price-card{
  padding:25px 20px;
  text-align:center;
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:none;
}
.price-card.featured{transform:none;border:2px solid var(--green)}
.price-card h3{margin:0;color:var(--muted);font-size:.9rem}
.price{margin:12px 0;font-size:1.7rem;font-weight:850;color:var(--dark)}
.price-card p{margin:0;color:var(--muted);font-size:.86rem}
.check-list{list-style:none;padding:0;margin:18px 0 0;text-align:start}
.check-list li{margin:8px 0;color:#dbe3ef}
.check-list i{margin-inline-end:8px;color:var(--green)}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:start}
.info-box{
  padding:30px;
  color:#fff;
  background:var(--dark);
  border-radius:16px;
}
.info-box h2{color:#fff;margin-top:0}
.info-box p{color:#d5dce7}
.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:1001;
  width:54px;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#25d366;
  color:#fff;
  text-decoration:none;
  font-size:1.7rem;
  box-shadow:0 8px 20px rgba(0,0,0,.16);
}
.whatsapp-float:hover{background:#20be5b}
.site-footer{
  padding:34px max(5%,24px) 24px;
  text-align:center;
  color:#97a3b5;
  background:#101827;
  border-top:1px solid #1e293b;
}
.footer-logo{width:98px;opacity:.92;filter:brightness(0) invert(1)}
.site-footer p{margin:12px 0 18px;font-size:.88rem}
.footer-links{
  padding-top:16px;
  border-top:1px solid #273448;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:13px 18px;
  font-size:.75rem;
}
.footer-links a{color:#c4cfdd;text-decoration:none}
.footer-links a:hover{color:#fff}
html[dir="rtl"] body{text-align:right}
html[dir="rtl"] .site-header,html[dir="rtl"] .hero-inner{direction:rtl}
html[dir="rtl"] .whatsapp-float{right:auto;left:22px}
html[dir="rtl"] .header-right{direction:ltr}
html[dir="rtl"] .header-actions{direction:rtl}
html[dir="rtl"] .visual-card .visual-label{text-align:center}
@media(max-width:900px){
  .hero-inner{grid-template-columns:1fr;gap:38px}
  .hero-visual{justify-content:flex-start}
  .visual-card{width:min(300px,100%)}
  .grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .price-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:680px){
  .site-header{padding:10px 16px;gap:10px;align-items:flex-start}
  .site-logo{width:88px;height:42px}
  .header-right{flex:1;align-items:flex-end;gap:7px;flex-wrap:wrap}
  .lang-selector{min-width:78px;padding:7px 9px;font-size:.75rem}
  .header-actions{gap:6px}
  .header-btn{min-height:34px;padding:7px 10px;font-size:.68rem;border-radius:9px}
  .page-mini-nav{justify-content:flex-start;padding:0 16px;gap:20px}
  .page-mini-nav a{font-size:.76rem}
  .hero{padding:48px 20px 44px}
  .hero h1{font-size:clamp(2rem,11vw,3.1rem)}
  .hero p{font-size:.95rem}
  .hero-visual{justify-content:center}
  .visual-card{width:min(270px,100%);border-radius:22px}
  .visual-card i{width:88px;height:88px;font-size:2.35rem}
  .section{padding:56px 20px}
  .grid,.price-grid,.two-col{grid-template-columns:1fr}
  .cta{width:100%}
  .whatsapp-float{right:16px;bottom:16px;width:50px;height:50px}
  html[dir="rtl"] .whatsapp-float{left:16px}
}
.steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;margin-top:8px}
.step{background:#fff;border:1px solid var(--border);border-radius:16px;padding:22px}
.step-num{width:34px;height:34px;border-radius:10px;background:#eef3ff;color:var(--primary);font-weight:800;font-size:.95rem;display:flex;align-items:center;justify-content:center;margin-bottom:14px}
.step h3{margin:0 0 8px;font-size:.98rem;font-weight:800}
.step p{margin:0;color:var(--muted);font-size:.88rem}
.faq{max-width:820px;margin:0 auto;display:flex;flex-direction:column;gap:10px}
.faq-item{border:1px solid var(--border);border-radius:14px;padding:4px 20px;background:#fff}
.faq-item summary{list-style:none;cursor:pointer;padding:16px 28px 16px 0;font-weight:750;font-size:.95rem;position:relative}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";position:absolute;right:0;top:14px;font-size:1.3rem;color:var(--primary);font-weight:700}
.faq-item[open] summary::after{content:"–"}
.faq-item p{margin:0 0 18px;color:var(--muted);font-size:.9rem;line-height:1.6}
html[dir="rtl"] .faq-item summary::after{right:auto;left:0}
@media(max-width:680px){
  .steps{grid-template-columns:1fr}
  .faq-item summary{padding-right:24px}
}
.legal-content{max-width:760px;margin:0 auto;color:var(--dark);line-height:1.75}
.legal-content h2{font-size:1.25rem;font-weight:800;margin:36px 0 12px}
.legal-content h2:first-child{margin-top:0}
.legal-content p{margin:0 0 14px;color:var(--dark)}
.legal-content ul{margin:0 0 14px;padding-left:20px;color:var(--dark)}
.legal-content li{margin-bottom:6px}
.legal-content .updated{color:var(--muted);font-size:.88rem;margin-bottom:32px}
.legal-content a{color:var(--primary);font-weight:700}
@media(prefers-reduced-motion:reduce){*{scroll-behavior:auto!important;transition:none!important}}
