@font-face {
  font-family: 'Vazirmatn';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('https://cdn.jsdelivr.net/fontsource/fonts/vazirmatn:vf@latest/arabic-wght-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Shabnam FD';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url('https://cdn.jsdelivr.net/gh/rastikerdar/shabnam-font@v5.0.1/dist/Farsi-Digits/Shabnam-FD.woff2') format('woff2');
}

@font-face {
  font-family: 'Shabnam FD';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url('https://cdn.jsdelivr.net/gh/rastikerdar/shabnam-font@v5.0.1/dist/Farsi-Digits/Shabnam-Bold-FD.woff2') format('woff2');
}

:root {
  --green: #10b981;
  --green-hover: #059669;
  --green-deep: #047857;
  --green-ink: #007a5e;
  --green-soft: #d1fae5;
  --green-mist: #ecfdf5;
  --lime: #84cc16;
  --orange: #f97316;
  --navy: #0f172a;
  --body: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f7f8fa;
  --surface: #ffffff;
  --shadow: 0 2px 16px rgba(37, 42, 60, 0.06);
  --shadow-lg: 0 18px 50px rgba(15, 23, 42, 0.1);
  --shadow-green: 0 8px 24px rgba(0, 209, 112, 0.28);
  --radius: 18px;
  --radius-sm: 14px;
  --radius-full: 999px;
  --header: 68px;
  --max: 1120px;
  --grad: linear-gradient(135deg, #33db86 0%, #00d170 55%, #00a85a 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: 'Vazirmatn', 'Shabnam FD', Tahoma, sans-serif;
  color: var(--navy);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.nav-lock {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

::selection {
  background: rgba(16, 185, 129, 0.22);
  color: var(--navy);
}

:focus-visible {
  outline: 2px solid #33db86;
  outline-offset: 3px;
}

.skip {
  position: absolute;
  right: 16px;
  top: -48px;
  z-index: 80;
  padding: 8px 14px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: calc(var(--header) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  display: flex;
  align-items: center;
  background: rgba(247, 248, 250, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--green-ink);
  letter-spacing: -0.02em;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  flex-shrink: 0;
}

.brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 16px;
  height: 1.5px;
  margin-inline: auto;
  background: var(--navy);
  border-radius: 2px;
  position: relative;
  transition: 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  right: 0;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

.site-header.is-open .nav-toggle span {
  background: transparent;
}

.site-header.is-open .nav-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-open .nav-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(15, 23, 42, 0.28);
}

.nav-scrim.is-on,
.site-header.is-open + .nav-scrim,
body.nav-lock .nav-scrim {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px 4px;
  flex: 1;
  justify-content: center;
}

.site-nav a {
  position: relative;
  color: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 11px;
  border-radius: 10px;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--green-deep);
  background: var(--green-mist);
}

.site-nav a.is-active {
  color: var(--green-deep);
}

.site-nav a.is-active::after {
  content: '';
  position: absolute;
  right: 11px;
  left: 11px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-cta .btn {
  min-height: 40px;
  padding: 8px 16px;
  font-size: 0.84rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 0;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  box-shadow: 0 10px 26px rgba(0, 209, 112, 0.34);
}

.btn-ghost {
  background: #fff;
  color: var(--green-deep);
  border: 1px solid #bbf7d0;
}

.btn-ghost:hover {
  background: var(--green-mist);
}

.btn-white {
  background: #fff;
  color: var(--green-deep);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.btn-white:hover {
  background: #f8fafc;
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 24, 14, 0.52) 0%, rgba(8, 26, 15, 0.38) 42%, rgba(6, 20, 12, 0.72) 100%),
    url('../img/hero-field.jpg') center / cover no-repeat;
}

.hero__glow {
  position: absolute;
  inset: auto -12% -28% 20%;
  height: 55%;
  background: radial-gradient(closest-side, rgba(0, 209, 112, 0.28), transparent 72%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 56px;
  padding: 52px 0 68px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.28;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero h1 {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28), 0 2px 10px rgba(0, 0, 0, 0.18);
}

.lead {
  margin: 0 0 26px;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-stats div {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.hero-stats strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.4;
}

.hero-stats span {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.phone {
  width: min(280px, 100%);
  margin: 0 auto;
  padding: 10px;
  border-radius: 38px;
  background: linear-gradient(180deg, #1e293b, #0f172a);
  box-shadow:
    0 28px 60px rgba(6, 20, 12, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone__shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  object-fit: cover;
  object-position: top center;
}

.section {
  padding: 80px 0;
}

.section--tight {
  padding-top: 8px;
}

.section--surface {
  background: #fff;
}

.section-head {
  max-width: 38rem;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head p.kicker,
.kicker {
  margin: 0 0 8px;
  color: var(--green-hover);
  font-weight: 800;
  font-size: 0.8rem;
}

.section-head h2,
.page-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  letter-spacing: -0.03em;
  line-height: 1.4;
}

.section-head .muted {
  margin: 0;
}

.muted {
  color: var(--body);
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.feature,
.cat,
.step,
.audience {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #f1f5f9;
}

.feature,
.step,
.audience,
.cat {
  padding: 22px 20px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature:hover,
.cat:hover,
.step:hover {
  transform: translateY(-2px);
  border-color: #d1fae5;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.icon-bubble {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 14px;
  color: var(--green-hover);
}

.i {
  width: 22px;
  height: 22px;
  display: block;
  background: currentColor;
  -webkit-mask: var(--ico) center / contain no-repeat;
  mask: var(--ico) center / contain no-repeat;
}

.i-leaf {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M5 19c8-1 13-8 14-16-7 2-13 7-14 16Z'/%3E%3Cpath d='M8 12c2 2 5 4 8 5'/%3E%3C/svg%3E");
}

.i-seed {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' viewBox='0 0 24 24'%3E%3Cpath d='M12 22V11'/%3E%3Cpath d='M12 11c4-6 8-6 8-6s0 6-8 8c-8-2-8-8-8-8s4 0 8 6Z'/%3E%3C/svg%3E");
}

.i-tractor {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Ccircle cx='7' cy='17' r='3'/%3E%3Ccircle cx='18' cy='18' r='2'/%3E%3Cpath d='M4 17H2v-4l5-6h5v6h4l3 4'/%3E%3C/svg%3E");
}

.i-fruit {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='13' r='7'/%3E%3Cpath d='M12 6c0-3 3-4 5-3'/%3E%3C/svg%3E");
}

.i-cow {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' viewBox='0 0 24 24'%3E%3Cpath d='M5 10c0-3 3-5 7-5s7 2 7 5v7H5v-7Z'/%3E%3Ccircle cx='9' cy='11' r='.8' fill='black'/%3E%3Ccircle cx='15' cy='11' r='.8' fill='black'/%3E%3C/svg%3E");
}

.i-field {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' viewBox='0 0 24 24'%3E%3Cpath d='M3 18c4-6 6-10 9-14 3 4 5 8 9 14'/%3E%3Cpath d='M3 18h18'/%3E%3C/svg%3E");
}

.i-user {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8' r='3.2'/%3E%3Cpath d='M5 19c1.4-3.2 3.8-5 7-5s5.6 1.8 7 5'/%3E%3C/svg%3E");
}

.i-chart {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' viewBox='0 0 24 24'%3E%3Cpath d='M4 19V5M4 19h16'/%3E%3Cpath d='M8 15l4-5 3 3 5-7'/%3E%3C/svg%3E");
}

.i-cart {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' viewBox='0 0 24 24'%3E%3Ccircle cx='9' cy='20' r='1.2'/%3E%3Ccircle cx='18' cy='20' r='1.2'/%3E%3Cpath d='M3 4h2l2.4 11.2A2 2 0 0 0 9.4 17H18l3-8H7'/%3E%3C/svg%3E");
}

.i-chat {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' viewBox='0 0 24 24'%3E%3Cpath d='M5 16.5A7.5 7.5 0 1 1 12 20H6l-1 2v-5.5Z'/%3E%3C/svg%3E");
}

.i-shield {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' viewBox='0 0 24 24'%3E%3Cpath d='M12 3 5 6v6c0 5 3.2 8.2 7 9 3.8-.8 7-4 7-9V6l-7-3Z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}

.i-wallet {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' viewBox='0 0 24 24'%3E%3Crect x='3' y='6' width='18' height='13' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3Ccircle cx='16.5' cy='14.5' r='1'/%3E%3C/svg%3E");
}

.i-tag {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' viewBox='0 0 24 24'%3E%3Cpath d='M20 13 12 21 3 12V4h8l9 9Z'/%3E%3Ccircle cx='7.5' cy='8.5' r='1'/%3E%3C/svg%3E");
}

.i-star {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='m12 3 2.6 6.4L21 10l-5 4.4L17.2 21 12 17.6 6.8 21 8 14.4 3 10l6.4-.6L12 3Z'/%3E%3C/svg%3E");
}

.i-pin {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s7-6.2 7-11a7 7 0 1 0-14 0c0 4.8 7 11 7 11Z'/%3E%3Ccircle cx='12' cy='10' r='2.2'/%3E%3C/svg%3E");
}

.i-check {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' viewBox='0 0 24 24'%3E%3Cpath d='m5 12 5 5 9-10'/%3E%3C/svg%3E");
}

.i-mail {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E");
}

.i-phone {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M7 3h3l1.5 4-2 1.5a12 12 0 0 0 6 6L17 13l4 1.5V18c0 1-1 3-8 3C6 21 3 12 3 8c0-7 2-5 4-5Z'/%3E%3C/svg%3E");
}

.i-clock {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M12 8v5l3 2'/%3E%3C/svg%3E");
}

.tone-mint { background: #e6fef6; color: #047857; }
.tone-blue { background: #e6f3fe; color: #0369a1; }
.tone-orange { background: #fef0e6; color: #c2410c; }
.tone-yellow { background: #fef9e6; color: #a16207; }
.tone-purple { background: #f7e6fe; color: #7e22ce; }
.tone-peach { background: #ffedd5; color: #c2410c; }

.feature h3,
.cat h3,
.step h3,
.audience h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  line-height: 1.45;
}

.feature p,
.cat p,
.step p,
.audience p {
  margin: 0;
  color: var(--body);
  font-size: 0.9rem;
  line-height: 1.8;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pillar {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 380px;
  padding: 32px 28px 28px;
  border-radius: 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #065f46;
  transition: transform 0.25s ease;
}

.pillar:hover {
  transform: translateY(-3px);
}

.pillar__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.pillar__slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: pillarFade 16s ease-in-out infinite;
}

.pillar--shops .pillar__slides img {
  object-position: 35% center;
}

.pillar--ads .pillar__slides img {
  object-position: 50% 40%;
}

.pillar__slides img:first-child {
  opacity: 1;
}

.pillar__slides img:nth-child(2) {
  animation-delay: 8s;
}

@keyframes pillarFade {
  0%,
  42% {
    opacity: 1;
  }
  50%,
  92% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.pillar::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(6, 20, 14, 0.08) 0%,
    rgba(6, 20, 14, 0.18) 38%,
    rgba(6, 20, 14, 0.78) 100%
  );
}

.pillar > *:not(.pillar__slides) {
  position: relative;
  z-index: 2;
}

.pillar h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.pillar p {
  margin: 0 0 18px;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.pillar .btn {
  align-self: flex-start;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding: 22px 20px 20px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 20px;
  left: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-family: 'Shabnam FD', sans-serif;
}

.step h3,
.step p {
  padding-left: 36px;
}

.cat {
  text-align: center;
}

.cat .icon-bubble {
  margin-inline: auto;
}

.band {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  color: #fff;
  background: linear-gradient(165deg, #00c968 0%, #00d170 48%, #00a85a 100%);
}

.band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 12% 18%, rgba(167, 243, 208, 0.32) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 88% 8%, rgba(209, 250, 229, 0.24) 0%, transparent 50%);
}

.band .wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.band h2 {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  line-height: 1.4;
}

.band p {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.92);
}

.band .btn {
  flex-shrink: 0;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid #f1f5f9;
  overflow: hidden;
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  text-align: right;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.5;
  cursor: pointer;
  color: var(--navy);
}

.faq-item__q::after {
  content: '';
  width: 8px;
  height: 8px;
  margin-top: -3px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-item__q::after {
  transform: rotate(225deg);
  margin-top: 3px;
}

.faq-item__a {
  display: none;
  padding: 0 18px 16px;
  color: var(--body);
  font-size: 0.92rem;
  line-height: 1.85;
}

.faq-item.is-open .faq-item__a {
  display: block;
}

.cta-row {
  display: flex;
  justify-content: center;
  margin: 28px 0 0;
}

.page-hero {
  padding: 56px 0 20px;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(16, 185, 129, 0.14), transparent 58%),
    linear-gradient(180deg, #ecfdf5 0%, var(--bg) 100%);
}

.page-hero .lead {
  color: var(--body);
}

.page-hero--center .page-copy {
  text-align: center;
  margin-inline: auto;
}

.page-copy {
  max-width: 40rem;
}

.page-hero .hero-actions {
  margin-bottom: 0;
}

.page-copy p,
.page-copy li {
  color: var(--body);
}

.page-copy ul {
  padding-right: 18px;
}

.page-copy li + li {
  margin-top: 6px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.shot {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 280px;
  background: #065f46;
  box-shadow: var(--shadow-lg);
}

.form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid #f1f5f9;
}

.form__title {
  margin: 0 0 4px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.form label {
  display: grid;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: #f8fafc;
  font-size: 0.95rem;
  color: var(--navy);
}

.form input:focus,
.form textarea:focus {
  background: #fff;
  border-color: #6ee7b7;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
  outline: none;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form .btn {
  justify-self: start;
  min-width: 148px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid #f1f5f9;
}

.contact-panel h2 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.contact-panel__intro {
  margin: 8px 0 0;
  color: var(--body);
  font-size: 0.9rem;
  line-height: 1.8;
}

.contact-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
}

.contact-list .icon-bubble {
  margin: 0;
}

.contact-list__label {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.contact-list a,
.contact-list span:not(.contact-list__label):not(.icon-bubble):not(.i) {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
  word-break: break-word;
}

.contact-list a {
  color: var(--green-deep);
}

.contact-list a:hover {
  color: var(--green-hover);
}

.contact-list [dir='ltr'] {
  display: inline-block;
  font-family: 'Shabnam FD', 'Vazirmatn', Tahoma, sans-serif;
  letter-spacing: 0.01em;
}

.faq-stack {
  display: grid;
  gap: 10px;
}

.site-footer {
  padding: 52px 0 24px;
  background: #0b1220;
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .brand {
  color: #fff;
  margin-bottom: 12px;
}

.site-footer .brand__mark {
  background: #fff;
}

.site-footer p {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.85;
  margin: 0;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.88rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 10px;
}

.site-footer a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: #6ee7b7;
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 18px;
  font-size: 0.78rem;
  color: #64748b;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid #f1f5f9;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.trust .i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--green-hover);
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .header-cta .btn-ghost {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header) + env(safe-area-inset-top, 0px)) 12px auto;
    z-index: 55;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .site-nav a.is-active::after {
    display: none;
  }

  .site-nav a.is-active {
    background: var(--green-mist);
  }

  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .pillars,
  .grid-3,
  .trust {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --header: 60px;
  }

  .wrap,
  .header-inner {
    width: calc(100% - 28px);
  }

  .hero-grid,
  .split,
  .contact-grid,
  .pillars,
  .band .wrap,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .trust,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 32px 0 44px;
    gap: 28px;
    text-align: center;
  }

  .hero-grid .eyebrow {
    margin-inline: auto;
  }

  .hero-grid .lead,
  .hero-grid .hero-actions,
  .hero-grid .hero-stats {
    margin-inline: auto;
  }

  .hero-grid .hero-actions {
    justify-content: center;
  }

  .phone {
    width: min(250px, 78vw);
  }

  .section {
    padding: 56px 0;
  }

  .band .wrap {
    text-align: center;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-actions .btn,
  .header-cta .btn {
    flex: 1;
  }

  .hero-actions,
  .header-cta {
    width: auto;
  }

  .header-cta {
    max-width: 46%;
  }

  .brand span {
    font-size: 0.92rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .feature,
  .cat,
  .step,
  .pillar {
    transition: none;
  }

  .pillar__slides img {
    animation: none;
  }

  .pillar__slides img:first-child {
    opacity: 1;
  }

  .pillar__slides img:nth-child(2) {
    opacity: 0;
  }
}
