:root {
  --bg:        #f4ede0;
  --bg-soft:   #fbf7f0;
  --surface:   #ffffff;
  --ink:       #1c140d;
  --ink-soft:  #5a4c3c;
  --muted:     #7d6e5a;
  --accent:    #c25a26;
  --accent-2:  #e0912f;
  --accent-3:  #a8531f;
  --line:      #e6dccb;
  --line-2:    #ded2bd;
  --radius:    22px;
  --radius-sm: 14px;
  --pill:      999px;
  --shadow:    0 12px 34px rgba(60,40,20,0.08);
  --shadow-lg: 0 24px 60px rgba(60,40,20,0.12);
  --maxw:      1180px;
  --font: "Vazirmatn", -apple-system, BlinkMacSystemFont, "Segoe UI",
          Tahoma, "Iranian Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.01em; margin: 0; font-weight: 800; }
img, svg { max-width: 100%; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--pill); font-weight: 700; font-size: 1rem;
  font-family: inherit; cursor: pointer; border: 2px solid transparent;
  transition: transform .16s ease, opacity .16s ease, background .16s, color .16s;
  white-space: nowrap; line-height: 1;
}
.btn-sm { padding: 10px 20px; font-size: .92rem; }
.btn-lg { padding: 17px 38px; font-size: 1.08rem; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { opacity: .86; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-1px); }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,237,224,0.82);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 40px);
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; }
.brand-badge { width: 40px; height: 40px; flex: none; display: block; }
.brand-badge.sm { width: 38px; height: 38px; }
.brand-name { font-size: 1.08rem; }
.nav-links { display: flex; align-items: center; gap: clamp(10px, 2.4vw, 26px); font-weight: 600; }
.nav-links a:not(.btn) { color: var(--ink-soft); transition: color .18s; font-size: .96rem; }
.nav-links a:not(.btn):hover { color: var(--accent); }

.hero { max-width: var(--maxw); margin: 0 auto; padding: clamp(36px, 7vw, 84px) clamp(16px, 4vw, 40px) clamp(20px, 4vw, 40px); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(24px, 5vw, 56px); align-items: center; }
.pill-label {
  display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  color: var(--accent); background: rgba(194,90,38,0.09);
  border: 1px solid rgba(194,90,38,0.2); padding: 7px 16px; border-radius: var(--pill);
  margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.3rem, 7.5vw, 4.6rem); font-weight: 850; letter-spacing: -0.03em; }
.accent { color: var(--accent); }
.lede { font-size: clamp(1.02rem, 2.2vw, 1.22rem); color: var(--ink-soft); max-width: 36ch; margin: 22px 0 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-stats { display: flex; align-items: center; gap: clamp(14px, 3vw, 28px); flex-wrap: wrap; }
.hero-stats div:not(.divider) { display: flex; flex-direction: column; gap: 2px; }
.hero-stats b { font-size: 1.3rem; font-weight: 800; color: var(--ink); }
.hero-stats span { font-size: .84rem; color: var(--muted); }
.hero-stats .divider { width: 1px; height: 34px; background: var(--line-2); }

.hero-art { position: relative; display: grid; place-items: center; min-height: 260px; }
.hero-disc {
  position: absolute; width: min(94%, 380px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--accent-2), var(--accent) 70%);
  opacity: .16;
}
.hero-sticker { width: min(360px, 82vw); aspect-ratio: 1; position: relative; z-index: 2; }

.chips-wrap { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.chips {
  max-width: var(--maxw); margin: 0 auto; display: flex; gap: 10px;
  padding: 16px clamp(16px, 4vw, 40px); overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: none; display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: var(--pill); font-size: .9rem; font-weight: 600;
  background: var(--surface); border: 1px solid var(--line-2); color: var(--ink-soft);
  cursor: pointer; transition: all .16s;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip svg { width: 16px; height: 16px; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(26px, 4vw, 44px); }
.section-head h2 { font-size: clamp(1.7rem, 4.5vw, 2.7rem); }
.section-head p { color: var(--ink-soft); margin-top: 12px; }

.goods { max-width: var(--maxw); margin: 0 auto; padding: clamp(40px, 7vw, 84px) clamp(16px, 4vw, 40px); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }

.card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 22px 22px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  opacity: 0; transform: translateY(20px);
}
.card.in { opacity: 1; transform: translateY(0); }
.card:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: var(--shadow); }
.card-ico {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  margin-bottom: 16px; margin-inline-start: 0; color: var(--accent);
  background: rgba(194,90,38,0.08); border: 1px solid rgba(194,90,38,0.14);
  transition: transform .2s ease;
}
.card:hover .card-ico { transform: scale(1.05) rotate(-3deg); }
.card-ico svg { width: 26px; height: 26px; display: block; }
.card h3 { font-size: 1.14rem; font-weight: 750; margin-bottom: 7px; }
.card p { color: var(--ink-soft); font-size: .9rem; margin: 0 0 16px; min-height: 2.8em; line-height: 1.6; }
.card-foot { display: flex; align-items: center; justify-content: flex-start; }
.tag {
  font-size: .74rem; font-weight: 700; color: var(--accent-3);
  background: rgba(168,83,31,0.09); border: 1px solid rgba(168,83,31,0.2);
  padding: 5px 12px; border-radius: var(--pill);
}
.fine-print { text-align: center; color: var(--muted); font-size: .84rem; margin-top: 34px; max-width: 560px; margin-inline: auto; }

.trust { max-width: var(--maxw); margin: 0 auto; padding: clamp(30px, 6vw, 70px) clamp(16px, 4vw, 40px); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.trust-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px 22px; }
.trust-card .ico {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  margin-bottom: 14px; color: var(--accent);
  background: rgba(194,90,38,0.08); border: 1px solid rgba(194,90,38,0.14);
}
.trust-card .ico svg { width: 24px; height: 24px; }
.trust-card h3 { font-size: 1.05rem; margin-bottom: 7px; font-weight: 750; }
.trust-card p { color: var(--ink-soft); font-size: .9rem; margin: 0; }

.final-cta { max-width: var(--maxw); margin: clamp(30px, 6vw, 70px) auto; padding: 0 clamp(16px, 4vw, 40px); }
.final-inner {
  text-align: center; background: var(--ink); color: var(--bg);
  border-radius: 30px; padding: clamp(38px, 6vw, 66px) clamp(24px, 5vw, 48px);
  position: relative; overflow: hidden;
}
.final-sticker { width: 130px; height: 130px; margin: 0 auto 4px; }
.final-inner h2 { font-size: clamp(1.7rem, 4.5vw, 2.5rem); color: #fff; }
.final-inner p { color: rgba(244,237,224,0.7); margin: 12px 0 26px; }
.final-inner .btn-dark { background: var(--accent); }
.final-inner .btn-dark:hover { background: var(--accent-2); opacity: 1; }

.footer { border-top: 1px solid var(--line); background: var(--bg-soft); padding: 14px clamp(16px, 4vw, 40px) 10px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-brand > div { display: flex; flex-direction: column; }
.footer-brand strong { font-size: .96rem; }
.footer-brand span { color: var(--muted); font-size: .8rem; }
.footer-links { display: flex; gap: 22px; font-weight: 600; }
.footer-links a { color: var(--ink-soft); transition: color .18s; }
.footer-links a:hover { color: var(--accent); }
.copyright { text-align: center; color: var(--muted); font-size: .78rem; margin: 10px 0 0; }
.footer-seals { max-width: var(--maxw); margin: 10px auto 0; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.footer-seals img { height: 52px; width: auto; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 5px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-art { order: 1; min-height: 220px; }
  .lede { margin-inline: auto; }
  .hero-cta, .hero-stats { justify-content: center; }
}
@media (max-width: 620px) {
  body { line-height: 1.65; }
  .nav-links { gap: 12px; }
  .nav-links a:not(.btn) { display: none; }
  .brand-name { font-size: 1rem; }
  .hero { padding-top: 30px; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.9rem); }
  .hero-stats { gap: 16px; }
  .hero-stats .divider { display: none; }
  .hero-stats div:not(.divider) { flex: 1; min-width: 88px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .card { padding: 18px 16px 16px; border-radius: 18px; }
  .card-ico { width: 44px; height: 44px; border-radius: 13px; margin-bottom: 12px; }
  .card-ico svg { width: 22px; height: 22px; }
  .card h3 { font-size: 1rem; }
  .card p { font-size: .84rem; min-height: 0; margin-bottom: 12px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { width: 100%; }
}
@media (max-width: 340px) {
  .grid { grid-template-columns: 1fr; }
  .btn { padding: 13px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .card { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
