:root{
  --omu-bg:#f3f6fb;
  --omu-ink:#0b2244;
  --omu-sub:#5f7694;
  --omu-panel:#ffffff;
  --omu-blue:#2f63e6;
  --omu-blue2:#1f4bbd;
  --omu-line:rgba(11,34,68,.08);
  --omu-shadow:0 20px 46px rgba(13,32,61,.12);
  --omu-footer1:#415c79;
  --omu-footer2:#314a69;
  --omu-footer3:#243b58;
  --omu-green:#79ba2d;
  --omu-gold:#d3a63c;
}

html,body{
  margin:0;
  padding:0;
  background:var(--omu-bg);
  color:var(--omu-ink);
  font-family:Tahoma, Arial, sans-serif;
}

html[dir="rtl"] body{
  text-align:right;
}

html[dir="ltr"] body{
  text-align:left;
}

body{
  min-height:100vh;
}

.omu-page{
  width:min(1280px, calc(100% - 34px));
  margin:38px auto 42px;
}

.omu-hero{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  background:
    radial-gradient(circle at top left, rgba(121,186,45,.12), transparent 28%),
    radial-gradient(circle at top right, rgba(211,166,60,.12), transparent 24%),
    linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  border:1px solid rgba(11,34,68,.08);
  box-shadow:var(--omu-shadow);
  padding:28px 30px 24px;
  margin-bottom:24px;
}

.omu-hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:4px;
  background:linear-gradient(90deg,var(--omu-green) 0%, var(--omu-gold) 50%, var(--omu-blue) 100%);
}

.omu-topbar{
  display:flex;
  gap:10px;
  margin-bottom:18px;
}

html[dir="rtl"] .omu-topbar{
  justify-content:flex-start;
}

html[dir="ltr"] .omu-topbar{
  justify-content:flex-end;
}

.omu-lang-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:110px;
  height:42px;
  padding:0 16px;
  border-radius:14px;
  text-decoration:none !important;
  font-weight:900;
  border:1px solid rgba(48,78,133,.15);
  color:var(--omu-blue2);
  background:#eef3ff;
  box-shadow:0 8px 20px rgba(47,99,230,.10);
}

.omu-lang-btn.is-active{
  color:#fff !important;
  background:linear-gradient(135deg,var(--omu-blue),var(--omu-blue2));
  box-shadow:0 14px 28px rgba(47,99,230,.25);
}

.omu-hero h1{
  margin:0 0 12px;
  font-size:48px;
  line-height:1.08;
  color:var(--omu-ink);
  font-weight:900;
}

.omu-hero p{
  margin:0;
  color:var(--omu-sub);
  font-size:16px;
  line-height:1.9;
}

.omu-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
  margin-bottom:26px;
}

.omu-card{
  background:var(--omu-panel);
  border:1px solid var(--omu-line);
  border-radius:28px;
  box-shadow:var(--omu-shadow);
  padding:24px 24px 22px;
  position:relative;
  overflow:hidden;
}

.omu-card::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:6px;
  background:linear-gradient(180deg,var(--omu-blue),#5485ff);
}

html[dir="ltr"] .omu-card::before{
  inset:0 0 0 auto;
}

.omu-card h2{
  margin:0 0 12px;
  font-size:22px;
  line-height:1.3;
  font-weight:900;
  color:var(--omu-ink);
}

.omu-card p,
.omu-card li{
  color:var(--omu-sub);
  font-size:15px;
  line-height:1.9;
}

.omu-card ul{
  margin:0;
  padding-inline-start:22px;
}

.omu-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:14px;
}

.omu-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:14px;
  text-decoration:none !important;
  color:#fff !important;
  background:linear-gradient(135deg,var(--omu-blue),var(--omu-blue2));
  font-weight:900;
  font-size:15px;
  box-shadow:0 12px 24px rgba(47,99,230,.24);
}

.omu-btn-lite{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 15px;
  border-radius:14px;
  border:1px solid rgba(11,34,68,.10);
  background:#fff;
  color:var(--omu-ink);
  font-weight:900;
  font-size:14px;
  cursor:pointer;
}

body.omu-high-contrast{
  background:#111 !important;
  color:#fff !important;
}

body.omu-high-contrast .omu-hero,
body.omu-high-contrast .omu-card,
body.omu-high-contrast .omu-footer{
  background:#1a1a1a !important;
  border-color:rgba(255,255,255,.12) !important;
  color:#fff !important;
}

body.omu-high-contrast .omu-hero h1,
body.omu-high-contrast .omu-card h2,
body.omu-high-contrast .omu-card p,
body.omu-high-contrast .omu-card li,
body.omu-high-contrast .omu-footer h3,
body.omu-high-contrast .omu-footer p{
  color:#fff !important;
}

.omu-footer{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  margin-top:22px;
  background:
    radial-gradient(circle at top left, rgba(121,186,45,.14), transparent 22%),
    radial-gradient(circle at top right, rgba(211,166,60,.14), transparent 20%),
    linear-gradient(180deg,var(--omu-footer1) 0%, var(--omu-footer2) 52%, var(--omu-footer3) 100%);
  box-shadow:0 26px 54px rgba(9,24,44,.22);
  color:#fff;
  padding:24px 24px 20px;
}

.omu-footer::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:4px;
  background:linear-gradient(90deg,var(--omu-green) 0%, var(--omu-gold) 50%, var(--omu-blue) 100%);
}

.omu-footer-head{
  display:flex;
  justify-content:space-between;
  gap:22px;
  align-items:flex-start;
  padding-bottom:18px;
  margin-bottom:16px;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.omu-footer-head h3{
  margin:0 0 8px;
  font-size:30px;
  line-height:1.15;
  font-weight:900;
  color:#fff;
}

.omu-footer-head p{
  margin:0;
  color:rgba(255,255,255,.85);
  font-size:15px;
  line-height:1.85;
}

.omu-footer-home{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:210px;
  min-height:52px;
  padding:0 18px;
  text-decoration:none !important;
  color:#fff !important;
  background:linear-gradient(135deg,var(--omu-blue),var(--omu-blue2));
  border-radius:18px;
  font-weight:900;
  font-size:16px;
  box-shadow:0 18px 34px rgba(47,99,230,.28);
}

.omu-footer-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-bottom:16px;
}

.omu-footer-tile{
  display:block;
  text-decoration:none !important;
  color:#fff !important;
  border-radius:20px;
  padding:18px 16px;
  min-height:100px;
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.10);
}

.omu-footer-tile strong{
  display:block;
  margin-bottom:8px;
  font-size:16px;
  font-weight:900;
  color:#fff;
}

.omu-footer-tile span{
  color:rgba(255,255,255,.80);
  font-size:13px;
  line-height:1.8;
}

.omu-footer-bottom{
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  flex-wrap:wrap;
}

.omu-footer-mini{
  display:flex;
  flex-wrap:wrap;
  gap:12px 16px;
}

.omu-footer-mini a,
.omu-footer-bottom small{
  color:rgba(255,255,255,.86);
  text-decoration:none !important;
  font-weight:800;
  font-size:13px;
}

@media (max-width: 980px){
  .omu-grid,
  .omu-footer-grid{
    grid-template-columns:1fr;
  }

  .omu-footer-head{
    flex-direction:column;
  }

  .omu-footer-home{
    width:100%;
  }

  .omu-hero h1{
    font-size:42px;
  }
}

@media (max-width: 700px){
  .omu-page{
    width:min(1280px, calc(100% - 18px));
    margin:18px auto 24px;
  }

  .omu-hero,
  .omu-card,
  .omu-footer{
    border-radius:24px;
  }

  .omu-hero{
    padding:20px 16px 18px;
  }

  .omu-card,
  .omu-footer{
    padding:18px 16px;
  }

  .omu-hero h1{
    font-size:36px;
  }

  .omu-footer-head h3{
    font-size:26px;
  }

  .omu-lang-btn{
    min-width:96px;
  }
}

/* OMU LANG TOGGLE HOTFIX START */
.omu-hero {
  position: relative;
}

.omu-hero::before,
.omu-hero::after {
  pointer-events: none !important;
}

.omu-topbar {
  position: relative !important;
  z-index: 1000 !important;
}

.omu-lang-btn {
  position: relative !important;
  z-index: 1001 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  touch-action: manipulation !important;
}
/* OMU LANG TOGGLE HOTFIX END */
