/* =========================================================
   کافی‌نت آنلاین: استایل اصلی (راست‌چین)
   ========================================================= */
:root {
	--paper: #F1F4F9;
	--surface: #FFFFFF;
	--ink: #0F2340;
	--muted: #56667D;
	--line: #DCE3EE;
	--primary: #2B44E8;
	--primary-soft: color-mix(in srgb, var(--primary) 11%, white);
	--mark: #FFC933;
	--ok: #12A66F;
	--radius: 14px;
	--wrap: 1180px;
	--font: 'Vazirmatn', Tahoma, 'Segoe UI', system-ui, sans-serif;
	--shadow: 0 1px 0 var(--line), 0 18px 40px -26px rgba(15, 35, 64, .35);
}

*, *::before, *::after { box-sizing: border-box; }
html { direction: rtl; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font: 400 1rem/1.95 var(--font);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
svg.ck-icon { flex: none; display: inline-block; vertical-align: middle; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.5; margin: 0 0 .6em; font-weight: 800; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; border-radius: 4px; }
.ltr { direction: ltr; unicode-bidi: embed; display: inline-block; }
.center { text-align: center; }
.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden;
	clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link { position: absolute; inset-inline-start: 1rem; top: -60px; background: var(--ink); color: #fff; padding: .6rem 1rem; z-index: 100; border-radius: 8px; }
.skip-link:focus { top: .75rem; }
.hp { position: absolute !important; inset-inline-start: -9999px; width: 1px; height: 1px; overflow: hidden; }

.wrap { width: min(100% - 2rem, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2rem, 820px); }

/* ---------- نوار بالا ---------- */
.topbar { background: var(--ink); color: #cdd8ea; font-size: .84rem; }
.topbar__row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-block: .3rem; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: .4rem; color: inherit; }
a.topbar__item:hover { color: #fff; text-decoration: none; }

/* ---------- هدر ---------- */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(255, 255, 255, .94);
	-webkit-backdrop-filter: saturate(1.5) blur(10px);
	backdrop-filter: saturate(1.5) blur(10px);
	border-bottom: 1px solid var(--line);
}
.site-header__row { display: flex; align-items: center; gap: 1.5rem; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--ink); font-weight: 800; font-size: 1.2rem; }
.brand:hover { text-decoration: none; }
.brand__mark { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--primary); color: #fff; box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .14); }
.brand--light { color: #fff; }
.custom-logo { max-height: 52px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 1rem; margin-inline-start: auto; }
.primary-menu { display: flex; align-items: center; gap: .15rem; list-style: none; }
.primary-menu li { position: relative; }
.primary-menu a { display: block; padding: .5rem .85rem; border-radius: 9px; color: var(--ink); font-weight: 500; font-size: .98rem; }
.primary-menu a:hover { background: var(--primary-soft); text-decoration: none; }
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a,
.primary-menu .current_page_item > a { background: var(--primary-soft); color: var(--primary); font-weight: 700; }
.primary-menu .menu-item-has-children > a::after {
	content: ""; display: inline-block; width: .42em; height: .42em; margin-inline-start: .45em;
	border-inline-end: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-3px) rotate(45deg);
}
.primary-menu .sub-menu {
	position: absolute; inset-inline-start: 0; top: 100%; min-width: 260px; list-style: none;
	background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: .4rem;
	box-shadow: 0 24px 40px -20px rgba(15, 35, 64, .35); display: none;
}
.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu { display: block; }
.primary-menu .sub-menu a { padding: .55rem .8rem; }

.nav-toggle { display: none; margin-inline-start: auto; background: none; border: 1.5px solid var(--line); border-radius: 10px; width: 44px; height: 44px; place-items: center; color: var(--ink); cursor: pointer; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

/* ---------- دکمه‌ها ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	padding: .75rem 1.35rem; border-radius: 12px; border: 2px solid transparent;
	font: 700 1rem/1.5 var(--font); cursor: pointer; text-decoration: none !important;
	transition: background-color .2s, border-color .2s, color .2s;
}
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: color-mix(in srgb, var(--primary) 84%, black); }
.btn--ghost { background: #fff; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--block { width: 100%; }
.site-nav__cta { padding: .55rem 1.2rem; }

/* ---------- بخش اصلی ---------- */
.hero {
	padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem);
	background-image: radial-gradient(circle, #c7d1e3 1.3px, transparent 1.6px);
	background-size: 24px 24px;
	border-bottom: 1px solid var(--line);
}
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__title { font-size: clamp(2.05rem, 4.8vw, 3.5rem); line-height: 1.45; letter-spacing: 0; margin-bottom: .5em; }
.hero__text { font-size: 1.12rem; color: var(--muted); max-width: 34em; margin-bottom: 1.75rem; }
.hero__actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { display: inline-block; padding: .2rem .85rem; border: 1.5px solid var(--line); background: #fff; border-radius: 99px; color: var(--ink); font-size: .9rem; font-weight: 500; }
.chip:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }

/* بلیت پیگیری (نمونه‌ی وضعیت درخواست) */
.ticket {
	position: relative; background: #fff; border-radius: 18px; max-width: 380px; margin-inline: auto;
	transform: rotate(-1.6deg); box-shadow: 0 1px 0 var(--line), 0 30px 50px -28px rgba(15, 35, 64, .45);
}
.ticket__head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .9rem 1.25rem; background: var(--mark); color: var(--ink); font-weight: 700; border-radius: 18px 18px 0 0; }
.ticket__code { direction: ltr; font-variant-numeric: tabular-nums; font-weight: 800; letter-spacing: .04em; }
.ticket__body { padding: 1.25rem; }
.ticket__title { font-weight: 800; font-size: 1.15rem; margin: 0; }
.ticket__meta { color: var(--muted); font-size: .9rem; margin: 0 0 1rem; }
.ticket__steps { list-style: none; display: grid; gap: .7rem; }
.ticket__steps li { display: flex; align-items: center; gap: .7rem; color: var(--muted); }
.ticket__steps .tick { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--line); display: grid; place-items: center; flex: none; }
.ticket__steps .is-done { color: var(--ink); }
.ticket__steps .is-done .tick { background: var(--ok); border-color: var(--ok); color: #fff; }
.ticket__steps .is-now { color: var(--ink); font-weight: 700; }
.ticket__steps .is-now .tick { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); }
.ticket__perf { position: relative; margin: 0 1rem; border-top: 2px dashed var(--line); }
.ticket__perf::before, .ticket__perf::after { content: ""; position: absolute; top: -11px; width: 22px; height: 22px; border-radius: 50%; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); }
.ticket__perf::before { inset-inline-start: calc(-1rem - 11px); }
.ticket__perf::after { inset-inline-end: calc(-1rem - 11px); }
.ticket__foot { padding: 1rem 1.25rem 1.25rem; color: var(--muted); font-size: .9rem; }

/* ---------- بخش‌ها ---------- */
.section { padding: clamp(3rem, 7vw, 5rem) 0; }
.section--tint { background: #E8EDF5; }
.section--ink { background: var(--ink); color: #dfe7f5; }
.section--ink .section__title { color: #fff; }
.section-gap { margin-top: 3rem; }
.section__head { max-width: 42rem; margin-bottom: 2rem; }
.section__head--row { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 1rem; }
.section__title { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .4rem; }
.section__lead { color: var(--muted); margin: 0; }
.link-more { display: inline-flex; align-items: center; gap: .35rem; font-weight: 700; }

/* ---------- خدمات ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.1rem; }
.svc-grid > .svc { grid-column: span 2; }
.svc-grid > .svc:nth-child(4):nth-last-child(2),
.svc-grid > .svc:nth-child(5):last-child,
.svc-grid > .svc:first-child:nth-last-child(4),
.svc-grid > .svc:first-child:nth-last-child(4) ~ .svc,
.svc-grid > .svc:first-child:nth-last-child(2),
.svc-grid > .svc:first-child:nth-last-child(2) ~ .svc { grid-column: span 3; }
.svc-grid > .svc:only-child { grid-column: span 6; }
.svc {
	display: flex; flex-direction: column; gap: .5rem; padding: 1.5rem;
	background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
	color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.svc:hover { border-color: var(--primary); box-shadow: var(--shadow); text-decoration: none; }
.svc__icon { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: var(--primary-soft); color: var(--primary); flex: none; }
.svc__icon--lg { width: 72px; height: 72px; border-radius: 18px; }
.svc__title { font-size: 1.2rem; margin: .5rem 0 0; }
.svc__text { color: var(--muted); margin: 0; font-size: .95rem; flex: 1; }
.svc__foot { display: flex; justify-content: space-between; align-items: center; gap: .75rem; flex-wrap: wrap; margin-top: .75rem; padding-top: .9rem; border-top: 1px dashed var(--line); font-size: .9rem; }
.svc__price { font-weight: 800; }
.svc__go { display: inline-flex; align-items: center; gap: .3rem; color: var(--primary); font-weight: 700; }

/* ---------- مراحل ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step { padding-top: 1.1rem; border-top: 2px solid rgba(255, 255, 255, .18); position: relative; }
.step::before { content: ""; position: absolute; top: -2px; inset-inline-start: 0; width: 44px; height: 2px; background: var(--mark); }
.step__n { display: block; font-size: 2.4rem; font-weight: 800; color: var(--mark); line-height: 1.2; }
.step h3 { font-size: 1.1rem; color: #fff; margin-bottom: .3rem; }
.step p { margin: 0; color: #b9c6dd; font-size: .95rem; }

/* ---------- پلن‌ها ---------- */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; }
.plan { position: relative; display: flex; flex-direction: column; gap: .35rem; padding: 1.6rem 1.4rem 1.4rem; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); }
.plan.is-best { border: 2px solid var(--primary); }
.plan__badge { position: absolute; top: -13px; inset-inline-start: 1.2rem; background: var(--mark); color: var(--ink); font-size: .8rem; font-weight: 800; padding: .05rem .75rem; border-radius: 99px; }
.plan__title { font-size: 1.1rem; margin: 0; }
.plan__price { font-size: 1.35rem; font-weight: 800; margin: 0; }
.plan__desc { color: var(--muted); font-size: .92rem; flex: 1; margin-bottom: .75rem; }
.plans--tight { gap: 1rem; }

/* ---------- سوالات متداول ---------- */
.faq { display: grid; gap: .6rem; }
.faq__item { background: #fff; border: 1.5px solid var(--line); border-radius: 12px; }
.faq__item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .95rem 1.2rem; font-weight: 700; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary svg { transition: transform .2s; color: var(--muted); }
.faq__item[open] summary svg { transform: rotate(180deg); }
.faq__item p { margin: 0; padding: 0 1.2rem 1.1rem; color: var(--muted); }

/* ---------- فرم ---------- */
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-btns { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.card { background: #fff; border: 1.5px solid var(--line); border-radius: 18px; padding: 1.6rem; }
.card--form { box-shadow: var(--shadow); }
.form { display: grid; gap: 1rem; }
.field label, .field__label { display: block; font-weight: 700; font-size: .95rem; margin-bottom: .3rem; }
.field input[type=text], .field input[type=tel], .field input[type=email], .field select, .field textarea {
	width: 100%; padding: .7rem .9rem; border: 1.5px solid var(--line); border-radius: 10px;
	font: inherit; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); }
.field input[type=tel] { direction: ltr; text-align: right; }
.field textarea { resize: vertical; min-height: 96px; }
.file { display: flex; align-items: center; gap: .6rem; padding: .7rem .9rem; border: 1.5px dashed #b7c3d8; border-radius: 10px; cursor: pointer; color: var(--muted); font-weight: 400; margin: 0; }
.file:hover, .file:focus-within { border-color: var(--primary); color: var(--primary); }
.file input { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.file__name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hint { display: block; color: var(--muted); font-size: .82rem; margin-top: .35rem; line-height: 1.7; }
.notice { padding: 1rem 1.2rem; border-radius: 12px; border: 1.5px solid; margin-bottom: 1rem; }
.notice p { margin: .3rem 0 0; }
.notice--ok { background: #E8F7F0; border-color: #9fdcc0; color: #0a5e3f; }
.notice--err { background: #FDECEF; border-color: #f1b2be; color: #8f1c30; }
.notice .code { font-weight: 800; font-size: 1.15rem; direction: ltr; display: inline-block; letter-spacing: .05em; }

/* ---------- سربرگ صفحه‌ها ---------- */
.page-hero { background: #fff; border-bottom: 1px solid var(--line); padding: clamp(1.75rem, 4vw, 2.75rem) 0; }
.page-title { font-size: clamp(1.6rem, 3.6vw, 2.5rem); margin-bottom: .3em; }
.lead { color: var(--muted); font-size: 1.08rem; max-width: 46em; }
.lead > :last-child { margin-bottom: 0; }
.crumbs { font-size: .88rem; color: var(--muted); margin-bottom: 1.2rem; }
.page-hero__row { display: flex; gap: 1.4rem; align-items: flex-start; }
.facts { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .9rem; }
.fact { display: inline-flex; align-items: center; gap: .4rem; padding: .15rem .9rem; background: var(--mark); border-radius: 99px; font-weight: 700; font-size: .92rem; }
.fact + .fact { background: var(--primary-soft); color: var(--ink); }

/* ---------- صفحه‌ی خدمت ---------- */
.svc-layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 2rem; align-items: start; padding-block: 2.5rem 4rem; }
.block { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 1.6rem; margin-bottom: 1.2rem; }
.block__title { font-size: 1.3rem; margin-bottom: 1rem; }
.block__title--out { margin-top: 2rem; }
.checks { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .75rem 1.25rem; }
.checks li { display: flex; gap: .6rem; align-items: flex-start; }
.checks svg { color: var(--ok); margin-top: .35rem; }
.checks--plain svg { color: var(--primary); }
.steps-list { list-style: none; counter-reset: s; display: grid; gap: .9rem; }
.steps-list li { counter-increment: s; display: flex; gap: .85rem; align-items: flex-start; }
.steps-list li::before { content: counter(s, persian); flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--primary); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: .95rem; line-height: 1; }
.svc-aside .aside-card { position: sticky; top: 96px; }
.aside-card__title { font-size: 1.15rem; margin-bottom: 1rem; }
.aside-card__alt { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px dashed var(--line); color: var(--muted); font-size: .92rem; }
.aside-card__alt .contact-btns { margin-top: .6rem; }
.aside-card__alt .btn { padding: .4rem .9rem; font-size: .92rem; }

/* ---------- تماس / درباره ---------- */
.contact-list { list-style: none; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: 1rem; align-items: center; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem; }
.contact-list__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--primary-soft); color: var(--primary); flex: none; }
.contact-list strong { display: block; line-height: 1.5; }
.contact-list div > * { line-height: 1.6; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-bottom: 2rem; }
.value { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.value h2 { font-size: 1.15rem; margin: .8rem 0 .3rem; }
.value p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ---------- وبلاگ ---------- */
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; padding-block: 2.5rem 4rem; }
.has-sidebar .content-layout:not(.content-layout--full) { grid-template-columns: minmax(0, 1fr) 320px; }
.posts { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.2rem; }
.post-card { display: flex; flex-direction: column; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.post-card__img img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.post-card__body { padding: 1.25rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.post-card__meta { color: var(--muted); font-size: .85rem; }
.post-card__title { font-size: 1.1rem; margin: 0; }
.post-card__title a { color: var(--ink); }
.post-card__body p { color: var(--muted); font-size: .95rem; margin: 0; flex: 1; }
.sidebar .widget { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1.1rem; }
.widget__title { font-size: 1.05rem; }
.sidebar ul { list-style: none; }
.sidebar li { padding: .3rem 0; }
.search-form { display: flex; max-width: 460px; margin-top: 1rem; }
.search-form input { flex: 1; padding: .65rem .9rem; border: 1.5px solid var(--line); border-inline-end: 0; border-start-start-radius: 10px; border-end-start-radius: 10px; border-start-end-radius: 0; border-end-end-radius: 0; font: inherit; }
.search-form button { border: 0; background: var(--primary); color: #fff; padding: 0 1rem; border-start-end-radius: 10px; border-end-end-radius: 10px; cursor: pointer; }
.pagination { margin-top: 2rem; }
.nav-links { display: flex; gap: .4rem; flex-wrap: wrap; justify-content: center; }
.page-numbers { min-width: 42px; text-align: center; padding: .35rem .8rem; background: #fff; border: 1.5px solid var(--line); border-radius: 10px; color: var(--ink); }
.page-numbers.current, a.page-numbers:hover { background: var(--primary); color: #fff; border-color: var(--primary); text-decoration: none; }

/* ---------- محتوای مطلب ---------- */
.entry-content { font-size: 1.04rem; }
.entry-content > :last-child { margin-bottom: 0; }
.entry-content h2 { font-size: 1.4rem; margin-top: 1.6em; }
.entry-content h3 { font-size: 1.18rem; margin-top: 1.4em; }
.entry-content ul, .entry-content ol { padding-inline-start: 1.4rem; margin-bottom: 1em; }
.entry-content li { margin-bottom: .3em; }
.entry-content img { border-radius: 10px; }
.entry-content blockquote { margin: 1.5em 0; padding: .5rem 1.2rem; border-inline-start: 4px solid var(--mark); background: #fff; border-radius: 4px; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.2em; }
.entry-content th, .entry-content td { border: 1px solid var(--line); padding: .55rem .8rem; text-align: start; }
.entry-content th { background: var(--primary-soft); }
.entry__thumb { margin-bottom: 1.5rem; }
.entry__thumb img { border-radius: var(--radius); width: 100%; }
.entry__tags { margin-top: 1.5rem; color: var(--muted); font-size: .92rem; }
.post-navigation { margin: 2rem 0; }
.post-navigation .nav-links { justify-content: space-between; }
.notfound { text-align: center; }
.notfound__code { font-size: 5rem; font-weight: 800; color: var(--mark); line-height: 1.2; margin: 0; -webkit-text-stroke: 2px var(--ink); }

/* ---------- دیدگاه‌ها ---------- */
.comments { margin-top: 3rem; }
.comments__title, .comment-reply-title { font-size: 1.25rem; }
.comment-list { list-style: none; display: grid; gap: 1rem; margin-bottom: 2rem; }
.comment-list .children { list-style: none; margin-top: 1rem; padding-inline-start: 1.5rem; }
.comment-body { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem; }
.comment-author .avatar { display: inline-block; border-radius: 50%; vertical-align: middle; margin-inline-end: .5rem; }
.comment-meta { font-size: .85rem; color: var(--muted); }
.comment-form label { display: block; font-weight: 700; margin-bottom: .3rem; }
.comment-form input[type=text], .comment-form input[type=email], .comment-form input[type=url], .comment-form textarea { width: 100%; padding: .7rem .9rem; border: 1.5px solid var(--line); border-radius: 10px; font: inherit; }

/* ---------- فوتر ---------- */
.site-footer { background: var(--ink); color: #c1cde1; padding-top: 3.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-col p { margin: 1rem 0 0; font-size: .95rem; }
.footer-title { color: #fff; font-size: 1.05rem; margin-bottom: .8rem; }
.footer-list { list-style: none; display: grid; gap: .35rem; }
.footer-list a { color: #c1cde1; }
.footer-list a:hover { color: #fff; }
.footer-contact li { display: flex; gap: .55rem; align-items: flex-start; }
.footer-contact svg { margin-top: .4rem; color: var(--mark); }
.footer-social { display: flex; gap: .5rem; margin-top: 1rem; }
.footer-social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: rgba(255, 255, 255, .08); color: #fff; }
.footer-social a:hover { background: var(--primary); }
.footer-bottom { margin-top: 2.5rem; padding-block: 1.2rem; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .88rem; color: #93a3bf; }

/* ---------- دکمه‌های شناور ---------- */
.fab { position: fixed; inset-block-end: 1rem; inset-inline-end: 1rem; display: flex; flex-direction: column; gap: .55rem; z-index: 40; }
.fab__btn { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 10px 22px -8px rgba(15, 35, 64, .55); }
.fab__btn:hover { text-decoration: none; filter: brightness(1.08); }
.fab__btn--wa { background: #1FA855; }
.fab__btn--tg { background: #1E8FCB; }
.fab__btn--tel { background: var(--primary); }

/* ---------- واکنش‌گرا ---------- */
@media (max-width: 1024px) {
	.svc-layout { grid-template-columns: minmax(0, 1fr) 340px; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
	.nav-toggle { display: grid; }
	.site-nav {
		display: none; position: absolute; inset-inline: 0; top: 100%;
		flex-direction: column; align-items: stretch; gap: .75rem; padding: 1rem;
		background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 24px 30px -20px rgba(15, 35, 64, .35);
		max-height: calc(100vh - 110px); overflow-y: auto;
	}
	.site-nav.is-open { display: flex; }
	.primary-menu { flex-direction: column; align-items: stretch; }
	.primary-menu a { padding: .7rem .8rem; }
	.primary-menu .menu-item-has-children > a::after { display: none; }
	.primary-menu .sub-menu { display: block; position: static; box-shadow: none; border: 0; padding: 0; padding-inline-start: 1rem; min-width: 0; }
	.hero__grid, .cta-grid { grid-template-columns: 1fr; }
	.ticket { max-width: 340px; }
	.svc-layout { grid-template-columns: 1fr; }
	.svc-aside .aside-card { position: static; }
	.has-sidebar .content-layout:not(.content-layout--full) { grid-template-columns: 1fr; }
	.svc-grid { grid-template-columns: repeat(2, 1fr); }
	.svc-grid > .svc { grid-column: auto !important; }
	.svc-grid > .svc:last-child:nth-child(odd) { grid-column: 1 / -1 !important; }
	.values { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
	.topbar__row { justify-content: center; }
	.svc-grid, .steps, .checks, .footer-grid { grid-template-columns: 1fr; }
	.svc-grid > .svc:last-child:nth-child(odd) { grid-column: auto !important; }
	.page-hero__row { flex-direction: column; }
	.svc__icon--lg { width: 60px; height: 60px; }
	.section__head--row { flex-direction: column; align-items: flex-start; }
	.card { padding: 1.25rem; }
	.fab { inset-block-end: .75rem; inset-inline-end: .75rem; }
	.fab__btn { width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* { transition: none !important; }
}
