registration
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
–navy: #0D2137; –gold: #C8962A; –gold-light: #FDF6E3;
–silver: #7A8FA6; –silver-light: #EBF0F5;
–cream: #F7F5F1; –border: #DDE3EA; –white: #fff;
–green: #1D7A5F; –green-light: #E6F5F0;
–muted: #8A96A3; –text: #1A2433;
}
body { font-family: ‘Vazirmatn’, sans-serif; background: var(–cream); color: var(–text); direction: rtl; line-height: 1.6; }
/* NAV */
.nav { background: var(–navy); padding: 12px 32px; display: flex; align-items: center; justify-content: space-between; }
.logo { color: var(–gold); font-weight: 800; font-size: 18px; }
.logo span { color: #fff; }
.nav-links { display: flex; gap: 20px; }
.nav-links a { color: rgba(255,255,255,.6); font-size: 13px; text-decoration: none; }
/* HERO */
.hero { background: linear-gradient(135deg, var(–navy) 0%, #163554 100%); padding: 56px 32px 80px; text-align: center; }
.hero-eyebrow { display: inline-block; background: rgba(200,150,42,.15); border: 1px solid rgba(200,150,42,.3); color: var(–gold); font-size: 12px; font-weight: 600; padding: 5px 16px; border-radius: 20px; margin-bottom: 20px; }
.hero h1 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.hero h1 span { color: var(–gold); }
.hero-sub { font-size: 15px; color: rgba(255,255,255,.6); max-width: 520px; margin: 0 auto 32px; }
.hero-stats { display: flex; gap: 40px; justify-content: center; }
.stat-num { font-size: 26px; font-weight: 800; color: var(–gold); }
.stat-label { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 2px; }
/* MAIN */
.main { max-width: 1050px; margin: -40px auto 0; padding: 0 20px 60px; position: relative; z-index: 1; }
/* PLANS */
.plans { display: grid; grid-template-columns: 1fr 1.12fr 1fr; gap: 16px; margin-bottom: 48px; align-items: start; }
.plan { background: var(–white); border-radius: 16px; border: 1.5px solid var(–border); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.plan:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.plan.featured { border-color: var(–gold); box-shadow: 0 8px 32px rgba(200,150,42,.2); transform: translateY(-10px); }
.plan.featured:hover { transform: translateY(-14px); }
.plan-badge { background: var(–gold); color: var(–navy); font-size: 11px; font-weight: 700; text-align: center; padding: 7px; letter-spacing: .06em; }
.plan-header { padding: 24px 20px 18px; text-align: center; border-bottom: 1px solid var(–border); }
.plan-icon { font-size: 36px; margin-bottom: 8px; }
.plan-name { font-size: 20px; font-weight: 700; color: var(–navy); margin-bottom: 3px; }
.plan-name-en { font-size: 12px; color: var(–muted); margin-bottom: 16px; }
.plan-price { font-size: 28px; font-weight: 800; color: var(–navy); line-height: 1.2; }
.plan-price.free { color: var(–green); }
.plan-price span { font-size: 13px; font-weight: 400; color: var(–muted); display: block; margin-top: 2px; }
.plan-monthly { font-size: 12px; color: var(–muted); margin-top: 4px; }
.plan-features { padding: 18px 20px; }
.feature { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; border-bottom: 1px solid var(–border); font-size: 13px; }
.feature:last-child { border: none; }
.fi { width: 20px; text-align: center; flex-shrink: 0; font-size: 14px; }
.fi.yes { color: var(–green); }
.fi.no { color: var(–border); }
.ft { color: var(–text); }
.ft.no { color: var(–muted); text-decoration: line-through; }
.plan-cta { padding: 0 20px 22px; }
.btn { width: 100%; padding: 13px; border-radius: 10px; font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer; border: none; transition: opacity .2s; display: block; text-align: center; text-decoration: none; }
.btn:hover { opacity: .88; }
.btn-free { background: var(–silver-light); color: var(–silver); border: 1.5px solid var(–border); }
.btn-silver { background: var(–navy); color: #fff; }
.btn-gold { background: var(–gold); color: var(–navy); }
/* WHY */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 48px; }
.why-card { background: var(–white); border: 1px solid var(–border); border-radius: 12px; padding: 20px; text-align: center; }
.why-icon { font-size: 30px; margin-bottom: 10px; }
.why-title { font-size: 14px; font-weight: 600; color: var(–navy); margin-bottom: 6px; }
.why-body { font-size: 12px; color: var(–muted); line-height: 1.6; }
/* COMPARE TABLE */
.compare-wrap { background: var(–white); border-radius: 12px; border: 1px solid var(–border); overflow: hidden; margin-bottom: 48px; }
.compare-title { font-size: 16px; font-weight: 700; color: var(–navy); padding: 18px 20px; border-bottom: 1px solid var(–border); }
table.compare { width: 100%; border-collapse: collapse; }
table.compare th { padding: 12px 16px; font-size: 12px; font-weight: 700; text-align: center; }
table.compare th:first-child { text-align: right; }
.th-free { background: var(–cream); color: var(–muted); }
.th-silver { background: var(–silver-light); color: var(–silver); }
.th-gold { background: var(–gold); color: var(–navy); }
.th-feature { background: var(–cream); color: var(–navy); }
table.compare td { padding: 10px 16px; font-size: 12px; border-bottom: 1px solid var(–border); text-align: center; }
table.compare td:first-child { text-align: right; font-weight: 500; color: var(–text); }
table.compare tr:last-child td { border: none; }
table.compare tr:hover td { background: var(–cream); }
.yes-cell { color: var(–green); font-size: 16px; font-weight: 700; }
.no-cell { color: var(–border); font-size: 16px; }
.price-row td { font-weight: 700; background: var(–cream) !important; }
/* FAQ */
.faq-wrap { margin-bottom: 48px; }
.section-title { font-size: 20px; font-weight: 700; color: var(–navy); text-align: center; margin-bottom: 8px; }
.section-sub { font-size: 13px; color: var(–muted); text-align: center; margin-bottom: 24px; }
.faq { background: var(–white); border: 1px solid var(–border); border-radius: 10px; padding: 16px 20px; margin-bottom: 10px; }
.faq-q { font-size: 14px; font-weight: 600; color: var(–navy); margin-bottom: 5px; }
.faq-a { font-size: 13px; color: var(–muted); line-height: 1.6; }
/* CTA BOTTOM */
.cta-bottom { background: linear-gradient(135deg, var(–navy), #163554); border-radius: 16px; padding: 40px; text-align: center; border: 1px solid rgba(200,150,42,.2); }
.cta-bottom h2 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.cta-bottom p { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 24px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-cta-gold { padding: 14px 32px; border-radius: 10px; background: var(–gold); color: var(–navy); font-family: inherit; font-size: 15px; font-weight: 700; border: none; cursor: pointer; }
.btn-cta-silver { padding: 14px 32px; border-radius: 10px; background: rgba(255,255,255,.1); color: #fff; font-family: inherit; font-size: 15px; font-weight: 600; border: 1.5px solid rgba(255,255,255,.3); cursor: pointer; }
.guarantee { display: flex; align-items: center; gap: 6px; justify-content: center; margin-top: 16px; font-size: 12px; color: rgba(255,255,255,.4); }
@media (max-width: 720px) {
.plans { grid-template-columns: 1fr; }
.plan.featured { transform: none; }
.why-grid { grid-template-columns: 1fr; }
.hero-stats { gap: 20px; }
.cta-btns { flex-direction: column; align-items: center; }
}
شرکت خود را به خریداران ایرانی و بینالمللی معرفی کنید
بیش از ۲۲,۰۰۰ شرکت ایرانی در TehranStar ثبت شدهاند. با عضویت پریمیوم، پروفایل شما در صدر نتایج قرار میگیرد.
| امکانات | 🔹 برنزی — رایگان | 🥈 نقرهای — ۲.۸ میلیون | 🥇 طلایی — ۳.۹ میلیون |
|---|---|---|---|
| نام شرکت | ✓ | ✓ | ✓ |
| تلفن و فکس | ✓ | ✓ | ✓ |
| لوگو | ✓ | ✓ | ✓ |
| آدرس | ✓ | ✓ | ✓ |
| دستهبندی صنعت | ✓ | ✓ | ✓ |
| بهینهسازی گوگل | ✓ | ✓ | ✓ |
| وبسایت و ایمیل | ✗ | ✓ | ✓ |
| تصاویر محصول | ✗ | ✓ | ✓ |
| ویدیو معرفی | ✗ | ✓ | ✓ |
| شبکههای اجتماعی | ✗ | ✓ | ✓ |
| واتساپ مستقیم | ✗ | ✓ | ✓ |
| محصولات و خدمات | ✗ | ✓ | ✓ |
| ساعات کاری | ✗ | ✓ | ✓ |
| مدیران شرکت | ✗ | ✓ | ✓ |
| پروفایل انگلیسی | ✗ | ✗ | ✓ |
| نمایش در صدر نتایج | ✗ | ✗ | ✓ |
| تبلیغات پیامکی | ✗ | ✗ | ✓ |
| دسترسی دیتابیس پریمیوم | ✗ | ✗ | ✓ |
| دامنه و ایمیل ir. | ✗ | ✗ | ✓ |
| آپلود تأییدیه | ✗ | ✗ | ✓ |
| چند زبانه | ✗ | ✗ | ✓ |
| بج تأیید شده | ✗ | ✗ | ✓ |
| قیمت سالانه | رایگان | ۲,۸۰۰,۰۰۰ تومان | ۳,۹۰۰,۰۰۰ تومان |
همین الان شروع کنید
ثبتنام رایگان فقط ۲ دقیقه طول میکشد. بعداً میتوانید ارتقا دهید.
نمایش همه 2 نتیجه
