@font-face{
  font-family:"Vazirmatn";
  font-style:normal;
  font-display:swap;
  font-weight:100 900;
  src:url("fonts/vazirmatn-arabic-variable.woff2") format("woff2-variations");
  unicode-range:U+0600-06FF,U+0750-077F,U+0870-088E,U+0890-0891,U+0897-08E1,U+08E3-08FF,U+200C-200E,U+2010-2011,U+204F,U+2E41,U+FB50-FDFF,U+FE70-FE74,U+FE76-FEFC;
}
@font-face{
  font-family:"Vazirmatn";
  font-style:normal;
  font-display:swap;
  font-weight:100 900;
  src:url("fonts/vazirmatn-latin-variable.woff2") format("woff2-variations");
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root{
  --red:#e32c5b;
  --red-dark:#b8183d;
  --ink:#29282b;
  --muted:#747176;
  --olive:#34412f;
  --line:#ecebed;
  --soft:#fafafa;
  --blush:#fff5f7;
  --shadow:0 7px 22px rgba(25,24,28,.075);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:72px}
body{
  width:100%;
  margin:0;
  overflow-x:hidden;
  direction:rtl;
  color:var(--ink);
  background:#fff;
  font-family:"Vazirmatn",Tahoma,Arial,sans-serif;
  font-size:14px;
  line-height:1.85;
  font-weight:400;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button,input,textarea,select{font:inherit}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  height:62px;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid var(--line);
  box-shadow:0 3px 13px rgba(34,32,36,.035);
  backdrop-filter:blur(12px);
}
.header-inner{
  width:min(1080px,100%);
  height:100%;
  margin:0 auto;
  padding:0 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{display:flex;align-items:center;gap:7px;color:var(--olive);font-size:18px;font-weight:700}
.brand img{width:39px;height:39px;object-fit:contain}
.main-nav{display:none;align-items:center;gap:25px;color:#5d5a5e;font-size:12px}
.main-nav a{transition:color .2s ease}
.main-nav a:hover{color:var(--red)}
.mini-cta{
  min-height:38px;
  padding:7px 14px;
  display:grid;
  place-items:center;
  border-radius:12px;
  color:#fff;
  background:linear-gradient(145deg,var(--red),var(--red-dark));
  box-shadow:0 7px 17px rgba(227,44,91,.2);
  font-size:11px;
  font-weight:650;
}

main{overflow:hidden}
.hero{
  padding:17px 14px 0;
  background:linear-gradient(180deg,#fff 0%,#fff 78%,#fff8f9 100%);
}
.hero-grid{
  max-width:880px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1.22fr) minmax(124px,.78fr);
  align-items:center;
  gap:12px;
}
.hero-copy{text-align:center}
.hero-emblem{
  width:43px;
  height:auto;
  margin:0 auto 4px;
  object-fit:contain;
}
.kicker{display:block;color:#91745f;font-size:10px;font-weight:550}
.hero-divider{
  width:118px;
  height:11px;
  margin:5px auto 1px;
  display:block;
  position:relative;
}
.hero-divider::before,.hero-divider::after{
  content:"";
  position:absolute;
  top:5px;
  width:47px;
  height:1px;
  background:linear-gradient(90deg,transparent,#d7c6b7);
}
.hero-divider::before{right:0}
.hero-divider::after{left:0;transform:scaleX(-1)}
.hero-divider{background:radial-gradient(circle at 50% 50%,#cdb8a5 0 2px,transparent 3px),radial-gradient(circle at 45% 50%,#dacabc 0 1.5px,transparent 2.5px),radial-gradient(circle at 55% 50%,#dacabc 0 1.5px,transparent 2.5px)}
.hero h1{
  margin:4px 0 0;
  color:var(--olive);
  font-size:28px;
  line-height:1.43;
  letter-spacing:-.35px;
  font-weight:700;
}
.hero-copy p{margin:0;color:#6f6d70;font-size:11.5px;line-height:1.85}
.hero-portrait{
  position:relative;
  width:100%;
  aspect-ratio:4/5.1;
  padding:5px;
  overflow:visible;
  border:1px solid #eee4d9;
  border-radius:78px 78px 18px 18px;
  background:linear-gradient(180deg,#fffdfb,#f8f4ef);
  box-shadow:0 12px 27px rgba(44,43,47,.09);
}
.hero-portrait::before{
  content:"";
  position:absolute;
  inset:-10px -12px -6px -14px;
  z-index:0;
  opacity:.42;
  pointer-events:none;
  background:
    radial-gradient(ellipse at 13% 78%,rgba(176,166,138,.16),transparent 32%),
    radial-gradient(ellipse at 85% 30%,rgba(176,166,138,.12),transparent 30%);
}
.hero-portrait::after{content:none!important;display:none!important}
.hero-portrait img{
  position:relative;
  z-index:3;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 40%;
  border-radius:73px 73px 14px 14px;
  box-shadow:inset 0 0 0 4px rgba(255,255,255,.85);
}
.primary-cta{
  width:100%;
  min-height:49px;
  margin:14px auto 0;
  display:grid;
  place-items:center;
  border:0;
  border-radius:15px;
  color:#fff;
  background:linear-gradient(135deg,#ef315f,var(--red-dark));
  box-shadow:0 11px 25px rgba(227,44,91,.23);
  font-size:15px;
  font-weight:650;
  transition:transform .2s ease,box-shadow .2s ease;
}
.primary-cta:hover,.mini-cta:hover{transform:translateY(-1px)}
.hero>.primary-cta{max-width:520px}
.trust-row{
  min-height:50px;
  margin:11px -14px 0;
  padding:0 9px;
  list-style:none;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  align-items:center;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#fff;
}
.trust-row li{
  padding:3px;
  text-align:center;
  color:#69676a;
  border-left:1px solid var(--line);
  font-size:9.5px;
  font-weight:500;
}
.trust-row li:last-child{border-left:0}

.courses-section,.start-section,.guides-section,.about-section,.faq-section{padding:29px 13px}
.section-title{margin:0 auto 14px;text-align:center}
.section-title>span,.contact-kicker{
  display:inline-flex;
  padding:4px 11px;
  border:1px solid #efedef;
  border-radius:999px;
  color:#858186;
  background:#fafafa;
  font-size:9.5px;
  font-weight:500;
}
.section-title h2,.contact-section h2,.credentials-block>h2{
  margin:7px 0 0;
  color:var(--ink);
  font-size:25px;
  line-height:1.5;
  letter-spacing:-.25px;
  font-weight:700;
}
.section-title.compact{margin-bottom:14px}
.section-intro{
  max-width:540px;
  margin:5px auto 0;
  color:#777478;
  font-size:10px;
  line-height:1.8;
}

.consultation-visual{
  width:min(340px,100%);
  margin:0 auto 15px;
  padding:6px;
  border:1px solid #f0ebed;
  border-radius:20px;
  background:#fff;
  box-shadow:var(--shadow);
}
.consultation-visual>img{
  width:100%;
  height:179px;
  aspect-ratio:3/1.65;
  object-fit:cover;
  object-position:center;
  border-radius:14px;
}
.consultation-visual figcaption{padding:6px 4px 2px;text-align:center}
.consultation-visual b{display:block;color:#333135;font-size:12px;font-weight:650}
.consultation-visual small{display:block;margin-top:2px;color:#858286;font-size:9.5px;line-height:1.7}

.course-grid{
  max-width:720px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
}
.course-card{
  min-width:0;
  min-height:177px;
  padding:11px 6px 9px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  border:1px solid #eeecef;
  border-radius:18px;
  background:#fff;
  box-shadow:0 6px 17px rgba(28,27,31,.075);
}
.course-card>img{width:45px;height:45px;object-fit:contain}
.course-card>small{
  min-height:25px;
  margin-top:5px;
  display:grid;
  place-items:center;
  color:#8b878c;
  font-size:7.5px;
  line-height:1.45;
}
.course-card>small span{white-space:nowrap}
.course-card h3{margin:3px 0 5px;color:#302e32;font-size:13px;line-height:1.5;font-weight:650}
.course-card p{margin:0;color:#777478;font-size:8.3px;line-height:1.65}
.courses-cta{
  width:max-content;
  max-width:100%;
  min-height:40px;
  margin:14px auto 0;
  padding:7px 21px;
  display:grid;
  place-items:center;
  border:1px solid var(--red);
  border-radius:13px;
  color:var(--red);
  background:#fff;
  font-size:11px;
  font-weight:600;
}

.start-section{
  padding-top:23px;
  padding-bottom:24px;
  background:#fafafa;
  border-top:1px solid #f0eff1;
  border-bottom:1px solid #f0eff1;
}
.steps{
  max-width:680px;
  margin:0 auto;
  padding:0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  list-style:none;
}
.steps li{padding:0 5px;text-align:center;border-left:1px solid #e8e7e9}
.steps li:last-child{border-left:0}
.steps i{
  width:28px;
  height:28px;
  margin:0 auto 7px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#fff;
  background:var(--red);
  font-size:10px;
  font-style:normal;
  font-weight:650;
}
.steps b{display:block;font-size:10.5px;font-weight:650}
.steps small{display:block;margin-top:2px;color:#858286;font-size:8px;line-height:1.55}

.guides-section{
  position:relative;
  overflow:hidden;
  border-bottom:1px solid #eeece8;
  background:
    radial-gradient(circle at 10% 5%,rgba(227,44,91,.055),transparent 29%),
    linear-gradient(180deg,#fff,#f8f8f5);
}
.guides-section::before{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  left:-90px;
  bottom:-115px;
  border:1px solid rgba(97,105,75,.12);
  border-radius:50%;
  pointer-events:none;
}
.guide-grid{
  position:relative;
  max-width:790px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
}
.guide-card{
  min-width:0;
  min-height:148px;
  padding:13px 9px 10px;
  flex:1 1 145px;
  max-width:238px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  border:1px solid #e7e6e1;
  border-radius:17px;
  color:#403e42;
  background:rgba(255,255,255,.96);
  box-shadow:0 7px 18px rgba(35,34,37,.055);
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.guide-card:hover{
  transform:translateY(-2px);
  border-color:#dcd7d2;
  box-shadow:0 11px 24px rgba(35,34,37,.085);
}
.guide-icon{
  width:56px;
  height:56px;
  margin-bottom:8px;
  display:grid;
  place-items:center;
  border:0;
  border-radius:18px;
  background:transparent;
}
.guide-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:drop-shadow(0 5px 8px rgba(64,48,52,.09));
}
.guide-copy{display:block;min-width:0}
.guide-copy small{
  display:block;
  color:#948e89;
  font-size:7.5px;
  line-height:1.4;
}
.guide-copy b{
  display:block;
  margin-top:2px;
  color:#343137;
  font-size:11.5px;
  line-height:1.5;
  font-weight:680;
}
.guide-copy em{
  min-height:28px;
  margin-top:3px;
  display:block;
  color:#777378;
  font-size:8px;
  font-style:normal;
  line-height:1.65;
}
.guide-arrow{
  margin-top:auto;
  color:var(--red-dark);
  font-size:13px;
  line-height:1;
}
.guide-card-profile{
  border-color:#e0ddd3;
  background:linear-gradient(145deg,#fff,#faf8f1);
}

.about-section{padding-bottom:26px}
.about-copy{
  max-width:690px;
  margin:0 auto 20px;
  padding:13px 16px;
  text-align:center;
  border:1px solid #f1f0f2;
  border-radius:18px;
  background:#fbfbfb;
}
.about-copy p{margin:0 0 6px;color:#666367;font-size:11px;line-height:1.86}
.about-copy p:last-child{margin-bottom:0}
.credentials-block>h2{margin:0 0 11px;text-align:center;font-size:21px}
.certificates{
  width:min(100%,490px);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  grid-auto-rows:max-content;
  align-items:start;
  gap:6px;
}
.certificates a{
  min-width:0;
  height:auto;
  display:block;
  align-self:start;
  border-radius:10px;
}
.certificates figure{
  height:auto!important;
  margin:0;
  padding:5px 5px 7px;
  display:block;
  text-align:center;
  border:1px solid #eceaec;
  border-radius:10px;
  background:#fff;
  box-shadow:0 4px 12px rgba(28,27,31,.035);
}
.certificates img{
  width:100%;
  height:auto!important;
  aspect-ratio:auto;
  object-fit:contain;
  border-radius:6px;
}
.certificates figcaption{margin-top:4px;color:#676468;font-size:7.5px;line-height:1.45}
.certificates b{font-weight:650}

.faq-section{padding-top:23px;padding-bottom:25px;background:#fcfcfc}
.faq-section details{
  max-width:690px;
  min-height:45px;
  margin:0 auto 7px;
  padding:0 14px;
  border:1px solid #ebe9eb;
  border-radius:13px;
  background:#fff;
  box-shadow:0 4px 12px rgba(28,27,31,.04);
}
.faq-section summary{
  min-height:43px;
  display:flex;
  align-items:center;
  color:#4d4a4e;
  cursor:pointer;
  font-size:10.5px;
  font-weight:550;
}
.faq-section details p{
  margin:0;
  padding:0 0 11px;
  color:#777478;
  font-size:9.5px;
  line-height:1.75;
}

.contact-section{
  padding:26px 17px 24px;
  text-align:center;
  background:linear-gradient(180deg,#fff,#fff7f8);
}
.contact-section h2{font-size:24px}
.contact-section>p{max-width:520px;margin:6px auto 0;color:#777478;font-size:10.5px}
.contact-section .primary-cta{max-width:520px}
.socials{
  max-width:520px;
  margin:13px auto 0;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:5px;
}
.socials a{
  min-width:0;
  min-height:41px;
  padding:5px 3px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  border:1px solid #eceaec;
  border-radius:11px;
  background:#fff;
  color:#555257;
  font-size:8px;
  font-weight:500;
  white-space:nowrap;
}
.socials img{width:19px;height:19px;flex:0 0 19px;object-fit:contain}
.socials a[dir="ltr"]{font-size:7.4px}

footer{
  padding:18px 14px 12px;
  text-align:center;
  border-top:1px solid #eceaec;
  background:#f7f6f3;
}
footer>p{margin:0 0 12px;color:#6f6c70;font-size:10.5px}

.footer-email{
  margin:0 auto 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  color:#6f6c70;
  font-size:10px;
  line-height:1.8;
}
.footer-email>span{color:#7b6d63;font-weight:600}
.footer-email a{display:inline-flex;align-items:center;justify-content:center;gap:6px;color:#34412f;font-weight:650}
.footer-email a span{color:#7b6d63;font-weight:600}
.footer-email a b{font-weight:650}
.enamad-card{
  position:relative;
  width:116px;
  min-height:92px;
  margin:0 auto;
  display:grid;
  place-items:center;
  overflow:hidden;
  border:1px solid #dedde0;
  border-radius:13px;
  color:#57545a;
  background:#fff;
  box-shadow:0 5px 15px rgba(28,27,31,.06);
}
.enamad-placeholder{
  min-height:90px;
  padding:9px 8px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
}
.enamad-placeholder svg{
  width:37px;
  height:37px;
  fill:none;
  stroke:#88858a;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.enamad-placeholder span{display:block;text-align:center}
.enamad-placeholder b{display:block;font-size:8.5px;font-weight:650}
.enamad-placeholder small{display:block;color:#99969a;font-size:7px}
.enamad-official{
  position:absolute;
  width:1px;
  height:1px;
  opacity:0;
  object-fit:contain;
}
.enamad-official.is-loaded{
  position:static;
  width:auto;
  height:auto;
  max-width:96px;
  max-height:86px;
  margin:auto;
  opacity:1;
}
.credit{display:block;margin-top:9px;color:#aaa7ab;font-size:7px}

a:focus-visible,summary:focus-visible{
  outline:3px solid rgba(227,44,91,.28);
  outline-offset:3px;
}

@media (max-width:350px){
  .hero h1{font-size:28px}
  .course-grid{gap:5px}
  .course-card{padding-inline:4px}
  .course-card h3{font-size:11.5px}
  .socials{grid-template-columns:repeat(2,1fr)}
  .socials a[dir="ltr"]{font-size:8px}
}

@media (min-width:700px){
  html{scroll-padding-top:80px}
  .site-header{height:72px}
  .header-inner{padding:0 30px}
  .brand{font-size:20px}
  .brand img{width:43px;height:43px}
  .main-nav{display:flex}
  .mini-cta{min-height:41px;padding-inline:19px;font-size:12px}
  .hero{padding-top:37px}
  .hero-grid{grid-template-columns:1fr 330px;gap:46px}
  .hero-emblem{width:88px;margin-bottom:10px}
  .kicker{font-size:15px;font-weight:650}
  .hero-divider{width:154px;height:14px;margin:7px auto 3px}
  .hero-divider::before,.hero-divider::after{top:6px;width:62px}
  .hero h1{font-size:48px;line-height:1.38}
  .hero-copy p{font-size:14px}
  .hero-portrait{max-width:280px;justify-self:start}
  .hero>.primary-cta{max-width:610px}
  .trust-row{max-width:780px;margin:17px auto 0;border:1px solid var(--line);border-radius:16px 16px 0 0}
  .courses-section,.start-section,.guides-section,.about-section,.faq-section{padding:44px 24px}
  .consultation-visual{width:560px}
  .consultation-visual>img{height:300px}
  .course-grid{gap:14px}
  .course-card{min-height:220px;padding:21px 15px 15px}
  .course-card>img{width:60px;height:60px}
  .course-card>small{font-size:9.5px}
  .course-card h3{font-size:17px}
  .course-card p{font-size:10.5px}
  .steps b{font-size:13px}
  .steps small{font-size:9.5px}
  .about-copy p{font-size:12.5px}
  .section-intro{font-size:11.5px}
  .guide-grid{gap:13px}
  .guide-card{min-height:178px;padding:18px 15px 13px;flex-basis:210px}
  .guide-icon{width:64px;height:64px;margin-bottom:10px}
  .guide-copy small{font-size:9px}
  .guide-copy b{font-size:14px}
  .guide-copy em{min-height:35px;font-size:9.5px}
  .certificates figcaption{font-size:9px}
  .faq-section summary{font-size:12px}
  .faq-section details p{font-size:11px}
  .socials a{font-size:10px}
  .socials a[dir="ltr"]{font-size:9px}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{transition-duration:.01ms!important;animation-duration:.01ms!important}
}
