:root {
  --brand-cream: #fffbe6;
  --brand-cream-dark: #f5f0d8;
  --brand-green: #1b4332;
  --brand-green-dark: #0d2818;
  --brand-green-light: #2d6a4f;
  --brand-gold: #d4a017;
  --brand-gold-light: #eab308;
}

.brand-body {
  margin: 0;
  background: var(--brand-cream);
  color: var(--brand-green);
  font-family: Vazirmatn, Tahoma, sans-serif;
}

.brand-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgb(255 251 230 / 0.95);
  border-bottom: 1px solid rgb(27 67 50 / 0.06);
}

.brand-header__inner,
.brand-hero__inner,
.brand-section,
.brand-footer__inner,
.brand-cta {
  max-width: 72rem;
  margin-inline: auto;
  padding: 1.25rem 1.5rem;
}

.brand-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo img,
.brand-footer__logo {
  height: 2.75rem;
  width: auto;
}

.brand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-btn--primary {
  background: var(--brand-green);
  color: #fff;
}

.brand-btn--gold {
  background: var(--brand-gold-light);
  color: var(--brand-green-dark);
}

.brand-hero__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding-block: 3rem;
}

.brand-hero__portrait {
  position: relative;
  width: 15rem;
  height: 15rem;
  margin-inline: auto;
}

.brand-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-hero__scan {
  position: absolute;
  inset-inline: 1.5rem;
  height: 2px;
  background: var(--brand-gold);
  animation: brand-scan 3s ease-in-out infinite;
}

.brand-hero__badge {
  position: absolute;
  inset-inline-start: 50%;
  bottom: -0.75rem;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.85rem;
  box-shadow: 0 4px 24px rgb(27 67 50 / 0.08);
}

.brand-hero__copy {
  flex: 1 1 18rem;
  text-align: center;
}

.brand-hero__copy h1 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.4;
}

.brand-hero__copy em {
  color: var(--brand-gold);
  font-style: normal;
}

.brand-hero__typing {
  display: block;
  margin-top: 1rem;
  color: var(--brand-gold);
}

.brand-section-title {
  text-align: center;
  font-size: 1.75rem;
}

.brand-feature-grid,
.brand-media-grid,
.brand-icon-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.brand-feature-grid article,
.brand-media-card,
.brand-icon-row__item {
  background: #fff;
  border: 1px solid rgb(212 160 23 / 0.2);
  border-radius: 1.25rem;
  padding: 1.25rem;
}

.brand-section--muted {
  background: rgb(245 240 216 / 0.4);
}

.brand-steps__list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.brand-steps__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.brand-steps__number {
  display: flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand-green);
  color: #fff;
  font-weight: 700;
}

.brand-testimonials {
  overflow: hidden;
  padding: 3rem 1.5rem;
}

.brand-testimonials__track {
  display: flex;
  gap: 1rem;
}

.brand-testimonials__slide {
  flex: 0 0 100%;
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  margin: 0;
}

.brand-testimonials__initial {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand-green);
  color: var(--brand-gold-light);
  margin-inline-end: 0.75rem;
}

.brand-cta {
  background: var(--brand-green);
  color: #fff;
  text-align: center;
  padding-block: 3.5rem;
  max-width: none;
}

.brand-footer {
  background: var(--brand-cream-dark);
  border-top: 4px solid var(--brand-gold);
}

.brand-footer__inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.brand-footer a {
  color: rgb(27 67 50 / 0.75);
}

.brand-footer__social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.brand-enamad {
  display: inline-flex;
  min-width: 5.5rem;
  min-height: 5.5rem;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.5rem;
}

.brand-enamad img {
  display: block;
}

.brand-footer__copy {
  text-align: center;
  font-size: 0.75rem;
  color: rgb(27 67 50 / 0.5);
  padding-bottom: 1.5rem;
}

.brand-scroll-top {
  position: fixed;
  bottom: 1.5rem;
  inset-inline-start: 50%;
  transform: translateX(-50%);
}

@keyframes brand-scan {
  0%, 100% { top: 12%; opacity: 0.4; }
  50% { top: 88%; opacity: 1; }
}

@media (min-width: 640px) {
  .brand-testimonials__slide { flex-basis: calc(50% - 0.5rem); }
}

@media (min-width: 1024px) {
  .brand-hero__copy { text-align: start; }
  .brand-testimonials__slide { flex-basis: calc(33.333% - 0.67rem); }
}

.brand-page .blog-conversion-banner {
  background: var(--brand-green);
  color: #fff;
}

.brand-page .blog-conversion-banner__action {
  background: var(--brand-gold-light);
  color: var(--brand-green-dark);
}
