:root{
  --primary:#009b8f;
  --primary-dark:#04766d;
  --primary-soft:#e6fffb;
  --dark:#111827;
  --muted:#64748b;
  --bg1:#e9fbff;
  --bg2:#f8fbff;
  --card:#ffffff;
  --border:#dbeafe;
  --shadow:0 24px 70px rgba(15,23,42,.10);
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  background:linear-gradient(135deg,var(--bg1) 0%,var(--bg2) 55%,#eefbff 100%);
  color:var(--dark);
}
body[dir="rtl"]{
  font-family:Tahoma,Arial,sans-serif;
  direction:rtl;
  text-align:right;
}
a{text-decoration:none}
.havvi-header{
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(226,232,240,.8);
  position:sticky;
  top:0;
  z-index:9999;
}
.havvi-nav{
  max-width:1200px;
  margin:auto;
  padding:16px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.havvi-brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--primary);
  font-size:26px;
  font-weight:900;
  letter-spacing:.3px;
}
.havvi-brand img{
  width:48px;
  height:48px;
  border-radius:14px;
  background:#fff;
  padding:5px;
  box-shadow:0 10px 25px rgba(15,23,42,.08);
}
.havvi-nav-links{
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
}
.havvi-nav-item{
  position:relative;
}
.havvi-nav-drop-btn{
  border:0;
  background:transparent;
  color:#172033;
  font-weight:900;
  font-size:15px;
  cursor:pointer;
  padding:12px 0;
  font-family:inherit;
}
.havvi-dropdown-menu{
  display:none;
  position:absolute;
  top:42px;
  left:50%;
  transform:translateX(-50%);
  min-width:315px;
  background:#fff;
  border:1px solid #dbeafe;
  border-radius:22px;
  padding:18px;
  box-shadow:0 24px 70px rgba(15,23,42,.13);
  z-index:99999;
}
body[dir="rtl"] .havvi-dropdown-menu{
  right:50%;
  left:auto;
  transform:translateX(50%);
}
.havvi-nav-item:hover .havvi-dropdown-menu,
.havvi-nav-item:focus-within .havvi-dropdown-menu{
  display:block;
}
.havvi-dropdown-title{
  color:#04766d;
  font-weight:900;
  font-size:17px;
  padding:6px 10px 12px;
  border-bottom:1px solid #e2e8f0;
  margin-bottom:8px;
}
.havvi-dropdown-menu a{
  display:block;
  padding:10px;
  border-radius:12px;
  color:#172033;
  font-weight:800;
  font-size:15px;
}
.havvi-dropdown-menu a:hover{
  background:#ecfeff;
  color:#04766d;
}
.havvi-lang{
  background:#fff;
  border:1px solid #dbeafe;
  border-radius:999px;
  padding:10px 16px;
  box-shadow:0 8px 20px rgba(15,23,42,.06);
  color:#172033;
  font-weight:900;
  font-size:14px;
}
.havvi-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--primary);
  color:#fff !important;
  border-radius:999px;
  padding:14px 24px;
  font-weight:900;
  box-shadow:0 16px 35px rgba(0,155,143,.24);
}
.havvi-btn-white{
  background:#fff;
  color:#111827 !important;
  border:1px solid #e2e8f0;
  box-shadow:0 12px 28px rgba(15,23,42,.07);
}
.havvi-page-shell{
  max-width:1120px;
  margin:0 auto;
  padding:52px 22px 70px;
}
.havvi-clean-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:34px;
  padding:42px;
  box-shadow:0 18px 60px rgba(15,23,42,.07);
}
.havvi-footer{
  max-width:1120px;
  margin:0 auto 35px;
  padding:0 22px;
  text-align:center;
  color:#64748b;
}
.havvi-footer a{
  color:#04766d;
  font-weight:800;
  margin:0 10px;
}
@media(max-width:760px){
  .havvi-nav{
    align-items:flex-start;
    flex-direction:column;
  }
  .havvi-nav-links{
    gap:14px;
  }
  .havvi-dropdown-menu{
    position:static;
    transform:none;
    min-width:100%;
    margin-top:6px;
  }
  body[dir="rtl"] .havvi-dropdown-menu{
    transform:none;
  }
  .havvi-clean-card{
    padding:26px;
  }
}
