/*
Theme Name: Nashir
Theme URI: https://nashir.satest.top
Author: Nashir
Description: Official Nashir marketing site. Original product copy and layout.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: nashir
License: GPL-2.0-or-later
*/

:root {
  --ink: #0f241f;
  --ink-soft: #3d534c;
  --line: rgba(15, 36, 31, 0.1);
  --paper: #f7f4ee;
  --white: #ffffff;
  --leaf: #1b7a64;
  --leaf-deep: #146352;
  --gold: #c4963a;
  --gold-soft: #f3e6c8;
  --shadow: 0 18px 50px rgba(15, 36, 31, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "IBM Plex Sans Arabic", "Segoe UI", sans-serif;
  line-height: 1.7;
  font-size: 17px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
h1, h2, h3 { line-height: 1.25; margin: 0 0 12px; }
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
p { margin: 0 0 1em; }

.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-alt { background: var(--paper); }
.kicker {
  color: var(--leaf);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.muted { color: var(--ink-soft); }
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 40rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
}
.btn-leaf { background: var(--leaf); color: #fff; }
.btn-leaf:hover { background: var(--leaf-deep); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ghost { background: #fff; border-color: var(--line); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.brand { font-weight: 800; font-size: 1.35rem; }
.nav { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; font-size: 0.92rem; font-weight: 600; color: var(--ink-soft); }
.nav a:hover { color: var(--ink); }
.lang {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
}

.hero {
  display: grid;
  gap: 48px;
  padding: 72px 0 80px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero { grid-template-columns: 1.05fr 0.95fr; }
}
.hero-visual {
  background: linear-gradient(160deg, #14352c, #1f6f5b 55%, #c4963a);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
  min-height: 380px;
  color: #fff;
}
.cal-ui {
  background: rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  font-size: 12px;
}
.cal-ui span { opacity: 0.7; text-align: center; }
.cal-ui div {
  min-height: 54px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  padding: 6px;
}
.cal-ui .on { background: #fff; color: var(--ink); }
.chip { margin-top: 6px; border-radius: 6px; padding: 2px 5px; font-size: 10px; font-weight: 700; }
.chip-a { background: #e7f6f1; color: var(--leaf); }
.chip-b { background: var(--gold-soft); color: #8a6418; }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: var(--shadow);
}
.stat strong { display: block; font-size: 1.35rem; }

.grid-3, .grid-2 {
  display: grid;
  gap: 20px;
}
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
}
.card h3 { font-size: 1.15rem; }
.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e8f4f0;
  color: var(--leaf);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 14px;
}

.split {
  display: grid;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse > :first-child { order: 2; }
}
.platform {
  display: flex;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.platform b { display: block; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.step { counter-increment: s; }
.step .num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: #fff; display: grid; place-items: center;
  font-weight: 800; margin-bottom: 12px;
}

.price-card { padding: 32px; position: relative; }
.price-card.featured { border-color: var(--leaf); box-shadow: var(--shadow); }
.badge {
  position: absolute; top: 16px; inset-inline-end: 16px;
  background: var(--leaf); color: #fff; border-radius: 999px; font-size: 12px; padding: 4px 10px; font-weight: 700;
}
.price { font-size: 3rem; font-weight: 800; letter-spacing: -0.04em; }
.checks { padding: 0; margin: 18px 0 0; list-style: none; }
.checks li { padding: 7px 0 7px 0; }
.checks li::before { content: "✓ "; color: var(--leaf); font-weight: 800; }

.guarantee {
  display: grid;
  gap: 24px;
  align-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: 28px;
  padding: 40px;
}
@media (min-width: 800px) { .guarantee { grid-template-columns: 1.2fr 0.8fr; } }
.guarantee .muted { color: rgba(255,255,255,0.75); }

.cta-band {
  background: linear-gradient(120deg, #0f241f, #1b7a64);
  color: #fff;
  border-radius: 28px;
  padding: 48px;
  text-align: center;
}
.cta-band .muted { color: rgba(255,255,255,0.78); }

.site-footer { background: #0c1c18; color: rgba(255,255,255,0.82); padding: 56px 0 28px; margin-top: 40px; }
.foot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 28px; }
.site-footer a { color: rgba(255,255,255,0.82); display: block; margin: 8px 0; font-size: 0.92rem; }
.site-footer h4 { color: #fff; margin-bottom: 8px; }
.legal { margin-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 18px; font-size: 0.85rem; }

.prose { max-width: 760px; padding: 48px 0 80px; }
.prose h1 { margin-bottom: 16px; }
.faq details { border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; margin: 10px 0; background: #fff; }
.faq summary { font-weight: 700; cursor: pointer; }
.post-card h3 { font-size: 1.2rem; }
.post-card time { font-size: 0.8rem; color: var(--ink-soft); }

@media (max-width: 720px) {
  .nav .hide-sm { display: none; }
  .section { padding: 56px 0; }
}
