﻿:root {
  --brand: #38d9a9;
  --brand-dark: #2fc49a;
  --ink: #1f2937;
  --muted: #6b7280;
}

/* پایه */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: #fff;
}

.home {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  text-align: center; /* همه‌چیز وسط چین */
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 520px; /* یا 100vh */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* پیش‌فرض دسکتاپ */
  background-image: url('/pic/LandingPic_Desktop.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* اگر خواستی در آینده از cover استفاده کنی: background-size: cover; */

.hero-box {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 640px;
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.hero-box h1 {
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 800;
}

.hero-box p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 20px;
}

.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(56, 217, 169, 0.22);
}

.btn:hover {
  background: var(--brand-dark);
  transform: translateY(-3px);
}

.hero-box .bottom-img {
  display: block;
  margin: 18px auto 0;
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* اگر نمیخواهی گرد باشد حذف کن */
}

/* ========== SECTIONS COMMON ========== */
.section {
  padding: 56px 18px;
  text-align: center;
}

.kicker {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  align-items: center;
  justify-content: center;
}

.kicker .img-container {
  display: inline-block;
  width: 200px;
  height: 200px;
  padding: 8px;
  background: #fff;
  margin: 0 auto;
  margin-bottom: 24px;
}
.kicker img {
  display: block;
}

h2 {
  font-size: 32px;
  margin: 4px 0 12px;
}

.muted {
  color: var(--muted);
}

/* ========== HOW IT WORKS (کارت‌ها) ========== */
.how-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 28px;
}

.card {
  width: 280px;
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.card img {
  display: block;
  margin: 0 auto 12px;
  width: 76px;
  height: auto;
}

.card h3 {
  margin: 8px 0;
  font-size: 18px;
  font-weight: 700;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* ========== WHY USE ========== */
.why {
  background: #f8f9fa;
  border-radius: 14px;
  padding: 48px 18px;
}

.privacy {
  max-width: 900px;
  margin: 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left; /* متن داخل این ردیف از آیکون سمت راست خواناتر است */
}

.privacy img {
  width: 32px;
  height: auto;
  display: block;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 22px;
}

.card-row .card {
  width: 280px;
}

/* ========== FINAL CTA ========== */
.final {
  padding: 48px 18px;
}

/* وقتی عرض صفحه <= 768px بود (موبایل/تبلت) */
@media (max-width: 768px) {
  .hero {
    background-image: url('/pic/LandingPic_mobile.jpg'); /* عکس مخصوص موبایل */
    background-size: cover; /* برای موبایل بهتره cover باشه */
  }
  .hero-box {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
  }
  .hero-box h1 {
    font-size: 24px;
  }
  .hero-box p {
    font-size: 14px;
  }
}
