
/* ===================== Override parent theme white text ===================== */
body.ostayabi-homepage,
body.ostayabi-inner {
  color: var(--ink-900);
  background: var(--cream-50);
}
.ostayabi-homepage header, .ostayabi-homepage footer,
.ostayabi-inner header, .ostayabi-inner footer {
  color: #fff;
}
.ostayabi-homepage header a, .ostayabi-homepage footer a,
.ostayabi-inner header a, .ostayabi-inner footer a {
  color: #fff;
}
.ostayabi-homepage header a:hover, .ostayabi-inner header a:hover {
  color: var(--orange-400);
}
.ostayabi-homepage footer, .ostayabi-inner footer {
  background: var(--navy-900);
}

/* ===================== توکن‌های طراحی ===================== */
:root{
  --navy-950:#12141b;
  --navy-900:#181b25;
  --navy-800:#232838;
  --navy-700:#333a4f;

  --cream-50:#fbf7f0;
  --cream-100:#f4ecdf;
  --cream-200:#ece1cd;
  --paper:#ffffff;

  --orange-600:#e85310;
  --orange-500:#ff6a1e;
  --orange-400:#ff8c4d;
  --orange-100:#ffe3cf;

  --ink-900:#1d1a17;
  --ink-700:#433e37;
  --ink-500:#726b60;
  --ink-400:#9a9186;

  --gold-500:#f0a93a;
  --green-600:#1e9e64;
  --green-100:#dff3e8;
  --red-500:#e5533d;

  --line:rgba(29,26,23,.09);
  --line-soft:rgba(29,26,23,.05);

  --font-display:'Vazirmatn', sans-serif;
  --font-body:'Vazirmatn', sans-serif;
  --font-mono:'JetBrains Mono', monospace;

  --ease-out: cubic-bezier(.16,.9,.3,1);
  --shadow-sm: 0 2px 10px rgba(29,26,23,.06);
  --shadow-md: 0 10px 30px rgba(29,26,23,.1);
  --shadow-lg: 0 25px 60px rgba(18,20,27,.18);
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--font-body);
  background: var(--cream-50);
  color: var(--ink-900);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
ul{ list-style:none; }
.mono{ font-family: var(--font-mono); direction:ltr; unicode-bidi:plaintext; }
::selection{ background: var(--orange-500); color:#fff; }

.icon{ width:20px; height:20px; stroke:currentColor; fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }

.wrap{ max-width:1280px; margin:0 auto; padding:0 32px; }

section{ position:relative; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:600; color: var(--orange-600);
  margin-bottom:14px;
}
.eyebrow::before{
  content:""; width:7px; height:7px; border-radius:50%;
  background: var(--orange-500);
}

.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:24px; margin-bottom:40px;
}
.section-head h2{
  font-size:32px; font-weight:800; letter-spacing:-.01em; color:var(--ink-900);
}
.section-head p{ color:var(--ink-500); font-size:15px; margin-top:8px; max-width:520px; }
.see-all{
  display:inline-flex; align-items:center; gap:6px;
  font-size:14px; font-weight:600; color:var(--ink-900);
  white-space:nowrap; padding-bottom:4px; border-bottom:1.5px solid var(--ink-900);
  transition: color .2s ease, border-color .2s ease, gap .2s ease;
}
.see-all:hover{ color:var(--orange-600); border-color:var(--orange-600); gap:10px; }
.see-all .icon{ width:16px; height:16px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:inherit; font-size:14.5px; font-weight:700;
  padding:13px 26px; border-radius:12px;
  cursor:pointer; white-space:nowrap; border:1.5px solid transparent;
  transition: transform .25s var(--ease-out), box-shadow .25s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn-primary{
  background: linear-gradient(180deg, var(--orange-400), var(--orange-500) 60%, var(--orange-600));
  color:#fff; box-shadow: 0 10px 24px rgba(255,106,30,.32);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255,106,30,.4); }
.btn-dark{ background: var(--navy-950); color:#fff; }
.btn-dark:hover{ transform: translateY(-2px); background:#000; }
.btn-ghost{ border-color: var(--line); color: var(--ink-900); background:var(--paper); }
.btn-ghost:hover{ border-color: var(--ink-900); transform: translateY(-2px); }
.btn-outline-light{ border-color: rgba(255,255,255,.35); color:#fff; }
.btn-outline-light:hover{ border-color:#fff; background:rgba(255,255,255,.08); }
.btn-sm{ padding:9px 16px; font-size:13px; border-radius:10px; }
.btn-block{ width:100%; }

/* ===================== حالت نمایش کلی: پس‌زمینه‌ی نقطه‌چین ===================== */
.dot-field{
  position:absolute; inset:0;
  background-image: radial-gradient(rgba(29,26,23,.14) 1.3px, transparent 1.3px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, #000 40%, transparent 85%);
          mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, #000 40%, transparent 85%);
  pointer-events:none;
}

/* ===================== انیمیشن‌های نمایش هنگام اسکرول ===================== */
.reveal{ opacity:0; transform: translateY(26px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in-view{ opacity:1; transform:none; }
.reveal-stagger > *{ opacity:0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal-stagger.in-view > *{ opacity:1; transform:none; }
.reveal-stagger.in-view > *:nth-child(1){ transition-delay:.03s; }
.reveal-stagger.in-view > *:nth-child(2){ transition-delay:.09s; }
.reveal-stagger.in-view > *:nth-child(3){ transition-delay:.15s; }
.reveal-stagger.in-view > *:nth-child(4){ transition-delay:.21s; }
.reveal-stagger.in-view > *:nth-child(5){ transition-delay:.27s; }
.reveal-stagger.in-view > *:nth-child(6){ transition-delay:.33s; }
.reveal-stagger.in-view > *:nth-child(7){ transition-delay:.39s; }
.reveal-stagger.in-view > *:nth-child(8){ transition-delay:.45s; }
.reveal-stagger.in-view > *:nth-child(9){ transition-delay:.51s; }
.reveal-stagger.in-view > *:nth-child(10){ transition-delay:.57s; }

@keyframes floaty{
  0%,100%{ transform: translateY(0) rotate(var(--r,0deg)); }
  50%{ transform: translateY(-12px) rotate(var(--r,0deg)); }
}

/* ===================== هدر ===================== */
header{
  position:fixed; top:0; left:0; right:0; z-index:200;
  padding:18px 0;
  transition: padding .35s ease, background .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-bottom:1px solid transparent;
}
header.scrolled{
  padding:11px 0;
  background: rgba(251,247,240,.86);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(29,26,23,.06);
}
.header-row{ display:flex; align-items:center; justify-content:space-between; gap:20px; }

.brand{ display:flex; align-items:center; gap:10px; }
.brand .mark{
  width:38px; height:38px; border-radius:11px;
  background: linear-gradient(145deg, var(--orange-400), var(--orange-600));
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 6px 16px rgba(255,106,30,.35);
  flex-shrink:0;
}
.brand .mark svg{ width:20px; height:20px; }
.brand .word{ font-size:19px; font-weight:800; color:var(--ink-900); letter-spacing:-.01em; }
.brand .word span{ color:var(--orange-500); }

nav.main-nav{ display:flex; align-items:center; gap:36px; }
nav.main-nav a{
  font-size:14.5px; font-weight:600; color:var(--ink-700);
  position:relative; padding:6px 0; transition: color .2s ease;
}
nav.main-nav a::after{
  content:""; position:absolute; right:0; left:0; bottom:0; height:2px;
  background: var(--orange-500); border-radius:2px;
  transform: scaleX(0); transform-origin:center; transition: transform .25s var(--ease-out);
}
nav.main-nav a:hover{ color:var(--ink-900); }
nav.main-nav a:hover::after{ transform: scaleX(1); }
nav.main-nav a.active{ color:var(--ink-900); }
nav.main-nav a.active::after{ transform: scaleX(1); }

.header-actions{ display:flex; align-items:center; gap:10px; }
.loc-btn{
  display:flex; align-items:center; gap:7px;
  font-size:13.5px; font-weight:600; color:var(--ink-900);
  background:var(--paper); border:1px solid var(--line);
  padding:9px 14px; border-radius:11px;
  transition: border-color .2s ease, transform .2s ease;
}
.loc-btn:hover{ border-color: var(--orange-400); transform: translateY(-1px); }
.loc-btn .icon{ width:16px; height:16px; color:var(--orange-500); }
.loc-btn .chev{ width:13px; height:13px; color:var(--ink-400); }

.icon-btn{
  position:relative; width:40px; height:40px; border-radius:11px;
  display:flex; align-items:center; justify-content:center;
  background:var(--paper); border:1px solid var(--line); color:var(--ink-900);
  transition: border-color .2s ease, transform .2s ease;
}
.icon-btn:hover{ border-color: var(--orange-400); transform: translateY(-1px); }
.icon-btn .badge{
  position:absolute; top:-4px; left:-4px;
  width:17px; height:17px; border-radius:50%;
  background: var(--orange-500); color:#fff;
  font-family:var(--font-mono); font-size:9.5px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  border:2px solid var(--cream-50);
}
.avatar-chip{
  width:40px; height:40px; border-radius:11px; overflow:hidden;
  border:1px solid var(--line); flex-shrink:0;
}
.avatar-chip .init{
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(145deg,#4b5567,#232838); color:#fff; font-weight:700; font-size:14px;
}
.menu-toggle{ display:none; width:40px; height:40px; align-items:center; justify-content:center; }
.menu-toggle .icon{ width:22px; height:22px; }

/* ===================== هیرو ===================== */
.hero{
  padding:168px 0 110px;
  position:relative;
  overflow:hidden;
}
.hero-grid{
  display:grid; grid-template-columns: 1.02fr .98fr;
  gap:56px; align-items:center;
  position:relative; z-index:2;
}
.hero h1{
  font-size:53px; line-height:1.16; font-weight:800; letter-spacing:-.02em;
  color:var(--ink-900); margin-bottom:22px;
}
.hero h1 em{
  font-style:normal; position:relative; display:inline-block; color: var(--orange-500);
}
.hero h1 em svg{
  position:absolute; bottom:-6px; left:0; width:100%; height:14px;
}
.hero > .wrap > .hero-grid > div:first-child > p.lead{
  font-size:17px; color:var(--ink-500); max-width:480px; margin-bottom:34px;
}

/* جعبه‌ی جست‌وجو */
.search-console{
  background:var(--paper); border:1px solid var(--line);
  border-radius:20px; padding:10px; box-shadow: var(--shadow-md);
  display:flex; align-items:center; gap:8px; margin-bottom:18px;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.search-console.focused{ border-color: var(--orange-400); box-shadow: 0 0 0 5px var(--orange-100), var(--shadow-md); }
.search-console .mic-btn{
  width:46px; height:46px; border-radius:14px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background: var(--orange-100); color: var(--orange-600);
  transition: background .2s ease, transform .2s ease;
}
.search-console .mic-btn:hover{ background: var(--orange-500); color:#fff; transform:scale(1.05); }
.search-console input{
  flex:1; border:none; outline:none; background:none;
  font-family:inherit; font-size:15.5px; color:var(--ink-900); padding:6px 4px;
}
.search-console input::placeholder{ color: var(--ink-400); }
.search-console .search-submit{
  width:46px; height:46px; border-radius:14px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background: var(--navy-950); color:#fff;
  transition: background .2s ease, transform .2s ease;
}
.search-console .search-submit:hover{ background:#000; transform: scale(1.05); }

.tag-row{ display:flex; flex-wrap:wrap; align-items:center; gap:9px; margin-bottom:44px; }
.tag-row span.lbl{ font-size:13px; color:var(--ink-400); margin-left:2px; }
.chip-tag{
  font-size:13px; font-weight:600; color:var(--ink-700);
  background:var(--cream-100); border:1px solid var(--line);
  padding:7px 14px; border-radius:999px;
  transition: all .2s ease;
}
.chip-tag:hover{ background:var(--orange-500); color:#fff; border-color:var(--orange-500); transform: translateY(-1px); }

.stat-row{ display:flex; gap:38px; flex-wrap:wrap; }
.stat-row .stat b{
  display:block; font-family:var(--font-mono); font-size:26px; font-weight:700;
  color:var(--ink-900); direction:ltr;
}
.stat-row .stat b .plus{ color:var(--orange-500); }
.stat-row .stat span{ font-size:13px; color:var(--ink-500); }

/* نمای موبایل شناور در هیرو */
.hero-visual{ position:relative; height:560px; }
.blob{
  position:absolute; border-radius:50%;
  background: radial-gradient(circle at 35% 30%, var(--orange-400), var(--orange-600) 70%);
  filter: blur(6px); opacity:.24;
}
.blob.b1{ width:420px; height:420px; top:-40px; left:10%; }
.blob.b2{ width:220px; height:220px; bottom:0; right:0; background: radial-gradient(circle at 35% 30%, var(--navy-700), var(--navy-950) 70%); opacity:.12; }

.phone-mock{
  position:absolute; top:6%; left:50%;
  width:280px; height:auto;
  transform: translateX(-50%) rotate(-5deg);
  background: var(--navy-950);
  border-radius:38px; padding:12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.04) inset;
}
.phone-mock .screen{
  background: var(--cream-50); border-radius:27px; overflow:hidden;
  padding-bottom:14px;
}
.phone-mock .p-status{ display:flex; justify-content:space-between; padding:12px 18px 4px; font-family:var(--font-mono); font-size:10px; color:var(--ink-700); }
.phone-mock .p-header{
  background: var(--navy-950); margin:8px 10px 0; border-radius:16px; padding:14px 16px;
  display:flex; align-items:center; justify-content:space-between;
}
.phone-mock .p-header .p-word{ color:#fff; font-size:12px; font-weight:800; }
.phone-mock .p-header .p-dots{ display:flex; gap:5px; }
.phone-mock .p-header .p-dots span{ width:16px; height:16px; border-radius:6px; background:rgba(255,255,255,.14); }
.phone-mock .p-search{
  margin:10px 12px 0; background:#fff; border-radius:12px; padding:10px 12px;
  display:flex; align-items:center; gap:8px; box-shadow: var(--shadow-sm);
}
.phone-mock .p-search .p-line{ height:7px; border-radius:4px; background: var(--cream-200); flex:1; }
.phone-mock .p-search svg{ width:13px; height:13px; color:var(--ink-400); }
.phone-mock .p-cta{
  margin:10px 12px 0; height:44px; border-radius:12px;
  background: linear-gradient(90deg, var(--orange-400), var(--orange-600));
}
.phone-mock .p-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:8px; margin:12px 12px 0; }
.phone-mock .p-grid .cell{
  aspect-ratio:1; background:#fff; border-radius:11px;
  display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-sm);
}
.phone-mock .p-grid .cell svg{ width:16px; height:16px; color: var(--orange-500); fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.phone-mock .p-card{
  margin:12px 12px 0; background:#fff; border-radius:14px; padding:10px;
  display:flex; align-items:center; gap:10px; box-shadow: var(--shadow-sm);
}
.phone-mock .p-card .p-av{ width:38px; height:38px; border-radius:10px; background: linear-gradient(145deg,#4b5567,#232838); flex-shrink:0; }
.phone-mock .p-card .p-lines{ flex:1; display:flex; flex-direction:column; gap:6px; }
.phone-mock .p-card .p-lines i{ display:block; height:7px; border-radius:4px; background: var(--cream-200); }
.phone-mock .p-card .p-lines i:first-child{ width:70%; background: var(--ink-400); opacity:.4; }
.phone-mock .p-card .p-lines i:last-child{ width:45%; }

.float-badge{
  position:absolute; display:flex; align-items:center; gap:8px;
  background:var(--paper); border:1px solid var(--line);
  padding:11px 16px; border-radius:15px; box-shadow: var(--shadow-md);
  font-size:13px; font-weight:700; color:var(--ink-900);
  animation: floaty 7s ease-in-out infinite;
}
.float-badge .ic-wrap{
  width:30px; height:30px; border-radius:9px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
}
.float-badge.fb1{ top:8%; right:0; --r:-2deg; animation-delay:0s; }
.float-badge.fb1 .ic-wrap{ background: var(--green-100); color:var(--green-600); }
.float-badge.fb2{ bottom:20%; left:-2%; --r:2deg; animation-delay:1.4s; }
.float-badge.fb2 .ic-wrap{ background: var(--orange-100); color:var(--orange-600); }
.float-badge.fb3{ bottom:2%; right:6%; --r:-1deg; animation-delay:2.6s; }
.float-badge.fb3 .ic-wrap{ background: var(--navy-900); color:#fff; }
.float-badge small{ display:block; font-weight:500; color:var(--ink-500); font-size:11px; margin-top:1px; }

.store-row{
  position:absolute; bottom:-4px; left:50%; transform:translateX(-50%);
  display:flex; gap:10px;
}
.store-pill{
  display:flex; align-items:center; gap:8px;
  background:var(--navy-950); color:#fff; padding:8px 14px; border-radius:11px;
  font-size:11.5px; box-shadow: var(--shadow-sm);
}
.store-pill b{ display:block; font-size:12.5px; }
.store-pill span{ color:rgba(255,255,255,.55); font-size:9.5px; }
.store-pill svg{ width:18px; height:18px; }

/* ===================== نوار CTA نارنجی ===================== */
.cta-strip{
  background: linear-gradient(100deg, var(--orange-600), var(--orange-500) 55%, var(--orange-400));
  border-radius:26px; padding:34px 40px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  position:relative; overflow:hidden;
  box-shadow: 0 20px 50px rgba(232,83,16,.28);
}
.cta-strip::before{
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,.16) 1.5px, transparent 1.5px);
  background-size:20px 20px;
  -webkit-mask-image: linear-gradient(115deg, #000 0%, transparent 55%);
          mask-image: linear-gradient(115deg, #000 0%, transparent 55%);
}
.cta-strip .left{ display:flex; align-items:center; gap:20px; position:relative; z-index:1; }
.cta-strip .ic{
  width:64px; height:64px; border-radius:18px; flex-shrink:0;
  background: rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.25);
  display:flex; align-items:center; justify-content:center;
}
.cta-strip .ic svg{ width:30px; height:30px; color:#fff; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.cta-strip h3{ color:#fff; font-size:22px; font-weight:800; margin-bottom:5px; }
.cta-strip p{ color:rgba(255,255,255,.85); font-size:14px; }
.cta-strip .right{ position:relative; z-index:1; flex-shrink:0; }
.cta-strip .btn-white{
  background:#fff; color: var(--orange-600); padding:15px 30px; border-radius:13px;
  font-weight:800; font-size:15px; display:inline-flex; align-items:center; gap:8px;
  transition: transform .25s var(--ease-out), box-shadow .25s ease;
}
.cta-strip .btn-white:hover{ transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.18); }

/* ===================== دسته‌بندی خدمات ===================== */
.cat-grid{
  display:grid; grid-template-columns: repeat(5, 1fr); gap:18px;
}
.cat-card{
  background:var(--paper); border:1px solid var(--line); border-radius:18px;
  padding:26px 18px; text-align:center;
  transition: transform .3s var(--ease-out), box-shadow .3s ease, border-color .3s ease;
}
.cat-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.cat-card .cat-ic{
  width:58px; height:58px; border-radius:16px; margin:0 auto 16px;
  display:flex; align-items:center; justify-content:center;
  background: var(--cream-100); color: var(--orange-500);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.cat-card:hover .cat-ic{ background: linear-gradient(145deg, var(--orange-400), var(--orange-600)); color:#fff; transform: rotate(-6deg) scale(1.05); }
.cat-card .cat-ic svg{ width:27px; height:27px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.cat-card h4{ font-size:14.5px; font-weight:700; color:var(--ink-900); margin-bottom:4px; }
.cat-card span{ font-family:var(--font-mono); font-size:11.5px; color:var(--ink-400); direction:ltr; display:inline-block; }

/* ===================== متخصصان ===================== */
.pro-scroller{
  display:flex; gap:20px; overflow-x:auto; padding:6px 4px 22px;
  scroll-snap-type: x proximity;
  scrollbar-width:none;
}
.pro-scroller::-webkit-scrollbar{ display:none; }
.pro-card{
  scroll-snap-align:start; flex:0 0 292px;
  background:var(--paper); border:1px solid var(--line); border-radius:20px;
  overflow:hidden; transition: transform .3s var(--ease-out), box-shadow .3s ease;
}
.pro-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pro-card .pro-top{
  position:relative; padding:20px 20px 0;
}
.pro-card .pro-av{
  width:74px; height:74px; border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  font-size:24px; font-weight:800; color:#fff;
  box-shadow: var(--shadow-sm);
  position:relative;
}
.pro-card .pro-av .dot-on{
  position:absolute; top:-3px; left:-3px; width:15px; height:15px; border-radius:50%;
  background: var(--green-600); border:2.5px solid var(--paper);
}
.pro-card .rate-pill{
  position:absolute; top:16px; left:16px;
  display:flex; align-items:center; gap:4px;
  background:#fff; border:1px solid var(--line);
  padding:5px 9px; border-radius:999px; font-family:var(--font-mono);
  font-size:12px; font-weight:700; color:var(--ink-900); box-shadow: var(--shadow-sm);
}
.pro-card .rate-pill svg{ width:12px; height:12px; color: var(--gold-500); }
.pro-card .pro-body{ padding:16px 20px 20px; }
.pro-card h4{ font-size:16.5px; font-weight:800; margin-bottom:3px; }
.pro-card .role{ font-size:13.5px; color: var(--ink-500); margin-bottom:12px; }
.pro-card .meta-line{ display:flex; align-items:center; gap:6px; font-size:12.5px; color: var(--ink-500); margin-bottom:6px; }
.pro-card .meta-line svg{ width:14px; height:14px; flex-shrink:0; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.pro-card .meta-line.verify{ color: var(--green-600); font-weight:600; }
.pro-card .meta-line .mono{ margin-right:2px; }
.pro-card .pro-stats{ font-size:12.5px; color: var(--ink-400); margin-bottom:16px; }
.pro-card .pro-stats b{ font-family:var(--font-mono); color:var(--ink-700); font-weight:700; }
.pro-card .pro-actions{ display:flex; gap:8px; }
.pro-card .pro-actions .btn-ghost{ flex:1; }
.pro-card .call-btn{
  width:44px; height:44px; border-radius:11px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background: var(--navy-950); color:#fff;
  transition: background .2s ease, transform .2s ease;
}
.pro-card .call-btn:hover{ background: var(--orange-500); transform: translateY(-2px); }

.scroller-nav{ display:flex; gap:10px; }
.scroller-nav button{
  width:42px; height:42px; border-radius:11px; border:1px solid var(--line);
  background:var(--paper); display:flex; align-items:center; justify-content:center;
  transition: all .2s ease;
}
.scroller-nav button:hover{ background:var(--navy-950); color:#fff; border-color:var(--navy-950); }
.scroller-nav button .icon{ width:18px; height:18px; }

/* ===================== بنر اعتماد ===================== */
.trust-band{
  background: var(--navy-950); border-radius:26px;
  padding:52px 48px; position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:space-between; gap:40px;
}
.trust-band .dot-field{ opacity:.5; }
.trust-band .left{ display:flex; align-items:center; gap:24px; position:relative; z-index:1; }
.trust-band .shield{
  width:74px; height:74px; border-radius:20px; flex-shrink:0;
  background: linear-gradient(145deg, var(--orange-400), var(--orange-600));
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 14px 30px rgba(255,106,30,.35);
}
.trust-band .shield svg{ width:34px; height:34px; color:#fff; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.trust-band h3{ color:#fff; font-size:25px; font-weight:800; margin-bottom:9px; }
.trust-band p{ color: rgba(255,255,255,.6); font-size:14.5px; max-width:480px; }
.trust-band .right{ position:relative; z-index:1; flex-shrink:0; }

/* ===================== روند کار ===================== */
.steps{ display:grid; grid-template-columns: repeat(4,1fr); gap:20px; position:relative; }
.steps::before{
  content:""; position:absolute; top:34px; right:12%; left:12%; height:1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
  z-index:0;
}
.step-card{ position:relative; z-index:1; }
.step-card .num{
  width:68px; height:68px; border-radius:18px;
  background: var(--paper); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-size:20px; font-weight:700; color: var(--orange-500);
  margin-bottom:22px; box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}
.step-card:hover .num{ background: var(--navy-950); color:#fff; border-color:var(--navy-950); transform: translateY(-4px); }
.step-card h4{ font-size:16.5px; font-weight:700; margin-bottom:8px; }
.step-card p{ font-size:13.5px; color: var(--ink-500); }

/* ===================== خدمات فوری ===================== */
.urgent-section{ background: var(--navy-950); }
.urgent-head{ display:flex; align-items:center; justify-content:space-between; gap:20px; margin-bottom:34px; flex-wrap:wrap; }
.urgent-head h2{ color:#fff; font-size:28px; font-weight:800; }
.urgent-pulse{
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(255,106,30,.15); border:1px solid rgba(255,106,30,.35);
  color: var(--orange-400); padding:9px 16px; border-radius:999px; font-size:13px; font-weight:600;
}
.urgent-pulse .dot{ width:8px; height:8px; border-radius:50%; background: var(--orange-500); animation: pulse-dot 1.6s ease-in-out infinite; }
@keyframes pulse-dot{ 0%,100%{ opacity:1; box-shadow:0 0 0 0 rgba(255,106,30,.6);} 50%{ opacity:.7; box-shadow:0 0 0 6px rgba(255,106,30,0);} }

.urgent-grid{ display:grid; grid-template-columns: repeat(6,1fr); gap:16px; }
.urgent-card{
  background: var(--navy-800); border:1px solid rgba(255,255,255,.07); border-radius:16px;
  padding:22px 14px; text-align:center;
  transition: all .3s var(--ease-out);
}
.urgent-card:hover{ background: var(--navy-700); transform: translateY(-5px); border-color: rgba(255,106,30,.4); }
.urgent-card .u-ic{
  width:48px; height:48px; border-radius:13px; margin:0 auto 13px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,106,30,.14); color: var(--orange-400);
}
.urgent-card .u-ic svg{ width:23px; height:23px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.urgent-card span{ font-size:13px; font-weight:600; color:#fff; }

/* ===================== نظرات کاربران ===================== */
.test-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
.test-card{
  background:var(--paper); border:1px solid var(--line); border-radius:20px; padding:28px;
}
.test-card .stars{ display:flex; gap:3px; margin-bottom:16px; }
.test-card .stars svg{ width:15px; height:15px; color: var(--gold-500); }
.test-card p.q{ font-size:14.5px; color: var(--ink-700); margin-bottom:22px; line-height:1.8; }
.test-card .who{ display:flex; align-items:center; gap:12px; }
.test-card .who .av{
  width:42px; height:42px; border-radius:12px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-size:14px;
}
.test-card .who b{ display:block; font-size:14px; }
.test-card .who span{ font-size:12.5px; color: var(--ink-400); }

/* ===================== بنر پایانی ===================== */
.final-cta{
  background: linear-gradient(120deg, var(--navy-950) 0%, var(--navy-800) 100%);
  border-radius:28px; padding:0; overflow:hidden;
  display:grid; grid-template-columns: 1.1fr .9fr; align-items:center;
  position:relative;
}
.final-cta .txt{ padding:56px 56px; position:relative; z-index:1; }
.final-cta .eyebrow{ color: var(--orange-400); }
.final-cta .eyebrow::before{ background: var(--orange-400); }
.final-cta h2{ color:#fff; font-size:32px; font-weight:800; margin-bottom:14px; line-height:1.3; }
.final-cta p{ color: rgba(255,255,255,.6); font-size:15px; margin-bottom:30px; max-width:420px; }
.final-cta .btns{ display:flex; gap:12px; }
.final-cta .visual{
  position:relative; height:100%; min-height:340px;
  background:
    linear-gradient(0deg, var(--navy-950), transparent 60%),
    repeating-linear-gradient(115deg, rgba(255,106,30,.12) 0 2px, transparent 2px 34px);
}
.final-cta .visual .crane-shape{
  position:absolute; inset:0;
}

/* ===================== فوتر ===================== */
footer{ background: var(--navy-950); color: rgba(255,255,255,.55); padding:80px 0 0; }
.footer-grid{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap:40px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand .brand .word{ color:#fff; }
.footer-brand p{ font-size:13.5px; line-height:1.8; margin:18px 0 24px; max-width:280px; }
.social-row{ display:flex; gap:10px; }
.social-row a{
  width:38px; height:38px; border-radius:10px; border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center; transition: all .2s ease;
}
.social-row a:hover{ background: var(--orange-500); border-color: var(--orange-500); }
.social-row .icon{ width:17px; height:17px; color:#fff; }

footer h5{ color:#fff; font-size:14.5px; font-weight:700; margin-bottom:20px; }
footer ul li{ margin-bottom:12px; }
footer ul li a{ font-size:13.5px; transition: color .2s ease, padding-right .2s ease; }
footer ul li a:hover{ color:#fff; padding-right:4px; }
.foot-contact li{ display:flex; align-items:flex-start; gap:10px; font-size:13.5px; margin-bottom:14px; }
.foot-contact li svg{ width:16px; height:16px; color: var(--orange-400); flex-shrink:0; margin-top:2px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }

.footer-bottom{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:24px 0; font-size:12.5px; flex-wrap:wrap;
}
.footer-bottom .policies{ display:flex; gap:20px; }
.enamad-box{
  width:56px; height:56px; border-radius:10px; background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-size:9px; text-align:center; color: rgba(255,255,255,.4);
}

/* ===================== واکنش‌گرا ===================== */
@media (max-width: 1080px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ height:480px; max-width:420px; margin:0 auto; }
  .hero h1{ font-size:42px; }
  .cat-grid{ grid-template-columns: repeat(3,1fr); }
  .urgent-grid{ grid-template-columns: repeat(3,1fr); }
  .test-grid{ grid-template-columns:1fr; }
  .final-cta{ grid-template-columns:1fr; }
  .final-cta .visual{ display:none; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px){
  nav.main-nav{ display:none; }
  .menu-toggle{ display:flex; }
  .loc-btn span{ display:none; }
  .header-actions .btn-primary span{ display:none; }
  .header-actions .btn-primary{ padding:0; width:40px; height:40px; border-radius:11px; }
  .header-actions{ gap:8px; }
  .avatar-chip{ display:none; }
  .header-row{ gap:10px; }
  .wrap{ padding:0 20px; }
  .hero{ padding:140px 0 70px; }
  .hero h1{ font-size:34px; }
  .section-head{ flex-direction:column; align-items:flex-start; gap:14px; }
  .cta-strip{ flex-direction:column; text-align:center; padding:30px 24px; }
  .cta-strip .left{ flex-direction:column; }
  .cat-grid{ grid-template-columns: repeat(2,1fr); }
  .steps{ grid-template-columns:1fr 1fr; gap:28px 16px; }
  .steps::before{ display:none; }
  .urgent-grid{ grid-template-columns: repeat(2,1fr); }
  .trust-band{ flex-direction:column; text-align:center; padding:40px 26px; }
  .trust-band .left{ flex-direction:column; }
  .footer-grid{ grid-template-columns:1fr; gap:36px; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  section{ padding-top:64px !important; padding-bottom:64px !important; }
}

/* ===================== صفحات داخلی ===================== */
.inner-hero{ padding:160px 0 80px; position:relative; overflow:hidden; background:var(--navy-950); }
.inner-hero .eyebrow{ color:var(--orange-400); }
.inner-hero .eyebrow::before{ background:var(--orange-400); }
.inner-hero h1{ font-size:42px; font-weight:800; color:#fff; line-height:1.3; margin-bottom:16px; }
.inner-hero .lead{ color:rgba(255,255,255,.65); font-size:17px; max-width:560px; }

.about-grid{ display:grid; grid-template-columns:1.2fr .8fr; gap:60px; align-items:center; }
.about-text h2{ color:var(--ink-900); }
.about-visual{ display:flex; flex-direction:column; gap:16px; }
.about-card{ background:var(--paper); border:1px solid var(--line); border-radius:18px; padding:24px 28px; transition:transform .3s var(--ease-out),box-shadow .3s ease; }
.about-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.about-stat{ display:flex; flex-direction:column; gap:4px; }
.about-stat b{ font-family:var(--font-mono); font-size:32px; font-weight:700; color:var(--ink-900); }
.about-stat span{ font-size:14px; color:var(--ink-500); }

.features-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.feature-card{ background:var(--paper); border:1px solid var(--line); border-radius:18px; padding:28px 22px; transition:transform .3s var(--ease-out),box-shadow .3s ease; }
.feature-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.feature-icon{ width:54px; height:54px; border-radius:14px; display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.feature-icon svg{ width:26px; height:26px; }
.feature-card h4{ font-size:16px; font-weight:700; margin-bottom:8px; }
.feature-card p{ font-size:13.5px; color:var(--ink-500); line-height:1.8; }

/* فرم تماس */
.contact-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:50px; }
.contact-form{ display:flex; flex-direction:column; gap:20px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group{ display:flex; flex-direction:column; gap:6px; }
.form-group label{ font-size:13.5px; font-weight:600; color:var(--ink-700); }
.form-group input,.form-group select,.form-group textarea{
  font-family:inherit; font-size:14.5px; padding:12px 16px; border-radius:12px;
  border:1.5px solid var(--line); background:var(--paper); color:var(--ink-900);
  transition:border-color .2s ease,box-shadow .2s ease; outline:none; resize:vertical;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{ border-color:var(--orange-500); box-shadow:0 0 0 3px var(--orange-100); }
.form-group textarea{ min-height:120px; }

.contact-info-wrap{ display:flex; flex-direction:column; gap:0; }
.contact-info-card{ display:flex; align-items:center; gap:16px; padding:18px 0; border-bottom:1px solid var(--line); }
.contact-info-card:last-of-type{ border-bottom:none; }
.contact-info-icon{ width:50px; height:50px; border-radius:14px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-info-card h4{ font-size:14px; font-weight:700; margin-bottom:2px; }
.contact-info-card p{ font-size:13.5px; color:var(--ink-500); margin:0; }

.social-links-big{ display:flex; gap:12px; margin-top:24px; }
.social-big{ display:inline-flex; align-items:center; gap:10px; padding:14px 22px; border-radius:14px; font-size:14px; font-weight:700; transition:transform .25s var(--ease-out),box-shadow .25s ease; }
.social-big:hover{ transform:translateY(-2px); box-shadow:var(--shadow-md); }

@media(max-width:1080px){
  .about-grid{ grid-template-columns:1fr; }
  .features-grid{ grid-template-columns:repeat(2,1fr); }
  .contact-grid{ grid-template-columns:1fr; }
}
@media(max-width:860px){
  .features-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .inner-hero h1{ font-size:30px; }
}

/* ===================== Digits Plugin Overrides — Site Theme ===================== */
/* Backdrop */
.digits_popup_wrapper.dig-box{
  background:rgba(29,26,23,.72) !important;
  backdrop-filter:blur(4px) !important;
}
/* Form box */
.digits-form-wrapper.digits_modal_box.digits2_box,
.digits-form-wrapper .digits2_box,
.digits_modal_box{
  background:var(--cream-50,#fbf7f0) !important;
  border:1px solid var(--line,rgba(29,26,23,.09)) !important;
  border-radius:22px !important;
  box-shadow:0 24px 64px rgba(29,26,23,.18),0 2px 8px rgba(29,26,23,.06) !important;
  padding:36px 32px 28px !important;
  direction:rtl !important;
  font-family:var(--font-body) !important;
  max-width:420px !important;
}
/* Heading */
.digits-form-heading{ color:var(--ink-900,#1d1a17) !important; font-size:22px !important; font-weight:800 !important; text-align:center !important; margin-bottom:20px !important; }
.digits-form-heading *{ color:var(--ink-900,#1d1a17) !important; }
/* Input wrapper */
.digits-form-login .dig-ma-box,
.digits-form-login .digits_ma_box,
.digits-form-tab_wrapper .dig-ma-box,
.digits-form-init_step-data .dig-ma-box{
  background:#fff !important;
  border:1.5px solid var(--line,rgba(29,26,23,.09)) !important;
  border-radius:14px !important;
  overflow:hidden !important;
  transition:border-color .2s,box-shadow .2s !important;
}
.digits-form-login .dig-ma-box:focus-within,
.digits-form-tab_wrapper .dig-ma-box:focus-within{
  border-color:var(--orange-500,#ff6a1e) !important;
  box-shadow:0 0 0 3px rgba(255,106,30,.12) !important;
}
/* Phone input */
.digits-form-login input[type="text"],
.digits-form-login input[type="tel"],
.digits-form-login input[type="number"],
.digits-form-tab_wrapper input,
.digits-form-init_step-data input,
.digits-form-wrapper .dig-input,
.digits_login_wrapper input[type="text"],
.digits_login_wrapper input[type="password"]{
  background:transparent !important;
  color:var(--ink-900,#1d1a17) !important;
  border:none !important;
  font-size:15px !important;
  font-family:var(--font-body) !important;
  direction:ltr !important;
  text-align:left !important;
  padding:14px 16px !important;
  width:100% !important;
  outline:none !important;
  box-shadow:none !important;
}
.digits-form-login input::placeholder,
.digits-form-tab_wrapper input::placeholder{ color:var(--ink-400,#9a9186) !important; }
/* Flag / country */
.digits-form-login .dig-ma-box select,
.digits-form-login .digits-country-select,
.digits-form-login .flag-dropdown,
.digits-form-tab_wrapper .flag-dropdown{ background:transparent !important; color:var(--ink-700,#433e37) !important; border-left:1px solid var(--line,rgba(29,26,23,.09)) !important; }
/* Labels */
.digits-form-wrapper label,
.digits_login_wrapper label,
.digits-form-tab_wrapper label,
.digits-form-login label{ color:var(--ink-700,#433e37) !important; font-size:14px !important; font-weight:600 !important; font-family:var(--font-body) !important; margin-bottom:6px !important; display:block !important; }
.digits-form-login label,
.digits-form-login .digits-form-tab_wrapper label,
.digits-form-login span{ color:var(--ink-500,#726b60) !important; }
/* Submit button */
.digits-form-button.digits-form-submit-btn,
.digits-form-wrapper .dig-login-btn,
.digits-form-wrapper button.dig-login-btn,
.digits_login_wrapper .dig-login-btn,
.digits_form_wrapper button[type="submit"]{
  width:100% !important;
  padding:16px !important;
  border-radius:14px !important;
  font-size:16px !important;
  font-weight:700 !important;
  font-family:var(--font-body) !important;
  background:linear-gradient(180deg,var(--orange-400,#ff8c4d),var(--orange-500,#ff6a1e) 60%,var(--orange-600,#e85310)) !important;
  color:#fff !important;
  border:none !important;
  cursor:pointer !important;
  box-shadow:0 8px 24px rgba(232,83,16,.3) !important;
  transition:transform .2s,box-shadow .2s !important;
}
.digits-form-wrapper .dig-login-btn:hover,
.digits-form-wrapper button[type="submit"]:hover{ transform:translateY(-2px) !important; box-shadow:0 12px 32px rgba(232,83,16,.4) !important; }
/* Footer */
.digits-form-footer{ text-align:center !important; margin-top:18px !important; color:var(--ink-500,#726b60) !important; font-size:13px !important; font-family:var(--font-body) !important; }
.digits-form-footer a{ color:var(--orange-500,#ff6a1e) !important; font-weight:700 !important; text-decoration:none !important; }
.digits-form-footer a:hover{ text-decoration:underline !important; }
/* Errors / success */
.digits-form-wrapper .digits_error,
.digits_login_wrapper .digits_error,
.digits-form-wrapper .digits_success{ border-radius:12px !important; font-size:14px !important; font-family:var(--font-body) !important; padding:12px 16px !important; }
/* Close button */
.digits_popup_wrapper .dig-box-close,
.digits_popup_wrapper .digits-close,
.digits_popup_wrapper [class*="close"]{ color:var(--ink-400,#9a9186) !important; font-size:24px !important; }
.digits_popup_wrapper .dig-box-close:hover,
.digits_popup_wrapper .digits-close:hover{ color:var(--ink-900,#1d1a17) !important; }
/* Tab wrapper */
.digits-form-tab_wrapper,
.digits-form-init_step-data{ background:transparent !important; direction:rtl !important; }
/* OTP inputs */
.digits-form-otp input,
.digits_otp_input,
.digit-otp-digit{ background:#fff !important; color:var(--ink-900,#1d1a17) !important; border:1.5px solid var(--line,rgba(29,26,23,.09)) !important; border-radius:12px !important; font-size:18px !important; font-family:var(--font-mono,'JetBrains Mono',monospace) !important; }
.digits-form-otp input:focus,
.digit-otp-digit:focus{ border-color:var(--orange-500,#ff6a1e) !important; box-shadow:0 0 0 3px rgba(255,106,30,.12) !important; }
