@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;600;700&display=swap');

:root {
  --bg: #0f1626;
  --surface: #121c30;
  --surface-soft: #142238;
  --card: #162a45;
  --text: #e9eef7;
  --muted: #c6d2e3;
  --accent: #ff7a3d;
  --accent-2: #2bd6c9;
  --border: #233652;
  --shadow: 0 20px 70px rgba(8, 15, 29, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Vazirmatn', system-ui, -apple-system, sans-serif;
  background: linear-gradient(140deg, #0e1524, #0b1220 50%, #0f1b33);
  color: var(--text);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.hero {
  padding: 32px 7vw 80px;
  background: radial-gradient(circle at 20% 20%, rgba(43, 214, 201, 0.2), transparent 35%),
              radial-gradient(circle at 80% 10%, rgba(255, 122, 61, 0.2), transparent 35%),
              linear-gradient(135deg, rgba(18, 28, 48, 0.5), rgba(11, 17, 30, 0.9));
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 20% 10% auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 122, 61, 0.18), transparent 65%);
  filter: blur(6px);
  pointer-events: none;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  position: sticky;
  top: 16px;
  z-index: 10;
}


.brand {
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  font-size: 1.1rem;
}

.brand-mark {
  color: var(--text);
  font-size: 30px;
}

.brand-mark.accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(43, 214, 201, 0.08);
  color: var(--text);
}

.nav-links .cta-link {
  background: var(--accent);
  color: #0c0f17;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(255, 122, 61, 0.35);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
  margin-top: 48px;
}

.hero-text h1 {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  margin: 10px 0;
  line-height: 1.3;
}

.lead {
  color: var(--muted);
  margin: 0 0 22px;
}

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  color: var(--accent-2);
  margin: 0 0 6px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), #ff945f);
  color: #0c0f17;
  box-shadow: 0 15px 35px rgba(255, 122, 61, 0.35);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.button.small {
  padding: 10px 14px;
  font-size: 0.95rem;
}

.button:hover {
  transform: translateY(-2px);
}

.meta-counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.meta-counters div {
  background: rgba(20, 34, 56, 0.6);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.meta-counters strong {
  display: block;
  font-size: 1.3rem;
  color: var(--accent);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: radial-gradient(circle at 30% 20%, rgba(43, 214, 201, 0.15), transparent 40%),
              radial-gradient(circle at 70% 80%, rgba(255, 122, 61, 0.12), transparent 40%),
              #0e1727;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.05);
}

.section {
  padding: 80px 7vw;
  background: linear-gradient(180deg, rgba(12, 19, 34, 0.9), rgba(12, 19, 34, 0.96));
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.section.muted {
  background: linear-gradient(180deg, #0f1626, #0c1422);
}

.section-head {
  margin-bottom: 40px;
}

.section h2 {
  margin: 6px 0 10px;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
}

.section-lead {
  color: var(--muted);
  margin: 0;
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.feature-card p {
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.service-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tag {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 122, 61, 0.1);
  color: var(--accent);
  border: 1px solid rgba(255, 122, 61, 0.25);
  font-weight: 600;
}

.terms-list {
  list-style-position: inside;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.terms-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.terms-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
}

.terms-list p {
  margin: 0 0 6px;
  color: var(--muted);
}

.product-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.product-card {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  text-decoration: none;
  color: inherit;
  gap: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.26);
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 255, 255, 0.12);
}

.product-card p {
  color: var(--muted);
}

.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.product-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-top {
  display: grid;
  gap: 6px;
}

.chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  padding: 9px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(43, 214, 201, 0.22), rgba(255, 122, 61, 0.18));
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.1px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 255, 255, 0.2);
}

.timeline {
  display: grid;
  gap: 14px;
  max-width: 840px;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  padding: 14px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.26);
}

.step-num {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-2), #1ab3a8);
  color: #0c0f17;
  border-radius: 12px;
  font-weight: 700;
}

.section p {
  margin: 0;
}

.section h3 {
  margin: 0 0 4px;
}

.cta {
  position: relative;
}

.cta-card {
  background: linear-gradient(135deg, rgba(43, 214, 201, 0.16), rgba(255, 122, 61, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 26px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  box-shadow: var(--shadow);
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cta-meta {
  display: grid;
  gap: 12px;
  align-content: start;
}

.stat {
  background: rgba(12, 19, 34, 0.6);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 12px;
}

.stat .label {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.footer {
  padding: 28px 7vw 40px;
  background: #0b101d;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
}

@media (max-width: 960px) {
  .top-nav {
    position: static;
  }
  .cta-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 20px;
  }
  .hero-content {
    grid-template-columns: 1fr;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .top-nav {
    padding: 12px 14px;
  }
  .hero-text h1 {
    font-size: 1.7rem;
  }
}
